23262 lines
1014 KiB
C++
23262 lines
1014 KiB
C++
#include "pch-cpp.hpp"
|
|
|
|
#ifndef _MSC_VER
|
|
# include <alloca.h>
|
|
#else
|
|
# include <malloc.h>
|
|
#endif
|
|
|
|
|
|
#include <limits>
|
|
|
|
|
|
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, 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 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 T1>
|
|
struct GenericVirtualActionInvoker1
|
|
{
|
|
typedef void (*Action)(void*, T1, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
|
|
{
|
|
VirtualInvokeData invokeData;
|
|
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
|
|
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R>
|
|
struct GenericVirtualFuncInvoker0
|
|
{
|
|
typedef R (*Func)(void*, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj)
|
|
{
|
|
VirtualInvokeData invokeData;
|
|
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
|
|
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
|
|
}
|
|
};
|
|
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 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);
|
|
}
|
|
};
|
|
template <typename T1>
|
|
struct GenericInterfaceActionInvoker1
|
|
{
|
|
typedef void (*Action)(void*, T1, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
|
|
{
|
|
VirtualInvokeData invokeData;
|
|
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
|
|
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R>
|
|
struct GenericInterfaceFuncInvoker0
|
|
{
|
|
typedef R (*Func)(void*, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj)
|
|
{
|
|
VirtualInvokeData invokeData;
|
|
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
|
|
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
|
|
}
|
|
};
|
|
|
|
struct Action_2_tE5C1059CE8ACEDAC4083A88C76E66DE3E15B8105;
|
|
struct Action_2_t8ECF3F2290D85497ADD0537A5F3D76045870EE0A;
|
|
struct Action_2_t3CFBD6C56B087A7CE032945C0950C5716540158A;
|
|
struct Action_2_t7493708BA3F87F84FAB65917DE69C3FD00878E6C;
|
|
struct Dictionary_2_t403ABC2FA2D9740F9ADD28DB8815C00EE2DB4249;
|
|
struct Dictionary_2_t029F6A37F043A1B571A7DB746955ECB8DC548AD9;
|
|
struct Dictionary_2_t9FA6D82CAFC18769F7515BB51D1C56DAE09381C3;
|
|
struct Dictionary_2_tA75D1125AC9BE8F005BA9B868B373398E643C907;
|
|
struct Dictionary_2_t2AB2F09285677DDC3A0A75E97B5A7492F1E236C9;
|
|
struct Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA;
|
|
struct Dictionary_2_t69734EC5CF354F3B1434F2527067B631D09E1D27;
|
|
struct Dictionary_2_tD2936860D0DBBB809F916DD79F6A1FDA961C3185;
|
|
struct Dictionary_2_tE1603CE612C16451D1E56FF4D4859D4FE4087C28;
|
|
struct Dictionary_2_tDF79546961566D2D6F7C4155F7ED851428AA9931;
|
|
struct Dictionary_2_tD88E8C222DEDEFACEF548AAB380B9ED228B42954;
|
|
struct Dictionary_2_t51F843E5AA0162639CFD12BF0859C4C0FF822998;
|
|
struct Dictionary_2_tD786692960EC82E79B160F75E780BA867D6C1BBD;
|
|
struct Dictionary_2_tAA76A881C8942A9F8F63F6BEE2A572DCF133AB93;
|
|
struct Dictionary_2_tB42EF32D51D7595BF925017BF4A743C5B97C9053;
|
|
struct Dictionary_2_t13D69527163788C316AD7673426765F0A3E018A0;
|
|
struct Dictionary_2_t9017400E4435187C1FB3841B4F5843B94836A625;
|
|
struct Dictionary_2_tB7188876A70AC81C939F78F9171156E43ED476CB;
|
|
struct Dictionary_2_tD8EF042176D7CCA0618F7F42494A6AAD68478914;
|
|
struct ExporterFunc_1_tFCF938C955AC8C9EF39571CF0A922FB4B50E00D4;
|
|
struct ExporterFunc_1_t8DEC56EC9C315918327B728EF33F55CE4D9E0204;
|
|
struct ExporterFunc_1_tAD0CADBFAA1F3669790D9F40D2D389420D24C825;
|
|
struct ExporterFunc_1_t179E18CCF068EB9C0EF09D7EC1E331160127D98B;
|
|
struct ExporterFunc_1_t0BDB0977957B702E553434D63D76FD4CBBF79E9D;
|
|
struct ExporterFunc_1_t396C38F979C2517DA37B85C04250C0FB38012D32;
|
|
struct ExporterFunc_1_t51D2BA9CE9D91E588EEC4288A798B6F13E55C90B;
|
|
struct ExporterFunc_1_t66337A5BC3E84B1D048E2D5A3E6B7DA41671BC95;
|
|
struct ExporterFunc_1_t61321F5C3918ED8EDB361F431B32F1983072DBD2;
|
|
struct ExporterFunc_1_t81E6D3B3E845005B652EE5F2CE219DAE1518AB83;
|
|
struct ExporterFunc_1_t68203C504BE983A9A387E0769D39E83F63B0F234;
|
|
struct ICollection_1_t5C03FBFD5ECBDE4EAB8C4ED582DDFCF702EB5DC7;
|
|
struct IDictionary_2_t9503DE0744217071D554CC415B2890C454070024;
|
|
struct IDictionary_2_t8B67C0BACED3ABBE0BB390A264074F9245F22842;
|
|
struct IDictionary_2_tC6EEF4DE19255D76EDF497CDE277E5578CB81EB2;
|
|
struct IDictionary_2_t0BD8FD9B6F60BD6B18C6D1CD2BE215E7F97D3D63;
|
|
struct IDictionary_2_tE7FFBD71D86A280E4B101DF2F8E59C9FFFAA4C29;
|
|
struct IDictionary_2_t02C6BF8BB03B58DD552B193E9CABACD0AF9CCFA4;
|
|
struct IDictionary_2_t8918FFC362E99797BB0E47D0D787D923EC3C8AAA;
|
|
struct IDictionary_2_t74600F66BA04DC423A37DB24919A3C9D56D75B43;
|
|
struct IDictionary_2_tBDC061B9374E6628F4296689FB32A9C598E45C4B;
|
|
struct IEnumerator_1_tA8D764B99B6196299ECE08BCBA02AB2EE733CB1D;
|
|
struct IEnumerator_1_t05B5613D1899393C5D9EB2B8AE7E874C4C23ED6C;
|
|
struct IEqualityComparer_1_tDBFC8496F14612776AF930DBF84AFE7D06D1F0E9;
|
|
struct IEqualityComparer_1_tAE94C8F24AD5B94D4EE85CA9FC59E3409D41CAF7;
|
|
struct IEqualityComparer_1_t0C79004BFE79D9DBCE6C2250109D31D468A9A68E;
|
|
struct IList_1_tCE0C7B37A9126CC0CB3277FBC9C4B9161B866C32;
|
|
struct IList_1_t0E22BD75314F60626B98C2C1FA5B2634BA7F5A82;
|
|
struct IList_1_t295EE3612B05E4600DB11CAEF2B9985229B3FF99;
|
|
struct IList_1_t97B3B39CDB830632CF9A846DD5FD149D333D9EDB;
|
|
struct ImporterFunc_2_tC2D95C1AAECB3A0DFA2C5D07F032E854D7D716F0;
|
|
struct ImporterFunc_2_tECF771648EC0EB35785D9EE3003167BEBB8C8008;
|
|
struct KeyCollection_tE8399140098D3D8028A8D5FB2CBF88B0965541B7;
|
|
struct KeyCollection_tC542A7519E04306FF4830698FC8A485843209C5F;
|
|
struct KeyCollection_tE6688B1D0092F017DF2F4826CC5D84C949D2429E;
|
|
struct KeyCollection_t955DF6F14659134D09E141EB4425AF8F55F679AA;
|
|
struct KeyCollection_t5DAF380E2438DEBAE74A7EE923FDFEEE1C5BDC80;
|
|
struct KeyCollection_t9467C64146E0E28B1B96A0A953D40232244C1EF5;
|
|
struct KeyCollection_t011DD148DD1E459C54D3B86D436275360A0B864A;
|
|
struct KeyCollection_t2268EDE7A9B4F936A672B3380267DF730779A1B2;
|
|
struct KeyCollection_t5B6745FEC66770915D98FF9337430E39F2C7F596;
|
|
struct KeyCollection_t5E5ADF12F5CBD0ACE41CD4E6FDE74FC9A04FABCA;
|
|
struct KeyCollection_t8D45DD26CAEC5F17F2CEEBE8D6F33B09D3E41E54;
|
|
struct KeyCollection_tF98E87A008809415D6AB6F9C787C311786D2F016;
|
|
struct List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB;
|
|
struct List_1_tFC3915CEAB0CCCC11D0AB7F2D3717177D1111111;
|
|
struct List_1_tF2E1AB00AE46093D3DBEBFF23EE42498976376CA;
|
|
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D;
|
|
struct List_1_t3F16D5D88FAFD68886DA28A9E82E74E30BE371F8;
|
|
struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD;
|
|
struct Stack_1_t3197E0F5EA36E611B259A88751D31FC2396FE4B6;
|
|
struct Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5;
|
|
struct Stack_1_t2CDC562A4A6FD1FE4DE0FC63A08FC106C6A84EFD;
|
|
struct ValueCollection_t28FD47FCC4F1763B936C9A4BB2A8B2276E633FEF;
|
|
struct ValueCollection_t6D44D0A2B65933FB953BE36FD019130BBA243B59;
|
|
struct ValueCollection_t59C53309B419C328FC0837737FEF760AE047CD0D;
|
|
struct ValueCollection_t32358315F68FC5BD948EBFB7C6EB843D1BAE6BC9;
|
|
struct ValueCollection_t83E53BA3EA08DD561AC7C5EDB4531AD216CFCE61;
|
|
struct ValueCollection_tAFECE5DF6F1FB1BEF304EAA61C4F731E871A681B;
|
|
struct ValueCollection_t8110CF124D20114B9F5705E2434F2DDFE505CC3A;
|
|
struct ValueCollection_t62026A81D00FB49C8EE60A7D152FE7BCE160AAE3;
|
|
struct ValueCollection_t9DEC1A402FF8D1E7F33F67FF13F0D9C8B3AB434C;
|
|
struct ValueCollection_tF7998DF06D1D07D517739DA512466779BCC73787;
|
|
struct ValueCollection_tA395C0460635906E16AC5F8593D8BCB9A6C656B3;
|
|
struct ValueCollection_t2C9CB7257121A667C1587DCE644D26B187E0D6B5;
|
|
struct EntryU5BU5D_tDFD4E62BB3F1C0F3B7819DAEE99FF5E659B06D91;
|
|
struct EntryU5BU5D_tE39FFA41A51BE829EA4A822560291EDF5752730D;
|
|
struct EntryU5BU5D_tFFD6B8317B8A4EC04C0CA2219BB927484E757C66;
|
|
struct EntryU5BU5D_tA7A095FC67289B7550B389A45FAEAD876ABC79DB;
|
|
struct EntryU5BU5D_tDB5466124978048AEE7EB5E0E3E00A17730CCD48;
|
|
struct EntryU5BU5D_tBE94ACF469E632D10D12216E35F0F03019768F7C;
|
|
struct EntryU5BU5D_t6571231E1804E10DF85CA83869BEEB713E4A4DE2;
|
|
struct EntryU5BU5D_t0761EEEEF2622AAB5B39E69A7492D75B065C58D6;
|
|
struct EntryU5BU5D_tABDBD24101DD7CE5A8D84BB5879160B31EAC148A;
|
|
struct EntryU5BU5D_tB852E8F817BCE8CDD4C6979579F1737AB30EF83B;
|
|
struct EntryU5BU5D_t6D60396D99C16167704D8C5FDCA8092D8EDBAA19;
|
|
struct EntryU5BU5D_tDE228C379B6987B7CBBCC56E46244D08D332886F;
|
|
struct KeyValuePair_2U5BU5D_tD567A773BB79854B9F60CD456C76D7B0FFC5D67F;
|
|
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
|
|
struct CalendarIdU5BU5D_t559EDBF1B819A695624BE9004EAA4FFA38B65CDA;
|
|
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
|
|
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
|
|
struct FieldInfoU5BU5D_t50D47CBECF1AEB152F555803E3329D9E34DBF8D8;
|
|
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
|
|
struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832;
|
|
struct JsonDataU5BU5D_t188E4B690F13A24B3486BD318C767E9BECCE3D72;
|
|
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
|
|
struct ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C;
|
|
struct PropertyInfoU5BU5D_tD81C248B41D0C76207C42DB9C332DC79F490B1D7;
|
|
struct PropertyMetadataU5BU5D_t74226C57698FFA61D8846D575CF58DC855C9CD07;
|
|
struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF;
|
|
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
|
|
struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB;
|
|
struct WriterContextU5BU5D_tBFF8768BDE5F671BEEE483FBAF7A92CB6D8DE657;
|
|
struct TokenHashValueU5BU5D_t3F8794937D04BA380989A813F33418CED58E80B9;
|
|
struct StateHandlerU5BU5D_tA4E04C837AF2BDFE9B351DF6813E6AB954722B93;
|
|
struct ApplicationException_tA744BED4E90266BD255285CD4CF909BAB3EE811A;
|
|
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263;
|
|
struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129;
|
|
struct ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A;
|
|
struct AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C;
|
|
struct Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA;
|
|
struct Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235;
|
|
struct Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B;
|
|
struct CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57;
|
|
struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D;
|
|
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0;
|
|
struct DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A;
|
|
struct Delegate_t;
|
|
struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E;
|
|
struct Exception_t;
|
|
struct ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A;
|
|
struct FieldInfo_t;
|
|
struct FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1;
|
|
struct IAsyncResult_t7B9B5A0ECB35DCEC31B8A8122C37D687369253B5;
|
|
struct ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E;
|
|
struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220;
|
|
struct IDictionaryEnumerator_tE129D608FCDB7207E0F0ECE33473CC950A83AD16;
|
|
struct IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5;
|
|
struct IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA;
|
|
struct IFormatProvider_tC202922D43BFF3525109ABF3FB79625F5646AB52;
|
|
struct IJsonWrapper_t447B39837883BA1281A17C3D6BA122AD22837DD9;
|
|
struct IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D;
|
|
struct ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5;
|
|
struct InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E;
|
|
struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB;
|
|
struct JsonData_t3C51D89A19D30A47A74617107D861959322307F1;
|
|
struct JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76;
|
|
struct JsonIgnore_t3FF65951D3F8D995E69E2E396F84F51967463103;
|
|
struct JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A;
|
|
struct JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB;
|
|
struct JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD;
|
|
struct JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F;
|
|
struct KeyNotFoundException_tCE416EC9BCA9F396A3DFFF86D1B5209BA876079E;
|
|
struct Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9;
|
|
struct MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553;
|
|
struct MemberInfo_t;
|
|
struct MethodBase_t;
|
|
struct MethodInfo_t;
|
|
struct NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472;
|
|
struct OrderedDictionaryEnumerator_t557577F1E3C3DC7E5A3BFA6B12F2E0F7921D9C18;
|
|
struct ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F;
|
|
struct PropertyInfo_t;
|
|
struct RectOffset_t6358774A0DEEABA4586840CB9BC7DC88B39660B5;
|
|
struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6;
|
|
struct String_t;
|
|
struct StringBuilder_t;
|
|
struct StringReader_t1A336148FF22A9584E759A9D720CC96C23E35DD8;
|
|
struct StringWriter_tF48052BE4F980E5C85403221E835768E4156267D;
|
|
struct TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4;
|
|
struct TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7;
|
|
struct TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3;
|
|
struct Type_t;
|
|
struct UnicodeEncoding_t2C90D9E1E55C16081FACA57B229053C1EF05DAF0;
|
|
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
|
|
struct WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD;
|
|
struct WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F;
|
|
struct U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D;
|
|
struct StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603;
|
|
struct U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2;
|
|
struct U3CU3Ec__DisplayClass2_0_t6F9528147EBA1501BA7DC4A28B00FEDC10940082;
|
|
|
|
IL2CPP_EXTERN_C RuntimeClass* Action_2_t3CFBD6C56B087A7CE032945C0950C5716540158A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Action_2_tE5C1059CE8ACEDAC4083A88C76E66DE3E15B8105_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t029F6A37F043A1B571A7DB746955ECB8DC548AD9_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t13D69527163788C316AD7673426765F0A3E018A0_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t403ABC2FA2D9740F9ADD28DB8815C00EE2DB4249_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t51F843E5AA0162639CFD12BF0859C4C0FF822998_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t9017400E4435187C1FB3841B4F5843B94836A625_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tAA76A881C8942A9F8F63F6BEE2A572DCF133AB93_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tB42EF32D51D7595BF925017BF4A743C5B97C9053_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tB7188876A70AC81C939F78F9171156E43ED476CB_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tD786692960EC82E79B160F75E780BA867D6C1BBD_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tD88E8C222DEDEFACEF548AAB380B9ED228B42954_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tD8EF042176D7CCA0618F7F42494A6AAD68478914_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tDF79546961566D2D6F7C4155F7ED851428AA9931_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ExporterFunc_1_t0BDB0977957B702E553434D63D76FD4CBBF79E9D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ExporterFunc_1_t396C38F979C2517DA37B85C04250C0FB38012D32_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ExporterFunc_1_t51D2BA9CE9D91E588EEC4288A798B6F13E55C90B_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ExporterFunc_1_t61321F5C3918ED8EDB361F431B32F1983072DBD2_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ExporterFunc_1_t66337A5BC3E84B1D048E2D5A3E6B7DA41671BC95_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ExporterFunc_1_t68203C504BE983A9A387E0769D39E83F63B0F234_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ExporterFunc_1_t81E6D3B3E845005B652EE5F2CE219DAE1518AB83_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ExporterFunc_1_t8DEC56EC9C315918327B728EF33F55CE4D9E0204_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ExporterFunc_1_tAD0CADBFAA1F3669790D9F40D2D389420D24C825_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ExporterFunc_1_tFCF938C955AC8C9EF39571CF0A922FB4B50E00D4_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* FieldInfo_t_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ICollection_1_t3D10824E2D7EC716BB4188AE53FF69437B9FDED5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ICollection_1_t5C03FBFD5ECBDE4EAB8C4ED582DDFCF702EB5DC7_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ICollection_1_t76010575BE25258AB4D5EFFF458A7FCD2F1030A7_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ICollection_1_tD9AFA6DDEDB81906ED90E6DD2E1A6E8CB9A28A97_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ICollection_1_tE29700207988CC46641C84FE3D958DAF55F9ECDE_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ICollection_1_tE4324299D87C0ED69EFF6083103E594ED9299AF1_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IDictionary_2_t02C6BF8BB03B58DD552B193E9CABACD0AF9CCFA4_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IDictionary_2_t0BD8FD9B6F60BD6B18C6D1CD2BE215E7F97D3D63_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IDictionary_2_t14E89C96BA24B565BED22155CB0969211ADEB1AB_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IDictionary_2_t3CC56282CC2E992AD8F56406430E76F0711457AC_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IDictionary_2_t74600F66BA04DC423A37DB24919A3C9D56D75B43_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IDictionary_2_t8918FFC362E99797BB0E47D0D787D923EC3C8AAA_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IDictionary_2_t8B67C0BACED3ABBE0BB390A264074F9245F22842_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IDictionary_2_t9503DE0744217071D554CC415B2890C454070024_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IDictionary_2_tAD4D3CC9C1631510439F3806F67FAA90CE4C4313_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IDictionary_2_tBDC061B9374E6628F4296689FB32A9C598E45C4B_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IDictionary_2_tC6EEF4DE19255D76EDF497CDE277E5578CB81EB2_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IDictionary_2_tE7FFBD71D86A280E4B101DF2F8E59C9FFFAA4C29_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IEnumerable_1_tDFAB6A0EC1A6A40B5D759F32652B70BD609099EE_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IEnumerable_1_tE918F8F2362B68438A431F84E92E542A23B318B6_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_t05B5613D1899393C5D9EB2B8AE7E874C4C23ED6C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_tA8D764B99B6196299ECE08BCBA02AB2EE733CB1D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IJsonWrapper_t447B39837883BA1281A17C3D6BA122AD22837DD9_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IList_1_t0E22BD75314F60626B98C2C1FA5B2634BA7F5A82_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IList_1_tCE0C7B37A9126CC0CB3277FBC9C4B9161B866C32_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IOrderedDictionary_t4705C37EB66554997A0F3C58A92EE8E202BD46E9_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ImporterFunc_2_tECF771648EC0EB35785D9EE3003167BEBB8C8008_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* JsonData_t3C51D89A19D30A47A74617107D861959322307F1_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* KeyNotFoundException_tCE416EC9BCA9F396A3DFFF86D1B5209BA876079E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t3F16D5D88FAFD68886DA28A9E82E74E30BE371F8_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_tF2E1AB00AE46093D3DBEBFF23EE42498976376CA_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_tFC3915CEAB0CCCC11D0AB7F2D3717177D1111111_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* OrderedDictionaryEnumerator_t557577F1E3C3DC7E5A3BFA6B12F2E0F7921D9C18_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ParserToken_t028CC13C177D864835928A77CF1DD250271E3570_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PropertyInfo_t_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RuntimeArray_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Stack_1_t2CDC562A4A6FD1FE4DE0FC63A08FC106C6A84EFD_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Stack_1_t3197E0F5EA36E611B259A88751D31FC2396FE4B6_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* StateHandlerU5BU5D_tA4E04C837AF2BDFE9B351DF6813E6AB954722B93_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* StringReader_t1A336148FF22A9584E759A9D720CC96C23E35DD8_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* StringWriter_tF48052BE4F980E5C85403221E835768E4156267D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass2_0_t6F9528147EBA1501BA7DC4A28B00FEDC10940082_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* UnityTypeBindings_t8B29FCFD0144021BCAE930AB4077026676F186BA_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D____element_type_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661____element_type_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D____Info_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9B0B2A8DD3C1F36C25925A26EB3ED0CB0DF8189E____59B7E757844D3BF9299877BD1C17451611BFBAB493374D6B18D973FDE534151A_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9B0B2A8DD3C1F36C25925A26EB3ED0CB0DF8189E____5B979F69B96A61586A09DD4ED26F20534C629B08732AE32FA34B6F8A0049ACDD_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9B0B2A8DD3C1F36C25925A26EB3ED0CB0DF8189E____7FCA397EF25DB53B2C58A05F9BBFA4E8E0685FDBC8AAF39536123447056895C0_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9B0B2A8DD3C1F36C25925A26EB3ED0CB0DF8189E____B257E85A5D3CAB5E738D5A0FD1A7AE96624BFE92CB7915726CBBE1518C3225CF_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9B0B2A8DD3C1F36C25925A26EB3ED0CB0DF8189E____B7A918F6F138CA8137025633559198B529D28CCEC5A51B005376CC69A5B83D85_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9B0B2A8DD3C1F36C25925A26EB3ED0CB0DF8189E____C84227140A8A7787B30DFF8BD5693C19AA5A430C4E89FFD0256D7F77B3FEAD82_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9B0B2A8DD3C1F36C25925A26EB3ED0CB0DF8189E____FC03ECB1D62767A5B31230F548FA4D4C02F01E3DA8CA1FC66C7C332EA16BF206_FieldInfo_var;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral057118C49B28F31FA4955B194753088DDCD94999;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral062DB096C728515E033CF8C48A1C1F0B9A79384B;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral0A04B971B03DA607CE6C455184037B660CA89F78;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral0B4852B6F2412388B50C99BF806BFE926E4FFEA5;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral0C3C6829C3CCF8020C6AC45B87963ADC095CD44A;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral0DFA9AA29082727751167EB3C54FCAD0F9EDC665;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral1168E92C164109D6220480DEDA987085B2A21155;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral13026DD559AA5A6B131F15B7DB4105EA898DA4D9;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral1D59E6177FAE880C9EF94663465FEEDCD97D999F;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral242259752214E86B8CCBBF56AA4774B954BC34AD;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral2B9B6C84CC15492CCB290C4B79418FA6D7DD24C1;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral3898E7D2C1147692B865B70C530E4BB2264D9234;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral3EE5A4671A4E5AEBD31CA5F013A7773DC18ED22B;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral3FB649A9FAAB5634336E279002E9E84D9AFCA0FC;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral437906DA6527EA9BAA9A971EC5171183BEB85B59;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral447D2D55725EF428A6F4753B53612ECA1764ECE7;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral456BA6DFA4ECDFAAD0D654A1EC48EE0C8CB90B18;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral45C6FAA87CD0123CD17D47EA53DEAA5A748C6A04;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral4609D79FE2FAD95C38B6DA64FC671E8594984D4C;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral4D8D9C94AC5DA5FCED2EC8A64E10E714A2515C30;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral5149D2AD92135C0DFA7131CADBFCC669275E96B5;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral5962E944D7340CE47999BF097B4AFD70C1501FB9;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral5BEFD8CC60A79699B5BB00E37BAC5B62D371E174;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral638C5441E8427B2B9D2C941DDBF958579B5FE3F0;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral647E0FB2B5E859CC4BD7C73623B82C8EFABA2563;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral6BAB8F53EE6BDD0369569E27A174F474EA370914;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral6DEED36FFF14869BC9ABC87FCC45B3DA6985BEEC;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral77D38C0623F92B292B925F6E72CF5CF99A20D4EB;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral785F17F45C331C415D0A7458E6AAC36966399C51;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral7B6EE056E549534162451A09C7F0AFAC372DBD06;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral7F3238CD8C342B06FB9AB185C610175C84625462;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral82A13B351F60D442B29C59FEDF02FF7E52C04163;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral84BE6DF7F5E86A94476E7ED44C8A9ACA10E6236A;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral8515553A5B3BDCBB0920E96A5FD0FC34F11C2713;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral8739227E8E687EF781DA0D923452C2686CFF10A2;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral8E284AA45C643AAA8D3553AA7AB6A1C3BC3E32D1;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral9384C6EF2DA5C0BD5274A0DACFF291D0ABBFD8B1;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral999DBDC959C03AA352D6BBA2EE5B69A49B9F2393;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral9CBCD572886BE3E0FA105AA3A7FE08AABFF19B79;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral9CE1604D659135925CCC4DD1F526AFFE42E689F1;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA11BC0AB16491B5DAEE99EAA33CF52FE6BC826E3;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA33A5CAE02B786C2060461DF8C6764B4C05E9423;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA5F9720625E0A3ED5CBF674F24D0646A4FA56368;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA7C3FCA8C63E127B542B38A5CA5E3FEEDDD1B122;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA9FEAF5F50923952C1AC3A473DE3C7E17D23B907;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralAB6E8D33884A8AB4625102A8EEE80D34FD589540;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralAC752DDD9E7D71113EA72864BE92198866B1D658;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralB1E5119D36EC43B340C0A0DDC99F1156546EA9DF;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralB3AF6981667F40A32E02D8E30F7F87E6D80E0C8B;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralB6F02FE6CD732AB22BD11BE4254D9546F3BEEE58;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralB78F235D4291950A7D101307609C259F3E1F033F;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralB7C45DD316C68ABF3429C20058C2981C652192F2;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralBBC2182A95A29E2752FA60C92F779B599B7B43ED;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralC2B624A34AE5F3AF1DE39F5AA12C5DBF59299E28;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralC31E66F919D06AD2730738EF7F884271E99BB7DA;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralC63496F78F80F09E4841EF5CD0DA8DAF7028FB4B;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralCDA723AA4DBB226A906416AA9BF1C2D4CEC53C89;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralCEE7535349ADB76DD55B08451D311FC3CF06A19C;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralD5DF53EB5CC9A30D6CA4EECD8F9C4882ABF00BB6;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralD9691C4FD8A1F6B09DB1147CA32B442772FB46A1;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralDA666908BB15F4E1D2649752EC5DCBD0D5C64699;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralDCAF96AFD9825EC0819F85E3953F28B330B45CC3;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE09E38B1A3E02297C148733DE7EED6E5DC8479F5;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE166C9564FBDE461738077E3B1B506525EB6ACCC;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE4B406C53746754260741908B65B3D19AD5BEDA0;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE53B6FBD162C91AD5A0438452E33647A61BBA15D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralEBF5FE0CBF3EEA67902EEA700B7216E3DB0D8E84;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralECAC83771A00C701043A940F621CC1C765D30D31;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralEEF37FC1405E97B11B63D83E44D8F153E9A61F50;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF26F502B14F503952C33ADFF928357DED0388E8D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF7E5EFDC670ACA0D3155DEFB95477AD16E9744EB;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m186154EAD1DF359706A7CF36C6BD7F5ACC47CFB7_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m224AC90EC65DF7D2F4D85F0DDEC5FECC74920277_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m3D7546A6DF9CDDA353873ECE10E542AD6406A825_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m3F530E7CD9CC3EB97DCC6E1669EAB9FCE984FA9A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m57E4DE0721BD2D645AF3036D988B131AAB138227_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m69403AE90D12CA520ABB728A1557B42580BBC7DC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m7B6BA98348249476333A6F6C3EFB7E2ABAEF49A5_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m95FEBED8F3E1B9BB1282B2C7E18C736BDC259D49_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mB364E5DE0CF679AC362662B5C96B6A6FB6B12AB8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mE6A439BEA4E21EF9C6E01E19390EE90B680DD348_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mF37C098D396E6388CF354D6F37970685A85B6FC0_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mFDB6B4CAA4E2AE6E8C2EA0D6D7DE7172BF609E65_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* JsonData_EnsureCollection_mFB01D813BC8765113931EF533783BA5BC764C283_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* JsonData_EnsureDictionary_m402293ECDF1F18AE8CA8259A102E698ADD3A8EB2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* JsonData_EnsureList_m6FCDB06F594222F9584291F20B3DA2FF4E5CE718_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* JsonData_LitJson_IJsonWrapper_GetBoolean_m02229DB77CB8074F0F2ED898D0CE29BA4350B95B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* JsonData_LitJson_IJsonWrapper_GetDouble_mBB4264E6B18E4DF17A4B00CB0BFE838A3895AE69_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* JsonData_LitJson_IJsonWrapper_GetInt_mC20A4D6F04A93056C1FB067C68E092AA4CE13BEE_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* JsonData_LitJson_IJsonWrapper_GetLong_mC36169157591BD9D3A60C529659D4F6EF01A268D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* JsonData_LitJson_IJsonWrapper_GetString_m6EA810BD49C5125077D92E11DFEC4AFE0A4235E1_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* JsonData_Remove_mB1E228019F13D13490400AA18B4DB4B0678B204A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* JsonData_System_Collections_IDictionary_set_Item_m9E5C2463B2821FC2B3BE28F28F1050AE388902F9_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* JsonData__ctor_mA02A77C55F31BBE7F62D84ADEAC445BB4D6BF6F0_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* JsonData_op_Explicit_m0A788F49E28DE18F33D851EF8C95D496A2275B48_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* JsonData_op_Explicit_m7AD19ED5C99B6C2BEAC71AD2C892C86ED3F8F55C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* JsonData_op_Explicit_m91889F4D3822778AFF7632F5B30BD281EA937F09_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* JsonData_op_Explicit_m94F189BE9636A52B7E699F988282EAEF9342751D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* JsonData_op_Explicit_mA048CAEE607C55B0E82B2051CDC921A7E54A9AD4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* JsonMapper_ReadValue_m12EFFE983BBE0A9254AA072EFEFB7A6156F094E6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* JsonMapper_RegisterExporter_TisBounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3_m3CF06EF834F36C4AED2171CE91C61DA8DC8A05FE_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* JsonMapper_RegisterExporter_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_mC16F18097E95FC3BC0AE9313B7B8CAE49480E1AD_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* JsonMapper_RegisterExporter_TisColor_tD001788D726C3A7F1379BEED0260B9591F440C1F_mE28CA3EECB71DB04C370B4811C0C0959B999C3CF_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* JsonMapper_RegisterExporter_TisQuaternion_tDA59F214EF07D7700B26E40E562F267AF7306974_m13A2ECD7CDFAC21C1AF4B64A3B5AB4E971302FE0_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* JsonMapper_RegisterExporter_TisRectOffset_t6358774A0DEEABA4586840CB9BC7DC88B39660B5_m265194368484D1D2AAE706A2F7A80AA7A3C363ED_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* JsonMapper_RegisterExporter_TisRect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D_m57356BB4D41D22B85D5C98568FACE4347B0583B3_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* JsonMapper_RegisterExporter_TisType_t_m6CBE1C2D40E0DF5B03DE2028E63B1E1C86C633F5_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* JsonMapper_RegisterExporter_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_m06FB369425160BCF1EBE76D0855E12FE17E5CC3A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* JsonMapper_RegisterExporter_TisVector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_mA923D9A8735FFE1B2862156D5922071902E1F849_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* JsonMapper_RegisterExporter_TisVector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3_mD3678978F84EC31F2276396FFD53E95D6D36A7A3_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* JsonMapper_RegisterImporter_TisString_t_TisType_t_mFF375BDC0DE41905D9536A45A8D45A5831564D3C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* JsonMapper_WriteValue_m143881E655EEAE7440BFE564E13A2580A021DBDE_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* JsonReader_Read_mD8D28369934A79C6A0125279F425E48D1D35AE7B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* JsonReader__ctor_mDC4C842CE01B549E193647B6BFEE5420187C446A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* JsonWriter_DoValidation_m3F03AD6E422930F933D182AD01154E08F32EFF3B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* JsonWriter__ctor_m59AEC417CBCF6AB49675BCCFD00F274C31D3585E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2__ctor_mF8563179C2DDD7A9FDB625D79ABD337FB772A683_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Key_mB20EAD0A1F549096009239692374BA2D53CC56C8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Value_m1AF62875E8518A1790EFF3FBB65608529D80A79E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Lexer_NextToken_m1FC49AB01B8C3D281961541D1D7D1A8721B06083_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Lexer_State10_m5904073970AD0D36A52E6EF3528D8932E8588D59_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Lexer_State11_m5A9D0CA38509AB81A532487CF5D2DC65D6B71F04_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Lexer_State12_m958CFDBC029123955374295C3E9913D1599A196D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Lexer_State13_m560152ABC44290068A66CB6BFC939C5AAFEC51FF_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Lexer_State14_m8C25AB90286E32F384E390E17E726F1BC08BC9DD_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Lexer_State15_m00E0DE3464F1159F7EB835A3286EFFA40B558403_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Lexer_State16_m8BD82487456FA900D6BBDED72C8C975696D67804_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Lexer_State17_mDFB66C6B09C25B8B8CC2EC226F446FEF70AFE493_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Lexer_State18_m2C29A371734A3AF4B66ACD39EA4356FCEEB42703_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Lexer_State19_mD468E390FBA1C3B79566FD0CF8AB183BEF7B9A7C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Lexer_State1_m35B7B80F34B274EC767AAE1FB3F61D2DB4A64699_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Lexer_State20_mB134E41DBE7A01B14B8ADBBEDFAE16596CB76C1A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Lexer_State21_m98740912488BE0C617E7112B1EFA0CC52080297A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Lexer_State22_m40E243F9BE396E171757231B9D5045880E92EC2D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Lexer_State23_m14C029F3770CEF5E40A14DE7B3D3C2952D9C385F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Lexer_State24_mD981E66641429ED14661F0D83F155ACB0ADE601E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Lexer_State25_m846973336CD8B49363EBCFB9EF83676772B9B6F3_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Lexer_State26_m464EBDB9597D118A7666A693F407F7E7126752EB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Lexer_State27_mFDC378B071D2ABA7045A6CE1B8AE7C7F40D99638_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Lexer_State28_m151FEC6858FB9E2A515CABFEFEDE5DAB3F736F91_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Lexer_State2_m205EFB31447C24D81684803A8952AE47F34289E2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Lexer_State3_mD4320873954DA33A7B26AA9B6CF7CD64A8588783_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Lexer_State4_m88410392996F1D5DAB6DADC91AE16FC7CA54FF86_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Lexer_State5_mA1FA2D1CC7595C3D70A02973568DADDD27CFFA87_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Lexer_State6_m4B7FE39523E86CA3283F618065D8647CCFC6C0B3_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Lexer_State7_m5464256E9F4EF412B26461E52B133812F79EFA41_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Lexer_State8_mEE57AB611D759135E18E796C685799AF59653DF1_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Lexer_State9_m2A2DF75F8B8AEFAAFF778393AFCC9605ED84C01C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m53AA73BE6E2FF2045F347EBCEE46E8E4EE524E5F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m71FFC1A9C81BB314F91B10BE885521A22E708BF8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mAAC32D144B3A74FCD65A76B4CA7CB1D2024A1E3A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Clear_m6ADA89EC27B8CEB290D73A08C00E14FCF1440D65_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Clear_mEE1C6E0AF654AE01D41D12DAF62217D4FE3930E0_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Peek_m20439CD5B4898A681D0F39D58BBC7E2C21CA584C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Peek_m919AA48BFC239B260BB6A0639B8E027B60CB8B66_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Pop_m59DFD2B5EC8D9044532E0AD0BDB20DB33BA76748_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Pop_m98A1DBF775D66CFC5149DF79AFD2042E2E54ABC2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Push_mCC27D4FD504E058A5A42BE3285782C44D715DF4A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Push_mF7CC12CF73D9D4B66FFA2E2D264270212CAB3EDA_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1__ctor_m2A8D4EF841D474ABBD42CA0BE7389F3C1A1A31E7_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1__ctor_mF63AE96E8925749CDACE05B89002A389DDD748D1_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_get_Count_m145C99D2412AD5B6C8CADF47696A334272AA6EDB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Type_GetType_m71A077E0B5DA3BD1DC0AB9AE387056CFCF56F93F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CReadSkipU3Eb__23_0_m7074B21692E9EFD286668701F7FD89898F967FDB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterBaseExportersU3Eb__24_0_mEA8451E773AD80B42C0AD938BB1F036F74AF47A8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterBaseExportersU3Eb__24_1_mF07BD87EA371F70F1AC4F5B3983A1E56C946E2E0_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterBaseExportersU3Eb__24_2_m3570961EF7CB535D815B01B2E75970154A44C1CB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterBaseExportersU3Eb__24_3_m437A270B128418DD0FDB4F1C1102CFC0C1156CA9_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterBaseExportersU3Eb__24_4_mE52A127C58303F167191B6ACE7CD95D390D03FAA_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterBaseExportersU3Eb__24_5_m5C055FF98C94616CED18E073093097C052D8C911_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterBaseExportersU3Eb__24_6_m12211EE75901E156D59A696B882BAB20904FA17E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterBaseExportersU3Eb__24_7_m19293FEE634D2346F9B7FA26BAC06D26A72F4CC2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterBaseExportersU3Eb__24_8_mEAB2AEC54786FAA72CB2BE0794628E1AB9CDC2BB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterBaseExportersU3Eb__24_9_m68CDAD6EC8058ECD04A734B47D08ACBA41AAB1AA_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_0_mCE9EB639AA315BECDAC2A853C944635A87B6D925_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_10_m482CC7BA26F2FEDE6CDB0114B36F35EEDA0EC76A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_11_mDBEA7FF7AE702AE8231AA53A3F58EF06DFD588D2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_12_m1EF404DE0B87454CA206C71B70A27C71959A85D1_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_13_m91E6999B2F0AC41B8549CA196A8AFEFF85D7B773_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_14_m5E0BAE710E3B9EB9FB08FFAA1DC512C9FA85974C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_1_m8869CABB6968F24C1EC2871532CE0274D284A39F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_2_mDB0291CF44C8E288F1D3E10A3D4F7E7C54C4B96D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_3_mBA0635D09ABC881387E386E60476208A31F3D4DD_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_4_mDCC251A8D7D91FFF36CB6AC596F2F651EF0D9565_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_5_mB3E27EBF9144F8166A52CE50CB35AEEA522E7B53_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_6_m055895C218F8E2E0449E3CA63B630AFEB4383467_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_7_m5F115FCD5246351C6757DB539D611CA16138AE11_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_8_m8ACCC6E2C8E30BB288C157C28225A2A5F7712A23_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_9_mD593D324D0E00C89973CC1EC33723116107E41EE_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterU3Eb__2_0_mA1A7596B0C564A5DB9023BB23EF786B570A40536_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterU3Eb__2_11_mE0E79F14D4012C6D0E01B417ED17D44AA6707DC0_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterU3Eb__2_12_mF29155196073920053ED3C66CB61E9A99D7E1623_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterU3Eb__2_1_m99AD9B304FFC1EE02D0A57F4F34B96B5CB37E9F1_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterU3Eb__2_2_m07A5B1C4B85D9C13D0F177E5C86C9CDA9F0E4EC9_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterU3Eb__2_4_m7B4E98EF87FFFD2084D924518A83208F53533757_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterU3Eb__2_6_mA8E19C1295B6B927B088FDF316F19BA5A282387F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterU3Eb__2_7_mA97D4ED397727FE3783E3F29CBF642E4F0F72A32_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterU3Eb__2_8_mBC379F52F684346F7AD7A715313420B3506A3781_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterU3Eb__2_9_mBC56CC9FBA2B5F73DDADF695C926CE15FD03D4A4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CToObjectU3Eb__30_0_m2FFFC43FA88F7AFFC5F686832A8BE925525A1249_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CToObjectU3Eb__31_0_m7A4483477BF06A72E4BAF9FF1EC7BB0D5144AE00_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CToObjectU3Eb__32_0_m976B8254EA28F3AAC16AEF020195280AE0A1B26F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass2_0_U3CRegisterU3Eb__10_m2923B6945258B312C61A6318BD0570D2FEF79779_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass2_0_U3CRegisterU3Eb__3_m725BE532087F75B747D3C5D6624D5F0592574D51_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass2_0_U3CRegisterU3Eb__5_m7352CE818003475C56E5662DAF6C934CFEDDB6FE_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* Char_t521A6F19B456D956AF452D926C32709DC03D6B17_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* JsonData_t3C51D89A19D30A47A74617107D861959322307F1_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* String_t_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_0_0_0_var;
|
|
struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_com;
|
|
struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_pinvoke;
|
|
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_com;
|
|
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_pinvoke;
|
|
struct Delegate_t_marshaled_com;
|
|
struct Delegate_t_marshaled_pinvoke;
|
|
struct Exception_t_marshaled_com;
|
|
struct Exception_t_marshaled_pinvoke;
|
|
|
|
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
|
|
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
|
|
struct FieldInfoU5BU5D_t50D47CBECF1AEB152F555803E3329D9E34DBF8D8;
|
|
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
|
|
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
|
|
struct ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C;
|
|
struct PropertyInfoU5BU5D_tD81C248B41D0C76207C42DB9C332DC79F490B1D7;
|
|
struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB;
|
|
struct StateHandlerU5BU5D_tA4E04C837AF2BDFE9B351DF6813E6AB954722B93;
|
|
|
|
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
|
|
struct U3CModuleU3E_t625F4EE40CDF76E63929DA3A0864C5AEF068DCF1
|
|
{
|
|
};
|
|
struct Dictionary_2_t403ABC2FA2D9740F9ADD28DB8815C00EE2DB4249 : public RuntimeObject
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets;
|
|
EntryU5BU5D_tDFD4E62BB3F1C0F3B7819DAEE99FF5E659B06D91* ____entries;
|
|
int32_t ____count;
|
|
int32_t ____freeList;
|
|
int32_t ____freeCount;
|
|
int32_t ____version;
|
|
RuntimeObject* ____comparer;
|
|
KeyCollection_tE8399140098D3D8028A8D5FB2CBF88B0965541B7* ____keys;
|
|
ValueCollection_t28FD47FCC4F1763B936C9A4BB2A8B2276E633FEF* ____values;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct Dictionary_2_t029F6A37F043A1B571A7DB746955ECB8DC548AD9 : public RuntimeObject
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets;
|
|
EntryU5BU5D_tE39FFA41A51BE829EA4A822560291EDF5752730D* ____entries;
|
|
int32_t ____count;
|
|
int32_t ____freeList;
|
|
int32_t ____freeCount;
|
|
int32_t ____version;
|
|
RuntimeObject* ____comparer;
|
|
KeyCollection_tC542A7519E04306FF4830698FC8A485843209C5F* ____keys;
|
|
ValueCollection_t6D44D0A2B65933FB953BE36FD019130BBA243B59* ____values;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct Dictionary_2_tDF79546961566D2D6F7C4155F7ED851428AA9931 : public RuntimeObject
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets;
|
|
EntryU5BU5D_tFFD6B8317B8A4EC04C0CA2219BB927484E757C66* ____entries;
|
|
int32_t ____count;
|
|
int32_t ____freeList;
|
|
int32_t ____freeCount;
|
|
int32_t ____version;
|
|
RuntimeObject* ____comparer;
|
|
KeyCollection_tE6688B1D0092F017DF2F4826CC5D84C949D2429E* ____keys;
|
|
ValueCollection_t59C53309B419C328FC0837737FEF760AE047CD0D* ____values;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct Dictionary_2_tD88E8C222DEDEFACEF548AAB380B9ED228B42954 : public RuntimeObject
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets;
|
|
EntryU5BU5D_tA7A095FC67289B7550B389A45FAEAD876ABC79DB* ____entries;
|
|
int32_t ____count;
|
|
int32_t ____freeList;
|
|
int32_t ____freeCount;
|
|
int32_t ____version;
|
|
RuntimeObject* ____comparer;
|
|
KeyCollection_t955DF6F14659134D09E141EB4425AF8F55F679AA* ____keys;
|
|
ValueCollection_t32358315F68FC5BD948EBFB7C6EB843D1BAE6BC9* ____values;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct Dictionary_2_t51F843E5AA0162639CFD12BF0859C4C0FF822998 : public RuntimeObject
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets;
|
|
EntryU5BU5D_tDB5466124978048AEE7EB5E0E3E00A17730CCD48* ____entries;
|
|
int32_t ____count;
|
|
int32_t ____freeList;
|
|
int32_t ____freeCount;
|
|
int32_t ____version;
|
|
RuntimeObject* ____comparer;
|
|
KeyCollection_t5DAF380E2438DEBAE74A7EE923FDFEEE1C5BDC80* ____keys;
|
|
ValueCollection_t83E53BA3EA08DD561AC7C5EDB4531AD216CFCE61* ____values;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct Dictionary_2_tD786692960EC82E79B160F75E780BA867D6C1BBD : public RuntimeObject
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets;
|
|
EntryU5BU5D_tBE94ACF469E632D10D12216E35F0F03019768F7C* ____entries;
|
|
int32_t ____count;
|
|
int32_t ____freeList;
|
|
int32_t ____freeCount;
|
|
int32_t ____version;
|
|
RuntimeObject* ____comparer;
|
|
KeyCollection_t9467C64146E0E28B1B96A0A953D40232244C1EF5* ____keys;
|
|
ValueCollection_tAFECE5DF6F1FB1BEF304EAA61C4F731E871A681B* ____values;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct Dictionary_2_tAA76A881C8942A9F8F63F6BEE2A572DCF133AB93 : public RuntimeObject
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets;
|
|
EntryU5BU5D_t6571231E1804E10DF85CA83869BEEB713E4A4DE2* ____entries;
|
|
int32_t ____count;
|
|
int32_t ____freeList;
|
|
int32_t ____freeCount;
|
|
int32_t ____version;
|
|
RuntimeObject* ____comparer;
|
|
KeyCollection_t011DD148DD1E459C54D3B86D436275360A0B864A* ____keys;
|
|
ValueCollection_t8110CF124D20114B9F5705E2434F2DDFE505CC3A* ____values;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct Dictionary_2_tB42EF32D51D7595BF925017BF4A743C5B97C9053 : public RuntimeObject
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets;
|
|
EntryU5BU5D_t0761EEEEF2622AAB5B39E69A7492D75B065C58D6* ____entries;
|
|
int32_t ____count;
|
|
int32_t ____freeList;
|
|
int32_t ____freeCount;
|
|
int32_t ____version;
|
|
RuntimeObject* ____comparer;
|
|
KeyCollection_t2268EDE7A9B4F936A672B3380267DF730779A1B2* ____keys;
|
|
ValueCollection_t62026A81D00FB49C8EE60A7D152FE7BCE160AAE3* ____values;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct Dictionary_2_t13D69527163788C316AD7673426765F0A3E018A0 : public RuntimeObject
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets;
|
|
EntryU5BU5D_tABDBD24101DD7CE5A8D84BB5879160B31EAC148A* ____entries;
|
|
int32_t ____count;
|
|
int32_t ____freeList;
|
|
int32_t ____freeCount;
|
|
int32_t ____version;
|
|
RuntimeObject* ____comparer;
|
|
KeyCollection_t5B6745FEC66770915D98FF9337430E39F2C7F596* ____keys;
|
|
ValueCollection_t9DEC1A402FF8D1E7F33F67FF13F0D9C8B3AB434C* ____values;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct Dictionary_2_t9017400E4435187C1FB3841B4F5843B94836A625 : public RuntimeObject
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets;
|
|
EntryU5BU5D_tB852E8F817BCE8CDD4C6979579F1737AB30EF83B* ____entries;
|
|
int32_t ____count;
|
|
int32_t ____freeList;
|
|
int32_t ____freeCount;
|
|
int32_t ____version;
|
|
RuntimeObject* ____comparer;
|
|
KeyCollection_t5E5ADF12F5CBD0ACE41CD4E6FDE74FC9A04FABCA* ____keys;
|
|
ValueCollection_tF7998DF06D1D07D517739DA512466779BCC73787* ____values;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct Dictionary_2_tB7188876A70AC81C939F78F9171156E43ED476CB : public RuntimeObject
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets;
|
|
EntryU5BU5D_t6D60396D99C16167704D8C5FDCA8092D8EDBAA19* ____entries;
|
|
int32_t ____count;
|
|
int32_t ____freeList;
|
|
int32_t ____freeCount;
|
|
int32_t ____version;
|
|
RuntimeObject* ____comparer;
|
|
KeyCollection_t8D45DD26CAEC5F17F2CEEBE8D6F33B09D3E41E54* ____keys;
|
|
ValueCollection_tA395C0460635906E16AC5F8593D8BCB9A6C656B3* ____values;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct Dictionary_2_tD8EF042176D7CCA0618F7F42494A6AAD68478914 : public RuntimeObject
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets;
|
|
EntryU5BU5D_tDE228C379B6987B7CBBCC56E46244D08D332886F* ____entries;
|
|
int32_t ____count;
|
|
int32_t ____freeList;
|
|
int32_t ____freeCount;
|
|
int32_t ____version;
|
|
RuntimeObject* ____comparer;
|
|
KeyCollection_tF98E87A008809415D6AB6F9C787C311786D2F016* ____keys;
|
|
ValueCollection_t2C9CB7257121A667C1587DCE644D26B187E0D6B5* ____values;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_tFC3915CEAB0CCCC11D0AB7F2D3717177D1111111 : public RuntimeObject
|
|
{
|
|
KeyValuePair_2U5BU5D_tD567A773BB79854B9F60CD456C76D7B0FFC5D67F* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_tF2E1AB00AE46093D3DBEBFF23EE42498976376CA : public RuntimeObject
|
|
{
|
|
JsonDataU5BU5D_t188E4B690F13A24B3486BD318C767E9BECCE3D72* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_t3F16D5D88FAFD68886DA28A9E82E74E30BE371F8 : public RuntimeObject
|
|
{
|
|
PropertyMetadataU5BU5D_t74226C57698FFA61D8846D575CF58DC855C9CD07* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD : public RuntimeObject
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct Stack_1_t3197E0F5EA36E611B259A88751D31FC2396FE4B6 : public RuntimeObject
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____array;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5 : public RuntimeObject
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____array;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct Stack_1_t2CDC562A4A6FD1FE4DE0FC63A08FC106C6A84EFD : public RuntimeObject
|
|
{
|
|
WriterContextU5BU5D_tBFF8768BDE5F671BEEE483FBAF7A92CB6D8DE657* ____array;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct U3CPrivateImplementationDetailsU3E_t9B0B2A8DD3C1F36C25925A26EB3ED0CB0DF8189E : public RuntimeObject
|
|
{
|
|
};
|
|
struct ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A : public RuntimeObject
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA : public RuntimeObject
|
|
{
|
|
};
|
|
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0 : public RuntimeObject
|
|
{
|
|
bool ___m_isReadOnly;
|
|
int32_t ___cultureID;
|
|
int32_t ___parent_lcid;
|
|
int32_t ___datetime_index;
|
|
int32_t ___number_index;
|
|
int32_t ___default_calendar_type;
|
|
bool ___m_useUserOverride;
|
|
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___numInfo;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___dateTimeInfo;
|
|
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___textInfo;
|
|
String_t* ___m_name;
|
|
String_t* ___englishname;
|
|
String_t* ___nativename;
|
|
String_t* ___iso3lang;
|
|
String_t* ___iso2lang;
|
|
String_t* ___win3lang;
|
|
String_t* ___territory;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___native_calendar_names;
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___compareInfo;
|
|
void* ___textinfo_data;
|
|
int32_t ___m_dataItem;
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar;
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___parent_culture;
|
|
bool ___constructed;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___cached_serialized_form;
|
|
CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D* ___m_cultureData;
|
|
bool ___m_isInherited;
|
|
};
|
|
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_pinvoke
|
|
{
|
|
int32_t ___m_isReadOnly;
|
|
int32_t ___cultureID;
|
|
int32_t ___parent_lcid;
|
|
int32_t ___datetime_index;
|
|
int32_t ___number_index;
|
|
int32_t ___default_calendar_type;
|
|
int32_t ___m_useUserOverride;
|
|
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___numInfo;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___dateTimeInfo;
|
|
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___textInfo;
|
|
char* ___m_name;
|
|
char* ___englishname;
|
|
char* ___nativename;
|
|
char* ___iso3lang;
|
|
char* ___iso2lang;
|
|
char* ___win3lang;
|
|
char* ___territory;
|
|
char** ___native_calendar_names;
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___compareInfo;
|
|
void* ___textinfo_data;
|
|
int32_t ___m_dataItem;
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar;
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_pinvoke* ___parent_culture;
|
|
int32_t ___constructed;
|
|
Il2CppSafeArray* ___cached_serialized_form;
|
|
CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_pinvoke* ___m_cultureData;
|
|
int32_t ___m_isInherited;
|
|
};
|
|
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_com
|
|
{
|
|
int32_t ___m_isReadOnly;
|
|
int32_t ___cultureID;
|
|
int32_t ___parent_lcid;
|
|
int32_t ___datetime_index;
|
|
int32_t ___number_index;
|
|
int32_t ___default_calendar_type;
|
|
int32_t ___m_useUserOverride;
|
|
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___numInfo;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___dateTimeInfo;
|
|
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___textInfo;
|
|
Il2CppChar* ___m_name;
|
|
Il2CppChar* ___englishname;
|
|
Il2CppChar* ___nativename;
|
|
Il2CppChar* ___iso3lang;
|
|
Il2CppChar* ___iso2lang;
|
|
Il2CppChar* ___win3lang;
|
|
Il2CppChar* ___territory;
|
|
Il2CppChar** ___native_calendar_names;
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___compareInfo;
|
|
void* ___textinfo_data;
|
|
int32_t ___m_dataItem;
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar;
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_com* ___parent_culture;
|
|
int32_t ___constructed;
|
|
Il2CppSafeArray* ___cached_serialized_form;
|
|
CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_com* ___m_cultureData;
|
|
int32_t ___m_isInherited;
|
|
};
|
|
struct Extensions_tFC09F69054DCDDA5BCB44DE0C1773B9DD74D1C1D : public RuntimeObject
|
|
{
|
|
};
|
|
struct FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1 : public RuntimeObject
|
|
{
|
|
bool ___Return;
|
|
int32_t ___NextState;
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* ___L;
|
|
int32_t ___StateStack;
|
|
};
|
|
struct JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A : public RuntimeObject
|
|
{
|
|
};
|
|
struct JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB : public RuntimeObject
|
|
{
|
|
};
|
|
struct JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F : public RuntimeObject
|
|
{
|
|
WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* ___context;
|
|
Stack_1_t2CDC562A4A6FD1FE4DE0FC63A08FC106C6A84EFD* ___ctx_stack;
|
|
bool ___has_reached_end;
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___hex_seq;
|
|
int32_t ___indentation;
|
|
int32_t ___indent_value;
|
|
StringBuilder_t* ___inst_string_builder;
|
|
bool ___pretty_print;
|
|
bool ___validate;
|
|
bool ___lower_case_properties;
|
|
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___writer;
|
|
};
|
|
struct Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9 : public RuntimeObject
|
|
{
|
|
bool ___allow_comments;
|
|
bool ___allow_single_quoted_strings;
|
|
bool ___end_of_input;
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* ___fsm_context;
|
|
int32_t ___input_buffer;
|
|
int32_t ___input_char;
|
|
TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___reader;
|
|
int32_t ___state;
|
|
StringBuilder_t* ___string_buffer;
|
|
String_t* ___string_value;
|
|
int32_t ___token;
|
|
int32_t ___unichar;
|
|
};
|
|
struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE : public RuntimeObject
|
|
{
|
|
RuntimeObject* ____identity;
|
|
};
|
|
struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_pinvoke
|
|
{
|
|
Il2CppIUnknown* ____identity;
|
|
};
|
|
struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_com
|
|
{
|
|
Il2CppIUnknown* ____identity;
|
|
};
|
|
struct MemberInfo_t : public RuntimeObject
|
|
{
|
|
};
|
|
struct NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472 : public RuntimeObject
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___numberGroupSizes;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___currencyGroupSizes;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___percentGroupSizes;
|
|
String_t* ___positiveSign;
|
|
String_t* ___negativeSign;
|
|
String_t* ___numberDecimalSeparator;
|
|
String_t* ___numberGroupSeparator;
|
|
String_t* ___currencyGroupSeparator;
|
|
String_t* ___currencyDecimalSeparator;
|
|
String_t* ___currencySymbol;
|
|
String_t* ___ansiCurrencySymbol;
|
|
String_t* ___nanSymbol;
|
|
String_t* ___positiveInfinitySymbol;
|
|
String_t* ___negativeInfinitySymbol;
|
|
String_t* ___percentDecimalSeparator;
|
|
String_t* ___percentGroupSeparator;
|
|
String_t* ___percentSymbol;
|
|
String_t* ___perMilleSymbol;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___nativeDigits;
|
|
int32_t ___m_dataItem;
|
|
int32_t ___numberDecimalDigits;
|
|
int32_t ___currencyDecimalDigits;
|
|
int32_t ___currencyPositivePattern;
|
|
int32_t ___currencyNegativePattern;
|
|
int32_t ___numberNegativePattern;
|
|
int32_t ___percentPositivePattern;
|
|
int32_t ___percentNegativePattern;
|
|
int32_t ___percentDecimalDigits;
|
|
int32_t ___digitSubstitution;
|
|
bool ___isReadOnly;
|
|
bool ___m_useUserOverride;
|
|
bool ___m_isInvariant;
|
|
bool ___validForParseAsNumber;
|
|
bool ___validForParseAsCurrency;
|
|
};
|
|
struct OrderedDictionaryEnumerator_t557577F1E3C3DC7E5A3BFA6B12F2E0F7921D9C18 : public RuntimeObject
|
|
{
|
|
RuntimeObject* ___list_enumerator;
|
|
};
|
|
struct String_t : public RuntimeObject
|
|
{
|
|
int32_t ____stringLength;
|
|
Il2CppChar ____firstChar;
|
|
};
|
|
struct StringBuilder_t : public RuntimeObject
|
|
{
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___m_ChunkChars;
|
|
StringBuilder_t* ___m_ChunkPrevious;
|
|
int32_t ___m_ChunkLength;
|
|
int32_t ___m_ChunkOffset;
|
|
int32_t ___m_MaxCapacity;
|
|
};
|
|
struct UnityTypeBindings_t8B29FCFD0144021BCAE930AB4077026676F186BA : public RuntimeObject
|
|
{
|
|
};
|
|
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
|
|
{
|
|
};
|
|
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
|
|
{
|
|
};
|
|
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
|
|
{
|
|
};
|
|
struct WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F : public RuntimeObject
|
|
{
|
|
int32_t ___Count;
|
|
bool ___InArray;
|
|
bool ___InObject;
|
|
bool ___ExpectingValue;
|
|
int32_t ___Padding;
|
|
};
|
|
struct U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D : public RuntimeObject
|
|
{
|
|
};
|
|
struct U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2 : public RuntimeObject
|
|
{
|
|
};
|
|
struct U3CU3Ec__DisplayClass2_0_t6F9528147EBA1501BA7DC4A28B00FEDC10940082 : public RuntimeObject
|
|
{
|
|
Action_2_tE5C1059CE8ACEDAC4083A88C76E66DE3E15B8105* ___writeVector2;
|
|
Action_2_t3CFBD6C56B087A7CE032945C0950C5716540158A* ___writeVector3;
|
|
};
|
|
struct KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230
|
|
{
|
|
RuntimeObject* ___key;
|
|
RuntimeObject* ___value;
|
|
};
|
|
struct KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28
|
|
{
|
|
String_t* ___key;
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* ___value;
|
|
};
|
|
struct ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D
|
|
{
|
|
Type_t* ___element_type;
|
|
bool ___is_array;
|
|
bool ___is_list;
|
|
};
|
|
struct ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D_marshaled_pinvoke
|
|
{
|
|
Type_t* ___element_type;
|
|
int32_t ___is_array;
|
|
int32_t ___is_list;
|
|
};
|
|
struct ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D_marshaled_com
|
|
{
|
|
Type_t* ___element_type;
|
|
int32_t ___is_array;
|
|
int32_t ___is_list;
|
|
};
|
|
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22
|
|
{
|
|
bool ___m_value;
|
|
};
|
|
struct Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3
|
|
{
|
|
uint8_t ___m_value;
|
|
};
|
|
struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17
|
|
{
|
|
Il2CppChar ___m_value;
|
|
};
|
|
struct Color_tD001788D726C3A7F1379BEED0260B9591F440C1F
|
|
{
|
|
float ___r;
|
|
float ___g;
|
|
float ___b;
|
|
float ___a;
|
|
};
|
|
struct Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
int32_t ___rgba;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
int32_t ___rgba_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
uint8_t ___r;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
uint8_t ___r_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___g_OffsetPadding[1];
|
|
uint8_t ___g;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___g_OffsetPadding_forAlignmentOnly[1];
|
|
uint8_t ___g_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___b_OffsetPadding[2];
|
|
uint8_t ___b;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___b_OffsetPadding_forAlignmentOnly[2];
|
|
uint8_t ___b_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___a_OffsetPadding[3];
|
|
uint8_t ___a;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___a_OffsetPadding_forAlignmentOnly[3];
|
|
uint8_t ___a_forAlignmentOnly;
|
|
};
|
|
};
|
|
};
|
|
struct DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D
|
|
{
|
|
uint64_t ____dateData;
|
|
};
|
|
struct Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
int32_t ___flags;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
int32_t ___flags_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___hi_OffsetPadding[4];
|
|
int32_t ___hi;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___hi_OffsetPadding_forAlignmentOnly[4];
|
|
int32_t ___hi_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___lo_OffsetPadding[8];
|
|
int32_t ___lo;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___lo_OffsetPadding_forAlignmentOnly[8];
|
|
int32_t ___lo_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___mid_OffsetPadding[12];
|
|
int32_t ___mid;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___mid_OffsetPadding_forAlignmentOnly[12];
|
|
int32_t ___mid_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___ulomidLE_OffsetPadding[8];
|
|
uint64_t ___ulomidLE;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___ulomidLE_OffsetPadding_forAlignmentOnly[8];
|
|
uint64_t ___ulomidLE_forAlignmentOnly;
|
|
};
|
|
};
|
|
};
|
|
struct DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB
|
|
{
|
|
RuntimeObject* ____key;
|
|
RuntimeObject* ____value;
|
|
};
|
|
struct DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_marshaled_pinvoke
|
|
{
|
|
Il2CppIUnknown* ____key;
|
|
Il2CppIUnknown* ____value;
|
|
};
|
|
struct DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_marshaled_com
|
|
{
|
|
Il2CppIUnknown* ____key;
|
|
Il2CppIUnknown* ____value;
|
|
};
|
|
struct Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F
|
|
{
|
|
double ___m_value;
|
|
};
|
|
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2 : public ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F
|
|
{
|
|
};
|
|
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_pinvoke
|
|
{
|
|
};
|
|
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_com
|
|
{
|
|
};
|
|
struct FieldInfo_t : public MemberInfo_t
|
|
{
|
|
};
|
|
struct Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175
|
|
{
|
|
int16_t ___m_value;
|
|
};
|
|
struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C
|
|
{
|
|
int32_t ___m_value;
|
|
};
|
|
struct Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3
|
|
{
|
|
int64_t ___m_value;
|
|
};
|
|
struct IntPtr_t
|
|
{
|
|
void* ___m_value;
|
|
};
|
|
struct JsonIgnore_t3FF65951D3F8D995E69E2E396F84F51967463103 : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA
|
|
{
|
|
};
|
|
struct MethodBase_t : public MemberInfo_t
|
|
{
|
|
};
|
|
struct ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661
|
|
{
|
|
Type_t* ___element_type;
|
|
bool ___is_dictionary;
|
|
RuntimeObject* ___properties;
|
|
};
|
|
struct ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661_marshaled_pinvoke
|
|
{
|
|
Type_t* ___element_type;
|
|
int32_t ___is_dictionary;
|
|
RuntimeObject* ___properties;
|
|
};
|
|
struct ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661_marshaled_com
|
|
{
|
|
Type_t* ___element_type;
|
|
int32_t ___is_dictionary;
|
|
RuntimeObject* ___properties;
|
|
};
|
|
struct PropertyInfo_t : public MemberInfo_t
|
|
{
|
|
};
|
|
struct PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D
|
|
{
|
|
MemberInfo_t* ___Info;
|
|
bool ___IsField;
|
|
Type_t* ___Type;
|
|
};
|
|
struct PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D_marshaled_pinvoke
|
|
{
|
|
MemberInfo_t* ___Info;
|
|
int32_t ___IsField;
|
|
Type_t* ___Type;
|
|
};
|
|
struct PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D_marshaled_com
|
|
{
|
|
MemberInfo_t* ___Info;
|
|
int32_t ___IsField;
|
|
Type_t* ___Type;
|
|
};
|
|
struct Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974
|
|
{
|
|
float ___x;
|
|
float ___y;
|
|
float ___z;
|
|
float ___w;
|
|
};
|
|
struct Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D
|
|
{
|
|
float ___m_XMin;
|
|
float ___m_YMin;
|
|
float ___m_Width;
|
|
float ___m_Height;
|
|
};
|
|
struct SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5
|
|
{
|
|
int8_t ___m_value;
|
|
};
|
|
struct Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C
|
|
{
|
|
float ___m_value;
|
|
};
|
|
struct TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7 : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE
|
|
{
|
|
};
|
|
struct TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3 : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE
|
|
{
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___CoreNewLine;
|
|
String_t* ___CoreNewLineStr;
|
|
RuntimeObject* ____internalFormatProvider;
|
|
};
|
|
struct UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455
|
|
{
|
|
uint16_t ___m_value;
|
|
};
|
|
struct UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B
|
|
{
|
|
uint32_t ___m_value;
|
|
};
|
|
struct UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF
|
|
{
|
|
uint64_t ___m_value;
|
|
};
|
|
struct Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7
|
|
{
|
|
float ___x;
|
|
float ___y;
|
|
};
|
|
struct Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2
|
|
{
|
|
float ___x;
|
|
float ___y;
|
|
float ___z;
|
|
};
|
|
struct Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3
|
|
{
|
|
float ___x;
|
|
float ___y;
|
|
float ___z;
|
|
float ___w;
|
|
};
|
|
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
|
|
};
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct __StaticArrayInitTypeSizeU3D112_t3634DC8000B09BC9B0CCFCCA5B7FF92AE5FB2971
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D112_t3634DC8000B09BC9B0CCFCCA5B7FF92AE5FB2971__padding[112];
|
|
};
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct __StaticArrayInitTypeSizeU3D12_t2075943EB4AAA12F6AE68BBCD8EFE67B74570C3B
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D12_t2075943EB4AAA12F6AE68BBCD8EFE67B74570C3B__padding[12];
|
|
};
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct Bounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_Center;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_Extents;
|
|
};
|
|
struct Condition_t5A2886727E95C448F25D8FF108BA613A7CC2E882
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct DateTimeFormatFlags_tB7CDDA8D7A3A0B2B9F64DB7704671F07FCE88FDC
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4
|
|
{
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ____dateTime;
|
|
int16_t ____offsetMinutes;
|
|
};
|
|
struct Delegate_t : public RuntimeObject
|
|
{
|
|
intptr_t ___method_ptr;
|
|
intptr_t ___invoke_impl;
|
|
RuntimeObject* ___m_target;
|
|
intptr_t ___method;
|
|
intptr_t ___delegate_trampoline;
|
|
intptr_t ___extra_arg;
|
|
intptr_t ___method_code;
|
|
intptr_t ___interp_method;
|
|
intptr_t ___interp_invoke_impl;
|
|
MethodInfo_t* ___method_info;
|
|
MethodInfo_t* ___original_method_info;
|
|
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
|
|
bool ___method_is_virtual;
|
|
};
|
|
struct Delegate_t_marshaled_pinvoke
|
|
{
|
|
intptr_t ___method_ptr;
|
|
intptr_t ___invoke_impl;
|
|
Il2CppIUnknown* ___m_target;
|
|
intptr_t ___method;
|
|
intptr_t ___delegate_trampoline;
|
|
intptr_t ___extra_arg;
|
|
intptr_t ___method_code;
|
|
intptr_t ___interp_method;
|
|
intptr_t ___interp_invoke_impl;
|
|
MethodInfo_t* ___method_info;
|
|
MethodInfo_t* ___original_method_info;
|
|
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
|
|
int32_t ___method_is_virtual;
|
|
};
|
|
struct Delegate_t_marshaled_com
|
|
{
|
|
intptr_t ___method_ptr;
|
|
intptr_t ___invoke_impl;
|
|
Il2CppIUnknown* ___m_target;
|
|
intptr_t ___method;
|
|
intptr_t ___delegate_trampoline;
|
|
intptr_t ___extra_arg;
|
|
intptr_t ___method_code;
|
|
intptr_t ___interp_method;
|
|
intptr_t ___interp_invoke_impl;
|
|
MethodInfo_t* ___method_info;
|
|
MethodInfo_t* ___original_method_info;
|
|
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
|
|
int32_t ___method_is_virtual;
|
|
};
|
|
struct Exception_t : public RuntimeObject
|
|
{
|
|
String_t* ____className;
|
|
String_t* ____message;
|
|
RuntimeObject* ____data;
|
|
Exception_t* ____innerException;
|
|
String_t* ____helpURL;
|
|
RuntimeObject* ____stackTrace;
|
|
String_t* ____stackTraceString;
|
|
String_t* ____remoteStackTraceString;
|
|
int32_t ____remoteStackIndex;
|
|
RuntimeObject* ____dynamicMethods;
|
|
int32_t ____HResult;
|
|
String_t* ____source;
|
|
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
|
|
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
|
|
IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832* ___native_trace_ips;
|
|
int32_t ___caught_in_unmanaged;
|
|
};
|
|
struct Exception_t_marshaled_pinvoke
|
|
{
|
|
char* ____className;
|
|
char* ____message;
|
|
RuntimeObject* ____data;
|
|
Exception_t_marshaled_pinvoke* ____innerException;
|
|
char* ____helpURL;
|
|
Il2CppIUnknown* ____stackTrace;
|
|
char* ____stackTraceString;
|
|
char* ____remoteStackTraceString;
|
|
int32_t ____remoteStackIndex;
|
|
Il2CppIUnknown* ____dynamicMethods;
|
|
int32_t ____HResult;
|
|
char* ____source;
|
|
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
|
|
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
|
|
Il2CppSafeArray* ___native_trace_ips;
|
|
int32_t ___caught_in_unmanaged;
|
|
};
|
|
struct Exception_t_marshaled_com
|
|
{
|
|
Il2CppChar* ____className;
|
|
Il2CppChar* ____message;
|
|
RuntimeObject* ____data;
|
|
Exception_t_marshaled_com* ____innerException;
|
|
Il2CppChar* ____helpURL;
|
|
Il2CppIUnknown* ____stackTrace;
|
|
Il2CppChar* ____stackTraceString;
|
|
Il2CppChar* ____remoteStackTraceString;
|
|
int32_t ____remoteStackIndex;
|
|
Il2CppIUnknown* ____dynamicMethods;
|
|
int32_t ____HResult;
|
|
Il2CppChar* ____source;
|
|
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
|
|
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
|
|
Il2CppSafeArray* ___native_trace_ips;
|
|
int32_t ___caught_in_unmanaged;
|
|
};
|
|
struct JsonToken_t34FC6193574EE269A01E4CE522C2A97A149CE8C2
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct JsonType_t9CFC52444C5F4ADB07D070974C5E58842A9AB006
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct MethodInfo_t : public MethodBase_t
|
|
{
|
|
};
|
|
struct NumberStyles_t567C6CBC2A2B5B5A2C43B2855D158949984A810C
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct ParameterAttributes_tDAEC8B3C5986B042F8F9B0845505D0FC15F92E68
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct ParserToken_t028CC13C177D864835928A77CF1DD250271E3570
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct RectOffset_t6358774A0DEEABA4586840CB9BC7DC88B39660B5 : public RuntimeObject
|
|
{
|
|
intptr_t ___m_Ptr;
|
|
RuntimeObject* ___m_SourceStyle;
|
|
};
|
|
struct RectOffset_t6358774A0DEEABA4586840CB9BC7DC88B39660B5_marshaled_pinvoke
|
|
{
|
|
intptr_t ___m_Ptr;
|
|
Il2CppIUnknown* ___m_SourceStyle;
|
|
};
|
|
struct RectOffset_t6358774A0DEEABA4586840CB9BC7DC88B39660B5_marshaled_com
|
|
{
|
|
intptr_t ___m_Ptr;
|
|
Il2CppIUnknown* ___m_SourceStyle;
|
|
};
|
|
struct RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5
|
|
{
|
|
intptr_t ___value;
|
|
};
|
|
struct RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B
|
|
{
|
|
intptr_t ___value;
|
|
};
|
|
struct StringReader_t1A336148FF22A9584E759A9D720CC96C23E35DD8 : public TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7
|
|
{
|
|
String_t* ____s;
|
|
int32_t ____pos;
|
|
int32_t ____length;
|
|
};
|
|
struct StringWriter_tF48052BE4F980E5C85403221E835768E4156267D : public TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3
|
|
{
|
|
StringBuilder_t* ____sb;
|
|
bool ____isOpen;
|
|
};
|
|
struct ApplicationException_tA744BED4E90266BD255285CD4CF909BAB3EE811A : public Exception_t
|
|
{
|
|
};
|
|
struct DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A : public RuntimeObject
|
|
{
|
|
CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D* ____cultureData;
|
|
String_t* ____name;
|
|
String_t* ____langName;
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ____compareInfo;
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ____cultureInfo;
|
|
String_t* ___amDesignator;
|
|
String_t* ___pmDesignator;
|
|
String_t* ___dateSeparator;
|
|
String_t* ___generalShortTimePattern;
|
|
String_t* ___generalLongTimePattern;
|
|
String_t* ___timeSeparator;
|
|
String_t* ___monthDayPattern;
|
|
String_t* ___dateTimeOffsetPattern;
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar;
|
|
int32_t ___firstDayOfWeek;
|
|
int32_t ___calendarWeekRule;
|
|
String_t* ___fullDateTimePattern;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___abbreviatedDayNames;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___m_superShortDayNames;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___dayNames;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___abbreviatedMonthNames;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___monthNames;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___genitiveMonthNames;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___m_genitiveAbbreviatedMonthNames;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___leapYearMonthNames;
|
|
String_t* ___longDatePattern;
|
|
String_t* ___shortDatePattern;
|
|
String_t* ___yearMonthPattern;
|
|
String_t* ___longTimePattern;
|
|
String_t* ___shortTimePattern;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___allYearMonthPatterns;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___allShortDatePatterns;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___allLongDatePatterns;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___allShortTimePatterns;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___allLongTimePatterns;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___m_eraNames;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___m_abbrevEraNames;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___m_abbrevEnglishEraNames;
|
|
CalendarIdU5BU5D_t559EDBF1B819A695624BE9004EAA4FFA38B65CDA* ___optionalCalendars;
|
|
bool ____isReadOnly;
|
|
int32_t ___formatFlags;
|
|
String_t* ____fullTimeSpanPositivePattern;
|
|
String_t* ____fullTimeSpanNegativePattern;
|
|
TokenHashValueU5BU5D_t3F8794937D04BA380989A813F33418CED58E80B9* ____dtfiTokenHash;
|
|
};
|
|
struct JsonData_t3C51D89A19D30A47A74617107D861959322307F1 : public RuntimeObject
|
|
{
|
|
RuntimeObject* ___inst_array;
|
|
bool ___inst_boolean;
|
|
double ___inst_double;
|
|
int32_t ___inst_int;
|
|
int64_t ___inst_long;
|
|
RuntimeObject* ___inst_object;
|
|
String_t* ___inst_string;
|
|
String_t* ___json;
|
|
int32_t ___type;
|
|
RuntimeObject* ___object_list;
|
|
};
|
|
struct JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD : public RuntimeObject
|
|
{
|
|
Stack_1_t3197E0F5EA36E611B259A88751D31FC2396FE4B6* ___automaton_stack;
|
|
int32_t ___current_input;
|
|
int32_t ___current_symbol;
|
|
bool ___end_of_json;
|
|
bool ___end_of_input;
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* ___lexer;
|
|
bool ___parser_in_string;
|
|
bool ___parser_return;
|
|
bool ___read_started;
|
|
TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___reader;
|
|
bool ___reader_is_owned;
|
|
bool ___skip_non_members;
|
|
RuntimeObject* ___token_value;
|
|
int32_t ___token;
|
|
};
|
|
struct MulticastDelegate_t : public Delegate_t
|
|
{
|
|
DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771* ___delegates;
|
|
};
|
|
struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
|
|
{
|
|
Delegate_t_marshaled_pinvoke** ___delegates;
|
|
};
|
|
struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
|
|
{
|
|
Delegate_t_marshaled_com** ___delegates;
|
|
};
|
|
struct ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F : public RuntimeObject
|
|
{
|
|
int32_t ___AttrsImpl;
|
|
Type_t* ___ClassImpl;
|
|
RuntimeObject* ___DefaultValueImpl;
|
|
MemberInfo_t* ___MemberImpl;
|
|
String_t* ___NameImpl;
|
|
int32_t ___PositionImpl;
|
|
};
|
|
struct ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F_marshaled_pinvoke
|
|
{
|
|
int32_t ___AttrsImpl;
|
|
Type_t* ___ClassImpl;
|
|
Il2CppIUnknown* ___DefaultValueImpl;
|
|
MemberInfo_t* ___MemberImpl;
|
|
char* ___NameImpl;
|
|
int32_t ___PositionImpl;
|
|
};
|
|
struct ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F_marshaled_com
|
|
{
|
|
int32_t ___AttrsImpl;
|
|
Type_t* ___ClassImpl;
|
|
Il2CppIUnknown* ___DefaultValueImpl;
|
|
MemberInfo_t* ___MemberImpl;
|
|
Il2CppChar* ___NameImpl;
|
|
int32_t ___PositionImpl;
|
|
};
|
|
struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 : public Exception_t
|
|
{
|
|
};
|
|
struct Type_t : public MemberInfo_t
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ____impl;
|
|
};
|
|
struct Action_2_tE5C1059CE8ACEDAC4083A88C76E66DE3E15B8105 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_2_t8ECF3F2290D85497ADD0537A5F3D76045870EE0A : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_2_t3CFBD6C56B087A7CE032945C0950C5716540158A : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_2_t7493708BA3F87F84FAB65917DE69C3FD00878E6C : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct ExporterFunc_1_tFCF938C955AC8C9EF39571CF0A922FB4B50E00D4 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct ExporterFunc_1_t8DEC56EC9C315918327B728EF33F55CE4D9E0204 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct ExporterFunc_1_tAD0CADBFAA1F3669790D9F40D2D389420D24C825 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct ExporterFunc_1_t0BDB0977957B702E553434D63D76FD4CBBF79E9D : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct ExporterFunc_1_t396C38F979C2517DA37B85C04250C0FB38012D32 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct ExporterFunc_1_t51D2BA9CE9D91E588EEC4288A798B6F13E55C90B : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct ExporterFunc_1_t66337A5BC3E84B1D048E2D5A3E6B7DA41671BC95 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct ExporterFunc_1_t61321F5C3918ED8EDB361F431B32F1983072DBD2 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct ExporterFunc_1_t81E6D3B3E845005B652EE5F2CE219DAE1518AB83 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct ExporterFunc_1_t68203C504BE983A9A387E0769D39E83F63B0F234 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct ImporterFunc_2_tECF771648EC0EB35785D9EE3003167BEBB8C8008 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
String_t* ____paramName;
|
|
};
|
|
struct AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
};
|
|
struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
};
|
|
struct JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76 : public ApplicationException_tA744BED4E90266BD255285CD4CF909BAB3EE811A
|
|
{
|
|
};
|
|
struct KeyNotFoundException_tCE416EC9BCA9F396A3DFFF86D1B5209BA876079E : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
};
|
|
struct WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129 : public ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263
|
|
{
|
|
};
|
|
struct List_1_tFC3915CEAB0CCCC11D0AB7F2D3717177D1111111_StaticFields
|
|
{
|
|
KeyValuePair_2U5BU5D_tD567A773BB79854B9F60CD456C76D7B0FFC5D67F* ___s_emptyArray;
|
|
};
|
|
struct List_1_tF2E1AB00AE46093D3DBEBFF23EE42498976376CA_StaticFields
|
|
{
|
|
JsonDataU5BU5D_t188E4B690F13A24B3486BD318C767E9BECCE3D72* ___s_emptyArray;
|
|
};
|
|
struct List_1_t3F16D5D88FAFD68886DA28A9E82E74E30BE371F8_StaticFields
|
|
{
|
|
PropertyMetadataU5BU5D_t74226C57698FFA61D8846D575CF58DC855C9CD07* ___s_emptyArray;
|
|
};
|
|
struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_StaticFields
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___s_emptyArray;
|
|
};
|
|
struct U3CPrivateImplementationDetailsU3E_t9B0B2A8DD3C1F36C25925A26EB3ED0CB0DF8189E_StaticFields
|
|
{
|
|
__StaticArrayInitTypeSizeU3D12_t2075943EB4AAA12F6AE68BBCD8EFE67B74570C3B ___59B7E757844D3BF9299877BD1C17451611BFBAB493374D6B18D973FDE534151A;
|
|
__StaticArrayInitTypeSizeU3D12_t2075943EB4AAA12F6AE68BBCD8EFE67B74570C3B ___5B979F69B96A61586A09DD4ED26F20534C629B08732AE32FA34B6F8A0049ACDD;
|
|
__StaticArrayInitTypeSizeU3D12_t2075943EB4AAA12F6AE68BBCD8EFE67B74570C3B ___7FCA397EF25DB53B2C58A05F9BBFA4E8E0685FDBC8AAF39536123447056895C0;
|
|
__StaticArrayInitTypeSizeU3D12_t2075943EB4AAA12F6AE68BBCD8EFE67B74570C3B ___B257E85A5D3CAB5E738D5A0FD1A7AE96624BFE92CB7915726CBBE1518C3225CF;
|
|
__StaticArrayInitTypeSizeU3D12_t2075943EB4AAA12F6AE68BBCD8EFE67B74570C3B ___B7A918F6F138CA8137025633559198B529D28CCEC5A51B005376CC69A5B83D85;
|
|
__StaticArrayInitTypeSizeU3D112_t3634DC8000B09BC9B0CCFCCA5B7FF92AE5FB2971 ___C84227140A8A7787B30DFF8BD5693C19AA5A430C4E89FFD0256D7F77B3FEAD82;
|
|
__StaticArrayInitTypeSizeU3D12_t2075943EB4AAA12F6AE68BBCD8EFE67B74570C3B ___FC03ECB1D62767A5B31230F548FA4D4C02F01E3DA8CA1FC66C7C332EA16BF206;
|
|
};
|
|
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_StaticFields
|
|
{
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___invariant_culture_info;
|
|
RuntimeObject* ___shared_table_lock;
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___default_current_culture;
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___s_DefaultThreadCurrentUICulture;
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___s_DefaultThreadCurrentCulture;
|
|
Dictionary_2_t9FA6D82CAFC18769F7515BB51D1C56DAE09381C3* ___shared_by_number;
|
|
Dictionary_2_tE1603CE612C16451D1E56FF4D4859D4FE4087C28* ___shared_by_name;
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___s_UserPreferredCultureInfoInAppX;
|
|
bool ___IsTaiwanSku;
|
|
};
|
|
struct JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields
|
|
{
|
|
int32_t ___max_nesting_depth;
|
|
RuntimeObject* ___datetime_format;
|
|
RuntimeObject* ___base_exporters_table;
|
|
RuntimeObject* ___custom_exporters_table;
|
|
RuntimeObject* ___base_importers_table;
|
|
RuntimeObject* ___custom_importers_table;
|
|
RuntimeObject* ___array_metadata;
|
|
RuntimeObject* ___array_metadata_lock;
|
|
RuntimeObject* ___conv_ops;
|
|
RuntimeObject* ___conv_ops_lock;
|
|
RuntimeObject* ___object_metadata;
|
|
RuntimeObject* ___object_metadata_lock;
|
|
RuntimeObject* ___type_properties;
|
|
RuntimeObject* ___type_properties_lock;
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___static_writer;
|
|
RuntimeObject* ___static_writer_lock;
|
|
};
|
|
struct JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F_StaticFields
|
|
{
|
|
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___number_format;
|
|
};
|
|
struct Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9_StaticFields
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___fsm_return_table;
|
|
StateHandlerU5BU5D_tA4E04C837AF2BDFE9B351DF6813E6AB954722B93* ___fsm_handler_table;
|
|
};
|
|
struct NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472_StaticFields
|
|
{
|
|
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___invariantInfo;
|
|
};
|
|
struct String_t_StaticFields
|
|
{
|
|
String_t* ___Empty;
|
|
};
|
|
struct UnityTypeBindings_t8B29FCFD0144021BCAE930AB4077026676F186BA_StaticFields
|
|
{
|
|
bool ___registerd;
|
|
};
|
|
struct U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields
|
|
{
|
|
U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* ___U3CU3E9;
|
|
WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* ___U3CU3E9__23_0;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* ___U3CU3E9__24_0;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* ___U3CU3E9__24_1;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* ___U3CU3E9__24_2;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* ___U3CU3E9__24_3;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* ___U3CU3E9__24_4;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* ___U3CU3E9__24_5;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* ___U3CU3E9__24_6;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* ___U3CU3E9__24_7;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* ___U3CU3E9__24_8;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* ___U3CU3E9__24_9;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* ___U3CU3E9__25_0;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* ___U3CU3E9__25_1;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* ___U3CU3E9__25_2;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* ___U3CU3E9__25_3;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* ___U3CU3E9__25_4;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* ___U3CU3E9__25_5;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* ___U3CU3E9__25_6;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* ___U3CU3E9__25_7;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* ___U3CU3E9__25_8;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* ___U3CU3E9__25_9;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* ___U3CU3E9__25_10;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* ___U3CU3E9__25_11;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* ___U3CU3E9__25_12;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* ___U3CU3E9__25_13;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* ___U3CU3E9__25_14;
|
|
WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* ___U3CU3E9__30_0;
|
|
WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* ___U3CU3E9__31_0;
|
|
WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* ___U3CU3E9__32_0;
|
|
};
|
|
struct U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_StaticFields
|
|
{
|
|
U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2* ___U3CU3E9;
|
|
ExporterFunc_1_t66337A5BC3E84B1D048E2D5A3E6B7DA41671BC95* ___U3CU3E9__2_0;
|
|
ImporterFunc_2_tECF771648EC0EB35785D9EE3003167BEBB8C8008* ___U3CU3E9__2_1;
|
|
Action_2_tE5C1059CE8ACEDAC4083A88C76E66DE3E15B8105* ___U3CU3E9__2_2;
|
|
Action_2_t3CFBD6C56B087A7CE032945C0950C5716540158A* ___U3CU3E9__2_4;
|
|
ExporterFunc_1_t68203C504BE983A9A387E0769D39E83F63B0F234* ___U3CU3E9__2_6;
|
|
ExporterFunc_1_t0BDB0977957B702E553434D63D76FD4CBBF79E9D* ___U3CU3E9__2_7;
|
|
ExporterFunc_1_t8DEC56EC9C315918327B728EF33F55CE4D9E0204* ___U3CU3E9__2_8;
|
|
ExporterFunc_1_tAD0CADBFAA1F3669790D9F40D2D389420D24C825* ___U3CU3E9__2_9;
|
|
ExporterFunc_1_t396C38F979C2517DA37B85C04250C0FB38012D32* ___U3CU3E9__2_11;
|
|
ExporterFunc_1_t51D2BA9CE9D91E588EEC4288A798B6F13E55C90B* ___U3CU3E9__2_12;
|
|
};
|
|
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields
|
|
{
|
|
String_t* ___TrueString;
|
|
String_t* ___FalseString;
|
|
};
|
|
struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17_StaticFields
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___s_categoryForLatin1;
|
|
};
|
|
struct DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___s_daysToMonth365;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___s_daysToMonth366;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___MinValue;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___MaxValue;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___UnixEpoch;
|
|
};
|
|
struct Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_StaticFields
|
|
{
|
|
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___Zero;
|
|
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___One;
|
|
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___MinusOne;
|
|
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___MaxValue;
|
|
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___MinValue;
|
|
};
|
|
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_StaticFields
|
|
{
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___enumSeperatorCharArray;
|
|
};
|
|
struct IntPtr_t_StaticFields
|
|
{
|
|
intptr_t ___Zero;
|
|
};
|
|
struct Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974_StaticFields
|
|
{
|
|
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___identityQuaternion;
|
|
};
|
|
struct TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7_StaticFields
|
|
{
|
|
TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___Null;
|
|
};
|
|
struct TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3_StaticFields
|
|
{
|
|
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___Null;
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___s_coreNewLine;
|
|
};
|
|
struct Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_StaticFields
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___zeroVector;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___oneVector;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___upVector;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___downVector;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___leftVector;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___rightVector;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___positiveInfinityVector;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___negativeInfinityVector;
|
|
};
|
|
struct Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_StaticFields
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___zeroVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___oneVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___upVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___downVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___leftVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___rightVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___forwardVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___backVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___positiveInfinityVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___negativeInfinityVector;
|
|
};
|
|
struct Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3_StaticFields
|
|
{
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___zeroVector;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___oneVector;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___positiveInfinityVector;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___negativeInfinityVector;
|
|
};
|
|
struct DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_StaticFields
|
|
{
|
|
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 ___MinValue;
|
|
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 ___MaxValue;
|
|
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 ___UnixEpoch;
|
|
};
|
|
struct Exception_t_StaticFields
|
|
{
|
|
RuntimeObject* ___s_EDILock;
|
|
};
|
|
struct StringWriter_tF48052BE4F980E5C85403221E835768E4156267D_StaticFields
|
|
{
|
|
UnicodeEncoding_t2C90D9E1E55C16081FACA57B229053C1EF05DAF0* ___m_encoding;
|
|
};
|
|
struct DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A_StaticFields
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___s_invariantInfo;
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___s_monthSpaces;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___s_jajpDTFI;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___s_zhtwDTFI;
|
|
};
|
|
struct JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD_StaticFields
|
|
{
|
|
RuntimeObject* ___parse_table;
|
|
};
|
|
struct Type_t_StaticFields
|
|
{
|
|
Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235* ___s_defaultBinder;
|
|
Il2CppChar ___Delimiter;
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___EmptyTypes;
|
|
RuntimeObject* ___Missing;
|
|
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterAttribute;
|
|
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterName;
|
|
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterNameIgnoreCase;
|
|
};
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) Delegate_t* m_Items[1];
|
|
|
|
inline Delegate_t* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline Delegate_t** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, Delegate_t* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline Delegate_t* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline Delegate_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, Delegate_t* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
struct PropertyInfoU5BU5D_tD81C248B41D0C76207C42DB9C332DC79F490B1D7 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) PropertyInfo_t* m_Items[1];
|
|
|
|
inline PropertyInfo_t* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline PropertyInfo_t** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, PropertyInfo_t* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline PropertyInfo_t* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline PropertyInfo_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, PropertyInfo_t* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
struct ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F* m_Items[1];
|
|
|
|
inline ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F** 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, ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
struct FieldInfoU5BU5D_t50D47CBECF1AEB152F555803E3329D9E34DBF8D8 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) FieldInfo_t* m_Items[1];
|
|
|
|
inline FieldInfo_t* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline FieldInfo_t** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, FieldInfo_t* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline FieldInfo_t* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline FieldInfo_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, FieldInfo_t* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) Type_t* m_Items[1];
|
|
|
|
inline Type_t* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline Type_t** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, Type_t* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline Type_t* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline Type_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, Type_t* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) RuntimeObject* m_Items[1];
|
|
|
|
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);
|
|
}
|
|
};
|
|
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) int32_t m_Items[1];
|
|
|
|
inline int32_t GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline int32_t* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, int32_t value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) Il2CppChar m_Items[1];
|
|
|
|
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;
|
|
}
|
|
};
|
|
struct StateHandlerU5BU5D_tA4E04C837AF2BDFE9B351DF6813E6AB954722B93 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* m_Items[1];
|
|
|
|
inline StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603** 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, StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* KeyValuePair_2_get_Key_mBD8EA7557C27E6956F2AF29DA3F7499B2F51A282_gshared_inline (KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* KeyValuePair_2_get_Value_mC6BD8075F9C9DDEF7B4D731E5C38EC19103988E7_gshared_inline (KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m0D5C3E0BE2D37252D3F4E0F0EA9A13C9458D4950_gshared (KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230* __this, RuntimeObject* ___0_key, RuntimeObject* ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m192C3D32AF3678C97E6520292F2C32629E9A905B_gshared (List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_mCEB6C060836E9A15E6584CAFDA2353C41305B5A2_gshared (Dictionary_2_t2AB2F09285677DDC3A0A75E97B5A7492F1E236C9* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m815B02A88DDC854D31CBCC02495BCB38F8132F91_gshared (Dictionary_2_t69734EC5CF354F3B1434F2527067B631D09E1D27* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_mA3312DE46C49623D0AA69BF312E3D826D541F80D_gshared (Dictionary_2_tD2936860D0DBBB809F916DD79F6A1FDA961C3185* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mAAC32D144B3A74FCD65A76B4CA7CB1D2024A1E3A_gshared (List_1_t3F16D5D88FAFD68886DA28A9E82E74E30BE371F8* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stack_1__ctor_mF63AE96E8925749CDACE05B89002A389DDD748D1_gshared (Stack_1_t3197E0F5EA36E611B259A88751D31FC2396FE4B6* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stack_1_Push_mF7CC12CF73D9D4B66FFA2E2D264270212CAB3EDA_gshared (Stack_1_t3197E0F5EA36E611B259A88751D31FC2396FE4B6* __this, int32_t ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m92E9AB321FBD7147CA109C822D99C8B0610C27B7_gshared (Dictionary_2_tA75D1125AC9BE8F005BA9B868B373398E643C907* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stack_1_Clear_mEE1C6E0AF654AE01D41D12DAF62217D4FE3930E0_gshared (Stack_1_t3197E0F5EA36E611B259A88751D31FC2396FE4B6* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Stack_1_Peek_m919AA48BFC239B260BB6A0639B8E027B60CB8B66_gshared (Stack_1_t3197E0F5EA36E611B259A88751D31FC2396FE4B6* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Stack_1_Pop_m59DFD2B5EC8D9044532E0AD0BDB20DB33BA76748_gshared (Stack_1_t3197E0F5EA36E611B259A88751D31FC2396FE4B6* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stack_1__ctor_m70E8EDA96A608CE9BAB7FC8313B233AADA573BD4_gshared (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stack_1_Push_m709DD11BC1291A905814182CF9A367DE7399A778_gshared (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* __this, RuntimeObject* ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stack_1_Clear_mD550E89582979ECB0D6E6D68F0237FC14708BE85_gshared (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Stack_1_Pop_m2AFF69249659372F07EE25817DBCAFE74E1CF778_gshared (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Stack_1_get_Count_mD08AE71D49787D30DDD9D484BCD323D646744D2E_gshared_inline (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Stack_1_Peek_mF0ECF6A61726B66E6D9B33D8C4DEAA47E586E6E4_gshared (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExporterFunc_1__ctor_mED6EA70B9BD4808F5FD6361E389AB3940CEF31DD_gshared (ExporterFunc_1_t179E18CCF068EB9C0EF09D7EC1E331160127D98B* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper_RegisterExporter_TisRuntimeObject_mCA76CDF2FDE789952A2829E26EFAECD2464D36E5_gshared (ExporterFunc_1_t179E18CCF068EB9C0EF09D7EC1E331160127D98B* ___0_exporter, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImporterFunc_2__ctor_m48D4CB5DE3875098F7BD5B013A17478FF1F58F7B_gshared (ImporterFunc_2_tC2D95C1AAECB3A0DFA2C5D07F032E854D7D716F0* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper_RegisterImporter_TisRuntimeObject_TisRuntimeObject_m7B84BCC70E088E97E7A456DD4309B9F44C6130D5_gshared (ImporterFunc_2_tC2D95C1AAECB3A0DFA2C5D07F032E854D7D716F0* ___0_importer, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2__ctor_m4C7EDA189ECC1550C630E83162A98739D52A5E09_gshared (Action_2_t8ECF3F2290D85497ADD0537A5F3D76045870EE0A* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExporterFunc_1__ctor_mC27B1CFD9CA5B0F844AA28557CCBC9D685133A52_gshared (ExporterFunc_1_t61321F5C3918ED8EDB361F431B32F1983072DBD2* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper_RegisterExporter_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_m06FB369425160BCF1EBE76D0855E12FE17E5CC3A_gshared (ExporterFunc_1_t61321F5C3918ED8EDB361F431B32F1983072DBD2* ___0_exporter, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2__ctor_m0BFDF0BD56829CEBC98B6517B48EF7B0D1771D96_gshared (Action_2_t7493708BA3F87F84FAB65917DE69C3FD00878E6C* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExporterFunc_1__ctor_mE7E4838007A5EACD88B96880AAB772AB8AE07164_gshared (ExporterFunc_1_t81E6D3B3E845005B652EE5F2CE219DAE1518AB83* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper_RegisterExporter_TisVector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_mA923D9A8735FFE1B2862156D5922071902E1F849_gshared (ExporterFunc_1_t81E6D3B3E845005B652EE5F2CE219DAE1518AB83* ___0_exporter, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExporterFunc_1__ctor_mDEED09A4B9D172DEE0B8806033392DCCC99671B1_gshared (ExporterFunc_1_t68203C504BE983A9A387E0769D39E83F63B0F234* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper_RegisterExporter_TisVector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3_mD3678978F84EC31F2276396FFD53E95D6D36A7A3_gshared (ExporterFunc_1_t68203C504BE983A9A387E0769D39E83F63B0F234* ___0_exporter, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExporterFunc_1__ctor_mB20FE33C36F6927F9F6CB6410E5CA92377A16075_gshared (ExporterFunc_1_t0BDB0977957B702E553434D63D76FD4CBBF79E9D* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper_RegisterExporter_TisQuaternion_tDA59F214EF07D7700B26E40E562F267AF7306974_m13A2ECD7CDFAC21C1AF4B64A3B5AB4E971302FE0_gshared (ExporterFunc_1_t0BDB0977957B702E553434D63D76FD4CBBF79E9D* ___0_exporter, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExporterFunc_1__ctor_mFD7754C078ECF99E821CDAE437AA04DEEA2B7E08_gshared (ExporterFunc_1_t8DEC56EC9C315918327B728EF33F55CE4D9E0204* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper_RegisterExporter_TisColor_tD001788D726C3A7F1379BEED0260B9591F440C1F_mE28CA3EECB71DB04C370B4811C0C0959B999C3CF_gshared (ExporterFunc_1_t8DEC56EC9C315918327B728EF33F55CE4D9E0204* ___0_exporter, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExporterFunc_1__ctor_m2C36E5FEB9053EBAD33271E94443FF619AB288B7_gshared (ExporterFunc_1_tAD0CADBFAA1F3669790D9F40D2D389420D24C825* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper_RegisterExporter_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_mC16F18097E95FC3BC0AE9313B7B8CAE49480E1AD_gshared (ExporterFunc_1_tAD0CADBFAA1F3669790D9F40D2D389420D24C825* ___0_exporter, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExporterFunc_1__ctor_m230AB5483E37DB386D38028B234D3E53276B7253_gshared (ExporterFunc_1_tFCF938C955AC8C9EF39571CF0A922FB4B50E00D4* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper_RegisterExporter_TisBounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3_m3CF06EF834F36C4AED2171CE91C61DA8DC8A05FE_gshared (ExporterFunc_1_tFCF938C955AC8C9EF39571CF0A922FB4B50E00D4* ___0_exporter, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExporterFunc_1__ctor_m2A20336A95F86660B5739C8C99B12AFB77852CED_gshared (ExporterFunc_1_t396C38F979C2517DA37B85C04250C0FB38012D32* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper_RegisterExporter_TisRect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D_m57356BB4D41D22B85D5C98568FACE4347B0583B3_gshared (ExporterFunc_1_t396C38F979C2517DA37B85C04250C0FB38012D32* ___0_exporter, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_2_Invoke_m3CE082491EEF378249C13870E46EE164D7908A9C_gshared_inline (Action_2_t8ECF3F2290D85497ADD0537A5F3D76045870EE0A* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_2_Invoke_m719475FEF89235EA7C17D75BF384DE2B9545839B_gshared_inline (Action_2_t7493708BA3F87F84FAB65917DE69C3FD00878E6C* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method) ;
|
|
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonData_EnsureCollection_mFB01D813BC8765113931EF533783BA5BC764C283 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonData_EnsureDictionary_m402293ECDF1F18AE8CA8259A102E698ADD3A8EB2 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonData_get_Count_m59A660054922D869F9CC95947848D1829AD2680C (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method) ;
|
|
inline void List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
|
|
}
|
|
inline String_t* KeyValuePair_2_get_Key_mB20EAD0A1F549096009239692374BA2D53CC56C8_inline (KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( String_t* (*) (KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28*, const RuntimeMethod*))KeyValuePair_2_get_Key_mBD8EA7557C27E6956F2AF29DA3F7499B2F51A282_gshared_inline)(__this, method);
|
|
}
|
|
inline void List_1__ctor_m71FFC1A9C81BB314F91B10BE885521A22E708BF8 (List_1_tF2E1AB00AE46093D3DBEBFF23EE42498976376CA* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tF2E1AB00AE46093D3DBEBFF23EE42498976376CA*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
|
|
}
|
|
inline JsonData_t3C51D89A19D30A47A74617107D861959322307F1* KeyValuePair_2_get_Value_m1AF62875E8518A1790EFF3FBB65608529D80A79E_inline (KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( JsonData_t3C51D89A19D30A47A74617107D861959322307F1* (*) (KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28*, const RuntimeMethod*))KeyValuePair_2_get_Value_mC6BD8075F9C9DDEF7B4D731E5C38EC19103988E7_gshared_inline)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonData_get_IsArray_m37BA31D547428C52C0F4A1923598DC36124033DC (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonData_get_IsBoolean_mA02E81165515B6A3FC71FC03A85734E9905FE450 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonData_get_IsDouble_m36490E724869C57CC7CCDBA30430FCB5A3E4602A (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonData_get_IsInt_m094B3A225B2B50F0123D1BAB1012D5E652C200B7 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonData_get_IsLong_m082D69215FD4794AF4B026BFEB5BF72A6FD1CEBD (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonData_get_IsObject_mF608D1B4942FFA43A6E4D27DAD8243343AAEC0D3 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonData_get_IsString_m5F2D19AC3F87FB3D76F1FDAA9D6B2CF3564977FF (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonData_EnsureList_m6FCDB06F594222F9584291F20B3DA2FF4E5CE718 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, String_t* ___0_message, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonData_t3C51D89A19D30A47A74617107D861959322307F1* JsonData_ToJsonData_mD42F841238609F7087B993D39CC6EC3F39F8BACC (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonData_set_Item_m6FE3B6A0E6C79F7B3661945A402CBEAB66371202 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, String_t* ___0_prop_name, JsonData_t3C51D89A19D30A47A74617107D861959322307F1* ___1_value, const RuntimeMethod* method) ;
|
|
inline void KeyValuePair_2__ctor_mF8563179C2DDD7A9FDB625D79ABD337FB772A683 (KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28* __this, String_t* ___0_key, JsonData_t3C51D89A19D30A47A74617107D861959322307F1* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28*, String_t*, JsonData_t3C51D89A19D30A47A74617107D861959322307F1*, const RuntimeMethod*))KeyValuePair_2__ctor_m0D5C3E0BE2D37252D3F4E0F0EA9A13C9458D4950_gshared)(__this, ___0_key, ___1_value, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonData_set_Item_m874D334A667986B4FBC1515687EF6B551D71FAE8 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, int32_t ___0_index, JsonData_t3C51D89A19D30A47A74617107D861959322307F1* ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1 (String_t* ___0_a, String_t* ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2 (RuntimeObject* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonData__ctor_mEB4115AF975189279CB57527850DDAD9230D3D2B (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, bool ___0_boolean, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonData__ctor_m8A0A37263CACAC98E364B72BDF9929433707D6F7 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, double ___0_number, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonData__ctor_m53BBD8B0DF27C525C5CD4BFD9E5C2EC09A106F78 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, int32_t ___0_number, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonData__ctor_mB54717B470C1218DF181039F1A12F9BACD000462 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, int64_t ___0_number, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonData__ctor_m9FAA8A904760EDD166AA91A84184FB51FB68E3F3 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, String_t* ___0_str, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644 (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* __this, String_t* ___0_message, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162 (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* __this, String_t* ___0_message, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonData_ToJson_m658608ADAC4FD37098A16F86171C6BEDAE6E4C30 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonData_ToJson_m179225C968B6EE68507BB3694882E41DA05DA4C4 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___0_writer, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonData_Add_mA88DA1756863A2C121F7D72986EDF2EF6E0B88E1 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, RuntimeObject* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OrderedDictionaryEnumerator__ctor_mE835230F6C9BF7EBC082A282BE74976A450B07A1 (OrderedDictionaryEnumerator_t557577F1E3C3DC7E5A3BFA6B12F2E0F7921D9C18* __this, RuntimeObject* ___0_enumerator, const RuntimeMethod* method) ;
|
|
inline void Dictionary_2__ctor_m69403AE90D12CA520ABB728A1557B42580BBC7DC (Dictionary_2_tDF79546961566D2D6F7C4155F7ED851428AA9931* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_tDF79546961566D2D6F7C4155F7ED851428AA9931*, const RuntimeMethod*))Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared)(__this, method);
|
|
}
|
|
inline void List_1__ctor_m53AA73BE6E2FF2045F347EBCEE46E8E4EE524E5F (List_1_tFC3915CEAB0CCCC11D0AB7F2D3717177D1111111* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tFC3915CEAB0CCCC11D0AB7F2D3717177D1111111*, const RuntimeMethod*))List_1__ctor_m192C3D32AF3678C97E6520292F2C32629E9A905B_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonData__ctor_mA02A77C55F31BBE7F62D84ADEAC445BB4D6BF6F0 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Write_mC6C394BE18186CAEB8597055057A1AECDEE56916 (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, String_t* ___0_str, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Write_mFACCB1B6087CE1C66A68CE3BA2AF9844F7F31D8C (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, bool ___0_boolean, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Write_m657048A70C011FC85FD3773A026EC0B21462AB4D (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, double ___0_number, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Write_m3A3246FEFCA9BCEB4F3E7D2D5AC0FF49B8BBD3A7 (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, int32_t ___0_number, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Write_m500833BCB5B21114C1C8A3FA7DAAF6A1EAD2A3D4 (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, int64_t ___0_number, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WriteArrayStart_mF4AB20790AB8817BCCEEB5FA649832890D5AADEB (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonData_WriteJson_mD307B7581AE536A21EA9F30B270BC5393B335356 (RuntimeObject* ___0_obj, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___1_writer, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WriteArrayEnd_mE8262D6AC279897DA41D549CE12A8EA3054777B5 (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WriteObjectStart_m90F3A0A19C03EA7CF90017768E3FA217E4038688 (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* DictionaryEntry_get_Key_m09845C00732E530E6FCB9042079E90D3912215FE_inline (DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WritePropertyName_m5646EF1771ABCFCCAAD52086AAE3387579E158E0 (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, String_t* ___0_property_name, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* DictionaryEntry_get_Value_m75FD18FE968AE131F28AA2CB0DF4895EBA39075E_inline (DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WriteObjectEnd_m7B1F539A650AC9AA9413B9C3FF1DAA27834141AF (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyNotFoundException__ctor_mBD1D75B73DD5D7C6C72E4F7A021778837B6F2C6B (KeyNotFoundException_tCE416EC9BCA9F396A3DFFF86D1B5209BA876079E* __this, String_t* ___0_message, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Equals_mCD5F35DEDCAFE51ACD4E033726FC2EF8DF7E9B4D (String_t* __this, String_t* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int32_Equals_mC819D19A661B95BE253FB1769FD4D91961D20722 (int32_t* __this, int32_t ___0_obj, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int64_Equals_mBAEB8FFBE12F6A5876473B4B40E1BD316658873E (int64_t* __this, int64_t ___0_obj, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Double_Equals_mAB526D98719C44EA42107A297B23A739F2E14138 (double* __this, double ___0_obj, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_Equals_mC020D5EB2F64274CD623E8449E8777A70BEC6CC9 (bool* __this, bool ___0_obj, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringWriter__ctor_m072DFF5FFA84EBA7C38B282975D053E738C56E6D (StringWriter_tF48052BE4F980E5C85403221E835768E4156267D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter__ctor_m59AEC417CBCF6AB49675BCCFD00F274C31D3585E (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___0_writer, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_set_Validate_mA5EE11772D5EEEDBF8653894C89D686A6B184F7B (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonWriter_get_Validate_m28498F5A80E666297849E7C4F723F48A0B9A4DF6 (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Boolean_ToString_m6646C8026B1DF381A1EE8CD13549175E9703CC63 (bool* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Double_ToString_m7499A5D792419537DCB9470A3675CEF5117DE339 (double* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5 (int32_t* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int64_ToString_m284E4E55662818E38654309A41C2B07CD436F36B (int64_t* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB OrderedDictionaryEnumerator_get_Entry_mD2E0B7A30035474EB30FC5AB71B4C299E0C9124A (OrderedDictionaryEnumerator_t557577F1E3C3DC7E5A3BFA6B12F2E0F7921D9C18* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DictionaryEntry__ctor_m2768353E53A75C4860E34B37DAF1342120C5D1EA (DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB* __this, RuntimeObject* ___0_key, RuntimeObject* ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ApplicationException__ctor_m481B0251BEC0BF28EAAF3FCB11A47EFCB2E56E2A (ApplicationException_tA744BED4E90266BD255285CD4CF909BAB3EE811A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8 (String_t* ___0_format, RuntimeObject* ___1_arg0, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ApplicationException__ctor_mE51100DFCDB0A0DF23B482CC43EC8E396BE7BE82 (ApplicationException_tA744BED4E90266BD255285CD4CF909BAB3EE811A* __this, String_t* ___0_message, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ApplicationException__ctor_m924E77609BAFA0595453363EB8B7BCCBA03B32DD (ApplicationException_tA744BED4E90266BD255285CD4CF909BAB3EE811A* __this, String_t* ___0_message, Exception_t* ___1_innerException, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC (Type_t* ___0_left, Type_t* ___1_right, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57 (RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ___0_handle, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* ArrayMetadata_get_ElementType_m95F881ADA6D1906BDDAD52E328AEFF30ECA46226 (ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayMetadata_set_ElementType_m5832C95BFE5A1BAE4F2A604A74935918F18C6FB3 (ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D* __this, Type_t* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ArrayMetadata_get_IsArray_mF60D16C73C7A336444DAC740B3D6A84AD4AA40D2 (ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayMetadata_set_IsArray_m80C5694C47BE321F66F82FC47D554982E5F47AEE (ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ArrayMetadata_get_IsList_m65D206DDD4278B4A0DF41E61799AE51EAA23BA7F (ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayMetadata_set_IsList_mE4168A68921BFBA7306369E7BFDFD10CC59083C2 (ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* ObjectMetadata_get_ElementType_mEC34F3956588C3B5C7EB07A112A7797BF8935BEE (ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectMetadata_set_ElementType_m5AF14DA94DE8B13F68D6913AA0487B6C412A9355 (ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661* __this, Type_t* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectMetadata_get_IsDictionary_mC66AF9CA841EC0386F35FAD3DA899EB5C0DB082E (ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectMetadata_set_IsDictionary_mA0408F3F69CBF5C14DEC1CD12FBD4B9830F91151 (ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ObjectMetadata_get_Properties_m8E9F8EDA9F12FD110E25D5785F084C1A8B393805 (ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectMetadata_set_Properties_m6DD2CBC23136F0B020069E54BDF7A1BCCCF31FE6 (ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661* __this, RuntimeObject* ___0_value, const RuntimeMethod* method) ;
|
|
inline void Dictionary_2__ctor_m186154EAD1DF359706A7CF36C6BD7F5ACC47CFB7 (Dictionary_2_tB42EF32D51D7595BF925017BF4A743C5B97C9053* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_tB42EF32D51D7595BF925017BF4A743C5B97C9053*, const RuntimeMethod*))Dictionary_2__ctor_mCEB6C060836E9A15E6584CAFDA2353C41305B5A2_gshared)(__this, method);
|
|
}
|
|
inline void Dictionary_2__ctor_mFDB6B4CAA4E2AE6E8C2EA0D6D7DE7172BF609E65 (Dictionary_2_tD786692960EC82E79B160F75E780BA867D6C1BBD* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_tD786692960EC82E79B160F75E780BA867D6C1BBD*, const RuntimeMethod*))Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared)(__this, method);
|
|
}
|
|
inline void Dictionary_2__ctor_m3D7546A6DF9CDDA353873ECE10E542AD6406A825 (Dictionary_2_tD8EF042176D7CCA0618F7F42494A6AAD68478914* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_tD8EF042176D7CCA0618F7F42494A6AAD68478914*, const RuntimeMethod*))Dictionary_2__ctor_m815B02A88DDC854D31CBCC02495BCB38F8132F91_gshared)(__this, method);
|
|
}
|
|
inline void Dictionary_2__ctor_mB364E5DE0CF679AC362662B5C96B6A6FB6B12AB8 (Dictionary_2_tAA76A881C8942A9F8F63F6BEE2A572DCF133AB93* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_tAA76A881C8942A9F8F63F6BEE2A572DCF133AB93*, const RuntimeMethod*))Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter__ctor_mFF4C2DE4CAD061714750C2D87291FCF9D0AE4EF0 (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* DateTimeFormatInfo_get_InvariantInfo_m24804C20A94D2952323C82193D4A59ADF171C8AA (const RuntimeMethod* method) ;
|
|
inline void Dictionary_2__ctor_m224AC90EC65DF7D2F4D85F0DDEC5FECC74920277 (Dictionary_2_t13D69527163788C316AD7673426765F0A3E018A0* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_t13D69527163788C316AD7673426765F0A3E018A0*, const RuntimeMethod*))Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared)(__this, method);
|
|
}
|
|
inline void Dictionary_2__ctor_m95FEBED8F3E1B9BB1282B2C7E18C736BDC259D49 (Dictionary_2_t51F843E5AA0162639CFD12BF0859C4C0FF822998* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_t51F843E5AA0162639CFD12BF0859C4C0FF822998*, const RuntimeMethod*))Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper_RegisterBaseExporters_m1866D55E6CA556A86EB3F4E4C484706A596A34D9 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper_RegisterBaseImporters_m108AF061EDD0D019D96B7276A59E909010EF6F79 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityTypeBindings_Register_m80C74CBD12EF00CFE372EAA26A629B8005F88C18 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673 (Type_t* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Type_GetInterface_m536A2DE796291194A1EAE035EE3742D3A220854E (Type_t* __this, String_t* ___0_name, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Inequality_m83209C7BB3C05DFBEA3B6199B0BEFE8037301172 (Type_t* ___0_left, Type_t* ___1_right, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyInfoU5BU5D_tD81C248B41D0C76207C42DB9C332DC79F490B1D7* Type_GetProperties_m090A935168ED8AEE2CE95BDF6D69F3AAAF71B2D6 (Type_t* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6 (String_t* ___0_a, String_t* ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA (RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149 (RuntimeObject* ___0_obj, bool* ___1_lockTaken, const RuntimeMethod* method) ;
|
|
inline void Dictionary_2__ctor_mE6A439BEA4E21EF9C6E01E19390EE90B680DD348 (Dictionary_2_tD88E8C222DEDEFACEF548AAB380B9ED228B42954* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_tD88E8C222DEDEFACEF548AAB380B9ED228B42954*, const RuntimeMethod*))Dictionary_2__ctor_mA3312DE46C49623D0AA69BF312E3D826D541F80D_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FieldInfoU5BU5D_t50D47CBECF1AEB152F555803E3329D9E34DBF8D8* Type_GetFields_mC0570FF1986A6D93FA7976303B44B2FF8D0BC77F (Type_t* __this, const RuntimeMethod* method) ;
|
|
inline void List_1__ctor_mAAC32D144B3A74FCD65A76B4CA7CB1D2024A1E3A (List_1_t3F16D5D88FAFD68886DA28A9E82E74E30BE371F8* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t3F16D5D88FAFD68886DA28A9E82E74E30BE371F8*, const RuntimeMethod*))List_1__ctor_mAAC32D144B3A74FCD65A76B4CA7CB1D2024A1E3A_gshared)(__this, method);
|
|
}
|
|
inline void Dictionary_2__ctor_m57E4DE0721BD2D645AF3036D988B131AAB138227 (Dictionary_2_tB7188876A70AC81C939F78F9171156E43ED476CB* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_tB7188876A70AC81C939F78F9171156E43ED476CB*, const RuntimeMethod*))Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t* Type_GetMethod_m9E8E55EC8316CE8A2851B62AD4C73E841FEAC2EA (Type_t* __this, String_t* ___0_name, TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___1_types, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonReader_Read_mD8D28369934A79C6A0125279F425E48D1D35AE7B (JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonReader_get_Token_m519B39A4B87C3A9A7B424AECAE7FDA64B946E975 (JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Nullable_GetUnderlyingType_mA8FA7F61D3B8E56EB4E40378020FD2854838BDF8 (Type_t* ___0_nullableType, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsClass_mACC1E0E79C9996ADE9973F81971B740132B64549 (Type_t* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonException__ctor_m400377A21C20F6CAEE97CE7958869D819BB94BB5 (JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76* __this, String_t* ___0_message, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonReader_get_Value_mF219BCB43B2F020C1B67935AA63A40ECD1EE4C05 (JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3 (RuntimeObject* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* ImporterFunc_Invoke_m143089455BBD8920FDB4F1B683E685B50FB8077A_inline (ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* __this, RuntimeObject* ___0_input, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enum_ToObject_mD898E0819FA640BC4E98924613B5DBD41146D1FF (Type_t* ___0_enumType, RuntimeObject* ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t* JsonMapper_GetConvOp_mA86D07E06B99E4CA3C35F70E294950C288086F8F (Type_t* ___0_t1, Type_t* ___1_t2, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodInfo_op_Inequality_mB73597A1FCC2F906DBCADDEC68A1B7D5B7E89FA8 (MethodInfo_t* ___0_left, MethodInfo_t* ___1_right, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MethodBase_Invoke_mEEF3218648F111A8C338001A7804091A0747C826 (MethodBase_t* __this, RuntimeObject* ___0_obj, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___1_parameters, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mA0534D6E2AE4D67A6BD8D45B3321323930EB930C (String_t* ___0_format, RuntimeObject* ___1_arg0, RuntimeObject* ___2_arg1, RuntimeObject* ___3_arg2, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper_AddArrayMetadata_mE3410659CA2904A58B6870D8AD254B2AC926871B (Type_t* ___0_type, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Activator_CreateInstance_mFF030428C64FDDFACC74DFAC97388A1C628BFBCF (Type_t* ___0_type, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayList__ctor_m07DC369002304B483B9FC41DBDAF4A25AC3C9F80 (ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonMapper_ReadValue_m12EFFE983BBE0A9254AA072EFEFB7A6156F094E6 (Type_t* ___0_inst_type, JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* ___1_reader, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray* Array_CreateInstance_m13B202130951A03AF5F52470A19E17D3AD2A8983 (Type_t* ___0_elementType, int32_t ___1_length, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_SetValue_mE9507B366ED84E91E92BF32649D36916F96C67B8 (RuntimeArray* __this, RuntimeObject* ___0_value, int32_t ___1_index, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper_AddObjectMetadata_m9A5768B60C9F0965DA9CD72412DE5371AA9A756C (Type_t* ___0_type, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FieldInfo_SetValue_mD8C0DA3A1A0CFF073F971622BBDBAAB6688B4B6C (FieldInfo_t* __this, RuntimeObject* ___0_obj, RuntimeObject* ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonReader_get_SkipNonMembers_mD965BE953D678EA7BE0DBC707DFFB8BB7ADA1531 (JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987 (String_t* ___0_format, RuntimeObject* ___1_arg0, RuntimeObject* ___2_arg1, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper_ReadSkip_m7F6CAE3D09563D1EB8937A3C7D4E89B3D7DA08A0 (JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* ___0_reader, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* WrapperFactory_Invoke_mDEC930B07F8B4652EBECE1E6386E92701A93C7D5_inline (WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonMapper_ReadValue_m1E79EF3FC740E018A6C14D7D4A5D9FBE12239856 (WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* ___0_factory, JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* ___1_reader, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WrapperFactory__ctor_mDCB80755422A0F810CF4702BBE931A9B4AE5C809 (WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonMapper_ToWrapper_m28AEBBDAD4A1AC70073753BC264C59020323B8A1 (WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* ___0_factory, JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* ___1_reader, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExporterFunc__ctor_mE42C7A27446C000BC923E32171289DA0E9CDC5D2 (ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImporterFunc__ctor_m630470C9B15EC4550BDC9B0A860B2F9C3B66C029 (ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper_RegisterImporter_m091B42BD8AE8DBD08A21E950E11677E1B87363ED (RuntimeObject* ___0_table, Type_t* ___1_json_type, Type_t* ___2_value_type, ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* ___3_importer, const RuntimeMethod* method) ;
|
|
inline void Dictionary_2__ctor_m7B6BA98348249476333A6F6C3EFB7E2ABAEF49A5 (Dictionary_2_t9017400E4435187C1FB3841B4F5843B94836A625* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_t9017400E4435187C1FB3841B4F5843B94836A625*, const RuntimeMethod*))Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* JsonWriter_get_TextWriter_m8C5C9441F52C2813A2A3A1834E7A8A3AF2CF875F (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Write_mC98F01D8E7A98604CF52F7438A047C559126FE29 (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, float ___0_number, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Array_GetEnumerator_mDB7E2AF23F2BDC715D429C71CA3B8D0151F0DC1E (RuntimeArray* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper_WriteValue_m143881E655EEAE7440BFE564E13A2580A021DBDE (RuntimeObject* ___0_obj, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___1_writer, bool ___2_writer_is_private, int32_t ___3_depth, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* CultureInfo_get_InvariantCulture_mD1E96DC845E34B10F78CB744B0CB5D7D63CEB1E6 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Convert_ToString_m833ABF9C901B707B28FB10DEBFCC511A87E6C827 (RuntimeObject* ___0_value, RuntimeObject* ___1_provider, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ExporterFunc_Invoke_mE96AA8DA43B26B809D4D5D09A1A22966C81D2BDD_inline (ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* __this, RuntimeObject* ___0_obj, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___1_writer, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Enum_GetUnderlyingType_mEDDDC2C9F74ECC841E65E401C3703D59C37CBB05 (Type_t* ___0_enumType, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Write_mA2318C6CCFB4A565564457D435FF8EDEDB0F6EAB (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, uint64_t ___0_number, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper_AddTypeProperties_m24B07F9D8AE8CE6C178AF8E6FD44BDF6A4A84389 (Type_t* ___0_type, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Reset_mCFA289C24C9ECEE98AD50E970F0D1F032F7E1989 (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader__ctor_m796FB622ADB958C9EC9B9F937C12B72B6424DE3A (JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* __this, TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___0_reader, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonMapper_ToWrapper_mA6DFAACCFE4197B6B71E3AB7B325EF9C5D0739E6 (WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* ___0_factory, String_t* ___1_json, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader__ctor_mA7B3448630453E385BCAADCA985410AFFCE4ACC3 (JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* __this, String_t* ___0_json_text, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_mF25B9BFAB5148748E869E737C327A39D588D475B (U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMockWrapper__ctor_m3BE3D4DCA8629B8339CD51D1A7CF9F519376A641 (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_mD8869793A34ED86D38EFDF4BFCDD8D03FBBCCAB6 (uint8_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Convert_ToString_m8270C8361D2796C5C4659D441829CAFEEFBAC91C (Il2CppChar ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Convert_ToString_m942B26CABBBFDCE9F1E647B15CA98F03D50976A0 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_value, RuntimeObject* ___1_provider, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Write_m2042A55B478D11A2C4BB399CE96C17DB3D85133A (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___0_number, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m9FD81A0DC7D2A34B74068ACA2F311270937DA2A2 (int8_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m708CB4FF71A3D4E08CBAAF70F290D093BD80AFCC (int16_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m350A3CBA3E031A3D53D14062D7E4ABB4A33F5438 (uint16_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_m91C774E0D3AA8368D12AB8E2036E823C4FA9CB92 (uint32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTimeOffset_ToString_m4B5BB65E069D2146E808A1CE5F424ACA2F4D2281 (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, String_t* ___0_format, RuntimeObject* ___1_formatProvider, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_mB200A29D6E5CE42D564544DF1DC8852BF3582833 (int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_m53C3A45C87A06F25957619222B04EABFD214373C (int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m96FAEEA01C1BA082BB3925CC2099C0591DBF632A (int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_mA336C42E413A5559B3F47FCD8B45EDB538693E63 (int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_mF65D8227B8B6F0E30A135BC5F01F1562455AD382 (int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_mA3ABC9268BA473D6F1C7801248D3200734180B2B (int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_m3BD840FA8B5073EDD04AD3D3A044785EB00511A3 (int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_mE54B145DE1F8A182C3D1A66AEF3A95CB399C28CE (int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Convert_ToDouble_m21A92C91FFDA003BD27748AA55CA0A7D6C0E6694 (int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Convert_ToDecimal_mAF1D2181BB8C5D3F25C0963245437B4AF4E6C575 (double ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_mF6ADEF60A6A97E9E7E410D8D15B26F2D5995151E (double ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_m8754C042D71DB6C81EB54D85B73B7EC2710E4FA0 (int64_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Convert_ToChar_m1F2BBA9AD900A2570DE55F3E315BA7D9277E8230 (String_t* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D Convert_ToDateTime_mA5FF0ECBE84ECB78B337E4E101423CC9AA95C8C3 (String_t* ___0_value, RuntimeObject* ___1_provider, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 DateTimeOffset_Parse_m8424EADCF014945BF1C47215B851C735B26BC341 (String_t* ___0_input, RuntimeObject* ___1_formatProvider, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonData__ctor_m6811B52CF3A742B6E425A0C8C02A7F475EC70C22 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Lexer_get_AllowComments_m0810E49622D9958F3C841466EEE6A9695B09F8AB (Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Lexer_set_AllowComments_mD446284CCEBEE8C862E32DCC4C3503D0BA8AF25A (Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Lexer_get_AllowSingleQuotedStrings_m1A632DD60FDED6764AEF678AA716DDB98103A763 (Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Lexer_set_AllowSingleQuotedStrings_mA18FE918B277D75318D4DB37638C04173C05A305 (Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonReader_PopulateParseTable_m8BEAB08A46464F43834962A9CE305162826975E1 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringReader__ctor_m72556EC1062F49E05CF41B0825AC7FA2DB2A81C0 (StringReader_t1A336148FF22A9584E759A9D720CC96C23E35DD8* __this, String_t* ___0_s, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader__ctor_mDC4C842CE01B549E193647B6BFEE5420187C446A (JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* __this, TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___0_reader, bool ___1_owned, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* __this, String_t* ___0_paramName, const RuntimeMethod* method) ;
|
|
inline void Stack_1__ctor_mF63AE96E8925749CDACE05B89002A389DDD748D1 (Stack_1_t3197E0F5EA36E611B259A88751D31FC2396FE4B6* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Stack_1_t3197E0F5EA36E611B259A88751D31FC2396FE4B6*, const RuntimeMethod*))Stack_1__ctor_mF63AE96E8925749CDACE05B89002A389DDD748D1_gshared)(__this, method);
|
|
}
|
|
inline void Stack_1_Push_mF7CC12CF73D9D4B66FFA2E2D264270212CAB3EDA (Stack_1_t3197E0F5EA36E611B259A88751D31FC2396FE4B6* __this, int32_t ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Stack_1_t3197E0F5EA36E611B259A88751D31FC2396FE4B6*, int32_t, const RuntimeMethod*))Stack_1_Push_mF7CC12CF73D9D4B66FFA2E2D264270212CAB3EDA_gshared)(__this, ___0_item, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Lexer__ctor_mEF8BD28E77BCC5B98C34C9CE51CD2DCF786CA5A9 (Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* __this, TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___0_reader, const RuntimeMethod* method) ;
|
|
inline void Dictionary_2__ctor_mF37C098D396E6388CF354D6F37970685A85B6FC0 (Dictionary_2_t403ABC2FA2D9740F9ADD28DB8815C00EE2DB4249* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_t403ABC2FA2D9740F9ADD28DB8815C00EE2DB4249*, const RuntimeMethod*))Dictionary_2__ctor_m92E9AB321FBD7147CA109C822D99C8B0610C27B7_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader_TableAddRow_m8F5C42C2EACF441CB7BEF6D0BEDE8BB391BBFFD9 (RuntimeObject* ___0_parse_table, int32_t ___1_rule, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader_TableAddCol_m0338A51AAF69ECAF72215F845D4629D60FF7908C (RuntimeObject* ___0_parse_table, int32_t ___1_row, int32_t ___2_col, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___3_symbols, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B (RuntimeArray* ___0_array, RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 ___1_fldHandle, const RuntimeMethod* method) ;
|
|
inline void Dictionary_2__ctor_m3F530E7CD9CC3EB97DCC6E1669EAB9FCE984FA9A (Dictionary_2_t029F6A37F043A1B571A7DB746955ECB8DC548AD9* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_t029F6A37F043A1B571A7DB746955ECB8DC548AD9*, const RuntimeMethod*))Dictionary_2__ctor_m92E9AB321FBD7147CA109C822D99C8B0610C27B7_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966 (String_t* __this, Il2CppChar ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Double_TryParse_m1D39DC22A45BC9A576B9D9130600BFD3CB6DA382 (String_t* ___0_s, int32_t ___1_style, RuntimeObject* ___2_provider, double* ___3_result, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int32_TryParse_mB8E246A7D6D6308EF36DE3473643BDE4CF8F71FF (String_t* ___0_s, int32_t ___1_style, RuntimeObject* ___2_provider, int32_t* ___3_result, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int64_TryParse_m64CEDECE4C3F16B715CA1057801018B2957AE0E3 (String_t* ___0_s, int32_t ___1_style, RuntimeObject* ___2_provider, int64_t* ___3_result, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UInt64_TryParse_m33051106D55D2FDFB53461FF5DDB59F8C35B2388 (String_t* ___0_s, int32_t ___1_style, RuntimeObject* ___2_provider, uint64_t* ___3_result, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Lexer_get_StringValue_mE4230649FF6DC2B66F9FAA021BB30FC8B7EBA5FF (Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader_ProcessNumber_mF3EF4D91F87594C1D6357FDE08D539DDB66A624D (JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* __this, String_t* ___0_number, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Lexer_NextToken_m1FC49AB01B8C3D281961541D1D7D1A8721B06083 (Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Lexer_get_EndOfInput_m450A1AC83F893FDE38826AFD2A726428956491AC (Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader_Close_m91AEDB0DE517F63898D830A3140B83032CFE8F2F (JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Lexer_get_Token_m77727EC36916D1258709D74850710E0487B67F99 (Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* __this, const RuntimeMethod* method) ;
|
|
inline void Stack_1_Clear_mEE1C6E0AF654AE01D41D12DAF62217D4FE3930E0 (Stack_1_t3197E0F5EA36E611B259A88751D31FC2396FE4B6* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Stack_1_t3197E0F5EA36E611B259A88751D31FC2396FE4B6*, const RuntimeMethod*))Stack_1_Clear_mEE1C6E0AF654AE01D41D12DAF62217D4FE3930E0_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonReader_ReadToken_m5C6E65529B9286DFC6270FE4A926FA12620894B9 (JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* __this, const RuntimeMethod* method) ;
|
|
inline int32_t Stack_1_Peek_m919AA48BFC239B260BB6A0639B8E027B60CB8B66 (Stack_1_t3197E0F5EA36E611B259A88751D31FC2396FE4B6* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (Stack_1_t3197E0F5EA36E611B259A88751D31FC2396FE4B6*, const RuntimeMethod*))Stack_1_Peek_m919AA48BFC239B260BB6A0639B8E027B60CB8B66_gshared)(__this, method);
|
|
}
|
|
inline int32_t Stack_1_Pop_m59DFD2B5EC8D9044532E0AD0BDB20DB33BA76748 (Stack_1_t3197E0F5EA36E611B259A88751D31FC2396FE4B6* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (Stack_1_t3197E0F5EA36E611B259A88751D31FC2396FE4B6*, const RuntimeMethod*))Stack_1_Pop_m59DFD2B5EC8D9044532E0AD0BDB20DB33BA76748_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader_ProcessSymbol_m0E855A59E8E386619529E923A6A9BABFEE63769C (JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonException__ctor_mD12D72A1D7949F48B846F1207BFA40EB8CB61E23 (JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76* __this, int32_t ___0_token, Exception_t* ___1_inner_exception, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* NumberFormatInfo_get_InvariantInfo_m4689F466D2607C7369BCE394E3FB3681A6E644FA (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D (StringBuilder_t* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringWriter__ctor_mF38CB8046B79DEF523E427B7F41CA3135671D0C8 (StringWriter_tF48052BE4F980E5C85403221E835768E4156267D* __this, StringBuilder_t* ___0_sb, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Init_m9DD0FC6AED98A7D661B9374FFDFF534411DDB838 (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, const RuntimeMethod* method) ;
|
|
inline void Stack_1__ctor_m2A8D4EF841D474ABBD42CA0BE7389F3C1A1A31E7 (Stack_1_t2CDC562A4A6FD1FE4DE0FC63A08FC106C6A84EFD* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Stack_1_t2CDC562A4A6FD1FE4DE0FC63A08FC106C6A84EFD*, const RuntimeMethod*))Stack_1__ctor_m70E8EDA96A608CE9BAB7FC8313B233AADA573BD4_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WriterContext__ctor_m776EF36E46B33DFC054B4AD1E6F3139B038AF037 (WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* __this, const RuntimeMethod* method) ;
|
|
inline void Stack_1_Push_mCC27D4FD504E058A5A42BE3285782C44D715DF4A (Stack_1_t2CDC562A4A6FD1FE4DE0FC63A08FC106C6A84EFD* __this, WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Stack_1_t2CDC562A4A6FD1FE4DE0FC63A08FC106C6A84EFD*, WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F*, const RuntimeMethod*))Stack_1_Push_m709DD11BC1291A905814182CF9A367DE7399A778_gshared)(__this, ___0_item, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_PutNewline_mC6A36636BB9D628BCAB9C2F1B4C27546A9D07100 (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, bool ___0_add_comma, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_get_NewLine_m8BF68A4EFDAFFB66500984CE779629811BA98FFF (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Put_mFABB67DDE2B46F39CB3BD04A8A883D908934CDF0 (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, String_t* ___0_str, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline (String_t* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3 (String_t* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_IntToHex_mF5E06CC13D2F0D5229D2BD63C5FD75D07CD2E2FE (int32_t ___0_n, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___1_hex, const RuntimeMethod* method) ;
|
|
inline void Stack_1_Clear_m6ADA89EC27B8CEB290D73A08C00E14FCF1440D65 (Stack_1_t2CDC562A4A6FD1FE4DE0FC63A08FC106C6A84EFD* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Stack_1_t2CDC562A4A6FD1FE4DE0FC63A08FC106C6A84EFD*, const RuntimeMethod*))Stack_1_Clear_mD550E89582979ECB0D6E6D68F0237FC14708BE85_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8 (StringBuilder_t* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Remove_m0D93692674D1C09795C7D6542420A3B6C5F81E90 (StringBuilder_t* __this, int32_t ___0_startIndex, int32_t ___1_length, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_DoValidation_m3F03AD6E422930F933D182AD01154E08F32EFF3B (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, int32_t ___0_cond, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_PutNewline_mFE1588405B1DBE7ADC65A867FB1DB57A0D9CD3C4 (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Convert_ToString_mF6A8BB10515230B099A7EDA9D28C2F8991F758CA (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___0_value, RuntimeObject* ___1_provider, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Convert_ToString_m7EBE84B1D453D12C9514AD3EF4F6B3F55A5E5C9B (double ___0_value, RuntimeObject* ___1_provider, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Convert_ToString_mBFBBE2F36FF6B3235848801940FD15A17028AC70 (float ___0_value, RuntimeObject* ___1_provider, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Convert_ToString_mC65AC3BEDED3049732E8A67B496AAAEF4C732871 (int32_t ___0_value, RuntimeObject* ___1_provider, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Convert_ToString_m03FCA4B41451E9A04705485B1C2FFC3D826B63E1 (int64_t ___0_value, RuntimeObject* ___1_provider, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_PutString_m8BD1DBB2B72F8027F3B9DE4CD5D4807C5849F3D1 (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, String_t* ___0_str, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Convert_ToString_mB35C9B82D948EFB22F235F65AC3996B9F44C6D38 (uint64_t ___0_value, RuntimeObject* ___1_provider, const RuntimeMethod* method) ;
|
|
inline WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* Stack_1_Pop_m98A1DBF775D66CFC5149DF79AFD2042E2E54ABC2 (Stack_1_t2CDC562A4A6FD1FE4DE0FC63A08FC106C6A84EFD* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* (*) (Stack_1_t2CDC562A4A6FD1FE4DE0FC63A08FC106C6A84EFD*, const RuntimeMethod*))Stack_1_Pop_m2AFF69249659372F07EE25817DBCAFE74E1CF778_gshared)(__this, method);
|
|
}
|
|
inline int32_t Stack_1_get_Count_m145C99D2412AD5B6C8CADF47696A334272AA6EDB_inline (Stack_1_t2CDC562A4A6FD1FE4DE0FC63A08FC106C6A84EFD* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (Stack_1_t2CDC562A4A6FD1FE4DE0FC63A08FC106C6A84EFD*, const RuntimeMethod*))Stack_1_get_Count_mD08AE71D49787D30DDD9D484BCD323D646744D2E_gshared_inline)(__this, method);
|
|
}
|
|
inline WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* Stack_1_Peek_m20439CD5B4898A681D0F39D58BBC7E2C21CA584C (Stack_1_t2CDC562A4A6FD1FE4DE0FC63A08FC106C6A84EFD* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* (*) (Stack_1_t2CDC562A4A6FD1FE4DE0FC63A08FC106C6A84EFD*, const RuntimeMethod*))Stack_1_Peek_mF0ECF6A61726B66E6D9B33D8C4DEAA47E586E6E4_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Unindent_m2EF20A77048699830DA37601DA2BE20F17B1D5E0 (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Indent_m139D71DBB2C331C1C9A23D48AD0B607D10D8FEFA (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_ToLowerInvariant_mBE32C93DE27C5353FEA3FA654FC1DDBE3D0EB0F2 (String_t* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Lexer_PopulateFsmTables_m8A3F92F8FE3FF591EA8479047E7D93D6D7C0CBE0 (StateHandlerU5BU5D_tA4E04C837AF2BDFE9B351DF6813E6AB954722B93** ___0_fsm_handler_table, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C** ___1_fsm_return_table, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_m2619CA8D2C3476DF1A302D9D941498BB1C6164C5 (StringBuilder_t* __this, int32_t ___0_capacity, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FsmContext__ctor_m65740EA47916AE8C2881DD66B2EEE0CECA3E7189 (FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StateHandler__ctor_m33A94C96682C78721802E376BDC6673C9CDB08E1 (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Convert_ToChar_mF1B1B205DDEFDE52251235514E7DAFCAB37D1F24 (int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1 (StringBuilder_t* __this, Il2CppChar ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Lexer_GetChar_m240416C419AACCDFAD8C74F764421740C53A6253 (Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Lexer_UngetChar_m1FBA3B548EFBD21F87308A001FD32ECCCF86C5D4 (Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Lexer_ProcessEscChar_m1E23F62F3A8846AA52FD98E49917B3A8C9C168E3 (int32_t ___0_esc_char, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Lexer_HexValue_m5FF113620372573CAA3AAA87DE9BFDFE9D1AA83A (int32_t ___0_digit, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Lexer_NextChar_m4416B29A729201704EF5494475D04A81665E7D9D (Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool StateHandler_Invoke_mAED7B745D78A2D2DC62A793247492E7718A3210E_inline (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* __this, FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* ___0_ctx, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonException__ctor_m267C4D3DA6783E685C755BEB2B354A15AB620363 (JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76* __this, int32_t ___0_c, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass2_0__ctor_mC0BCE28FB22848D1B341CB1B6C66AA8B995B3251 (U3CU3Ec__DisplayClass2_0_t6F9528147EBA1501BA7DC4A28B00FEDC10940082* __this, const RuntimeMethod* method) ;
|
|
inline void ExporterFunc_1__ctor_m5FE00EEF0FBC92ACF9AA6FC6CB17774A4DE4C029 (ExporterFunc_1_t66337A5BC3E84B1D048E2D5A3E6B7DA41671BC95* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ExporterFunc_1_t66337A5BC3E84B1D048E2D5A3E6B7DA41671BC95*, RuntimeObject*, intptr_t, const RuntimeMethod*))ExporterFunc_1__ctor_mED6EA70B9BD4808F5FD6361E389AB3940CEF31DD_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline void JsonMapper_RegisterExporter_TisType_t_m6CBE1C2D40E0DF5B03DE2028E63B1E1C86C633F5 (ExporterFunc_1_t66337A5BC3E84B1D048E2D5A3E6B7DA41671BC95* ___0_exporter, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ExporterFunc_1_t66337A5BC3E84B1D048E2D5A3E6B7DA41671BC95*, const RuntimeMethod*))JsonMapper_RegisterExporter_TisRuntimeObject_mCA76CDF2FDE789952A2829E26EFAECD2464D36E5_gshared)(___0_exporter, method);
|
|
}
|
|
inline void ImporterFunc_2__ctor_m7FDF0BABFD39FE6EA81AF99A071EBC4330F74772 (ImporterFunc_2_tECF771648EC0EB35785D9EE3003167BEBB8C8008* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ImporterFunc_2_tECF771648EC0EB35785D9EE3003167BEBB8C8008*, RuntimeObject*, intptr_t, const RuntimeMethod*))ImporterFunc_2__ctor_m48D4CB5DE3875098F7BD5B013A17478FF1F58F7B_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline void JsonMapper_RegisterImporter_TisString_t_TisType_t_mFF375BDC0DE41905D9536A45A8D45A5831564D3C (ImporterFunc_2_tECF771648EC0EB35785D9EE3003167BEBB8C8008* ___0_importer, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ImporterFunc_2_tECF771648EC0EB35785D9EE3003167BEBB8C8008*, const RuntimeMethod*))JsonMapper_RegisterImporter_TisRuntimeObject_TisRuntimeObject_m7B84BCC70E088E97E7A456DD4309B9F44C6130D5_gshared)(___0_importer, method);
|
|
}
|
|
inline void Action_2__ctor_m43A66BCA47071592759F0C0EE404CB835C9FCC3E (Action_2_tE5C1059CE8ACEDAC4083A88C76E66DE3E15B8105* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_2_tE5C1059CE8ACEDAC4083A88C76E66DE3E15B8105*, RuntimeObject*, intptr_t, const RuntimeMethod*))Action_2__ctor_m4C7EDA189ECC1550C630E83162A98739D52A5E09_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline void ExporterFunc_1__ctor_mC27B1CFD9CA5B0F844AA28557CCBC9D685133A52 (ExporterFunc_1_t61321F5C3918ED8EDB361F431B32F1983072DBD2* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ExporterFunc_1_t61321F5C3918ED8EDB361F431B32F1983072DBD2*, RuntimeObject*, intptr_t, const RuntimeMethod*))ExporterFunc_1__ctor_mC27B1CFD9CA5B0F844AA28557CCBC9D685133A52_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline void JsonMapper_RegisterExporter_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_m06FB369425160BCF1EBE76D0855E12FE17E5CC3A (ExporterFunc_1_t61321F5C3918ED8EDB361F431B32F1983072DBD2* ___0_exporter, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ExporterFunc_1_t61321F5C3918ED8EDB361F431B32F1983072DBD2*, const RuntimeMethod*))JsonMapper_RegisterExporter_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_m06FB369425160BCF1EBE76D0855E12FE17E5CC3A_gshared)(___0_exporter, method);
|
|
}
|
|
inline void Action_2__ctor_m7836B346D07632934D09F577B37E603E058BA957 (Action_2_t3CFBD6C56B087A7CE032945C0950C5716540158A* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_2_t3CFBD6C56B087A7CE032945C0950C5716540158A*, RuntimeObject*, intptr_t, const RuntimeMethod*))Action_2__ctor_m0BFDF0BD56829CEBC98B6517B48EF7B0D1771D96_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline void ExporterFunc_1__ctor_mE7E4838007A5EACD88B96880AAB772AB8AE07164 (ExporterFunc_1_t81E6D3B3E845005B652EE5F2CE219DAE1518AB83* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ExporterFunc_1_t81E6D3B3E845005B652EE5F2CE219DAE1518AB83*, RuntimeObject*, intptr_t, const RuntimeMethod*))ExporterFunc_1__ctor_mE7E4838007A5EACD88B96880AAB772AB8AE07164_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline void JsonMapper_RegisterExporter_TisVector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_mA923D9A8735FFE1B2862156D5922071902E1F849 (ExporterFunc_1_t81E6D3B3E845005B652EE5F2CE219DAE1518AB83* ___0_exporter, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ExporterFunc_1_t81E6D3B3E845005B652EE5F2CE219DAE1518AB83*, const RuntimeMethod*))JsonMapper_RegisterExporter_TisVector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_mA923D9A8735FFE1B2862156D5922071902E1F849_gshared)(___0_exporter, method);
|
|
}
|
|
inline void ExporterFunc_1__ctor_mDEED09A4B9D172DEE0B8806033392DCCC99671B1 (ExporterFunc_1_t68203C504BE983A9A387E0769D39E83F63B0F234* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ExporterFunc_1_t68203C504BE983A9A387E0769D39E83F63B0F234*, RuntimeObject*, intptr_t, const RuntimeMethod*))ExporterFunc_1__ctor_mDEED09A4B9D172DEE0B8806033392DCCC99671B1_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline void JsonMapper_RegisterExporter_TisVector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3_mD3678978F84EC31F2276396FFD53E95D6D36A7A3 (ExporterFunc_1_t68203C504BE983A9A387E0769D39E83F63B0F234* ___0_exporter, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ExporterFunc_1_t68203C504BE983A9A387E0769D39E83F63B0F234*, const RuntimeMethod*))JsonMapper_RegisterExporter_TisVector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3_mD3678978F84EC31F2276396FFD53E95D6D36A7A3_gshared)(___0_exporter, method);
|
|
}
|
|
inline void ExporterFunc_1__ctor_mB20FE33C36F6927F9F6CB6410E5CA92377A16075 (ExporterFunc_1_t0BDB0977957B702E553434D63D76FD4CBBF79E9D* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ExporterFunc_1_t0BDB0977957B702E553434D63D76FD4CBBF79E9D*, RuntimeObject*, intptr_t, const RuntimeMethod*))ExporterFunc_1__ctor_mB20FE33C36F6927F9F6CB6410E5CA92377A16075_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline void JsonMapper_RegisterExporter_TisQuaternion_tDA59F214EF07D7700B26E40E562F267AF7306974_m13A2ECD7CDFAC21C1AF4B64A3B5AB4E971302FE0 (ExporterFunc_1_t0BDB0977957B702E553434D63D76FD4CBBF79E9D* ___0_exporter, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ExporterFunc_1_t0BDB0977957B702E553434D63D76FD4CBBF79E9D*, const RuntimeMethod*))JsonMapper_RegisterExporter_TisQuaternion_tDA59F214EF07D7700B26E40E562F267AF7306974_m13A2ECD7CDFAC21C1AF4B64A3B5AB4E971302FE0_gshared)(___0_exporter, method);
|
|
}
|
|
inline void ExporterFunc_1__ctor_mFD7754C078ECF99E821CDAE437AA04DEEA2B7E08 (ExporterFunc_1_t8DEC56EC9C315918327B728EF33F55CE4D9E0204* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ExporterFunc_1_t8DEC56EC9C315918327B728EF33F55CE4D9E0204*, RuntimeObject*, intptr_t, const RuntimeMethod*))ExporterFunc_1__ctor_mFD7754C078ECF99E821CDAE437AA04DEEA2B7E08_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline void JsonMapper_RegisterExporter_TisColor_tD001788D726C3A7F1379BEED0260B9591F440C1F_mE28CA3EECB71DB04C370B4811C0C0959B999C3CF (ExporterFunc_1_t8DEC56EC9C315918327B728EF33F55CE4D9E0204* ___0_exporter, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ExporterFunc_1_t8DEC56EC9C315918327B728EF33F55CE4D9E0204*, const RuntimeMethod*))JsonMapper_RegisterExporter_TisColor_tD001788D726C3A7F1379BEED0260B9591F440C1F_mE28CA3EECB71DB04C370B4811C0C0959B999C3CF_gshared)(___0_exporter, method);
|
|
}
|
|
inline void ExporterFunc_1__ctor_m2C36E5FEB9053EBAD33271E94443FF619AB288B7 (ExporterFunc_1_tAD0CADBFAA1F3669790D9F40D2D389420D24C825* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ExporterFunc_1_tAD0CADBFAA1F3669790D9F40D2D389420D24C825*, RuntimeObject*, intptr_t, const RuntimeMethod*))ExporterFunc_1__ctor_m2C36E5FEB9053EBAD33271E94443FF619AB288B7_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline void JsonMapper_RegisterExporter_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_mC16F18097E95FC3BC0AE9313B7B8CAE49480E1AD (ExporterFunc_1_tAD0CADBFAA1F3669790D9F40D2D389420D24C825* ___0_exporter, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ExporterFunc_1_tAD0CADBFAA1F3669790D9F40D2D389420D24C825*, const RuntimeMethod*))JsonMapper_RegisterExporter_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_mC16F18097E95FC3BC0AE9313B7B8CAE49480E1AD_gshared)(___0_exporter, method);
|
|
}
|
|
inline void ExporterFunc_1__ctor_m230AB5483E37DB386D38028B234D3E53276B7253 (ExporterFunc_1_tFCF938C955AC8C9EF39571CF0A922FB4B50E00D4* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ExporterFunc_1_tFCF938C955AC8C9EF39571CF0A922FB4B50E00D4*, RuntimeObject*, intptr_t, const RuntimeMethod*))ExporterFunc_1__ctor_m230AB5483E37DB386D38028B234D3E53276B7253_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline void JsonMapper_RegisterExporter_TisBounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3_m3CF06EF834F36C4AED2171CE91C61DA8DC8A05FE (ExporterFunc_1_tFCF938C955AC8C9EF39571CF0A922FB4B50E00D4* ___0_exporter, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ExporterFunc_1_tFCF938C955AC8C9EF39571CF0A922FB4B50E00D4*, const RuntimeMethod*))JsonMapper_RegisterExporter_TisBounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3_m3CF06EF834F36C4AED2171CE91C61DA8DC8A05FE_gshared)(___0_exporter, method);
|
|
}
|
|
inline void ExporterFunc_1__ctor_m2A20336A95F86660B5739C8C99B12AFB77852CED (ExporterFunc_1_t396C38F979C2517DA37B85C04250C0FB38012D32* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ExporterFunc_1_t396C38F979C2517DA37B85C04250C0FB38012D32*, RuntimeObject*, intptr_t, const RuntimeMethod*))ExporterFunc_1__ctor_m2A20336A95F86660B5739C8C99B12AFB77852CED_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline void JsonMapper_RegisterExporter_TisRect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D_m57356BB4D41D22B85D5C98568FACE4347B0583B3 (ExporterFunc_1_t396C38F979C2517DA37B85C04250C0FB38012D32* ___0_exporter, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ExporterFunc_1_t396C38F979C2517DA37B85C04250C0FB38012D32*, const RuntimeMethod*))JsonMapper_RegisterExporter_TisRect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D_m57356BB4D41D22B85D5C98568FACE4347B0583B3_gshared)(___0_exporter, method);
|
|
}
|
|
inline void ExporterFunc_1__ctor_mDDA2B49158AEA3CCF86F4A9220B84AF99F94E1BE (ExporterFunc_1_t51D2BA9CE9D91E588EEC4288A798B6F13E55C90B* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ExporterFunc_1_t51D2BA9CE9D91E588EEC4288A798B6F13E55C90B*, RuntimeObject*, intptr_t, const RuntimeMethod*))ExporterFunc_1__ctor_mED6EA70B9BD4808F5FD6361E389AB3940CEF31DD_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline void JsonMapper_RegisterExporter_TisRectOffset_t6358774A0DEEABA4586840CB9BC7DC88B39660B5_m265194368484D1D2AAE706A2F7A80AA7A3C363ED (ExporterFunc_1_t51D2BA9CE9D91E588EEC4288A798B6F13E55C90B* ___0_exporter, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ExporterFunc_1_t51D2BA9CE9D91E588EEC4288A798B6F13E55C90B*, const RuntimeMethod*))JsonMapper_RegisterExporter_TisRuntimeObject_mCA76CDF2FDE789952A2829E26EFAECD2464D36E5_gshared)(___0_exporter, method);
|
|
}
|
|
inline void Action_2_Invoke_m2CD25AE447E9AE31B860C09C397F9348E83BA623_inline (Action_2_tE5C1059CE8ACEDAC4083A88C76E66DE3E15B8105* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_arg1, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_2_tE5C1059CE8ACEDAC4083A88C76E66DE3E15B8105*, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F*, const RuntimeMethod*))Action_2_Invoke_m3CE082491EEF378249C13870E46EE164D7908A9C_gshared_inline)(__this, ___0_arg1, ___1_arg2, method);
|
|
}
|
|
inline void Action_2_Invoke_m5EC2A53F7FA73C8B707F74A5FE6294D4840A5B37_inline (Action_2_t3CFBD6C56B087A7CE032945C0950C5716540158A* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_arg1, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_2_t3CFBD6C56B087A7CE032945C0950C5716540158A*, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F*, const RuntimeMethod*))Action_2_Invoke_m719475FEF89235EA7C17D75BF384DE2B9545839B_gshared_inline)(__this, ___0_arg1, ___1_arg2, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Bounds_get_center_m5B05F81CB835EB6DD8628FDA24B638F477984DC3_inline (Bounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Bounds_get_size_m0699A53A55A78B3201D7270D6F338DFA91B6FAD4_inline (Bounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_mF4E43E30F01E6C6392E7B37C2872BF905D65093B (U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Extensions_WriteProperty_m05152C85D5114443EAC6F434D063A4C656ED3C1D (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___0_w, String_t* ___1_name, double ___2_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Extensions_WriteProperty_m319B2836A978DCFC82422A1334A002234C8D683C (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___0_w, String_t* ___1_name, int64_t ___2_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Rect_get_x_mB267B718E0D067F2BAE31BA477647FBF964916EB_inline (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Rect_get_y_mC733E8D49F3CE21B2A3D40A1B72D687F22C97F49_inline (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Rect_get_width_m620D67551372073C9C32C4C4624C2A5713F7F9A9_inline (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Rect_get_height_mE1AA6C6C725CCD2D317BD2157396D3CF7D47C9D8_inline (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RectOffset_get_top_m82E49FB93A5BD417131136F5A7DBA0F251F10263 (RectOffset_t6358774A0DEEABA4586840CB9BC7DC88B39660B5* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RectOffset_get_left_mA406D7AFF76E48507EF143CDB1D157C4D5430D90 (RectOffset_t6358774A0DEEABA4586840CB9BC7DC88B39660B5* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RectOffset_get_bottom_mDF9C1EC125F94245D5532C34FCFB65BE0F2A9D0B (RectOffset_t6358774A0DEEABA4586840CB9BC7DC88B39660B5* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RectOffset_get_right_m07C826B0BC79B0CBC01F5FF489D456C553F047BF (RectOffset_t6358774A0DEEABA4586840CB9BC7DC88B39660B5* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Attribute__ctor_m79ED1BF1EE36D1E417BA89A0D9F91F8AAD8D19E2 (Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_op_Multiply_m87BA7C578F96C8E49BB07088DAAC4649F83B0353_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_a, float ___1_d, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* __this, float ___0_x, float ___1_y, float ___2_z, const RuntimeMethod* method) ;
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonData_get_Count_m59A660054922D869F9CC95947848D1829AD2680C (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = JsonData_EnsureCollection_mFB01D813BC8765113931EF533783BA5BC764C283(__this, NULL);
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(1, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var, L_0);
|
|
V_0 = L_1;
|
|
goto IL_000f;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
int32_t L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonData_get_IsArray_m37BA31D547428C52C0F4A1923598DC36124033DC (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
int32_t L_0 = __this->___type;
|
|
V_0 = (bool)((((int32_t)L_0) == ((int32_t)2))? 1 : 0);
|
|
goto IL_000d;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonData_get_IsBoolean_mA02E81165515B6A3FC71FC03A85734E9905FE450 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
int32_t L_0 = __this->___type;
|
|
V_0 = (bool)((((int32_t)L_0) == ((int32_t)7))? 1 : 0);
|
|
goto IL_000d;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonData_get_IsDouble_m36490E724869C57CC7CCDBA30430FCB5A3E4602A (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
int32_t L_0 = __this->___type;
|
|
V_0 = (bool)((((int32_t)L_0) == ((int32_t)6))? 1 : 0);
|
|
goto IL_000d;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonData_get_IsInt_m094B3A225B2B50F0123D1BAB1012D5E652C200B7 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
int32_t L_0 = __this->___type;
|
|
V_0 = (bool)((((int32_t)L_0) == ((int32_t)4))? 1 : 0);
|
|
goto IL_000d;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonData_get_IsLong_m082D69215FD4794AF4B026BFEB5BF72A6FD1CEBD (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
int32_t L_0 = __this->___type;
|
|
V_0 = (bool)((((int32_t)L_0) == ((int32_t)5))? 1 : 0);
|
|
goto IL_000d;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonData_get_IsObject_mF608D1B4942FFA43A6E4D27DAD8243343AAEC0D3 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
int32_t L_0 = __this->___type;
|
|
V_0 = (bool)((((int32_t)L_0) == ((int32_t)1))? 1 : 0);
|
|
goto IL_000d;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonData_get_IsString_m5F2D19AC3F87FB3D76F1FDAA9D6B2CF3564977FF (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
int32_t L_0 = __this->___type;
|
|
V_0 = (bool)((((int32_t)L_0) == ((int32_t)3))? 1 : 0);
|
|
goto IL_000d;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonData_get_Keys_mA554DAC6CFBD38FEA200EEF7AE25888E256A1E84 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_t8B67C0BACED3ABBE0BB390A264074F9245F22842_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = JsonData_EnsureDictionary_m402293ECDF1F18AE8CA8259A102E698ADD3A8EB2(__this, NULL);
|
|
RuntimeObject* L_1 = __this->___inst_object;
|
|
NullCheck(L_1);
|
|
RuntimeObject* L_2;
|
|
L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(2, IDictionary_2_t8B67C0BACED3ABBE0BB390A264074F9245F22842_il2cpp_TypeInfo_var, L_1);
|
|
V_0 = L_2;
|
|
goto IL_0016;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
RuntimeObject* L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonData_ContainsKey_m80F4F9FB54FF3356FD67180495281EAF1897DB5D (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, String_t* ___0_key, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_t5C03FBFD5ECBDE4EAB8C4ED582DDFCF702EB5DC7_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_t8B67C0BACED3ABBE0BB390A264074F9245F22842_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = JsonData_EnsureDictionary_m402293ECDF1F18AE8CA8259A102E698ADD3A8EB2(__this, NULL);
|
|
RuntimeObject* L_1 = __this->___inst_object;
|
|
NullCheck(L_1);
|
|
RuntimeObject* L_2;
|
|
L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(2, IDictionary_2_t8B67C0BACED3ABBE0BB390A264074F9245F22842_il2cpp_TypeInfo_var, L_1);
|
|
String_t* L_3 = ___0_key;
|
|
NullCheck(L_2);
|
|
bool L_4;
|
|
L_4 = InterfaceFuncInvoker1< bool, String_t* >::Invoke(4, ICollection_1_t5C03FBFD5ECBDE4EAB8C4ED582DDFCF702EB5DC7_il2cpp_TypeInfo_var, L_2, L_3);
|
|
V_0 = L_4;
|
|
goto IL_001c;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
bool L_5 = V_0;
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonData_System_Collections_ICollection_get_Count_m1928821DE12D36BC1ADD18A8640515E26712421D (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = JsonData_get_Count_m59A660054922D869F9CC95947848D1829AD2680C(__this, NULL);
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
int32_t L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonData_System_Collections_ICollection_get_IsSynchronized_m916ECDC97D55234918E33C68EBC7096AC3E9BB8C (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = JsonData_EnsureCollection_mFB01D813BC8765113931EF533783BA5BC764C283(__this, NULL);
|
|
NullCheck(L_0);
|
|
bool L_1;
|
|
L_1 = InterfaceFuncInvoker0< bool >::Invoke(3, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var, L_0);
|
|
V_0 = L_1;
|
|
goto IL_000f;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
bool L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonData_System_Collections_ICollection_get_SyncRoot_mBAB43E3293672F6EB626FA687E552B51DC2F1FC2 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = JsonData_EnsureCollection_mFB01D813BC8765113931EF533783BA5BC764C283(__this, NULL);
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_1;
|
|
L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(2, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var, L_0);
|
|
V_0 = L_1;
|
|
goto IL_000f;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
RuntimeObject* L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonData_System_Collections_IDictionary_get_IsFixedSize_m5783EEBDE15601AB8FA90FD9A02B26AEB3176026 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = JsonData_EnsureDictionary_m402293ECDF1F18AE8CA8259A102E698ADD3A8EB2(__this, NULL);
|
|
NullCheck(L_0);
|
|
bool L_1;
|
|
L_1 = InterfaceFuncInvoker0< bool >::Invoke(8, IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var, L_0);
|
|
V_0 = L_1;
|
|
goto IL_000f;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
bool L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonData_System_Collections_IDictionary_get_IsReadOnly_m4DDCFBDE28ED5393BC1DC2871B454D50271BB4BB (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = JsonData_EnsureDictionary_m402293ECDF1F18AE8CA8259A102E698ADD3A8EB2(__this, NULL);
|
|
NullCheck(L_0);
|
|
bool L_1;
|
|
L_1 = InterfaceFuncInvoker0< bool >::Invoke(7, IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var, L_0);
|
|
V_0 = L_1;
|
|
goto IL_000f;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
bool L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonData_System_Collections_IDictionary_get_Keys_m09C045695EBC903E21448D3DA5A9A5D787683D96 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_t5C03FBFD5ECBDE4EAB8C4ED582DDFCF702EB5DC7_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_tE918F8F2362B68438A431F84E92E542A23B318B6_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_tA8D764B99B6196299ECE08BCBA02AB2EE733CB1D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Key_mB20EAD0A1F549096009239692374BA2D53CC56C8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
RuntimeObject* V_3 = NULL;
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = JsonData_EnsureDictionary_m402293ECDF1F18AE8CA8259A102E698ADD3A8EB2(__this, NULL);
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_1 = (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*)il2cpp_codegen_object_new(List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var);
|
|
List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E(L_1, List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E_RuntimeMethod_var);
|
|
V_0 = L_1;
|
|
RuntimeObject* L_2 = __this->___object_list;
|
|
NullCheck(L_2);
|
|
RuntimeObject* L_3;
|
|
L_3 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, IEnumerable_1_tE918F8F2362B68438A431F84E92E542A23B318B6_il2cpp_TypeInfo_var, L_2);
|
|
V_1 = L_3;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_003e:
|
|
{
|
|
{
|
|
RuntimeObject* L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0048;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_5 = V_1;
|
|
NullCheck(L_5);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_5);
|
|
}
|
|
|
|
IL_0048:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0034_1;
|
|
}
|
|
|
|
IL_001d_1:
|
|
{
|
|
RuntimeObject* L_6 = V_1;
|
|
NullCheck(L_6);
|
|
KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28 L_7;
|
|
L_7 = InterfaceFuncInvoker0< KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28 >::Invoke(0, IEnumerator_1_tA8D764B99B6196299ECE08BCBA02AB2EE733CB1D_il2cpp_TypeInfo_var, L_6);
|
|
V_2 = L_7;
|
|
RuntimeObject* L_8 = V_0;
|
|
String_t* L_9;
|
|
L_9 = KeyValuePair_2_get_Key_mB20EAD0A1F549096009239692374BA2D53CC56C8_inline((&V_2), KeyValuePair_2_get_Key_mB20EAD0A1F549096009239692374BA2D53CC56C8_RuntimeMethod_var);
|
|
NullCheck(L_8);
|
|
InterfaceActionInvoker1< String_t* >::Invoke(2, ICollection_1_t5C03FBFD5ECBDE4EAB8C4ED582DDFCF702EB5DC7_il2cpp_TypeInfo_var, L_8, L_9);
|
|
}
|
|
|
|
IL_0034_1:
|
|
{
|
|
RuntimeObject* L_10 = V_1;
|
|
NullCheck(L_10);
|
|
bool L_11;
|
|
L_11 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_10);
|
|
if (L_11)
|
|
{
|
|
goto IL_001d_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0049;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
RuntimeObject* L_12 = V_0;
|
|
V_3 = ((RuntimeObject*)Castclass((RuntimeObject*)L_12, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var));
|
|
goto IL_0052;
|
|
}
|
|
|
|
IL_0052:
|
|
{
|
|
RuntimeObject* L_13 = V_3;
|
|
return L_13;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonData_System_Collections_IDictionary_get_Values_m5C4630F668BCD06DF24FF2A25D78D1A52D249099 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_tE4324299D87C0ED69EFF6083103E594ED9299AF1_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_tE918F8F2362B68438A431F84E92E542A23B318B6_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_tA8D764B99B6196299ECE08BCBA02AB2EE733CB1D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Value_m1AF62875E8518A1790EFF3FBB65608529D80A79E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m71FFC1A9C81BB314F91B10BE885521A22E708BF8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tF2E1AB00AE46093D3DBEBFF23EE42498976376CA_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
RuntimeObject* V_3 = NULL;
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = JsonData_EnsureDictionary_m402293ECDF1F18AE8CA8259A102E698ADD3A8EB2(__this, NULL);
|
|
List_1_tF2E1AB00AE46093D3DBEBFF23EE42498976376CA* L_1 = (List_1_tF2E1AB00AE46093D3DBEBFF23EE42498976376CA*)il2cpp_codegen_object_new(List_1_tF2E1AB00AE46093D3DBEBFF23EE42498976376CA_il2cpp_TypeInfo_var);
|
|
List_1__ctor_m71FFC1A9C81BB314F91B10BE885521A22E708BF8(L_1, List_1__ctor_m71FFC1A9C81BB314F91B10BE885521A22E708BF8_RuntimeMethod_var);
|
|
V_0 = L_1;
|
|
RuntimeObject* L_2 = __this->___object_list;
|
|
NullCheck(L_2);
|
|
RuntimeObject* L_3;
|
|
L_3 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, IEnumerable_1_tE918F8F2362B68438A431F84E92E542A23B318B6_il2cpp_TypeInfo_var, L_2);
|
|
V_1 = L_3;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_003e:
|
|
{
|
|
{
|
|
RuntimeObject* L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0048;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_5 = V_1;
|
|
NullCheck(L_5);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_5);
|
|
}
|
|
|
|
IL_0048:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0034_1;
|
|
}
|
|
|
|
IL_001d_1:
|
|
{
|
|
RuntimeObject* L_6 = V_1;
|
|
NullCheck(L_6);
|
|
KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28 L_7;
|
|
L_7 = InterfaceFuncInvoker0< KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28 >::Invoke(0, IEnumerator_1_tA8D764B99B6196299ECE08BCBA02AB2EE733CB1D_il2cpp_TypeInfo_var, L_6);
|
|
V_2 = L_7;
|
|
RuntimeObject* L_8 = V_0;
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_9;
|
|
L_9 = KeyValuePair_2_get_Value_m1AF62875E8518A1790EFF3FBB65608529D80A79E_inline((&V_2), KeyValuePair_2_get_Value_m1AF62875E8518A1790EFF3FBB65608529D80A79E_RuntimeMethod_var);
|
|
NullCheck(L_8);
|
|
InterfaceActionInvoker1< JsonData_t3C51D89A19D30A47A74617107D861959322307F1* >::Invoke(2, ICollection_1_tE4324299D87C0ED69EFF6083103E594ED9299AF1_il2cpp_TypeInfo_var, L_8, L_9);
|
|
}
|
|
|
|
IL_0034_1:
|
|
{
|
|
RuntimeObject* L_10 = V_1;
|
|
NullCheck(L_10);
|
|
bool L_11;
|
|
L_11 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_10);
|
|
if (L_11)
|
|
{
|
|
goto IL_001d_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0049;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
RuntimeObject* L_12 = V_0;
|
|
V_3 = ((RuntimeObject*)Castclass((RuntimeObject*)L_12, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var));
|
|
goto IL_0052;
|
|
}
|
|
|
|
IL_0052:
|
|
{
|
|
RuntimeObject* L_13 = V_3;
|
|
return L_13;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonData_LitJson_IJsonWrapper_get_IsArray_mF1E13B321569EA63CC1429F47E30E838F263BE9E (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0;
|
|
L_0 = JsonData_get_IsArray_m37BA31D547428C52C0F4A1923598DC36124033DC(__this, NULL);
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonData_LitJson_IJsonWrapper_get_IsBoolean_mF6F37DE23B41831D7D996A6ED00A164098F9FD41 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0;
|
|
L_0 = JsonData_get_IsBoolean_mA02E81165515B6A3FC71FC03A85734E9905FE450(__this, NULL);
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonData_LitJson_IJsonWrapper_get_IsDouble_m7370BEC0CE2BD5F1011A3C2F3DA91E314B9D1405 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0;
|
|
L_0 = JsonData_get_IsDouble_m36490E724869C57CC7CCDBA30430FCB5A3E4602A(__this, NULL);
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonData_LitJson_IJsonWrapper_get_IsInt_m6EEE905B9FCDCECB3CCC9B6207FC84E4B4FBB563 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0;
|
|
L_0 = JsonData_get_IsInt_m094B3A225B2B50F0123D1BAB1012D5E652C200B7(__this, NULL);
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonData_LitJson_IJsonWrapper_get_IsLong_m7A3DDB112C21CD0030A7C0212527DA234A00A836 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0;
|
|
L_0 = JsonData_get_IsLong_m082D69215FD4794AF4B026BFEB5BF72A6FD1CEBD(__this, NULL);
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonData_LitJson_IJsonWrapper_get_IsObject_mA27D82C6D4234AB1CE3241FE4CE50ECDD8B1B52E (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0;
|
|
L_0 = JsonData_get_IsObject_mF608D1B4942FFA43A6E4D27DAD8243343AAEC0D3(__this, NULL);
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonData_LitJson_IJsonWrapper_get_IsString_m77BD58710E042B213612CF4E51BAE0BF03EA9DD3 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0;
|
|
L_0 = JsonData_get_IsString_m5F2D19AC3F87FB3D76F1FDAA9D6B2CF3564977FF(__this, NULL);
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonData_System_Collections_IList_get_IsFixedSize_m5E943C4DE3DD920E91CD7C1F2E53192FA28200AE (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = JsonData_EnsureList_m6FCDB06F594222F9584291F20B3DA2FF4E5CE718(__this, NULL);
|
|
NullCheck(L_0);
|
|
bool L_1;
|
|
L_1 = InterfaceFuncInvoker0< bool >::Invoke(6, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_0);
|
|
V_0 = L_1;
|
|
goto IL_000f;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
bool L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonData_System_Collections_IList_get_IsReadOnly_m6E271699DD735D2E1123085A3508AC27D735C4F7 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = JsonData_EnsureList_m6FCDB06F594222F9584291F20B3DA2FF4E5CE718(__this, NULL);
|
|
NullCheck(L_0);
|
|
bool L_1;
|
|
L_1 = InterfaceFuncInvoker0< bool >::Invoke(5, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_0);
|
|
V_0 = L_1;
|
|
goto IL_000f;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
bool L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonData_System_Collections_IDictionary_get_Item_m8E67E7723DA1D430AC2E2DDD1E592C708EFFB032 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, RuntimeObject* ___0_key, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = JsonData_EnsureDictionary_m402293ECDF1F18AE8CA8259A102E698ADD3A8EB2(__this, NULL);
|
|
RuntimeObject* L_1 = ___0_key;
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_2;
|
|
L_2 = InterfaceFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(0, IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var, L_0, L_1);
|
|
V_0 = L_2;
|
|
goto IL_0010;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
RuntimeObject* L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonData_System_Collections_IDictionary_set_Item_m9E5C2463B2821FC2B3BE28F28F1050AE388902F9 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, RuntimeObject* ___0_key, RuntimeObject* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* V_0 = NULL;
|
|
bool V_1 = false;
|
|
{
|
|
RuntimeObject* L_0 = ___0_key;
|
|
V_1 = (bool)((((int32_t)((!(((RuntimeObject*)(String_t*)((String_t*)IsInstSealed((RuntimeObject*)L_0, String_t_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_1 = V_1;
|
|
if (!L_1)
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_2 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral82A13B351F60D442B29C59FEDF02FF7E52C04163)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonData_System_Collections_IDictionary_set_Item_m9E5C2463B2821FC2B3BE28F28F1050AE388902F9_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
RuntimeObject* L_3 = ___1_value;
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_4;
|
|
L_4 = JsonData_ToJsonData_mD42F841238609F7087B993D39CC6EC3F39F8BACC(__this, L_3, NULL);
|
|
V_0 = L_4;
|
|
RuntimeObject* L_5 = ___0_key;
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_6 = V_0;
|
|
JsonData_set_Item_m6FE3B6A0E6C79F7B3661945A402CBEAB66371202(__this, ((String_t*)CastclassSealed((RuntimeObject*)L_5, String_t_il2cpp_TypeInfo_var)), L_6, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonData_System_Collections_Specialized_IOrderedDictionary_get_Item_m62C54CDE0A105AAF22FB8D88C5A04C18C9D592A8 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, int32_t ___0_idx, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_1_tCE0C7B37A9126CC0CB3277FBC9C4B9161B866C32_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Value_m1AF62875E8518A1790EFF3FBB65608529D80A79E_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
RuntimeObject* V_1 = NULL;
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = JsonData_EnsureDictionary_m402293ECDF1F18AE8CA8259A102E698ADD3A8EB2(__this, NULL);
|
|
RuntimeObject* L_1 = __this->___object_list;
|
|
int32_t L_2 = ___0_idx;
|
|
NullCheck(L_1);
|
|
KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28 L_3;
|
|
L_3 = InterfaceFuncInvoker1< KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28, int32_t >::Invoke(0, IList_1_tCE0C7B37A9126CC0CB3277FBC9C4B9161B866C32_il2cpp_TypeInfo_var, L_1, L_2);
|
|
V_0 = L_3;
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_4;
|
|
L_4 = KeyValuePair_2_get_Value_m1AF62875E8518A1790EFF3FBB65608529D80A79E_inline((&V_0), KeyValuePair_2_get_Value_m1AF62875E8518A1790EFF3FBB65608529D80A79E_RuntimeMethod_var);
|
|
V_1 = L_4;
|
|
goto IL_001f;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
RuntimeObject* L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonData_System_Collections_Specialized_IOrderedDictionary_set_Item_mC21FB1501163CB204909FBB6A265534ED43AF14A (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, int32_t ___0_idx, RuntimeObject* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_t8B67C0BACED3ABBE0BB390A264074F9245F22842_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_1_tCE0C7B37A9126CC0CB3277FBC9C4B9161B866C32_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2__ctor_mF8563179C2DDD7A9FDB625D79ABD337FB772A683_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Key_mB20EAD0A1F549096009239692374BA2D53CC56C8_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* V_0 = NULL;
|
|
KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = JsonData_EnsureDictionary_m402293ECDF1F18AE8CA8259A102E698ADD3A8EB2(__this, NULL);
|
|
RuntimeObject* L_1 = ___1_value;
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_2;
|
|
L_2 = JsonData_ToJsonData_mD42F841238609F7087B993D39CC6EC3F39F8BACC(__this, L_1, NULL);
|
|
V_0 = L_2;
|
|
RuntimeObject* L_3 = __this->___object_list;
|
|
int32_t L_4 = ___0_idx;
|
|
NullCheck(L_3);
|
|
KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28 L_5;
|
|
L_5 = InterfaceFuncInvoker1< KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28, int32_t >::Invoke(0, IList_1_tCE0C7B37A9126CC0CB3277FBC9C4B9161B866C32_il2cpp_TypeInfo_var, L_3, L_4);
|
|
V_1 = L_5;
|
|
RuntimeObject* L_6 = __this->___inst_object;
|
|
String_t* L_7;
|
|
L_7 = KeyValuePair_2_get_Key_mB20EAD0A1F549096009239692374BA2D53CC56C8_inline((&V_1), KeyValuePair_2_get_Key_mB20EAD0A1F549096009239692374BA2D53CC56C8_RuntimeMethod_var);
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_8 = V_0;
|
|
NullCheck(L_6);
|
|
InterfaceActionInvoker2< String_t*, JsonData_t3C51D89A19D30A47A74617107D861959322307F1* >::Invoke(1, IDictionary_2_t8B67C0BACED3ABBE0BB390A264074F9245F22842_il2cpp_TypeInfo_var, L_6, L_7, L_8);
|
|
String_t* L_9;
|
|
L_9 = KeyValuePair_2_get_Key_mB20EAD0A1F549096009239692374BA2D53CC56C8_inline((&V_1), KeyValuePair_2_get_Key_mB20EAD0A1F549096009239692374BA2D53CC56C8_RuntimeMethod_var);
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_10 = V_0;
|
|
KeyValuePair_2__ctor_mF8563179C2DDD7A9FDB625D79ABD337FB772A683((&V_2), L_9, L_10, KeyValuePair_2__ctor_mF8563179C2DDD7A9FDB625D79ABD337FB772A683_RuntimeMethod_var);
|
|
RuntimeObject* L_11 = __this->___object_list;
|
|
int32_t L_12 = ___0_idx;
|
|
KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28 L_13 = V_2;
|
|
NullCheck(L_11);
|
|
InterfaceActionInvoker2< int32_t, KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28 >::Invoke(1, IList_1_tCE0C7B37A9126CC0CB3277FBC9C4B9161B866C32_il2cpp_TypeInfo_var, L_11, L_12, L_13);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonData_System_Collections_IList_get_Item_mD896EB10F113D680EDFBC3D495131B2FCDEC55EF (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = JsonData_EnsureList_m6FCDB06F594222F9584291F20B3DA2FF4E5CE718(__this, NULL);
|
|
int32_t L_1 = ___0_index;
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_2;
|
|
L_2 = InterfaceFuncInvoker1< RuntimeObject*, int32_t >::Invoke(0, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_0, L_1);
|
|
V_0 = L_2;
|
|
goto IL_0010;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
RuntimeObject* L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonData_System_Collections_IList_set_Item_mB7EAC712FD88B435CF5D885BF0A678B09C19C60E (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, int32_t ___0_index, RuntimeObject* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = JsonData_EnsureList_m6FCDB06F594222F9584291F20B3DA2FF4E5CE718(__this, NULL);
|
|
RuntimeObject* L_1 = ___1_value;
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_2;
|
|
L_2 = JsonData_ToJsonData_mD42F841238609F7087B993D39CC6EC3F39F8BACC(__this, L_1, NULL);
|
|
V_0 = L_2;
|
|
int32_t L_3 = ___0_index;
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_4 = V_0;
|
|
JsonData_set_Item_m874D334A667986B4FBC1515687EF6B551D71FAE8(__this, L_3, L_4, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonData_t3C51D89A19D30A47A74617107D861959322307F1* JsonData_get_Item_m6A08F7BE15696506EC603C2464772EE42AC216E7 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, String_t* ___0_prop_name, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_t8B67C0BACED3ABBE0BB390A264074F9245F22842_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = JsonData_EnsureDictionary_m402293ECDF1F18AE8CA8259A102E698ADD3A8EB2(__this, NULL);
|
|
RuntimeObject* L_1 = __this->___inst_object;
|
|
String_t* L_2 = ___0_prop_name;
|
|
NullCheck(L_1);
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_3;
|
|
L_3 = InterfaceFuncInvoker1< JsonData_t3C51D89A19D30A47A74617107D861959322307F1*, String_t* >::Invoke(0, IDictionary_2_t8B67C0BACED3ABBE0BB390A264074F9245F22842_il2cpp_TypeInfo_var, L_1, L_2);
|
|
V_0 = L_3;
|
|
goto IL_0017;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonData_set_Item_m6FE3B6A0E6C79F7B3661945A402CBEAB66371202 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, String_t* ___0_prop_name, JsonData_t3C51D89A19D30A47A74617107D861959322307F1* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_t76010575BE25258AB4D5EFFF458A7FCD2F1030A7_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_t8B67C0BACED3ABBE0BB390A264074F9245F22842_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_1_tCE0C7B37A9126CC0CB3277FBC9C4B9161B866C32_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2__ctor_mF8563179C2DDD7A9FDB625D79ABD337FB772A683_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Key_mB20EAD0A1F549096009239692374BA2D53CC56C8_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
bool V_1 = false;
|
|
int32_t V_2 = 0;
|
|
bool V_3 = false;
|
|
KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28 V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
bool V_5 = false;
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = JsonData_EnsureDictionary_m402293ECDF1F18AE8CA8259A102E698ADD3A8EB2(__this, NULL);
|
|
String_t* L_1 = ___0_prop_name;
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_2 = ___1_value;
|
|
KeyValuePair_2__ctor_mF8563179C2DDD7A9FDB625D79ABD337FB772A683((&V_0), L_1, L_2, KeyValuePair_2__ctor_mF8563179C2DDD7A9FDB625D79ABD337FB772A683_RuntimeMethod_var);
|
|
RuntimeObject* L_3 = __this->___inst_object;
|
|
String_t* L_4 = ___0_prop_name;
|
|
NullCheck(L_3);
|
|
bool L_5;
|
|
L_5 = InterfaceFuncInvoker1< bool, String_t* >::Invoke(4, IDictionary_2_t8B67C0BACED3ABBE0BB390A264074F9245F22842_il2cpp_TypeInfo_var, L_3, L_4);
|
|
V_1 = L_5;
|
|
bool L_6 = V_1;
|
|
if (!L_6)
|
|
{
|
|
goto IL_0073;
|
|
}
|
|
}
|
|
{
|
|
V_2 = 0;
|
|
goto IL_005c;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
RuntimeObject* L_7 = __this->___object_list;
|
|
int32_t L_8 = V_2;
|
|
NullCheck(L_7);
|
|
KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28 L_9;
|
|
L_9 = InterfaceFuncInvoker1< KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28, int32_t >::Invoke(0, IList_1_tCE0C7B37A9126CC0CB3277FBC9C4B9161B866C32_il2cpp_TypeInfo_var, L_7, L_8);
|
|
V_4 = L_9;
|
|
String_t* L_10;
|
|
L_10 = KeyValuePair_2_get_Key_mB20EAD0A1F549096009239692374BA2D53CC56C8_inline((&V_4), KeyValuePair_2_get_Key_mB20EAD0A1F549096009239692374BA2D53CC56C8_RuntimeMethod_var);
|
|
String_t* L_11 = ___0_prop_name;
|
|
bool L_12;
|
|
L_12 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_10, L_11, NULL);
|
|
V_3 = L_12;
|
|
bool L_13 = V_3;
|
|
if (!L_13)
|
|
{
|
|
goto IL_0057;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_14 = __this->___object_list;
|
|
int32_t L_15 = V_2;
|
|
KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28 L_16 = V_0;
|
|
NullCheck(L_14);
|
|
InterfaceActionInvoker2< int32_t, KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28 >::Invoke(1, IList_1_tCE0C7B37A9126CC0CB3277FBC9C4B9161B866C32_il2cpp_TypeInfo_var, L_14, L_15, L_16);
|
|
goto IL_0070;
|
|
}
|
|
|
|
IL_0057:
|
|
{
|
|
int32_t L_17 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_17, 1));
|
|
}
|
|
|
|
IL_005c:
|
|
{
|
|
int32_t L_18 = V_2;
|
|
RuntimeObject* L_19 = __this->___object_list;
|
|
NullCheck(L_19);
|
|
int32_t L_20;
|
|
L_20 = InterfaceFuncInvoker0< int32_t >::Invoke(0, ICollection_1_t76010575BE25258AB4D5EFFF458A7FCD2F1030A7_il2cpp_TypeInfo_var, L_19);
|
|
V_5 = (bool)((((int32_t)L_18) < ((int32_t)L_20))? 1 : 0);
|
|
bool L_21 = V_5;
|
|
if (L_21)
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
goto IL_0082;
|
|
}
|
|
|
|
IL_0073:
|
|
{
|
|
RuntimeObject* L_22 = __this->___object_list;
|
|
KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28 L_23 = V_0;
|
|
NullCheck(L_22);
|
|
InterfaceActionInvoker1< KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28 >::Invoke(2, ICollection_1_t76010575BE25258AB4D5EFFF458A7FCD2F1030A7_il2cpp_TypeInfo_var, L_22, L_23);
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
RuntimeObject* L_24 = __this->___inst_object;
|
|
String_t* L_25 = ___0_prop_name;
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_26 = ___1_value;
|
|
NullCheck(L_24);
|
|
InterfaceActionInvoker2< String_t*, JsonData_t3C51D89A19D30A47A74617107D861959322307F1* >::Invoke(1, IDictionary_2_t8B67C0BACED3ABBE0BB390A264074F9245F22842_il2cpp_TypeInfo_var, L_24, L_25, L_26);
|
|
__this->___json = (String_t*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___json), (void*)(String_t*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonData_t3C51D89A19D30A47A74617107D861959322307F1* JsonData_get_Item_m86C371130EC3E4EC35A09E33C860CD825276A10D (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_1_t0E22BD75314F60626B98C2C1FA5B2634BA7F5A82_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_1_tCE0C7B37A9126CC0CB3277FBC9C4B9161B866C32_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Value_m1AF62875E8518A1790EFF3FBB65608529D80A79E_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* V_1 = NULL;
|
|
KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = JsonData_EnsureCollection_mFB01D813BC8765113931EF533783BA5BC764C283(__this, NULL);
|
|
int32_t L_1 = __this->___type;
|
|
V_0 = (bool)((((int32_t)L_1) == ((int32_t)2))? 1 : 0);
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = __this->___inst_array;
|
|
int32_t L_4 = ___0_index;
|
|
NullCheck(L_3);
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_5;
|
|
L_5 = InterfaceFuncInvoker1< JsonData_t3C51D89A19D30A47A74617107D861959322307F1*, int32_t >::Invoke(0, IList_1_t0E22BD75314F60626B98C2C1FA5B2634BA7F5A82_il2cpp_TypeInfo_var, L_3, L_4);
|
|
V_1 = L_5;
|
|
goto IL_003c;
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
RuntimeObject* L_6 = __this->___object_list;
|
|
int32_t L_7 = ___0_index;
|
|
NullCheck(L_6);
|
|
KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28 L_8;
|
|
L_8 = InterfaceFuncInvoker1< KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28, int32_t >::Invoke(0, IList_1_tCE0C7B37A9126CC0CB3277FBC9C4B9161B866C32_il2cpp_TypeInfo_var, L_6, L_7);
|
|
V_2 = L_8;
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_9;
|
|
L_9 = KeyValuePair_2_get_Value_m1AF62875E8518A1790EFF3FBB65608529D80A79E_inline((&V_2), KeyValuePair_2_get_Value_m1AF62875E8518A1790EFF3FBB65608529D80A79E_RuntimeMethod_var);
|
|
V_1 = L_9;
|
|
goto IL_003c;
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_10 = V_1;
|
|
return L_10;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonData_set_Item_m874D334A667986B4FBC1515687EF6B551D71FAE8 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, int32_t ___0_index, JsonData_t3C51D89A19D30A47A74617107D861959322307F1* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_t8B67C0BACED3ABBE0BB390A264074F9245F22842_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_1_t0E22BD75314F60626B98C2C1FA5B2634BA7F5A82_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_1_tCE0C7B37A9126CC0CB3277FBC9C4B9161B866C32_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2__ctor_mF8563179C2DDD7A9FDB625D79ABD337FB772A683_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Key_mB20EAD0A1F549096009239692374BA2D53CC56C8_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = JsonData_EnsureCollection_mFB01D813BC8765113931EF533783BA5BC764C283(__this, NULL);
|
|
int32_t L_1 = __this->___type;
|
|
V_0 = (bool)((((int32_t)L_1) == ((int32_t)2))? 1 : 0);
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = __this->___inst_array;
|
|
int32_t L_4 = ___0_index;
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_5 = ___1_value;
|
|
NullCheck(L_3);
|
|
InterfaceActionInvoker2< int32_t, JsonData_t3C51D89A19D30A47A74617107D861959322307F1* >::Invoke(1, IList_1_t0E22BD75314F60626B98C2C1FA5B2634BA7F5A82_il2cpp_TypeInfo_var, L_3, L_4, L_5);
|
|
goto IL_0067;
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
RuntimeObject* L_6 = __this->___object_list;
|
|
int32_t L_7 = ___0_index;
|
|
NullCheck(L_6);
|
|
KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28 L_8;
|
|
L_8 = InterfaceFuncInvoker1< KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28, int32_t >::Invoke(0, IList_1_tCE0C7B37A9126CC0CB3277FBC9C4B9161B866C32_il2cpp_TypeInfo_var, L_6, L_7);
|
|
V_1 = L_8;
|
|
String_t* L_9;
|
|
L_9 = KeyValuePair_2_get_Key_mB20EAD0A1F549096009239692374BA2D53CC56C8_inline((&V_1), KeyValuePair_2_get_Key_mB20EAD0A1F549096009239692374BA2D53CC56C8_RuntimeMethod_var);
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_10 = ___1_value;
|
|
KeyValuePair_2__ctor_mF8563179C2DDD7A9FDB625D79ABD337FB772A683((&V_2), L_9, L_10, KeyValuePair_2__ctor_mF8563179C2DDD7A9FDB625D79ABD337FB772A683_RuntimeMethod_var);
|
|
RuntimeObject* L_11 = __this->___object_list;
|
|
int32_t L_12 = ___0_index;
|
|
KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28 L_13 = V_2;
|
|
NullCheck(L_11);
|
|
InterfaceActionInvoker2< int32_t, KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28 >::Invoke(1, IList_1_tCE0C7B37A9126CC0CB3277FBC9C4B9161B866C32_il2cpp_TypeInfo_var, L_11, L_12, L_13);
|
|
RuntimeObject* L_14 = __this->___inst_object;
|
|
String_t* L_15;
|
|
L_15 = KeyValuePair_2_get_Key_mB20EAD0A1F549096009239692374BA2D53CC56C8_inline((&V_1), KeyValuePair_2_get_Key_mB20EAD0A1F549096009239692374BA2D53CC56C8_RuntimeMethod_var);
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_16 = ___1_value;
|
|
NullCheck(L_14);
|
|
InterfaceActionInvoker2< String_t*, JsonData_t3C51D89A19D30A47A74617107D861959322307F1* >::Invoke(1, IDictionary_2_t8B67C0BACED3ABBE0BB390A264074F9245F22842_il2cpp_TypeInfo_var, L_14, L_15, L_16);
|
|
}
|
|
|
|
IL_0067:
|
|
{
|
|
__this->___json = (String_t*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___json), (void*)(String_t*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonData__ctor_m6811B52CF3A742B6E425A0C8C02A7F475EC70C22 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonData__ctor_mEB4115AF975189279CB57527850DDAD9230D3D2B (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, bool ___0_boolean, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
__this->___type = 7;
|
|
bool L_0 = ___0_boolean;
|
|
__this->___inst_boolean = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonData__ctor_m8A0A37263CACAC98E364B72BDF9929433707D6F7 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, double ___0_number, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
__this->___type = 6;
|
|
double L_0 = ___0_number;
|
|
__this->___inst_double = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonData__ctor_m53BBD8B0DF27C525C5CD4BFD9E5C2EC09A106F78 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, int32_t ___0_number, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
__this->___type = 4;
|
|
int32_t L_0 = ___0_number;
|
|
__this->___inst_int = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonData__ctor_mB54717B470C1218DF181039F1A12F9BACD000462 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, int64_t ___0_number, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
__this->___type = 5;
|
|
int64_t L_0 = ___0_number;
|
|
__this->___inst_long = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonData__ctor_mA02A77C55F31BBE7F62D84ADEAC445BB4D6BF6F0 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
bool V_4 = false;
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
RuntimeObject* L_0 = ___0_obj;
|
|
V_0 = (bool)((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_0, Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
__this->___type = 7;
|
|
RuntimeObject* L_2 = ___0_obj;
|
|
__this->___inst_boolean = ((*(bool*)((bool*)(bool*)UnBox(L_2, Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var))));
|
|
goto IL_00c7;
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
RuntimeObject* L_3 = ___0_obj;
|
|
V_1 = (bool)((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_3, Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0051;
|
|
}
|
|
}
|
|
{
|
|
__this->___type = 6;
|
|
RuntimeObject* L_5 = ___0_obj;
|
|
__this->___inst_double = ((*(double*)((double*)(double*)UnBox(L_5, Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var))));
|
|
goto IL_00c7;
|
|
}
|
|
|
|
IL_0051:
|
|
{
|
|
RuntimeObject* L_6 = ___0_obj;
|
|
V_2 = (bool)((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_6, Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_7 = V_2;
|
|
if (!L_7)
|
|
{
|
|
goto IL_0074;
|
|
}
|
|
}
|
|
{
|
|
__this->___type = 4;
|
|
RuntimeObject* L_8 = ___0_obj;
|
|
__this->___inst_int = ((*(int32_t*)((int32_t*)(int32_t*)UnBox(L_8, Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var))));
|
|
goto IL_00c7;
|
|
}
|
|
|
|
IL_0074:
|
|
{
|
|
RuntimeObject* L_9 = ___0_obj;
|
|
V_3 = (bool)((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_9, Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_10 = V_3;
|
|
if (!L_10)
|
|
{
|
|
goto IL_0097;
|
|
}
|
|
}
|
|
{
|
|
__this->___type = 5;
|
|
RuntimeObject* L_11 = ___0_obj;
|
|
__this->___inst_long = ((*(int64_t*)((int64_t*)(int64_t*)UnBox(L_11, Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var))));
|
|
goto IL_00c7;
|
|
}
|
|
|
|
IL_0097:
|
|
{
|
|
RuntimeObject* L_12 = ___0_obj;
|
|
V_4 = (bool)((!(((RuntimeObject*)(String_t*)((String_t*)IsInstSealed((RuntimeObject*)L_12, String_t_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_13 = V_4;
|
|
if (!L_13)
|
|
{
|
|
goto IL_00bc;
|
|
}
|
|
}
|
|
{
|
|
__this->___type = 3;
|
|
RuntimeObject* L_14 = ___0_obj;
|
|
__this->___inst_string = ((String_t*)CastclassSealed((RuntimeObject*)L_14, String_t_il2cpp_TypeInfo_var));
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___inst_string), (void*)((String_t*)CastclassSealed((RuntimeObject*)L_14, String_t_il2cpp_TypeInfo_var)));
|
|
goto IL_00c7;
|
|
}
|
|
|
|
IL_00bc:
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_15 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_15, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDCAF96AFD9825EC0819F85E3953F28B330B45CC3)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonData__ctor_mA02A77C55F31BBE7F62D84ADEAC445BB4D6BF6F0_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_00c7:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonData__ctor_m9FAA8A904760EDD166AA91A84184FB51FB68E3F3 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, String_t* ___0_str, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
__this->___type = 3;
|
|
String_t* L_0 = ___0_str;
|
|
__this->___inst_string = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___inst_string), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonData_t3C51D89A19D30A47A74617107D861959322307F1* JsonData_op_Implicit_mC871BF156436DB7DD31D0967362C7BAB23E86B05 (bool ___0_data, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonData_t3C51D89A19D30A47A74617107D861959322307F1_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* V_0 = NULL;
|
|
{
|
|
bool L_0 = ___0_data;
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_1 = (JsonData_t3C51D89A19D30A47A74617107D861959322307F1*)il2cpp_codegen_object_new(JsonData_t3C51D89A19D30A47A74617107D861959322307F1_il2cpp_TypeInfo_var);
|
|
JsonData__ctor_mEB4115AF975189279CB57527850DDAD9230D3D2B(L_1, L_0, NULL);
|
|
V_0 = L_1;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonData_t3C51D89A19D30A47A74617107D861959322307F1* JsonData_op_Implicit_m377181AA771E477D2580E05604879C58F4941DB1 (double ___0_data, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonData_t3C51D89A19D30A47A74617107D861959322307F1_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* V_0 = NULL;
|
|
{
|
|
double L_0 = ___0_data;
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_1 = (JsonData_t3C51D89A19D30A47A74617107D861959322307F1*)il2cpp_codegen_object_new(JsonData_t3C51D89A19D30A47A74617107D861959322307F1_il2cpp_TypeInfo_var);
|
|
JsonData__ctor_m8A0A37263CACAC98E364B72BDF9929433707D6F7(L_1, L_0, NULL);
|
|
V_0 = L_1;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonData_t3C51D89A19D30A47A74617107D861959322307F1* JsonData_op_Implicit_mAD4D2BC9F43B7F67F2625B50A37FFF2D63411C15 (int32_t ___0_data, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonData_t3C51D89A19D30A47A74617107D861959322307F1_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* V_0 = NULL;
|
|
{
|
|
int32_t L_0 = ___0_data;
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_1 = (JsonData_t3C51D89A19D30A47A74617107D861959322307F1*)il2cpp_codegen_object_new(JsonData_t3C51D89A19D30A47A74617107D861959322307F1_il2cpp_TypeInfo_var);
|
|
JsonData__ctor_m53BBD8B0DF27C525C5CD4BFD9E5C2EC09A106F78(L_1, L_0, NULL);
|
|
V_0 = L_1;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonData_t3C51D89A19D30A47A74617107D861959322307F1* JsonData_op_Implicit_m0905FE3F4BBE5483C3175B5AAE0C2AD84ECEC29D (int64_t ___0_data, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonData_t3C51D89A19D30A47A74617107D861959322307F1_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* V_0 = NULL;
|
|
{
|
|
int64_t L_0 = ___0_data;
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_1 = (JsonData_t3C51D89A19D30A47A74617107D861959322307F1*)il2cpp_codegen_object_new(JsonData_t3C51D89A19D30A47A74617107D861959322307F1_il2cpp_TypeInfo_var);
|
|
JsonData__ctor_mB54717B470C1218DF181039F1A12F9BACD000462(L_1, L_0, NULL);
|
|
V_0 = L_1;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonData_t3C51D89A19D30A47A74617107D861959322307F1* JsonData_op_Implicit_mD978DF7CE7E49EA637E536F5A410FDFF68ACFABE (String_t* ___0_data, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonData_t3C51D89A19D30A47A74617107D861959322307F1_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* V_0 = NULL;
|
|
{
|
|
String_t* L_0 = ___0_data;
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_1 = (JsonData_t3C51D89A19D30A47A74617107D861959322307F1*)il2cpp_codegen_object_new(JsonData_t3C51D89A19D30A47A74617107D861959322307F1_il2cpp_TypeInfo_var);
|
|
JsonData__ctor_m9FAA8A904760EDD166AA91A84184FB51FB68E3F3(L_1, L_0, NULL);
|
|
V_0 = L_1;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonData_op_Explicit_mA048CAEE607C55B0E82B2051CDC921A7E54A9AD4 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* ___0_data, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
{
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_0 = ___0_data;
|
|
NullCheck(L_0);
|
|
int32_t L_1 = L_0->___type;
|
|
V_0 = (bool)((((int32_t)((((int32_t)L_1) == ((int32_t)7))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_3 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)));
|
|
InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB3AF6981667F40A32E02D8E30F7F87E6D80E0C8B)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonData_op_Explicit_mA048CAEE607C55B0E82B2051CDC921A7E54A9AD4_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_4 = ___0_data;
|
|
NullCheck(L_4);
|
|
bool L_5 = L_4->___inst_boolean;
|
|
V_1 = L_5;
|
|
goto IL_0026;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
bool L_6 = V_1;
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double JsonData_op_Explicit_m91889F4D3822778AFF7632F5B30BD281EA937F09 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* ___0_data, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
double V_1 = 0.0;
|
|
{
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_0 = ___0_data;
|
|
NullCheck(L_0);
|
|
int32_t L_1 = L_0->___type;
|
|
V_0 = (bool)((((int32_t)((((int32_t)L_1) == ((int32_t)6))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_3 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)));
|
|
InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB3AF6981667F40A32E02D8E30F7F87E6D80E0C8B)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonData_op_Explicit_m91889F4D3822778AFF7632F5B30BD281EA937F09_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_4 = ___0_data;
|
|
NullCheck(L_4);
|
|
double L_5 = L_4->___inst_double;
|
|
V_1 = L_5;
|
|
goto IL_0026;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
double L_6 = V_1;
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonData_op_Explicit_m94F189BE9636A52B7E699F988282EAEF9342751D (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* ___0_data, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
int32_t V_1 = 0;
|
|
int32_t G_B3_0 = 0;
|
|
int32_t G_B8_0 = 0;
|
|
{
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_0 = ___0_data;
|
|
NullCheck(L_0);
|
|
int32_t L_1 = L_0->___type;
|
|
if ((((int32_t)L_1) == ((int32_t)4)))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_2 = ___0_data;
|
|
NullCheck(L_2);
|
|
int32_t L_3 = L_2->___type;
|
|
G_B3_0 = ((((int32_t)((((int32_t)L_3) == ((int32_t)5))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0019;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
bool L_4 = V_0;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_5 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)));
|
|
InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAC752DDD9E7D71113EA72864BE92198866B1D658)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonData_op_Explicit_m94F189BE9636A52B7E699F988282EAEF9342751D_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_6 = ___0_data;
|
|
NullCheck(L_6);
|
|
int32_t L_7 = L_6->___type;
|
|
if ((((int32_t)L_7) == ((int32_t)4)))
|
|
{
|
|
goto IL_003b;
|
|
}
|
|
}
|
|
{
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_8 = ___0_data;
|
|
NullCheck(L_8);
|
|
int64_t L_9 = L_8->___inst_long;
|
|
G_B8_0 = ((int32_t)L_9);
|
|
goto IL_0041;
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_10 = ___0_data;
|
|
NullCheck(L_10);
|
|
int32_t L_11 = L_10->___inst_int;
|
|
G_B8_0 = L_11;
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
V_1 = G_B8_0;
|
|
goto IL_0044;
|
|
}
|
|
|
|
IL_0044:
|
|
{
|
|
int32_t L_12 = V_1;
|
|
return L_12;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t JsonData_op_Explicit_m0A788F49E28DE18F33D851EF8C95D496A2275B48 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* ___0_data, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
int64_t V_1 = 0;
|
|
int32_t G_B3_0 = 0;
|
|
int64_t G_B8_0 = 0;
|
|
{
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_0 = ___0_data;
|
|
NullCheck(L_0);
|
|
int32_t L_1 = L_0->___type;
|
|
if ((((int32_t)L_1) == ((int32_t)5)))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_2 = ___0_data;
|
|
NullCheck(L_2);
|
|
int32_t L_3 = L_2->___type;
|
|
G_B3_0 = ((((int32_t)((((int32_t)L_3) == ((int32_t)4))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0019;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
bool L_4 = V_0;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_5 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)));
|
|
InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE4B406C53746754260741908B65B3D19AD5BEDA0)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonData_op_Explicit_m0A788F49E28DE18F33D851EF8C95D496A2275B48_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_6 = ___0_data;
|
|
NullCheck(L_6);
|
|
int32_t L_7 = L_6->___type;
|
|
if ((((int32_t)L_7) == ((int32_t)5)))
|
|
{
|
|
goto IL_003b;
|
|
}
|
|
}
|
|
{
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_8 = ___0_data;
|
|
NullCheck(L_8);
|
|
int32_t L_9 = L_8->___inst_int;
|
|
G_B8_0 = ((int64_t)L_9);
|
|
goto IL_0041;
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_10 = ___0_data;
|
|
NullCheck(L_10);
|
|
int64_t L_11 = L_10->___inst_long;
|
|
G_B8_0 = L_11;
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
V_1 = G_B8_0;
|
|
goto IL_0044;
|
|
}
|
|
|
|
IL_0044:
|
|
{
|
|
int64_t L_12 = V_1;
|
|
return L_12;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonData_op_Explicit_m7AD19ED5C99B6C2BEAC71AD2C892C86ED3F8F55C (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* ___0_data, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
String_t* V_1 = NULL;
|
|
{
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_0 = ___0_data;
|
|
NullCheck(L_0);
|
|
int32_t L_1 = L_0->___type;
|
|
V_0 = (bool)((((int32_t)((((int32_t)L_1) == ((int32_t)3))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_3 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)));
|
|
InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral13026DD559AA5A6B131F15B7DB4105EA898DA4D9)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonData_op_Explicit_m7AD19ED5C99B6C2BEAC71AD2C892C86ED3F8F55C_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_4 = ___0_data;
|
|
NullCheck(L_4);
|
|
String_t* L_5 = L_4->___inst_string;
|
|
V_1 = L_5;
|
|
goto IL_0026;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
String_t* L_6 = V_1;
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonData_System_Collections_ICollection_CopyTo_m718153CFF6828AF6E374C7FDF80D7FD675544520 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, RuntimeArray* ___0_array, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = JsonData_EnsureCollection_mFB01D813BC8765113931EF533783BA5BC764C283(__this, NULL);
|
|
RuntimeArray* L_1 = ___0_array;
|
|
int32_t L_2 = ___1_index;
|
|
NullCheck(L_0);
|
|
InterfaceActionInvoker2< RuntimeArray*, int32_t >::Invoke(0, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var, L_0, L_1, L_2);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonData_System_Collections_IDictionary_Add_m8F766EE45CE3613EEE5136B5AC233C3FF3A16A1A (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, RuntimeObject* ___0_key, RuntimeObject* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_t76010575BE25258AB4D5EFFF458A7FCD2F1030A7_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2__ctor_mF8563179C2DDD7A9FDB625D79ABD337FB772A683_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* V_0 = NULL;
|
|
KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
RuntimeObject* L_0 = ___1_value;
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_1;
|
|
L_1 = JsonData_ToJsonData_mD42F841238609F7087B993D39CC6EC3F39F8BACC(__this, L_0, NULL);
|
|
V_0 = L_1;
|
|
RuntimeObject* L_2;
|
|
L_2 = JsonData_EnsureDictionary_m402293ECDF1F18AE8CA8259A102E698ADD3A8EB2(__this, NULL);
|
|
RuntimeObject* L_3 = ___0_key;
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_4 = V_0;
|
|
NullCheck(L_2);
|
|
InterfaceActionInvoker2< RuntimeObject*, RuntimeObject* >::Invoke(5, IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var, L_2, L_3, L_4);
|
|
RuntimeObject* L_5 = ___0_key;
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_6 = V_0;
|
|
KeyValuePair_2__ctor_mF8563179C2DDD7A9FDB625D79ABD337FB772A683((&V_1), ((String_t*)CastclassSealed((RuntimeObject*)L_5, String_t_il2cpp_TypeInfo_var)), L_6, KeyValuePair_2__ctor_mF8563179C2DDD7A9FDB625D79ABD337FB772A683_RuntimeMethod_var);
|
|
RuntimeObject* L_7 = __this->___object_list;
|
|
KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28 L_8 = V_1;
|
|
NullCheck(L_7);
|
|
InterfaceActionInvoker1< KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28 >::Invoke(2, ICollection_1_t76010575BE25258AB4D5EFFF458A7FCD2F1030A7_il2cpp_TypeInfo_var, L_7, L_8);
|
|
__this->___json = (String_t*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___json), (void*)(String_t*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonData_System_Collections_IDictionary_Clear_m285AB467A43A7C41A8427B796E17F213AEA51528 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_t76010575BE25258AB4D5EFFF458A7FCD2F1030A7_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = JsonData_EnsureDictionary_m402293ECDF1F18AE8CA8259A102E698ADD3A8EB2(__this, NULL);
|
|
NullCheck(L_0);
|
|
InterfaceActionInvoker0::Invoke(6, IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var, L_0);
|
|
RuntimeObject* L_1 = __this->___object_list;
|
|
NullCheck(L_1);
|
|
InterfaceActionInvoker0::Invoke(3, ICollection_1_t76010575BE25258AB4D5EFFF458A7FCD2F1030A7_il2cpp_TypeInfo_var, L_1);
|
|
__this->___json = (String_t*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___json), (void*)(String_t*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonData_System_Collections_IDictionary_Contains_m02095723C5D92D7C080B137650156C56261FA23C (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, RuntimeObject* ___0_key, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = JsonData_EnsureDictionary_m402293ECDF1F18AE8CA8259A102E698ADD3A8EB2(__this, NULL);
|
|
RuntimeObject* L_1 = ___0_key;
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = InterfaceFuncInvoker1< bool, RuntimeObject* >::Invoke(4, IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var, L_0, L_1);
|
|
V_0 = L_2;
|
|
goto IL_0010;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
bool L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonData_System_Collections_IDictionary_GetEnumerator_mC7F4FE47A8BD7DD7A9941C7D62BDC8906FBE7AAE (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IOrderedDictionary_t4705C37EB66554997A0F3C58A92EE8E202BD46E9_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(2, IOrderedDictionary_t4705C37EB66554997A0F3C58A92EE8E202BD46E9_il2cpp_TypeInfo_var, __this);
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
RuntimeObject* L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonData_System_Collections_IDictionary_Remove_m16DF2045A4C3B23570ACBFBF890CEABF481F81CF (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, RuntimeObject* ___0_key, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_t76010575BE25258AB4D5EFFF458A7FCD2F1030A7_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_1_tCE0C7B37A9126CC0CB3277FBC9C4B9161B866C32_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Key_mB20EAD0A1F549096009239692374BA2D53CC56C8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
bool V_1 = false;
|
|
KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
bool V_3 = false;
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = JsonData_EnsureDictionary_m402293ECDF1F18AE8CA8259A102E698ADD3A8EB2(__this, NULL);
|
|
RuntimeObject* L_1 = ___0_key;
|
|
NullCheck(L_0);
|
|
InterfaceActionInvoker1< RuntimeObject* >::Invoke(10, IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var, L_0, L_1);
|
|
V_0 = 0;
|
|
goto IL_004b;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
RuntimeObject* L_2 = __this->___object_list;
|
|
int32_t L_3 = V_0;
|
|
NullCheck(L_2);
|
|
KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28 L_4;
|
|
L_4 = InterfaceFuncInvoker1< KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28, int32_t >::Invoke(0, IList_1_tCE0C7B37A9126CC0CB3277FBC9C4B9161B866C32_il2cpp_TypeInfo_var, L_2, L_3);
|
|
V_2 = L_4;
|
|
String_t* L_5;
|
|
L_5 = KeyValuePair_2_get_Key_mB20EAD0A1F549096009239692374BA2D53CC56C8_inline((&V_2), KeyValuePair_2_get_Key_mB20EAD0A1F549096009239692374BA2D53CC56C8_RuntimeMethod_var);
|
|
RuntimeObject* L_6 = ___0_key;
|
|
bool L_7;
|
|
L_7 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_5, ((String_t*)CastclassSealed((RuntimeObject*)L_6, String_t_il2cpp_TypeInfo_var)), NULL);
|
|
V_1 = L_7;
|
|
bool L_8 = V_1;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0046;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_9 = __this->___object_list;
|
|
int32_t L_10 = V_0;
|
|
NullCheck(L_9);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(4, IList_1_tCE0C7B37A9126CC0CB3277FBC9C4B9161B866C32_il2cpp_TypeInfo_var, L_9, L_10);
|
|
goto IL_005d;
|
|
}
|
|
|
|
IL_0046:
|
|
{
|
|
int32_t L_11 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_11, 1));
|
|
}
|
|
|
|
IL_004b:
|
|
{
|
|
int32_t L_12 = V_0;
|
|
RuntimeObject* L_13 = __this->___object_list;
|
|
NullCheck(L_13);
|
|
int32_t L_14;
|
|
L_14 = InterfaceFuncInvoker0< int32_t >::Invoke(0, ICollection_1_t76010575BE25258AB4D5EFFF458A7FCD2F1030A7_il2cpp_TypeInfo_var, L_13);
|
|
V_3 = (bool)((((int32_t)L_12) < ((int32_t)L_14))? 1 : 0);
|
|
bool L_15 = V_3;
|
|
if (L_15)
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
|
|
IL_005d:
|
|
{
|
|
__this->___json = (String_t*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___json), (void*)(String_t*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonData_System_Collections_IEnumerable_GetEnumerator_mFE8CBE09E06D74A6EFDBA81CC6755C65451862E2 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = JsonData_EnsureCollection_mFB01D813BC8765113931EF533783BA5BC764C283(__this, NULL);
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_1;
|
|
L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, L_0);
|
|
V_0 = L_1;
|
|
goto IL_000f;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
RuntimeObject* L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonData_LitJson_IJsonWrapper_GetBoolean_m02229DB77CB8074F0F2ED898D0CE29BA4350B95B (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
{
|
|
int32_t L_0 = __this->___type;
|
|
V_0 = (bool)((((int32_t)((((int32_t)L_0) == ((int32_t)7))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3FB649A9FAAB5634336E279002E9E84D9AFCA0FC)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonData_LitJson_IJsonWrapper_GetBoolean_m02229DB77CB8074F0F2ED898D0CE29BA4350B95B_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
bool L_3 = __this->___inst_boolean;
|
|
V_1 = L_3;
|
|
goto IL_0026;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
bool L_4 = V_1;
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double JsonData_LitJson_IJsonWrapper_GetDouble_mBB4264E6B18E4DF17A4B00CB0BFE838A3895AE69 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
double V_1 = 0.0;
|
|
{
|
|
int32_t L_0 = __this->___type;
|
|
V_0 = (bool)((((int32_t)((((int32_t)L_0) == ((int32_t)6))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE09E38B1A3E02297C148733DE7EED6E5DC8479F5)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonData_LitJson_IJsonWrapper_GetDouble_mBB4264E6B18E4DF17A4B00CB0BFE838A3895AE69_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
double L_3 = __this->___inst_double;
|
|
V_1 = L_3;
|
|
goto IL_0026;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
double L_4 = V_1;
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonData_LitJson_IJsonWrapper_GetInt_mC20A4D6F04A93056C1FB067C68E092AA4CE13BEE (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t L_0 = __this->___type;
|
|
V_0 = (bool)((((int32_t)((((int32_t)L_0) == ((int32_t)4))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9CBCD572886BE3E0FA105AA3A7FE08AABFF19B79)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonData_LitJson_IJsonWrapper_GetInt_mC20A4D6F04A93056C1FB067C68E092AA4CE13BEE_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
int32_t L_3 = __this->___inst_int;
|
|
V_1 = L_3;
|
|
goto IL_0026;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
int32_t L_4 = V_1;
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t JsonData_LitJson_IJsonWrapper_GetLong_mC36169157591BD9D3A60C529659D4F6EF01A268D (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
int64_t V_1 = 0;
|
|
{
|
|
int32_t L_0 = __this->___type;
|
|
V_0 = (bool)((((int32_t)((((int32_t)L_0) == ((int32_t)5))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral999DBDC959C03AA352D6BBA2EE5B69A49B9F2393)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonData_LitJson_IJsonWrapper_GetLong_mC36169157591BD9D3A60C529659D4F6EF01A268D_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
int64_t L_3 = __this->___inst_long;
|
|
V_1 = L_3;
|
|
goto IL_0026;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
int64_t L_4 = V_1;
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonData_LitJson_IJsonWrapper_GetString_m6EA810BD49C5125077D92E11DFEC4AFE0A4235E1 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
String_t* V_1 = NULL;
|
|
{
|
|
int32_t L_0 = __this->___type;
|
|
V_0 = (bool)((((int32_t)((((int32_t)L_0) == ((int32_t)3))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral447D2D55725EF428A6F4753B53612ECA1764ECE7)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonData_LitJson_IJsonWrapper_GetString_m6EA810BD49C5125077D92E11DFEC4AFE0A4235E1_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
String_t* L_3 = __this->___inst_string;
|
|
V_1 = L_3;
|
|
goto IL_0026;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
String_t* L_4 = V_1;
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonData_LitJson_IJsonWrapper_SetBoolean_mF61DEBF6BDEFCEEC1CA6786DB676415813DCB014 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, bool ___0_val, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
__this->___type = 7;
|
|
bool L_0 = ___0_val;
|
|
__this->___inst_boolean = L_0;
|
|
__this->___json = (String_t*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___json), (void*)(String_t*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonData_LitJson_IJsonWrapper_SetDouble_mDE0713F66AB143C6F3705DA877F01C9E60D76553 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, double ___0_val, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
__this->___type = 6;
|
|
double L_0 = ___0_val;
|
|
__this->___inst_double = L_0;
|
|
__this->___json = (String_t*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___json), (void*)(String_t*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonData_LitJson_IJsonWrapper_SetInt_m2FD29586CD2F56322C23D12E7622A30053C704D5 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, int32_t ___0_val, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
__this->___type = 4;
|
|
int32_t L_0 = ___0_val;
|
|
__this->___inst_int = L_0;
|
|
__this->___json = (String_t*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___json), (void*)(String_t*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonData_LitJson_IJsonWrapper_SetLong_mE40BE10F5427485DBFE8018E34C61EA862B18716 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, int64_t ___0_val, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
__this->___type = 5;
|
|
int64_t L_0 = ___0_val;
|
|
__this->___inst_long = L_0;
|
|
__this->___json = (String_t*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___json), (void*)(String_t*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonData_LitJson_IJsonWrapper_SetString_m1D50848A9C4D6FDA2EA3A0B48AB58F27B859BFBA (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, String_t* ___0_val, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
__this->___type = 3;
|
|
String_t* L_0 = ___0_val;
|
|
__this->___inst_string = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___inst_string), (void*)L_0);
|
|
__this->___json = (String_t*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___json), (void*)(String_t*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonData_LitJson_IJsonWrapper_ToJson_m5B53ACE8DB62D0816B15367D6A35EDB96A3977CB (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method)
|
|
{
|
|
String_t* V_0 = NULL;
|
|
{
|
|
String_t* L_0;
|
|
L_0 = JsonData_ToJson_m658608ADAC4FD37098A16F86171C6BEDAE6E4C30(__this, NULL);
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
String_t* L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonData_LitJson_IJsonWrapper_ToJson_m9F1ACEC1D1CDC41BE912D364538A9DFB79053CCD (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___0_writer, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_0 = ___0_writer;
|
|
JsonData_ToJson_m179225C968B6EE68507BB3694882E41DA05DA4C4(__this, L_0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonData_System_Collections_IList_Add_mBB90F2B605DA48CF3B2BB283D83E3B68982D7857 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, RuntimeObject* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
RuntimeObject* L_0 = ___0_value;
|
|
int32_t L_1;
|
|
L_1 = JsonData_Add_mA88DA1756863A2C121F7D72986EDF2EF6E0B88E1(__this, L_0, NULL);
|
|
V_0 = L_1;
|
|
goto IL_000b;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
int32_t L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonData_System_Collections_IList_Clear_m480936A33C1592C34894FCCB427D2A650841D15B (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = JsonData_EnsureList_m6FCDB06F594222F9584291F20B3DA2FF4E5CE718(__this, NULL);
|
|
NullCheck(L_0);
|
|
InterfaceActionInvoker0::Invoke(4, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_0);
|
|
__this->___json = (String_t*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___json), (void*)(String_t*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonData_System_Collections_IList_Contains_m524B6DEDCF030862D76E60DE0EF23CE305052A16 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, RuntimeObject* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = JsonData_EnsureList_m6FCDB06F594222F9584291F20B3DA2FF4E5CE718(__this, NULL);
|
|
RuntimeObject* L_1 = ___0_value;
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = InterfaceFuncInvoker1< bool, RuntimeObject* >::Invoke(3, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_0, L_1);
|
|
V_0 = L_2;
|
|
goto IL_0010;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
bool L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonData_System_Collections_IList_IndexOf_mC8D5D8C8B485992303ACF9F535A63BEBABDAC186 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, RuntimeObject* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = JsonData_EnsureList_m6FCDB06F594222F9584291F20B3DA2FF4E5CE718(__this, NULL);
|
|
RuntimeObject* L_1 = ___0_value;
|
|
NullCheck(L_0);
|
|
int32_t L_2;
|
|
L_2 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(7, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_0, L_1);
|
|
V_0 = L_2;
|
|
goto IL_0010;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
int32_t L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonData_System_Collections_IList_Insert_m968CA5587708151BD18906CD3A30CA3BB452D4F1 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, int32_t ___0_index, RuntimeObject* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = JsonData_EnsureList_m6FCDB06F594222F9584291F20B3DA2FF4E5CE718(__this, NULL);
|
|
int32_t L_1 = ___0_index;
|
|
RuntimeObject* L_2 = ___1_value;
|
|
NullCheck(L_0);
|
|
InterfaceActionInvoker2< int32_t, RuntimeObject* >::Invoke(8, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_0, L_1, L_2);
|
|
__this->___json = (String_t*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___json), (void*)(String_t*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonData_System_Collections_IList_Remove_m6BE0CE268E656B03AFDF0E8F532C2D7C2A35611E (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, RuntimeObject* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = JsonData_EnsureList_m6FCDB06F594222F9584291F20B3DA2FF4E5CE718(__this, NULL);
|
|
RuntimeObject* L_1 = ___0_value;
|
|
NullCheck(L_0);
|
|
InterfaceActionInvoker1< RuntimeObject* >::Invoke(9, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_0, L_1);
|
|
__this->___json = (String_t*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___json), (void*)(String_t*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonData_System_Collections_IList_RemoveAt_mE575B66B97A5547B92B86551F53E8316411A1A4F (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = JsonData_EnsureList_m6FCDB06F594222F9584291F20B3DA2FF4E5CE718(__this, NULL);
|
|
int32_t L_1 = ___0_index;
|
|
NullCheck(L_0);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(10, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_0, L_1);
|
|
__this->___json = (String_t*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___json), (void*)(String_t*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonData_System_Collections_Specialized_IOrderedDictionary_GetEnumerator_m277AB6743B8845FE83E7DB3A71456CAAFB8620D5 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_tE918F8F2362B68438A431F84E92E542A23B318B6_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OrderedDictionaryEnumerator_t557577F1E3C3DC7E5A3BFA6B12F2E0F7921D9C18_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = JsonData_EnsureDictionary_m402293ECDF1F18AE8CA8259A102E698ADD3A8EB2(__this, NULL);
|
|
RuntimeObject* L_1 = __this->___object_list;
|
|
NullCheck(L_1);
|
|
RuntimeObject* L_2;
|
|
L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, IEnumerable_1_tE918F8F2362B68438A431F84E92E542A23B318B6_il2cpp_TypeInfo_var, L_1);
|
|
OrderedDictionaryEnumerator_t557577F1E3C3DC7E5A3BFA6B12F2E0F7921D9C18* L_3 = (OrderedDictionaryEnumerator_t557577F1E3C3DC7E5A3BFA6B12F2E0F7921D9C18*)il2cpp_codegen_object_new(OrderedDictionaryEnumerator_t557577F1E3C3DC7E5A3BFA6B12F2E0F7921D9C18_il2cpp_TypeInfo_var);
|
|
OrderedDictionaryEnumerator__ctor_mE835230F6C9BF7EBC082A282BE74976A450B07A1(L_3, L_2, NULL);
|
|
V_0 = L_3;
|
|
goto IL_001b;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
RuntimeObject* L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonData_System_Collections_Specialized_IOrderedDictionary_Insert_m453944A5175BF515C00BCC24BBE6D1A0121EC0B5 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, int32_t ___0_idx, RuntimeObject* ___1_key, RuntimeObject* ___2_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_1_tCE0C7B37A9126CC0CB3277FBC9C4B9161B866C32_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2__ctor_mF8563179C2DDD7A9FDB625D79ABD337FB772A683_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* V_1 = NULL;
|
|
KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
{
|
|
RuntimeObject* L_0 = ___1_key;
|
|
V_0 = ((String_t*)CastclassSealed((RuntimeObject*)L_0, String_t_il2cpp_TypeInfo_var));
|
|
RuntimeObject* L_1 = ___2_value;
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_2;
|
|
L_2 = JsonData_ToJsonData_mD42F841238609F7087B993D39CC6EC3F39F8BACC(__this, L_1, NULL);
|
|
V_1 = L_2;
|
|
String_t* L_3 = V_0;
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_4 = V_1;
|
|
JsonData_set_Item_m6FE3B6A0E6C79F7B3661945A402CBEAB66371202(__this, L_3, L_4, NULL);
|
|
String_t* L_5 = V_0;
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_6 = V_1;
|
|
KeyValuePair_2__ctor_mF8563179C2DDD7A9FDB625D79ABD337FB772A683((&V_2), L_5, L_6, KeyValuePair_2__ctor_mF8563179C2DDD7A9FDB625D79ABD337FB772A683_RuntimeMethod_var);
|
|
RuntimeObject* L_7 = __this->___object_list;
|
|
int32_t L_8 = ___0_idx;
|
|
KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28 L_9 = V_2;
|
|
NullCheck(L_7);
|
|
InterfaceActionInvoker2< int32_t, KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28 >::Invoke(3, IList_1_tCE0C7B37A9126CC0CB3277FBC9C4B9161B866C32_il2cpp_TypeInfo_var, L_7, L_8, L_9);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonData_System_Collections_Specialized_IOrderedDictionary_RemoveAt_m276C779F61AFC7AA2ABC0866BB71FCAF219AF060 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, int32_t ___0_idx, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_t8B67C0BACED3ABBE0BB390A264074F9245F22842_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_1_tCE0C7B37A9126CC0CB3277FBC9C4B9161B866C32_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Key_mB20EAD0A1F549096009239692374BA2D53CC56C8_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = JsonData_EnsureDictionary_m402293ECDF1F18AE8CA8259A102E698ADD3A8EB2(__this, NULL);
|
|
RuntimeObject* L_1 = __this->___inst_object;
|
|
RuntimeObject* L_2 = __this->___object_list;
|
|
int32_t L_3 = ___0_idx;
|
|
NullCheck(L_2);
|
|
KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28 L_4;
|
|
L_4 = InterfaceFuncInvoker1< KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28, int32_t >::Invoke(0, IList_1_tCE0C7B37A9126CC0CB3277FBC9C4B9161B866C32_il2cpp_TypeInfo_var, L_2, L_3);
|
|
V_0 = L_4;
|
|
String_t* L_5;
|
|
L_5 = KeyValuePair_2_get_Key_mB20EAD0A1F549096009239692374BA2D53CC56C8_inline((&V_0), KeyValuePair_2_get_Key_mB20EAD0A1F549096009239692374BA2D53CC56C8_RuntimeMethod_var);
|
|
NullCheck(L_1);
|
|
bool L_6;
|
|
L_6 = InterfaceFuncInvoker1< bool, String_t* >::Invoke(6, IDictionary_2_t8B67C0BACED3ABBE0BB390A264074F9245F22842_il2cpp_TypeInfo_var, L_1, L_5);
|
|
RuntimeObject* L_7 = __this->___object_list;
|
|
int32_t L_8 = ___0_idx;
|
|
NullCheck(L_7);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(4, IList_1_tCE0C7B37A9126CC0CB3277FBC9C4B9161B866C32_il2cpp_TypeInfo_var, L_7, L_8);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonData_EnsureCollection_mFB01D813BC8765113931EF533783BA5BC764C283 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
RuntimeObject* V_1 = NULL;
|
|
bool V_2 = false;
|
|
{
|
|
int32_t L_0 = __this->___type;
|
|
V_0 = (bool)((((int32_t)L_0) == ((int32_t)2))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_2 = __this->___inst_array;
|
|
V_1 = ((RuntimeObject*)Castclass((RuntimeObject*)L_2, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var));
|
|
goto IL_0044;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
int32_t L_3 = __this->___type;
|
|
V_2 = (bool)((((int32_t)L_3) == ((int32_t)1))? 1 : 0);
|
|
bool L_4 = V_2;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_5 = __this->___inst_object;
|
|
V_1 = ((RuntimeObject*)Castclass((RuntimeObject*)L_5, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var));
|
|
goto IL_0044;
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_6 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5149D2AD92135C0DFA7131CADBFCC669275E96B5)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonData_EnsureCollection_mFB01D813BC8765113931EF533783BA5BC764C283_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0044:
|
|
{
|
|
RuntimeObject* L_7 = V_1;
|
|
return L_7;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonData_EnsureDictionary_m402293ECDF1F18AE8CA8259A102E698ADD3A8EB2 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m69403AE90D12CA520ABB728A1557B42580BBC7DC_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_tDF79546961566D2D6F7C4155F7ED851428AA9931_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m53AA73BE6E2FF2045F347EBCEE46E8E4EE524E5F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tFC3915CEAB0CCCC11D0AB7F2D3717177D1111111_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
RuntimeObject* V_1 = NULL;
|
|
bool V_2 = false;
|
|
{
|
|
int32_t L_0 = __this->___type;
|
|
V_0 = (bool)((((int32_t)L_0) == ((int32_t)1))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_2 = __this->___inst_object;
|
|
V_1 = ((RuntimeObject*)Castclass((RuntimeObject*)L_2, IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var));
|
|
goto IL_0061;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
int32_t L_3 = __this->___type;
|
|
V_2 = (bool)((!(((uint32_t)L_3) <= ((uint32_t)0)))? 1 : 0);
|
|
bool L_4 = V_2;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0036;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_5 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6DEED36FFF14869BC9ABC87FCC45B3DA6985BEEC)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonData_EnsureDictionary_m402293ECDF1F18AE8CA8259A102E698ADD3A8EB2_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0036:
|
|
{
|
|
__this->___type = 1;
|
|
Dictionary_2_tDF79546961566D2D6F7C4155F7ED851428AA9931* L_6 = (Dictionary_2_tDF79546961566D2D6F7C4155F7ED851428AA9931*)il2cpp_codegen_object_new(Dictionary_2_tDF79546961566D2D6F7C4155F7ED851428AA9931_il2cpp_TypeInfo_var);
|
|
Dictionary_2__ctor_m69403AE90D12CA520ABB728A1557B42580BBC7DC(L_6, Dictionary_2__ctor_m69403AE90D12CA520ABB728A1557B42580BBC7DC_RuntimeMethod_var);
|
|
__this->___inst_object = L_6;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___inst_object), (void*)L_6);
|
|
List_1_tFC3915CEAB0CCCC11D0AB7F2D3717177D1111111* L_7 = (List_1_tFC3915CEAB0CCCC11D0AB7F2D3717177D1111111*)il2cpp_codegen_object_new(List_1_tFC3915CEAB0CCCC11D0AB7F2D3717177D1111111_il2cpp_TypeInfo_var);
|
|
List_1__ctor_m53AA73BE6E2FF2045F347EBCEE46E8E4EE524E5F(L_7, List_1__ctor_m53AA73BE6E2FF2045F347EBCEE46E8E4EE524E5F_RuntimeMethod_var);
|
|
__this->___object_list = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___object_list), (void*)L_7);
|
|
RuntimeObject* L_8 = __this->___inst_object;
|
|
V_1 = ((RuntimeObject*)Castclass((RuntimeObject*)L_8, IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var));
|
|
goto IL_0061;
|
|
}
|
|
|
|
IL_0061:
|
|
{
|
|
RuntimeObject* L_9 = V_1;
|
|
return L_9;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonData_EnsureList_m6FCDB06F594222F9584291F20B3DA2FF4E5CE718 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m71FFC1A9C81BB314F91B10BE885521A22E708BF8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tF2E1AB00AE46093D3DBEBFF23EE42498976376CA_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
RuntimeObject* V_1 = NULL;
|
|
bool V_2 = false;
|
|
{
|
|
int32_t L_0 = __this->___type;
|
|
V_0 = (bool)((((int32_t)L_0) == ((int32_t)2))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_2 = __this->___inst_array;
|
|
V_1 = ((RuntimeObject*)Castclass((RuntimeObject*)L_2, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var));
|
|
goto IL_0056;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
int32_t L_3 = __this->___type;
|
|
V_2 = (bool)((!(((uint32_t)L_3) <= ((uint32_t)0)))? 1 : 0);
|
|
bool L_4 = V_2;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0036;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_5 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6BAB8F53EE6BDD0369569E27A174F474EA370914)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonData_EnsureList_m6FCDB06F594222F9584291F20B3DA2FF4E5CE718_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0036:
|
|
{
|
|
__this->___type = 2;
|
|
List_1_tF2E1AB00AE46093D3DBEBFF23EE42498976376CA* L_6 = (List_1_tF2E1AB00AE46093D3DBEBFF23EE42498976376CA*)il2cpp_codegen_object_new(List_1_tF2E1AB00AE46093D3DBEBFF23EE42498976376CA_il2cpp_TypeInfo_var);
|
|
List_1__ctor_m71FFC1A9C81BB314F91B10BE885521A22E708BF8(L_6, List_1__ctor_m71FFC1A9C81BB314F91B10BE885521A22E708BF8_RuntimeMethod_var);
|
|
__this->___inst_array = L_6;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___inst_array), (void*)L_6);
|
|
RuntimeObject* L_7 = __this->___inst_array;
|
|
V_1 = ((RuntimeObject*)Castclass((RuntimeObject*)L_7, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var));
|
|
goto IL_0056;
|
|
}
|
|
|
|
IL_0056:
|
|
{
|
|
RuntimeObject* L_8 = V_1;
|
|
return L_8;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonData_t3C51D89A19D30A47A74617107D861959322307F1* JsonData_ToJsonData_mD42F841238609F7087B993D39CC6EC3F39F8BACC (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonData_t3C51D89A19D30A47A74617107D861959322307F1_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* V_1 = NULL;
|
|
bool V_2 = false;
|
|
{
|
|
RuntimeObject* L_0 = ___0_obj;
|
|
V_0 = (bool)((((RuntimeObject*)(RuntimeObject*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
V_1 = (JsonData_t3C51D89A19D30A47A74617107D861959322307F1*)NULL;
|
|
goto IL_002e;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
RuntimeObject* L_2 = ___0_obj;
|
|
V_2 = (bool)((!(((RuntimeObject*)(JsonData_t3C51D89A19D30A47A74617107D861959322307F1*)((JsonData_t3C51D89A19D30A47A74617107D861959322307F1*)IsInstClass((RuntimeObject*)L_2, JsonData_t3C51D89A19D30A47A74617107D861959322307F1_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_3 = V_2;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_4 = ___0_obj;
|
|
V_1 = ((JsonData_t3C51D89A19D30A47A74617107D861959322307F1*)CastclassClass((RuntimeObject*)L_4, JsonData_t3C51D89A19D30A47A74617107D861959322307F1_il2cpp_TypeInfo_var));
|
|
goto IL_002e;
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
RuntimeObject* L_5 = ___0_obj;
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_6 = (JsonData_t3C51D89A19D30A47A74617107D861959322307F1*)il2cpp_codegen_object_new(JsonData_t3C51D89A19D30A47A74617107D861959322307F1_il2cpp_TypeInfo_var);
|
|
JsonData__ctor_mA02A77C55F31BBE7F62D84ADEAC445BB4D6BF6F0(L_6, L_5, NULL);
|
|
V_1 = L_6;
|
|
goto IL_002e;
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_7 = V_1;
|
|
return L_7;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonData_WriteJson_mD307B7581AE536A21EA9F30B270BC5393B335356 (RuntimeObject* ___0_obj, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___1_writer, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IJsonWrapper_t447B39837883BA1281A17C3D6BA122AD22837DD9_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonData_t3C51D89A19D30A47A74617107D861959322307F1_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
bool V_4 = false;
|
|
bool V_5 = false;
|
|
bool V_6 = false;
|
|
RuntimeObject* V_7 = NULL;
|
|
RuntimeObject* V_8 = NULL;
|
|
RuntimeObject* V_9 = NULL;
|
|
bool V_10 = false;
|
|
RuntimeObject* V_11 = NULL;
|
|
DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB V_12;
|
|
memset((&V_12), 0, sizeof(V_12));
|
|
{
|
|
RuntimeObject* L_0 = ___0_obj;
|
|
V_0 = (bool)((((RuntimeObject*)(RuntimeObject*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_2 = ___1_writer;
|
|
NullCheck(L_2);
|
|
JsonWriter_Write_mC6C394BE18186CAEB8597055057A1AECDEE56916(L_2, (String_t*)NULL, NULL);
|
|
goto IL_018d;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
RuntimeObject* L_3 = ___0_obj;
|
|
NullCheck(L_3);
|
|
bool L_4;
|
|
L_4 = InterfaceFuncInvoker0< bool >::Invoke(6, IJsonWrapper_t447B39837883BA1281A17C3D6BA122AD22837DD9_il2cpp_TypeInfo_var, L_3);
|
|
V_1 = L_4;
|
|
bool L_5 = V_1;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_6 = ___1_writer;
|
|
RuntimeObject* L_7 = ___0_obj;
|
|
NullCheck(L_7);
|
|
String_t* L_8;
|
|
L_8 = InterfaceFuncInvoker0< String_t* >::Invoke(12, IJsonWrapper_t447B39837883BA1281A17C3D6BA122AD22837DD9_il2cpp_TypeInfo_var, L_7);
|
|
NullCheck(L_6);
|
|
JsonWriter_Write_mC6C394BE18186CAEB8597055057A1AECDEE56916(L_6, L_8, NULL);
|
|
goto IL_018d;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
RuntimeObject* L_9 = ___0_obj;
|
|
NullCheck(L_9);
|
|
bool L_10;
|
|
L_10 = InterfaceFuncInvoker0< bool >::Invoke(1, IJsonWrapper_t447B39837883BA1281A17C3D6BA122AD22837DD9_il2cpp_TypeInfo_var, L_9);
|
|
V_2 = L_10;
|
|
bool L_11 = V_2;
|
|
if (!L_11)
|
|
{
|
|
goto IL_0051;
|
|
}
|
|
}
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_12 = ___1_writer;
|
|
RuntimeObject* L_13 = ___0_obj;
|
|
NullCheck(L_13);
|
|
bool L_14;
|
|
L_14 = InterfaceFuncInvoker0< bool >::Invoke(7, IJsonWrapper_t447B39837883BA1281A17C3D6BA122AD22837DD9_il2cpp_TypeInfo_var, L_13);
|
|
NullCheck(L_12);
|
|
JsonWriter_Write_mFACCB1B6087CE1C66A68CE3BA2AF9844F7F31D8C(L_12, L_14, NULL);
|
|
goto IL_018d;
|
|
}
|
|
|
|
IL_0051:
|
|
{
|
|
RuntimeObject* L_15 = ___0_obj;
|
|
NullCheck(L_15);
|
|
bool L_16;
|
|
L_16 = InterfaceFuncInvoker0< bool >::Invoke(2, IJsonWrapper_t447B39837883BA1281A17C3D6BA122AD22837DD9_il2cpp_TypeInfo_var, L_15);
|
|
V_3 = L_16;
|
|
bool L_17 = V_3;
|
|
if (!L_17)
|
|
{
|
|
goto IL_006e;
|
|
}
|
|
}
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_18 = ___1_writer;
|
|
RuntimeObject* L_19 = ___0_obj;
|
|
NullCheck(L_19);
|
|
double L_20;
|
|
L_20 = InterfaceFuncInvoker0< double >::Invoke(8, IJsonWrapper_t447B39837883BA1281A17C3D6BA122AD22837DD9_il2cpp_TypeInfo_var, L_19);
|
|
NullCheck(L_18);
|
|
JsonWriter_Write_m657048A70C011FC85FD3773A026EC0B21462AB4D(L_18, L_20, NULL);
|
|
goto IL_018d;
|
|
}
|
|
|
|
IL_006e:
|
|
{
|
|
RuntimeObject* L_21 = ___0_obj;
|
|
NullCheck(L_21);
|
|
bool L_22;
|
|
L_22 = InterfaceFuncInvoker0< bool >::Invoke(3, IJsonWrapper_t447B39837883BA1281A17C3D6BA122AD22837DD9_il2cpp_TypeInfo_var, L_21);
|
|
V_4 = L_22;
|
|
bool L_23 = V_4;
|
|
if (!L_23)
|
|
{
|
|
goto IL_008d;
|
|
}
|
|
}
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_24 = ___1_writer;
|
|
RuntimeObject* L_25 = ___0_obj;
|
|
NullCheck(L_25);
|
|
int32_t L_26;
|
|
L_26 = InterfaceFuncInvoker0< int32_t >::Invoke(9, IJsonWrapper_t447B39837883BA1281A17C3D6BA122AD22837DD9_il2cpp_TypeInfo_var, L_25);
|
|
NullCheck(L_24);
|
|
JsonWriter_Write_m3A3246FEFCA9BCEB4F3E7D2D5AC0FF49B8BBD3A7(L_24, L_26, NULL);
|
|
goto IL_018d;
|
|
}
|
|
|
|
IL_008d:
|
|
{
|
|
RuntimeObject* L_27 = ___0_obj;
|
|
NullCheck(L_27);
|
|
bool L_28;
|
|
L_28 = InterfaceFuncInvoker0< bool >::Invoke(4, IJsonWrapper_t447B39837883BA1281A17C3D6BA122AD22837DD9_il2cpp_TypeInfo_var, L_27);
|
|
V_5 = L_28;
|
|
bool L_29 = V_5;
|
|
if (!L_29)
|
|
{
|
|
goto IL_00ac;
|
|
}
|
|
}
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_30 = ___1_writer;
|
|
RuntimeObject* L_31 = ___0_obj;
|
|
NullCheck(L_31);
|
|
int64_t L_32;
|
|
L_32 = InterfaceFuncInvoker0< int64_t >::Invoke(11, IJsonWrapper_t447B39837883BA1281A17C3D6BA122AD22837DD9_il2cpp_TypeInfo_var, L_31);
|
|
NullCheck(L_30);
|
|
JsonWriter_Write_m500833BCB5B21114C1C8A3FA7DAAF6A1EAD2A3D4(L_30, L_32, NULL);
|
|
goto IL_018d;
|
|
}
|
|
|
|
IL_00ac:
|
|
{
|
|
RuntimeObject* L_33 = ___0_obj;
|
|
NullCheck(L_33);
|
|
bool L_34;
|
|
L_34 = InterfaceFuncInvoker0< bool >::Invoke(0, IJsonWrapper_t447B39837883BA1281A17C3D6BA122AD22837DD9_il2cpp_TypeInfo_var, L_33);
|
|
V_6 = L_34;
|
|
bool L_35 = V_6;
|
|
if (!L_35)
|
|
{
|
|
goto IL_010e;
|
|
}
|
|
}
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_36 = ___1_writer;
|
|
NullCheck(L_36);
|
|
JsonWriter_WriteArrayStart_mF4AB20790AB8817BCCEEB5FA649832890D5AADEB(L_36, NULL);
|
|
RuntimeObject* L_37 = ___0_obj;
|
|
NullCheck(L_37);
|
|
RuntimeObject* L_38;
|
|
L_38 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, L_37);
|
|
V_7 = L_38;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_00ef:
|
|
{
|
|
{
|
|
RuntimeObject* L_39 = V_7;
|
|
V_9 = ((RuntimeObject*)IsInst((RuntimeObject*)L_39, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
|
|
RuntimeObject* L_40 = V_9;
|
|
if (!L_40)
|
|
{
|
|
goto IL_0104;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_41 = V_9;
|
|
NullCheck(L_41);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_41);
|
|
}
|
|
|
|
IL_0104:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_00e4_1;
|
|
}
|
|
|
|
IL_00cb_1:
|
|
{
|
|
RuntimeObject* L_42 = V_7;
|
|
NullCheck(L_42);
|
|
RuntimeObject* L_43;
|
|
L_43 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_42);
|
|
V_8 = L_43;
|
|
RuntimeObject* L_44 = V_8;
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_45 = ___1_writer;
|
|
JsonData_WriteJson_mD307B7581AE536A21EA9F30B270BC5393B335356(((JsonData_t3C51D89A19D30A47A74617107D861959322307F1*)CastclassClass((RuntimeObject*)L_44, JsonData_t3C51D89A19D30A47A74617107D861959322307F1_il2cpp_TypeInfo_var)), L_45, NULL);
|
|
}
|
|
|
|
IL_00e4_1:
|
|
{
|
|
RuntimeObject* L_46 = V_7;
|
|
NullCheck(L_46);
|
|
bool L_47;
|
|
L_47 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_46);
|
|
if (L_47)
|
|
{
|
|
goto IL_00cb_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0105;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0105:
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_48 = ___1_writer;
|
|
NullCheck(L_48);
|
|
JsonWriter_WriteArrayEnd_mE8262D6AC279897DA41D549CE12A8EA3054777B5(L_48, NULL);
|
|
goto IL_018d;
|
|
}
|
|
|
|
IL_010e:
|
|
{
|
|
RuntimeObject* L_49 = ___0_obj;
|
|
NullCheck(L_49);
|
|
bool L_50;
|
|
L_50 = InterfaceFuncInvoker0< bool >::Invoke(5, IJsonWrapper_t447B39837883BA1281A17C3D6BA122AD22837DD9_il2cpp_TypeInfo_var, L_49);
|
|
V_10 = L_50;
|
|
bool L_51 = V_10;
|
|
if (!L_51)
|
|
{
|
|
goto IL_018d;
|
|
}
|
|
}
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_52 = ___1_writer;
|
|
NullCheck(L_52);
|
|
JsonWriter_WriteObjectStart_m90F3A0A19C03EA7CF90017768E3FA217E4038688(L_52, NULL);
|
|
RuntimeObject* L_53 = ___0_obj;
|
|
NullCheck(L_53);
|
|
RuntimeObject* L_54;
|
|
L_54 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(9, IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var, L_53);
|
|
V_11 = L_54;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_016e:
|
|
{
|
|
{
|
|
RuntimeObject* L_55 = V_11;
|
|
V_9 = ((RuntimeObject*)IsInst((RuntimeObject*)L_55, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
|
|
RuntimeObject* L_56 = V_9;
|
|
if (!L_56)
|
|
{
|
|
goto IL_0183;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_57 = V_9;
|
|
NullCheck(L_57);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_57);
|
|
}
|
|
|
|
IL_0183:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0163_1;
|
|
}
|
|
|
|
IL_012d_1:
|
|
{
|
|
RuntimeObject* L_58 = V_11;
|
|
NullCheck(L_58);
|
|
RuntimeObject* L_59;
|
|
L_59 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_58);
|
|
V_12 = ((*(DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB*)((DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB*)(DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB*)UnBox(L_59, DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_il2cpp_TypeInfo_var))));
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_60 = ___1_writer;
|
|
RuntimeObject* L_61;
|
|
L_61 = DictionaryEntry_get_Key_m09845C00732E530E6FCB9042079E90D3912215FE_inline((&V_12), NULL);
|
|
NullCheck(L_60);
|
|
JsonWriter_WritePropertyName_m5646EF1771ABCFCCAAD52086AAE3387579E158E0(L_60, ((String_t*)CastclassSealed((RuntimeObject*)L_61, String_t_il2cpp_TypeInfo_var)), NULL);
|
|
RuntimeObject* L_62;
|
|
L_62 = DictionaryEntry_get_Value_m75FD18FE968AE131F28AA2CB0DF4895EBA39075E_inline((&V_12), NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_63 = ___1_writer;
|
|
JsonData_WriteJson_mD307B7581AE536A21EA9F30B270BC5393B335356(((JsonData_t3C51D89A19D30A47A74617107D861959322307F1*)CastclassClass((RuntimeObject*)L_62, JsonData_t3C51D89A19D30A47A74617107D861959322307F1_il2cpp_TypeInfo_var)), L_63, NULL);
|
|
}
|
|
|
|
IL_0163_1:
|
|
{
|
|
RuntimeObject* L_64 = V_11;
|
|
NullCheck(L_64);
|
|
bool L_65;
|
|
L_65 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_64);
|
|
if (L_65)
|
|
{
|
|
goto IL_012d_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0184;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0184:
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_66 = ___1_writer;
|
|
NullCheck(L_66);
|
|
JsonWriter_WriteObjectEnd_m7B1F539A650AC9AA9413B9C3FF1DAA27834141AF(L_66, NULL);
|
|
goto IL_018d;
|
|
}
|
|
|
|
IL_018d:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonData_Add_mA88DA1756863A2C121F7D72986EDF2EF6E0B88E1 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, RuntimeObject* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
RuntimeObject* L_0 = ___0_value;
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_1;
|
|
L_1 = JsonData_ToJsonData_mD42F841238609F7087B993D39CC6EC3F39F8BACC(__this, L_0, NULL);
|
|
V_0 = L_1;
|
|
__this->___json = (String_t*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___json), (void*)(String_t*)NULL);
|
|
RuntimeObject* L_2;
|
|
L_2 = JsonData_EnsureList_m6FCDB06F594222F9584291F20B3DA2FF4E5CE718(__this, NULL);
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_3 = V_0;
|
|
NullCheck(L_2);
|
|
int32_t L_4;
|
|
L_4 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(2, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_2, L_3);
|
|
V_1 = L_4;
|
|
goto IL_001f;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
int32_t L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonData_Remove_mB1E228019F13D13490400AA18B4DB4B0678B204A (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_t76010575BE25258AB4D5EFFF458A7FCD2F1030A7_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_tE4324299D87C0ED69EFF6083103E594ED9299AF1_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_t8B67C0BACED3ABBE0BB390A264074F9245F22842_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2__ctor_mF8563179C2DDD7A9FDB625D79ABD337FB772A683_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* V_1 = NULL;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
bool V_4 = false;
|
|
int32_t G_B5_0 = 0;
|
|
{
|
|
__this->___json = (String_t*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___json), (void*)(String_t*)NULL);
|
|
bool L_0;
|
|
L_0 = JsonData_get_IsObject_mF608D1B4942FFA43A6E4D27DAD8243343AAEC0D3(__this, NULL);
|
|
V_0 = L_0;
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0069;
|
|
}
|
|
}
|
|
{
|
|
V_1 = (JsonData_t3C51D89A19D30A47A74617107D861959322307F1*)NULL;
|
|
RuntimeObject* L_2 = __this->___inst_object;
|
|
RuntimeObject* L_3 = ___0_obj;
|
|
NullCheck(L_2);
|
|
bool L_4;
|
|
L_4 = InterfaceFuncInvoker2< bool, String_t*, JsonData_t3C51D89A19D30A47A74617107D861959322307F1** >::Invoke(7, IDictionary_2_t8B67C0BACED3ABBE0BB390A264074F9245F22842_il2cpp_TypeInfo_var, L_2, ((String_t*)CastclassSealed((RuntimeObject*)L_3, String_t_il2cpp_TypeInfo_var)), (&V_1));
|
|
V_2 = L_4;
|
|
bool L_5 = V_2;
|
|
if (!L_5)
|
|
{
|
|
goto IL_005d;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_6 = __this->___inst_object;
|
|
RuntimeObject* L_7 = ___0_obj;
|
|
NullCheck(L_6);
|
|
bool L_8;
|
|
L_8 = InterfaceFuncInvoker1< bool, String_t* >::Invoke(6, IDictionary_2_t8B67C0BACED3ABBE0BB390A264074F9245F22842_il2cpp_TypeInfo_var, L_6, ((String_t*)CastclassSealed((RuntimeObject*)L_7, String_t_il2cpp_TypeInfo_var)));
|
|
if (!L_8)
|
|
{
|
|
goto IL_0059;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_9 = __this->___object_list;
|
|
RuntimeObject* L_10 = ___0_obj;
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_11 = V_1;
|
|
KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28 L_12;
|
|
memset((&L_12), 0, sizeof(L_12));
|
|
KeyValuePair_2__ctor_mF8563179C2DDD7A9FDB625D79ABD337FB772A683((&L_12), ((String_t*)CastclassSealed((RuntimeObject*)L_10, String_t_il2cpp_TypeInfo_var)), L_11, KeyValuePair_2__ctor_mF8563179C2DDD7A9FDB625D79ABD337FB772A683_RuntimeMethod_var);
|
|
NullCheck(L_9);
|
|
bool L_13;
|
|
L_13 = InterfaceFuncInvoker1< bool, KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28 >::Invoke(6, ICollection_1_t76010575BE25258AB4D5EFFF458A7FCD2F1030A7_il2cpp_TypeInfo_var, L_9, L_12);
|
|
G_B5_0 = ((int32_t)(L_13));
|
|
goto IL_005a;
|
|
}
|
|
|
|
IL_0059:
|
|
{
|
|
G_B5_0 = 0;
|
|
}
|
|
|
|
IL_005a:
|
|
{
|
|
V_3 = (bool)G_B5_0;
|
|
goto IL_0096;
|
|
}
|
|
|
|
IL_005d:
|
|
{
|
|
KeyNotFoundException_tCE416EC9BCA9F396A3DFFF86D1B5209BA876079E* L_14 = (KeyNotFoundException_tCE416EC9BCA9F396A3DFFF86D1B5209BA876079E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeyNotFoundException_tCE416EC9BCA9F396A3DFFF86D1B5209BA876079E_il2cpp_TypeInfo_var)));
|
|
KeyNotFoundException__ctor_mBD1D75B73DD5D7C6C72E4F7A021778837B6F2C6B(L_14, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA5F9720625E0A3ED5CBF674F24D0646A4FA56368)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonData_Remove_mB1E228019F13D13490400AA18B4DB4B0678B204A_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0069:
|
|
{
|
|
bool L_15;
|
|
L_15 = JsonData_get_IsArray_m37BA31D547428C52C0F4A1923598DC36124033DC(__this, NULL);
|
|
V_4 = L_15;
|
|
bool L_16 = V_4;
|
|
if (!L_16)
|
|
{
|
|
goto IL_008b;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_17 = __this->___inst_array;
|
|
RuntimeObject* L_18 = ___0_obj;
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_19;
|
|
L_19 = JsonData_ToJsonData_mD42F841238609F7087B993D39CC6EC3F39F8BACC(__this, L_18, NULL);
|
|
NullCheck(L_17);
|
|
bool L_20;
|
|
L_20 = InterfaceFuncInvoker1< bool, JsonData_t3C51D89A19D30A47A74617107D861959322307F1* >::Invoke(6, ICollection_1_tE4324299D87C0ED69EFF6083103E594ED9299AF1_il2cpp_TypeInfo_var, L_17, L_19);
|
|
V_3 = L_20;
|
|
goto IL_0096;
|
|
}
|
|
|
|
IL_008b:
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_21 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_21, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEEF37FC1405E97B11B63D83E44D8F153E9A61F50)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonData_Remove_mB1E228019F13D13490400AA18B4DB4B0678B204A_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0096:
|
|
{
|
|
bool L_22 = V_3;
|
|
return L_22;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonData_Clear_m8CBDDC3858610406EB362973D8DFCB2A7D6F98CC (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
{
|
|
bool L_0;
|
|
L_0 = JsonData_get_IsObject_mF608D1B4942FFA43A6E4D27DAD8243343AAEC0D3(__this, NULL);
|
|
V_0 = L_0;
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
InterfaceActionInvoker0::Invoke(6, IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var, __this);
|
|
goto IL_0029;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
bool L_2;
|
|
L_2 = JsonData_get_IsArray_m37BA31D547428C52C0F4A1923598DC36124033DC(__this, NULL);
|
|
V_1 = L_2;
|
|
bool L_3 = V_1;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
InterfaceActionInvoker0::Invoke(4, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, __this);
|
|
goto IL_0029;
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonData_Equals_m7369F0352ABADD880C05AC75E5B755FC38A60B45 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, JsonData_t3C51D89A19D30A47A74617107D861959322307F1* ___0_x, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
int32_t V_4 = 0;
|
|
int32_t V_5 = 0;
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
bool V_9 = false;
|
|
int32_t G_B8_0 = 0;
|
|
int32_t G_B10_0 = 0;
|
|
int32_t G_B23_0 = 0;
|
|
int32_t G_B31_0 = 0;
|
|
{
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_0 = ___0_x;
|
|
V_0 = (bool)((((RuntimeObject*)(JsonData_t3C51D89A19D30A47A74617107D861959322307F1*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
V_1 = (bool)0;
|
|
goto IL_01dc;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_2 = ___0_x;
|
|
NullCheck(L_2);
|
|
int32_t L_3 = L_2->___type;
|
|
int32_t L_4 = __this->___type;
|
|
V_2 = (bool)((((int32_t)((((int32_t)L_3) == ((int32_t)L_4))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_5 = V_2;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0061;
|
|
}
|
|
}
|
|
{
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_6 = ___0_x;
|
|
NullCheck(L_6);
|
|
int32_t L_7 = L_6->___type;
|
|
if ((((int32_t)L_7) == ((int32_t)4)))
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_8 = ___0_x;
|
|
NullCheck(L_8);
|
|
int32_t L_9 = L_8->___type;
|
|
if ((!(((uint32_t)L_9) == ((uint32_t)5))))
|
|
{
|
|
goto IL_0053;
|
|
}
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
int32_t L_10 = __this->___type;
|
|
if ((((int32_t)L_10) == ((int32_t)4)))
|
|
{
|
|
goto IL_0050;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_11 = __this->___type;
|
|
G_B8_0 = ((((int32_t)((((int32_t)L_11) == ((int32_t)5))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0051;
|
|
}
|
|
|
|
IL_0050:
|
|
{
|
|
G_B8_0 = 0;
|
|
}
|
|
|
|
IL_0051:
|
|
{
|
|
G_B10_0 = G_B8_0;
|
|
goto IL_0054;
|
|
}
|
|
|
|
IL_0053:
|
|
{
|
|
G_B10_0 = 1;
|
|
}
|
|
|
|
IL_0054:
|
|
{
|
|
V_3 = (bool)G_B10_0;
|
|
bool L_12 = V_3;
|
|
if (!L_12)
|
|
{
|
|
goto IL_0060;
|
|
}
|
|
}
|
|
{
|
|
V_1 = (bool)0;
|
|
goto IL_01dc;
|
|
}
|
|
|
|
IL_0060:
|
|
{
|
|
}
|
|
|
|
IL_0061:
|
|
{
|
|
int32_t L_13 = __this->___type;
|
|
V_5 = L_13;
|
|
int32_t L_14 = V_5;
|
|
V_4 = L_14;
|
|
int32_t L_15 = V_4;
|
|
switch (L_15)
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0099;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_00a0;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_00b7;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_00ce;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_00e5;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_014f;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_01b0;
|
|
}
|
|
case 7:
|
|
{
|
|
goto IL_01c4;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_01d8;
|
|
}
|
|
|
|
IL_0099:
|
|
{
|
|
V_1 = (bool)1;
|
|
goto IL_01dc;
|
|
}
|
|
|
|
IL_00a0:
|
|
{
|
|
RuntimeObject* L_16 = __this->___inst_object;
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_17 = ___0_x;
|
|
NullCheck(L_17);
|
|
RuntimeObject* L_18 = L_17->___inst_object;
|
|
NullCheck(L_16);
|
|
bool L_19;
|
|
L_19 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(0, L_16, L_18);
|
|
V_1 = L_19;
|
|
goto IL_01dc;
|
|
}
|
|
|
|
IL_00b7:
|
|
{
|
|
RuntimeObject* L_20 = __this->___inst_array;
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_21 = ___0_x;
|
|
NullCheck(L_21);
|
|
RuntimeObject* L_22 = L_21->___inst_array;
|
|
NullCheck(L_20);
|
|
bool L_23;
|
|
L_23 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(0, L_20, L_22);
|
|
V_1 = L_23;
|
|
goto IL_01dc;
|
|
}
|
|
|
|
IL_00ce:
|
|
{
|
|
String_t* L_24 = __this->___inst_string;
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_25 = ___0_x;
|
|
NullCheck(L_25);
|
|
String_t* L_26 = L_25->___inst_string;
|
|
NullCheck(L_24);
|
|
bool L_27;
|
|
L_27 = String_Equals_mCD5F35DEDCAFE51ACD4E033726FC2EF8DF7E9B4D(L_24, L_26, NULL);
|
|
V_1 = L_27;
|
|
goto IL_01dc;
|
|
}
|
|
|
|
IL_00e5:
|
|
{
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_28 = ___0_x;
|
|
NullCheck(L_28);
|
|
bool L_29;
|
|
L_29 = JsonData_get_IsLong_m082D69215FD4794AF4B026BFEB5BF72A6FD1CEBD(L_28, NULL);
|
|
V_6 = L_29;
|
|
bool L_30 = V_6;
|
|
if (!L_30)
|
|
{
|
|
goto IL_0138;
|
|
}
|
|
}
|
|
{
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_31 = ___0_x;
|
|
NullCheck(L_31);
|
|
int64_t L_32 = L_31->___inst_long;
|
|
if ((((int64_t)L_32) < ((int64_t)((int64_t)((int32_t)-2147483648LL)))))
|
|
{
|
|
goto IL_0111;
|
|
}
|
|
}
|
|
{
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_33 = ___0_x;
|
|
NullCheck(L_33);
|
|
int64_t L_34 = L_33->___inst_long;
|
|
G_B23_0 = ((((int64_t)L_34) > ((int64_t)((int64_t)((int32_t)2147483647LL))))? 1 : 0);
|
|
goto IL_0112;
|
|
}
|
|
|
|
IL_0111:
|
|
{
|
|
G_B23_0 = 1;
|
|
}
|
|
|
|
IL_0112:
|
|
{
|
|
V_7 = (bool)G_B23_0;
|
|
bool L_35 = V_7;
|
|
if (!L_35)
|
|
{
|
|
goto IL_0120;
|
|
}
|
|
}
|
|
{
|
|
V_1 = (bool)0;
|
|
goto IL_01dc;
|
|
}
|
|
|
|
IL_0120:
|
|
{
|
|
int32_t* L_36 = (int32_t*)(&__this->___inst_int);
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_37 = ___0_x;
|
|
NullCheck(L_37);
|
|
int64_t L_38 = L_37->___inst_long;
|
|
bool L_39;
|
|
L_39 = Int32_Equals_mC819D19A661B95BE253FB1769FD4D91961D20722(L_36, ((int32_t)L_38), NULL);
|
|
V_1 = L_39;
|
|
goto IL_01dc;
|
|
}
|
|
|
|
IL_0138:
|
|
{
|
|
int32_t* L_40 = (int32_t*)(&__this->___inst_int);
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_41 = ___0_x;
|
|
NullCheck(L_41);
|
|
int32_t L_42 = L_41->___inst_int;
|
|
bool L_43;
|
|
L_43 = Int32_Equals_mC819D19A661B95BE253FB1769FD4D91961D20722(L_40, L_42, NULL);
|
|
V_1 = L_43;
|
|
goto IL_01dc;
|
|
}
|
|
|
|
IL_014f:
|
|
{
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_44 = ___0_x;
|
|
NullCheck(L_44);
|
|
bool L_45;
|
|
L_45 = JsonData_get_IsInt_m094B3A225B2B50F0123D1BAB1012D5E652C200B7(L_44, NULL);
|
|
V_8 = L_45;
|
|
bool L_46 = V_8;
|
|
if (!L_46)
|
|
{
|
|
goto IL_019c;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_47 = __this->___inst_long;
|
|
if ((((int64_t)L_47) < ((int64_t)((int64_t)((int32_t)-2147483648LL)))))
|
|
{
|
|
goto IL_017b;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_48 = __this->___inst_long;
|
|
G_B31_0 = ((((int64_t)L_48) > ((int64_t)((int64_t)((int32_t)2147483647LL))))? 1 : 0);
|
|
goto IL_017c;
|
|
}
|
|
|
|
IL_017b:
|
|
{
|
|
G_B31_0 = 1;
|
|
}
|
|
|
|
IL_017c:
|
|
{
|
|
V_9 = (bool)G_B31_0;
|
|
bool L_49 = V_9;
|
|
if (!L_49)
|
|
{
|
|
goto IL_0187;
|
|
}
|
|
}
|
|
{
|
|
V_1 = (bool)0;
|
|
goto IL_01dc;
|
|
}
|
|
|
|
IL_0187:
|
|
{
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_50 = ___0_x;
|
|
NullCheck(L_50);
|
|
int32_t* L_51 = (int32_t*)(&L_50->___inst_int);
|
|
int64_t L_52 = __this->___inst_long;
|
|
bool L_53;
|
|
L_53 = Int32_Equals_mC819D19A661B95BE253FB1769FD4D91961D20722(L_51, ((int32_t)L_52), NULL);
|
|
V_1 = L_53;
|
|
goto IL_01dc;
|
|
}
|
|
|
|
IL_019c:
|
|
{
|
|
int64_t* L_54 = (int64_t*)(&__this->___inst_long);
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_55 = ___0_x;
|
|
NullCheck(L_55);
|
|
int64_t L_56 = L_55->___inst_long;
|
|
bool L_57;
|
|
L_57 = Int64_Equals_mBAEB8FFBE12F6A5876473B4B40E1BD316658873E(L_54, L_56, NULL);
|
|
V_1 = L_57;
|
|
goto IL_01dc;
|
|
}
|
|
|
|
IL_01b0:
|
|
{
|
|
double* L_58 = (double*)(&__this->___inst_double);
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_59 = ___0_x;
|
|
NullCheck(L_59);
|
|
double L_60 = L_59->___inst_double;
|
|
bool L_61;
|
|
L_61 = Double_Equals_mAB526D98719C44EA42107A297B23A739F2E14138(L_58, L_60, NULL);
|
|
V_1 = L_61;
|
|
goto IL_01dc;
|
|
}
|
|
|
|
IL_01c4:
|
|
{
|
|
bool* L_62 = (bool*)(&__this->___inst_boolean);
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_63 = ___0_x;
|
|
NullCheck(L_63);
|
|
bool L_64 = L_63->___inst_boolean;
|
|
il2cpp_codegen_runtime_class_init_inline(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var);
|
|
bool L_65;
|
|
L_65 = Boolean_Equals_mC020D5EB2F64274CD623E8449E8777A70BEC6CC9(L_62, L_64, NULL);
|
|
V_1 = L_65;
|
|
goto IL_01dc;
|
|
}
|
|
|
|
IL_01d8:
|
|
{
|
|
V_1 = (bool)0;
|
|
goto IL_01dc;
|
|
}
|
|
|
|
IL_01dc:
|
|
{
|
|
bool L_66 = V_1;
|
|
return L_66;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonData_GetJsonType_m7313142A8EEFA586606A2F25157426C377A6096C (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->___type;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
int32_t L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonData_SetJsonType_m1E8E1D8FA51CA48796DB13ECD7DA808A7576A7C3 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, int32_t ___0_type, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m69403AE90D12CA520ABB728A1557B42580BBC7DC_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_tDF79546961566D2D6F7C4155F7ED851428AA9931_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m53AA73BE6E2FF2045F347EBCEE46E8E4EE524E5F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m71FFC1A9C81BB314F91B10BE885521A22E708BF8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tF2E1AB00AE46093D3DBEBFF23EE42498976376CA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tFC3915CEAB0CCCC11D0AB7F2D3717177D1111111_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
{
|
|
int32_t L_0 = __this->___type;
|
|
int32_t L_1 = ___0_type;
|
|
V_0 = (bool)((((int32_t)L_0) == ((int32_t)L_1))? 1 : 0);
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00a4;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
int32_t L_3 = ___0_type;
|
|
V_2 = L_3;
|
|
int32_t L_4 = V_2;
|
|
V_1 = L_4;
|
|
int32_t L_5 = V_1;
|
|
switch (L_5)
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0040;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0042;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_005a;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_0067;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_0070;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_0079;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_0083;
|
|
}
|
|
case 7:
|
|
{
|
|
goto IL_0094;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_009d;
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
goto IL_009d;
|
|
}
|
|
|
|
IL_0042:
|
|
{
|
|
Dictionary_2_tDF79546961566D2D6F7C4155F7ED851428AA9931* L_6 = (Dictionary_2_tDF79546961566D2D6F7C4155F7ED851428AA9931*)il2cpp_codegen_object_new(Dictionary_2_tDF79546961566D2D6F7C4155F7ED851428AA9931_il2cpp_TypeInfo_var);
|
|
Dictionary_2__ctor_m69403AE90D12CA520ABB728A1557B42580BBC7DC(L_6, Dictionary_2__ctor_m69403AE90D12CA520ABB728A1557B42580BBC7DC_RuntimeMethod_var);
|
|
__this->___inst_object = L_6;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___inst_object), (void*)L_6);
|
|
List_1_tFC3915CEAB0CCCC11D0AB7F2D3717177D1111111* L_7 = (List_1_tFC3915CEAB0CCCC11D0AB7F2D3717177D1111111*)il2cpp_codegen_object_new(List_1_tFC3915CEAB0CCCC11D0AB7F2D3717177D1111111_il2cpp_TypeInfo_var);
|
|
List_1__ctor_m53AA73BE6E2FF2045F347EBCEE46E8E4EE524E5F(L_7, List_1__ctor_m53AA73BE6E2FF2045F347EBCEE46E8E4EE524E5F_RuntimeMethod_var);
|
|
__this->___object_list = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___object_list), (void*)L_7);
|
|
goto IL_009d;
|
|
}
|
|
|
|
IL_005a:
|
|
{
|
|
List_1_tF2E1AB00AE46093D3DBEBFF23EE42498976376CA* L_8 = (List_1_tF2E1AB00AE46093D3DBEBFF23EE42498976376CA*)il2cpp_codegen_object_new(List_1_tF2E1AB00AE46093D3DBEBFF23EE42498976376CA_il2cpp_TypeInfo_var);
|
|
List_1__ctor_m71FFC1A9C81BB314F91B10BE885521A22E708BF8(L_8, List_1__ctor_m71FFC1A9C81BB314F91B10BE885521A22E708BF8_RuntimeMethod_var);
|
|
__this->___inst_array = L_8;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___inst_array), (void*)L_8);
|
|
goto IL_009d;
|
|
}
|
|
|
|
IL_0067:
|
|
{
|
|
__this->___inst_string = (String_t*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___inst_string), (void*)(String_t*)NULL);
|
|
goto IL_009d;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
__this->___inst_int = 0;
|
|
goto IL_009d;
|
|
}
|
|
|
|
IL_0079:
|
|
{
|
|
__this->___inst_long = ((int64_t)0);
|
|
goto IL_009d;
|
|
}
|
|
|
|
IL_0083:
|
|
{
|
|
__this->___inst_double = (0.0);
|
|
goto IL_009d;
|
|
}
|
|
|
|
IL_0094:
|
|
{
|
|
__this->___inst_boolean = (bool)0;
|
|
goto IL_009d;
|
|
}
|
|
|
|
IL_009d:
|
|
{
|
|
int32_t L_9 = ___0_type;
|
|
__this->___type = L_9;
|
|
}
|
|
|
|
IL_00a4:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonData_ToJson_m658608ADAC4FD37098A16F86171C6BEDAE6E4C30 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringWriter_tF48052BE4F980E5C85403221E835768E4156267D_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
StringWriter_tF48052BE4F980E5C85403221E835768E4156267D* V_0 = NULL;
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* V_1 = NULL;
|
|
bool V_2 = false;
|
|
String_t* V_3 = NULL;
|
|
{
|
|
String_t* L_0 = __this->___json;
|
|
V_2 = (bool)((!(((RuntimeObject*)(String_t*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_1 = V_2;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_2 = __this->___json;
|
|
V_3 = L_2;
|
|
goto IL_004a;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
StringWriter_tF48052BE4F980E5C85403221E835768E4156267D* L_3 = (StringWriter_tF48052BE4F980E5C85403221E835768E4156267D*)il2cpp_codegen_object_new(StringWriter_tF48052BE4F980E5C85403221E835768E4156267D_il2cpp_TypeInfo_var);
|
|
StringWriter__ctor_m072DFF5FFA84EBA7C38B282975D053E738C56E6D(L_3, NULL);
|
|
V_0 = L_3;
|
|
StringWriter_tF48052BE4F980E5C85403221E835768E4156267D* L_4 = V_0;
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_5 = (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F*)il2cpp_codegen_object_new(JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F_il2cpp_TypeInfo_var);
|
|
JsonWriter__ctor_m59AEC417CBCF6AB49675BCCFD00F274C31D3585E(L_5, L_4, NULL);
|
|
V_1 = L_5;
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_6 = V_1;
|
|
NullCheck(L_6);
|
|
JsonWriter_set_Validate_mA5EE11772D5EEEDBF8653894C89D686A6B184F7B(L_6, (bool)0, NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_7 = V_1;
|
|
JsonData_WriteJson_mD307B7581AE536A21EA9F30B270BC5393B335356(__this, L_7, NULL);
|
|
StringWriter_tF48052BE4F980E5C85403221E835768E4156267D* L_8 = V_0;
|
|
NullCheck(L_8);
|
|
String_t* L_9;
|
|
L_9 = VirtualFuncInvoker0< String_t* >::Invoke(3, L_8);
|
|
__this->___json = L_9;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___json), (void*)L_9);
|
|
String_t* L_10 = __this->___json;
|
|
V_3 = L_10;
|
|
goto IL_004a;
|
|
}
|
|
|
|
IL_004a:
|
|
{
|
|
String_t* L_11 = V_3;
|
|
return L_11;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonData_ToJson_m179225C968B6EE68507BB3694882E41DA05DA4C4 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___0_writer, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_0 = ___0_writer;
|
|
NullCheck(L_0);
|
|
bool L_1;
|
|
L_1 = JsonWriter_get_Validate_m28498F5A80E666297849E7C4F723F48A0B9A4DF6(L_0, NULL);
|
|
V_0 = L_1;
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_2 = ___0_writer;
|
|
NullCheck(L_2);
|
|
JsonWriter_set_Validate_mA5EE11772D5EEEDBF8653894C89D686A6B184F7B(L_2, (bool)0, NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_3 = ___0_writer;
|
|
JsonData_WriteJson_mD307B7581AE536A21EA9F30B270BC5393B335356(__this, L_3, NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_4 = ___0_writer;
|
|
bool L_5 = V_0;
|
|
NullCheck(L_4);
|
|
JsonWriter_set_Validate_mA5EE11772D5EEEDBF8653894C89D686A6B184F7B(L_4, L_5, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonData_ToString_m7F6F96196EDD1B0767AED023EC8640959B6D9382 (JsonData_t3C51D89A19D30A47A74617107D861959322307F1* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral45C6FAA87CD0123CD17D47EA53DEAA5A748C6A04);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBBC2182A95A29E2752FA60C92F779B599B7B43ED);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE53B6FBD162C91AD5A0438452E33647A61BBA15D);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
String_t* V_2 = NULL;
|
|
{
|
|
int32_t L_0 = __this->___type;
|
|
V_1 = L_0;
|
|
int32_t L_1 = V_1;
|
|
V_0 = L_1;
|
|
int32_t L_2 = V_0;
|
|
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_2, 1)))
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0070;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0078;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_0054;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_0062;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_0046;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_0038;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_0081;
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
V_2 = _stringLiteral45C6FAA87CD0123CD17D47EA53DEAA5A748C6A04;
|
|
goto IL_0089;
|
|
}
|
|
|
|
IL_0038:
|
|
{
|
|
bool* L_3 = (bool*)(&__this->___inst_boolean);
|
|
il2cpp_codegen_runtime_class_init_inline(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var);
|
|
String_t* L_4;
|
|
L_4 = Boolean_ToString_m6646C8026B1DF381A1EE8CD13549175E9703CC63(L_3, NULL);
|
|
V_2 = L_4;
|
|
goto IL_0089;
|
|
}
|
|
|
|
IL_0046:
|
|
{
|
|
double* L_5 = (double*)(&__this->___inst_double);
|
|
String_t* L_6;
|
|
L_6 = Double_ToString_m7499A5D792419537DCB9470A3675CEF5117DE339(L_5, NULL);
|
|
V_2 = L_6;
|
|
goto IL_0089;
|
|
}
|
|
|
|
IL_0054:
|
|
{
|
|
int32_t* L_7 = (int32_t*)(&__this->___inst_int);
|
|
String_t* L_8;
|
|
L_8 = Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5(L_7, NULL);
|
|
V_2 = L_8;
|
|
goto IL_0089;
|
|
}
|
|
|
|
IL_0062:
|
|
{
|
|
int64_t* L_9 = (int64_t*)(&__this->___inst_long);
|
|
String_t* L_10;
|
|
L_10 = Int64_ToString_m284E4E55662818E38654309A41C2B07CD436F36B(L_9, NULL);
|
|
V_2 = L_10;
|
|
goto IL_0089;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
V_2 = _stringLiteralE53B6FBD162C91AD5A0438452E33647A61BBA15D;
|
|
goto IL_0089;
|
|
}
|
|
|
|
IL_0078:
|
|
{
|
|
String_t* L_11 = __this->___inst_string;
|
|
V_2 = L_11;
|
|
goto IL_0089;
|
|
}
|
|
|
|
IL_0081:
|
|
{
|
|
V_2 = _stringLiteralBBC2182A95A29E2752FA60C92F779B599B7B43ED;
|
|
goto IL_0089;
|
|
}
|
|
|
|
IL_0089:
|
|
{
|
|
String_t* L_12 = V_2;
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* OrderedDictionaryEnumerator_get_Current_m26CAEFF45373A3A4EB6AA364345D4728F9616E6D (OrderedDictionaryEnumerator_t557577F1E3C3DC7E5A3BFA6B12F2E0F7921D9C18* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB L_0;
|
|
L_0 = OrderedDictionaryEnumerator_get_Entry_mD2E0B7A30035474EB30FC5AB71B4C299E0C9124A(__this, NULL);
|
|
DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB L_1 = L_0;
|
|
RuntimeObject* L_2 = Box(DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_il2cpp_TypeInfo_var, &L_1);
|
|
V_0 = L_2;
|
|
goto IL_000f;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
RuntimeObject* L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB OrderedDictionaryEnumerator_get_Entry_mD2E0B7A30035474EB30FC5AB71B4C299E0C9124A (OrderedDictionaryEnumerator_t557577F1E3C3DC7E5A3BFA6B12F2E0F7921D9C18* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_tA8D764B99B6196299ECE08BCBA02AB2EE733CB1D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Key_mB20EAD0A1F549096009239692374BA2D53CC56C8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Value_m1AF62875E8518A1790EFF3FBB65608529D80A79E_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
RuntimeObject* L_0 = __this->___list_enumerator;
|
|
NullCheck(L_0);
|
|
KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28 L_1;
|
|
L_1 = InterfaceFuncInvoker0< KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28 >::Invoke(0, IEnumerator_1_tA8D764B99B6196299ECE08BCBA02AB2EE733CB1D_il2cpp_TypeInfo_var, L_0);
|
|
V_0 = L_1;
|
|
String_t* L_2;
|
|
L_2 = KeyValuePair_2_get_Key_mB20EAD0A1F549096009239692374BA2D53CC56C8_inline((&V_0), KeyValuePair_2_get_Key_mB20EAD0A1F549096009239692374BA2D53CC56C8_RuntimeMethod_var);
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_3;
|
|
L_3 = KeyValuePair_2_get_Value_m1AF62875E8518A1790EFF3FBB65608529D80A79E_inline((&V_0), KeyValuePair_2_get_Value_m1AF62875E8518A1790EFF3FBB65608529D80A79E_RuntimeMethod_var);
|
|
DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
DictionaryEntry__ctor_m2768353E53A75C4860E34B37DAF1342120C5D1EA((&L_4), L_2, L_3, NULL);
|
|
V_1 = L_4;
|
|
goto IL_0023;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* OrderedDictionaryEnumerator_get_Key_mD0051B27FCA09C476E348C40D1B8E8E48F3B8F9B (OrderedDictionaryEnumerator_t557577F1E3C3DC7E5A3BFA6B12F2E0F7921D9C18* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_tA8D764B99B6196299ECE08BCBA02AB2EE733CB1D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Key_mB20EAD0A1F549096009239692374BA2D53CC56C8_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
RuntimeObject* V_1 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = __this->___list_enumerator;
|
|
NullCheck(L_0);
|
|
KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28 L_1;
|
|
L_1 = InterfaceFuncInvoker0< KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28 >::Invoke(0, IEnumerator_1_tA8D764B99B6196299ECE08BCBA02AB2EE733CB1D_il2cpp_TypeInfo_var, L_0);
|
|
V_0 = L_1;
|
|
String_t* L_2;
|
|
L_2 = KeyValuePair_2_get_Key_mB20EAD0A1F549096009239692374BA2D53CC56C8_inline((&V_0), KeyValuePair_2_get_Key_mB20EAD0A1F549096009239692374BA2D53CC56C8_RuntimeMethod_var);
|
|
V_1 = L_2;
|
|
goto IL_0017;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
RuntimeObject* L_3 = V_1;
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* OrderedDictionaryEnumerator_get_Value_m666D246C6E8795EACCD622E49139F5B0A1AD8D2D (OrderedDictionaryEnumerator_t557577F1E3C3DC7E5A3BFA6B12F2E0F7921D9C18* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_tA8D764B99B6196299ECE08BCBA02AB2EE733CB1D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Value_m1AF62875E8518A1790EFF3FBB65608529D80A79E_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
RuntimeObject* V_1 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = __this->___list_enumerator;
|
|
NullCheck(L_0);
|
|
KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28 L_1;
|
|
L_1 = InterfaceFuncInvoker0< KeyValuePair_2_tD14DA6ABC98E0FEBB8117715BDF4DD11B9397F28 >::Invoke(0, IEnumerator_1_tA8D764B99B6196299ECE08BCBA02AB2EE733CB1D_il2cpp_TypeInfo_var, L_0);
|
|
V_0 = L_1;
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_2;
|
|
L_2 = KeyValuePair_2_get_Value_m1AF62875E8518A1790EFF3FBB65608529D80A79E_inline((&V_0), KeyValuePair_2_get_Value_m1AF62875E8518A1790EFF3FBB65608529D80A79E_RuntimeMethod_var);
|
|
V_1 = L_2;
|
|
goto IL_0017;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
RuntimeObject* L_3 = V_1;
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OrderedDictionaryEnumerator__ctor_mE835230F6C9BF7EBC082A282BE74976A450B07A1 (OrderedDictionaryEnumerator_t557577F1E3C3DC7E5A3BFA6B12F2E0F7921D9C18* __this, RuntimeObject* ___0_enumerator, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
RuntimeObject* L_0 = ___0_enumerator;
|
|
__this->___list_enumerator = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___list_enumerator), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool OrderedDictionaryEnumerator_MoveNext_m0862F64D1B571A878D85F0EA7B91F84C44A02B61 (OrderedDictionaryEnumerator_t557577F1E3C3DC7E5A3BFA6B12F2E0F7921D9C18* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
RuntimeObject* L_0 = __this->___list_enumerator;
|
|
NullCheck(L_0);
|
|
bool L_1;
|
|
L_1 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_0);
|
|
V_0 = L_1;
|
|
goto IL_000f;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
bool L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OrderedDictionaryEnumerator_Reset_m28A5AD433A2A8AF31DEF35FA549C0FFB356A3533 (OrderedDictionaryEnumerator_t557577F1E3C3DC7E5A3BFA6B12F2E0F7921D9C18* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject* L_0 = __this->___list_enumerator;
|
|
NullCheck(L_0);
|
|
InterfaceActionInvoker0::Invoke(2, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_0);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonException__ctor_m6E6F4D1266048142B4B1E1A049E9DA1FEC803381 (JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ApplicationException__ctor_m481B0251BEC0BF28EAAF3FCB11A47EFCB2E56E2A(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonException__ctor_mD4207AFB58089E76BB79C31BDF909450FEE2E55C (JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76* __this, int32_t ___0_token, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ParserToken_t028CC13C177D864835928A77CF1DD250271E3570_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1D59E6177FAE880C9EF94663465FEEDCD97D999F);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = ___0_token;
|
|
int32_t L_1 = L_0;
|
|
RuntimeObject* L_2 = Box(ParserToken_t028CC13C177D864835928A77CF1DD250271E3570_il2cpp_TypeInfo_var, &L_1);
|
|
String_t* L_3;
|
|
L_3 = String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8(_stringLiteral1D59E6177FAE880C9EF94663465FEEDCD97D999F, L_2, NULL);
|
|
ApplicationException__ctor_mE51100DFCDB0A0DF23B482CC43EC8E396BE7BE82(__this, L_3, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonException__ctor_mD12D72A1D7949F48B846F1207BFA40EB8CB61E23 (JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76* __this, int32_t ___0_token, Exception_t* ___1_inner_exception, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ParserToken_t028CC13C177D864835928A77CF1DD250271E3570_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1D59E6177FAE880C9EF94663465FEEDCD97D999F);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = ___0_token;
|
|
int32_t L_1 = L_0;
|
|
RuntimeObject* L_2 = Box(ParserToken_t028CC13C177D864835928A77CF1DD250271E3570_il2cpp_TypeInfo_var, &L_1);
|
|
String_t* L_3;
|
|
L_3 = String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8(_stringLiteral1D59E6177FAE880C9EF94663465FEEDCD97D999F, L_2, NULL);
|
|
Exception_t* L_4 = ___1_inner_exception;
|
|
ApplicationException__ctor_m924E77609BAFA0595453363EB8B7BCCBA03B32DD(__this, L_3, L_4, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonException__ctor_m267C4D3DA6783E685C755BEB2B354A15AB620363 (JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76* __this, int32_t ___0_c, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8515553A5B3BDCBB0920E96A5FD0FC34F11C2713);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = ___0_c;
|
|
Il2CppChar L_1 = ((Il2CppChar)((int32_t)(uint16_t)L_0));
|
|
RuntimeObject* L_2 = Box(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var, &L_1);
|
|
String_t* L_3;
|
|
L_3 = String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8(_stringLiteral8515553A5B3BDCBB0920E96A5FD0FC34F11C2713, L_2, NULL);
|
|
ApplicationException__ctor_mE51100DFCDB0A0DF23B482CC43EC8E396BE7BE82(__this, L_3, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonException__ctor_mED383F0F7C13BE261BA2CDE530CA8535A0B7D0BD (JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76* __this, int32_t ___0_c, Exception_t* ___1_inner_exception, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8515553A5B3BDCBB0920E96A5FD0FC34F11C2713);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = ___0_c;
|
|
Il2CppChar L_1 = ((Il2CppChar)((int32_t)(uint16_t)L_0));
|
|
RuntimeObject* L_2 = Box(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var, &L_1);
|
|
String_t* L_3;
|
|
L_3 = String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8(_stringLiteral8515553A5B3BDCBB0920E96A5FD0FC34F11C2713, L_2, NULL);
|
|
Exception_t* L_4 = ___1_inner_exception;
|
|
ApplicationException__ctor_m924E77609BAFA0595453363EB8B7BCCBA03B32DD(__this, L_3, L_4, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonException__ctor_m400377A21C20F6CAEE97CE7958869D819BB94BB5 (JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76* __this, String_t* ___0_message, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___0_message;
|
|
ApplicationException__ctor_mE51100DFCDB0A0DF23B482CC43EC8E396BE7BE82(__this, L_0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonException__ctor_m14A2679E4D43BF656B5DFD019E9BEA7A80BFB6F4 (JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76* __this, String_t* ___0_message, Exception_t* ___1_inner_exception, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___0_message;
|
|
Exception_t* L_1 = ___1_inner_exception;
|
|
ApplicationException__ctor_m924E77609BAFA0595453363EB8B7BCCBA03B32DD(__this, L_0, L_1, 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
|
|
IL2CPP_EXTERN_C void PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D_marshal_pinvoke(const PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D& unmarshaled, PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D_marshaled_pinvoke& marshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D____Info_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___InfoException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s': Reference type field marshaling is not supported.", PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D____Info_FieldInfo_var, PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___InfoException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D_marshal_pinvoke_back(const PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D_marshaled_pinvoke& marshaled, PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D& unmarshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D____Info_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___InfoException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s': Reference type field marshaling is not supported.", PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D____Info_FieldInfo_var, PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___InfoException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D_marshal_pinvoke_cleanup(PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
IL2CPP_EXTERN_C void PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D_marshal_com(const PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D& unmarshaled, PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D_marshaled_com& marshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D____Info_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___InfoException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s': Reference type field marshaling is not supported.", PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D____Info_FieldInfo_var, PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___InfoException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D_marshal_com_back(const PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D_marshaled_com& marshaled, PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D& unmarshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D____Info_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___InfoException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s': Reference type field marshaling is not supported.", PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D____Info_FieldInfo_var, PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___InfoException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D_marshal_com_cleanup(PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D_marshaled_com& marshaled)
|
|
{
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C void ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D_marshal_pinvoke(const ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D& unmarshaled, ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D_marshaled_pinvoke& marshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D____element_type_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___element_typeException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s': Reference type field marshaling is not supported.", ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D____element_type_FieldInfo_var, ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___element_typeException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D_marshal_pinvoke_back(const ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D_marshaled_pinvoke& marshaled, ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D& unmarshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D____element_type_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___element_typeException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s': Reference type field marshaling is not supported.", ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D____element_type_FieldInfo_var, ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___element_typeException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D_marshal_pinvoke_cleanup(ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
IL2CPP_EXTERN_C void ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D_marshal_com(const ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D& unmarshaled, ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D_marshaled_com& marshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D____element_type_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___element_typeException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s': Reference type field marshaling is not supported.", ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D____element_type_FieldInfo_var, ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___element_typeException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D_marshal_com_back(const ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D_marshaled_com& marshaled, ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D& unmarshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D____element_type_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___element_typeException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s': Reference type field marshaling is not supported.", ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D____element_type_FieldInfo_var, ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___element_typeException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D_marshal_com_cleanup(ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D_marshaled_com& marshaled)
|
|
{
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* ArrayMetadata_get_ElementType_m95F881ADA6D1906BDDAD52E328AEFF30ECA46226 (ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonData_t3C51D89A19D30A47A74617107D861959322307F1_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
Type_t* V_1 = NULL;
|
|
{
|
|
Type_t* L_0 = __this->___element_type;
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
bool L_1;
|
|
L_1 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_0, (Type_t*)NULL, NULL);
|
|
V_0 = L_1;
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_3 = { reinterpret_cast<intptr_t> (JsonData_t3C51D89A19D30A47A74617107D861959322307F1_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_4;
|
|
L_4 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_3, NULL);
|
|
V_1 = L_4;
|
|
goto IL_0028;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
Type_t* L_5 = __this->___element_type;
|
|
V_1 = L_5;
|
|
goto IL_0028;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
Type_t* L_6 = V_1;
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C Type_t* ArrayMetadata_get_ElementType_m95F881ADA6D1906BDDAD52E328AEFF30ECA46226_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D*>(__this + _offset);
|
|
Type_t* _returnValue;
|
|
_returnValue = ArrayMetadata_get_ElementType_m95F881ADA6D1906BDDAD52E328AEFF30ECA46226(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayMetadata_set_ElementType_m5832C95BFE5A1BAE4F2A604A74935918F18C6FB3 (ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D* __this, Type_t* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Type_t* L_0 = ___0_value;
|
|
__this->___element_type = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___element_type), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ArrayMetadata_set_ElementType_m5832C95BFE5A1BAE4F2A604A74935918F18C6FB3_AdjustorThunk (RuntimeObject* __this, Type_t* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D*>(__this + _offset);
|
|
ArrayMetadata_set_ElementType_m5832C95BFE5A1BAE4F2A604A74935918F18C6FB3(_thisAdjusted, ___0_value, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ArrayMetadata_get_IsArray_mF60D16C73C7A336444DAC740B3D6A84AD4AA40D2 (ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0 = __this->___is_array;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool ArrayMetadata_get_IsArray_mF60D16C73C7A336444DAC740B3D6A84AD4AA40D2_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = ArrayMetadata_get_IsArray_mF60D16C73C7A336444DAC740B3D6A84AD4AA40D2(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayMetadata_set_IsArray_m80C5694C47BE321F66F82FC47D554982E5F47AEE (ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_value;
|
|
__this->___is_array = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ArrayMetadata_set_IsArray_m80C5694C47BE321F66F82FC47D554982E5F47AEE_AdjustorThunk (RuntimeObject* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D*>(__this + _offset);
|
|
ArrayMetadata_set_IsArray_m80C5694C47BE321F66F82FC47D554982E5F47AEE(_thisAdjusted, ___0_value, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ArrayMetadata_get_IsList_m65D206DDD4278B4A0DF41E61799AE51EAA23BA7F (ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0 = __this->___is_list;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool ArrayMetadata_get_IsList_m65D206DDD4278B4A0DF41E61799AE51EAA23BA7F_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = ArrayMetadata_get_IsList_m65D206DDD4278B4A0DF41E61799AE51EAA23BA7F(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayMetadata_set_IsList_mE4168A68921BFBA7306369E7BFDFD10CC59083C2 (ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_value;
|
|
__this->___is_list = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ArrayMetadata_set_IsList_mE4168A68921BFBA7306369E7BFDFD10CC59083C2_AdjustorThunk (RuntimeObject* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D*>(__this + _offset);
|
|
ArrayMetadata_set_IsList_mE4168A68921BFBA7306369E7BFDFD10CC59083C2(_thisAdjusted, ___0_value, method);
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C void ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661_marshal_pinvoke(const ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661& unmarshaled, ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661_marshaled_pinvoke& marshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661____element_type_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___element_typeException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s': Reference type field marshaling is not supported.", ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661____element_type_FieldInfo_var, ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___element_typeException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661_marshal_pinvoke_back(const ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661_marshaled_pinvoke& marshaled, ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661& unmarshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661____element_type_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___element_typeException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s': Reference type field marshaling is not supported.", ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661____element_type_FieldInfo_var, ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___element_typeException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661_marshal_pinvoke_cleanup(ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
IL2CPP_EXTERN_C void ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661_marshal_com(const ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661& unmarshaled, ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661_marshaled_com& marshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661____element_type_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___element_typeException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s': Reference type field marshaling is not supported.", ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661____element_type_FieldInfo_var, ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___element_typeException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661_marshal_com_back(const ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661_marshaled_com& marshaled, ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661& unmarshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661____element_type_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___element_typeException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s': Reference type field marshaling is not supported.", ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661____element_type_FieldInfo_var, ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___element_typeException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661_marshal_com_cleanup(ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661_marshaled_com& marshaled)
|
|
{
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* ObjectMetadata_get_ElementType_mEC34F3956588C3B5C7EB07A112A7797BF8935BEE (ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonData_t3C51D89A19D30A47A74617107D861959322307F1_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
Type_t* V_1 = NULL;
|
|
{
|
|
Type_t* L_0 = __this->___element_type;
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
bool L_1;
|
|
L_1 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_0, (Type_t*)NULL, NULL);
|
|
V_0 = L_1;
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_3 = { reinterpret_cast<intptr_t> (JsonData_t3C51D89A19D30A47A74617107D861959322307F1_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_4;
|
|
L_4 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_3, NULL);
|
|
V_1 = L_4;
|
|
goto IL_0028;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
Type_t* L_5 = __this->___element_type;
|
|
V_1 = L_5;
|
|
goto IL_0028;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
Type_t* L_6 = V_1;
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C Type_t* ObjectMetadata_get_ElementType_mEC34F3956588C3B5C7EB07A112A7797BF8935BEE_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661*>(__this + _offset);
|
|
Type_t* _returnValue;
|
|
_returnValue = ObjectMetadata_get_ElementType_mEC34F3956588C3B5C7EB07A112A7797BF8935BEE(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectMetadata_set_ElementType_m5AF14DA94DE8B13F68D6913AA0487B6C412A9355 (ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661* __this, Type_t* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Type_t* L_0 = ___0_value;
|
|
__this->___element_type = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___element_type), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ObjectMetadata_set_ElementType_m5AF14DA94DE8B13F68D6913AA0487B6C412A9355_AdjustorThunk (RuntimeObject* __this, Type_t* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661*>(__this + _offset);
|
|
ObjectMetadata_set_ElementType_m5AF14DA94DE8B13F68D6913AA0487B6C412A9355(_thisAdjusted, ___0_value, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectMetadata_get_IsDictionary_mC66AF9CA841EC0386F35FAD3DA899EB5C0DB082E (ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0 = __this->___is_dictionary;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool ObjectMetadata_get_IsDictionary_mC66AF9CA841EC0386F35FAD3DA899EB5C0DB082E_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = ObjectMetadata_get_IsDictionary_mC66AF9CA841EC0386F35FAD3DA899EB5C0DB082E(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectMetadata_set_IsDictionary_mA0408F3F69CBF5C14DEC1CD12FBD4B9830F91151 (ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_value;
|
|
__this->___is_dictionary = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ObjectMetadata_set_IsDictionary_mA0408F3F69CBF5C14DEC1CD12FBD4B9830F91151_AdjustorThunk (RuntimeObject* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661*>(__this + _offset);
|
|
ObjectMetadata_set_IsDictionary_mA0408F3F69CBF5C14DEC1CD12FBD4B9830F91151(_thisAdjusted, ___0_value, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ObjectMetadata_get_Properties_m8E9F8EDA9F12FD110E25D5785F084C1A8B393805 (ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661* __this, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = __this->___properties;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
RuntimeObject* L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C RuntimeObject* ObjectMetadata_get_Properties_m8E9F8EDA9F12FD110E25D5785F084C1A8B393805_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661*>(__this + _offset);
|
|
RuntimeObject* _returnValue;
|
|
_returnValue = ObjectMetadata_get_Properties_m8E9F8EDA9F12FD110E25D5785F084C1A8B393805(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectMetadata_set_Properties_m6DD2CBC23136F0B020069E54BDF7A1BCCCF31FE6 (ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661* __this, RuntimeObject* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = ___0_value;
|
|
__this->___properties = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___properties), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ObjectMetadata_set_Properties_m6DD2CBC23136F0B020069E54BDF7A1BCCCF31FE6_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661*>(__this + _offset);
|
|
ObjectMetadata_set_Properties_m6DD2CBC23136F0B020069E54BDF7A1BCCCF31FE6(_thisAdjusted, ___0_value, method);
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
void ExporterFunc_Invoke_mE96AA8DA43B26B809D4D5D09A1A22966C81D2BDD_Multicast(ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* __this, RuntimeObject* ___0_obj, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___1_writer, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_array_size_t length = __this->___delegates->max_length;
|
|
Delegate_t** delegatesToInvoke = reinterpret_cast<Delegate_t**>(__this->___delegates->GetAddressAtUnchecked(0));
|
|
for (il2cpp_array_size_t i = 0; i < length; i++)
|
|
{
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* currentDelegate = reinterpret_cast<ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A*>(delegatesToInvoke[i]);
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F*, const RuntimeMethod*);
|
|
((FunctionPointerType)currentDelegate->___invoke_impl)((Il2CppObject*)currentDelegate->___method_code, ___0_obj, ___1_writer, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method));
|
|
}
|
|
}
|
|
void ExporterFunc_Invoke_mE96AA8DA43B26B809D4D5D09A1A22966C81D2BDD_OpenInst(ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* __this, RuntimeObject* ___0_obj, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___1_writer, const RuntimeMethod* method)
|
|
{
|
|
NullCheck(___0_obj);
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F*, const RuntimeMethod*);
|
|
((FunctionPointerType)__this->___method_ptr)(___0_obj, ___1_writer, method);
|
|
}
|
|
void ExporterFunc_Invoke_mE96AA8DA43B26B809D4D5D09A1A22966C81D2BDD_OpenStatic(ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* __this, RuntimeObject* ___0_obj, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___1_writer, const RuntimeMethod* method)
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F*, const RuntimeMethod*);
|
|
((FunctionPointerType)__this->___method_ptr)(___0_obj, ___1_writer, method);
|
|
}
|
|
void ExporterFunc_Invoke_mE96AA8DA43B26B809D4D5D09A1A22966C81D2BDD_OpenVirtual(ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* __this, RuntimeObject* ___0_obj, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___1_writer, const RuntimeMethod* method)
|
|
{
|
|
NullCheck(___0_obj);
|
|
VirtualActionInvoker1< JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* >::Invoke(il2cpp_codegen_method_get_slot(method), ___0_obj, ___1_writer);
|
|
}
|
|
void ExporterFunc_Invoke_mE96AA8DA43B26B809D4D5D09A1A22966C81D2BDD_OpenInterface(ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* __this, RuntimeObject* ___0_obj, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___1_writer, const RuntimeMethod* method)
|
|
{
|
|
NullCheck(___0_obj);
|
|
InterfaceActionInvoker1< JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* >::Invoke(il2cpp_codegen_method_get_slot(method), il2cpp_codegen_method_get_declaring_type(method), ___0_obj, ___1_writer);
|
|
}
|
|
void ExporterFunc_Invoke_mE96AA8DA43B26B809D4D5D09A1A22966C81D2BDD_OpenGenericVirtual(ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* __this, RuntimeObject* ___0_obj, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___1_writer, const RuntimeMethod* method)
|
|
{
|
|
NullCheck(___0_obj);
|
|
GenericVirtualActionInvoker1< JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* >::Invoke(method, ___0_obj, ___1_writer);
|
|
}
|
|
void ExporterFunc_Invoke_mE96AA8DA43B26B809D4D5D09A1A22966C81D2BDD_OpenGenericInterface(ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* __this, RuntimeObject* ___0_obj, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___1_writer, const RuntimeMethod* method)
|
|
{
|
|
NullCheck(___0_obj);
|
|
GenericInterfaceActionInvoker1< JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* >::Invoke(method, ___0_obj, ___1_writer);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExporterFunc__ctor_mE42C7A27446C000BC923E32171289DA0E9CDC5D2 (ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
__this->___method_ptr = (intptr_t)il2cpp_codegen_get_method_pointer((RuntimeMethod*)___1_method);
|
|
__this->___method = ___1_method;
|
|
__this->___m_target = ___0_object;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target), (void*)___0_object);
|
|
int parameterCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___1_method);
|
|
__this->___method_code = (intptr_t)__this;
|
|
if (MethodIsStatic((RuntimeMethod*)___1_method))
|
|
{
|
|
bool isOpen = parameterCount == 2;
|
|
if (isOpen)
|
|
__this->___invoke_impl = (intptr_t)&ExporterFunc_Invoke_mE96AA8DA43B26B809D4D5D09A1A22966C81D2BDD_OpenStatic;
|
|
else
|
|
{
|
|
__this->___invoke_impl = __this->___method_ptr;
|
|
__this->___method_code = (intptr_t)__this->___m_target;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
bool isOpen = parameterCount == 1;
|
|
if (isOpen)
|
|
{
|
|
if (__this->___method_is_virtual)
|
|
{
|
|
if (il2cpp_codegen_method_is_generic_instance_method((RuntimeMethod*)___1_method))
|
|
if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___1_method))
|
|
__this->___invoke_impl = (intptr_t)&ExporterFunc_Invoke_mE96AA8DA43B26B809D4D5D09A1A22966C81D2BDD_OpenGenericInterface;
|
|
else
|
|
__this->___invoke_impl = (intptr_t)&ExporterFunc_Invoke_mE96AA8DA43B26B809D4D5D09A1A22966C81D2BDD_OpenGenericVirtual;
|
|
else
|
|
if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___1_method))
|
|
__this->___invoke_impl = (intptr_t)&ExporterFunc_Invoke_mE96AA8DA43B26B809D4D5D09A1A22966C81D2BDD_OpenInterface;
|
|
else
|
|
__this->___invoke_impl = (intptr_t)&ExporterFunc_Invoke_mE96AA8DA43B26B809D4D5D09A1A22966C81D2BDD_OpenVirtual;
|
|
}
|
|
else
|
|
{
|
|
__this->___invoke_impl = (intptr_t)&ExporterFunc_Invoke_mE96AA8DA43B26B809D4D5D09A1A22966C81D2BDD_OpenInst;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (___0_object == NULL)
|
|
il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL);
|
|
__this->___invoke_impl = __this->___method_ptr;
|
|
__this->___method_code = (intptr_t)__this->___m_target;
|
|
}
|
|
}
|
|
__this->___extra_arg = (intptr_t)&ExporterFunc_Invoke_mE96AA8DA43B26B809D4D5D09A1A22966C81D2BDD_Multicast;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExporterFunc_Invoke_mE96AA8DA43B26B809D4D5D09A1A22966C81D2BDD (ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* __this, RuntimeObject* ___0_obj, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___1_writer, const RuntimeMethod* method)
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F*, const RuntimeMethod*);
|
|
((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_obj, ___1_writer, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ExporterFunc_BeginInvoke_mBA6940F67F0CDB782296CFA12D84BB9B57938AA8 (ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* __this, RuntimeObject* ___0_obj, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___1_writer, AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___2_callback, RuntimeObject* ___3_object, const RuntimeMethod* method)
|
|
{
|
|
void *__d_args[3] = {0};
|
|
__d_args[0] = ___0_obj;
|
|
__d_args[1] = ___1_writer;
|
|
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___2_callback, (RuntimeObject*)___3_object);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExporterFunc_EndInvoke_m5C0A1A181C17D6913DD424D7C4185B25CF052A25 (ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* __this, RuntimeObject* ___0_result, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___0_result, 0);
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
RuntimeObject* ImporterFunc_Invoke_m143089455BBD8920FDB4F1B683E685B50FB8077A_Multicast(ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* __this, RuntimeObject* ___0_input, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_array_size_t length = __this->___delegates->max_length;
|
|
Delegate_t** delegatesToInvoke = reinterpret_cast<Delegate_t**>(__this->___delegates->GetAddressAtUnchecked(0));
|
|
RuntimeObject* retVal = NULL;
|
|
for (il2cpp_array_size_t i = 0; i < length; i++)
|
|
{
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* currentDelegate = reinterpret_cast<ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5*>(delegatesToInvoke[i]);
|
|
typedef RuntimeObject* (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*);
|
|
retVal = ((FunctionPointerType)currentDelegate->___invoke_impl)((Il2CppObject*)currentDelegate->___method_code, ___0_input, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method));
|
|
}
|
|
return retVal;
|
|
}
|
|
RuntimeObject* ImporterFunc_Invoke_m143089455BBD8920FDB4F1B683E685B50FB8077A_OpenInst(ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* __this, RuntimeObject* ___0_input, const RuntimeMethod* method)
|
|
{
|
|
NullCheck(___0_input);
|
|
typedef RuntimeObject* (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___method_ptr)(___0_input, method);
|
|
}
|
|
RuntimeObject* ImporterFunc_Invoke_m143089455BBD8920FDB4F1B683E685B50FB8077A_OpenStatic(ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* __this, RuntimeObject* ___0_input, const RuntimeMethod* method)
|
|
{
|
|
typedef RuntimeObject* (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___method_ptr)(___0_input, method);
|
|
}
|
|
RuntimeObject* ImporterFunc_Invoke_m143089455BBD8920FDB4F1B683E685B50FB8077A_OpenVirtual(ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* __this, RuntimeObject* ___0_input, const RuntimeMethod* method)
|
|
{
|
|
NullCheck(___0_input);
|
|
return VirtualFuncInvoker0< RuntimeObject* >::Invoke(il2cpp_codegen_method_get_slot(method), ___0_input);
|
|
}
|
|
RuntimeObject* ImporterFunc_Invoke_m143089455BBD8920FDB4F1B683E685B50FB8077A_OpenInterface(ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* __this, RuntimeObject* ___0_input, const RuntimeMethod* method)
|
|
{
|
|
NullCheck(___0_input);
|
|
return InterfaceFuncInvoker0< RuntimeObject* >::Invoke(il2cpp_codegen_method_get_slot(method), il2cpp_codegen_method_get_declaring_type(method), ___0_input);
|
|
}
|
|
RuntimeObject* ImporterFunc_Invoke_m143089455BBD8920FDB4F1B683E685B50FB8077A_OpenGenericVirtual(ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* __this, RuntimeObject* ___0_input, const RuntimeMethod* method)
|
|
{
|
|
NullCheck(___0_input);
|
|
return GenericVirtualFuncInvoker0< RuntimeObject* >::Invoke(method, ___0_input);
|
|
}
|
|
RuntimeObject* ImporterFunc_Invoke_m143089455BBD8920FDB4F1B683E685B50FB8077A_OpenGenericInterface(ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* __this, RuntimeObject* ___0_input, const RuntimeMethod* method)
|
|
{
|
|
NullCheck(___0_input);
|
|
return GenericInterfaceFuncInvoker0< RuntimeObject* >::Invoke(method, ___0_input);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImporterFunc__ctor_m630470C9B15EC4550BDC9B0A860B2F9C3B66C029 (ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
__this->___method_ptr = (intptr_t)il2cpp_codegen_get_method_pointer((RuntimeMethod*)___1_method);
|
|
__this->___method = ___1_method;
|
|
__this->___m_target = ___0_object;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target), (void*)___0_object);
|
|
int parameterCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___1_method);
|
|
__this->___method_code = (intptr_t)__this;
|
|
if (MethodIsStatic((RuntimeMethod*)___1_method))
|
|
{
|
|
bool isOpen = parameterCount == 1;
|
|
if (isOpen)
|
|
__this->___invoke_impl = (intptr_t)&ImporterFunc_Invoke_m143089455BBD8920FDB4F1B683E685B50FB8077A_OpenStatic;
|
|
else
|
|
{
|
|
__this->___invoke_impl = __this->___method_ptr;
|
|
__this->___method_code = (intptr_t)__this->___m_target;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
bool isOpen = parameterCount == 0;
|
|
if (isOpen)
|
|
{
|
|
if (__this->___method_is_virtual)
|
|
{
|
|
if (il2cpp_codegen_method_is_generic_instance_method((RuntimeMethod*)___1_method))
|
|
if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___1_method))
|
|
__this->___invoke_impl = (intptr_t)&ImporterFunc_Invoke_m143089455BBD8920FDB4F1B683E685B50FB8077A_OpenGenericInterface;
|
|
else
|
|
__this->___invoke_impl = (intptr_t)&ImporterFunc_Invoke_m143089455BBD8920FDB4F1B683E685B50FB8077A_OpenGenericVirtual;
|
|
else
|
|
if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___1_method))
|
|
__this->___invoke_impl = (intptr_t)&ImporterFunc_Invoke_m143089455BBD8920FDB4F1B683E685B50FB8077A_OpenInterface;
|
|
else
|
|
__this->___invoke_impl = (intptr_t)&ImporterFunc_Invoke_m143089455BBD8920FDB4F1B683E685B50FB8077A_OpenVirtual;
|
|
}
|
|
else
|
|
{
|
|
__this->___invoke_impl = (intptr_t)&ImporterFunc_Invoke_m143089455BBD8920FDB4F1B683E685B50FB8077A_OpenInst;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (___0_object == NULL)
|
|
il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL);
|
|
__this->___invoke_impl = __this->___method_ptr;
|
|
__this->___method_code = (intptr_t)__this->___m_target;
|
|
}
|
|
}
|
|
__this->___extra_arg = (intptr_t)&ImporterFunc_Invoke_m143089455BBD8920FDB4F1B683E685B50FB8077A_Multicast;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ImporterFunc_Invoke_m143089455BBD8920FDB4F1B683E685B50FB8077A (ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* __this, RuntimeObject* ___0_input, const RuntimeMethod* method)
|
|
{
|
|
typedef RuntimeObject* (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_input, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ImporterFunc_BeginInvoke_mD7CF3CA8BCE43B4C7C2CB4539FCC07CFB3B459C2 (ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* __this, RuntimeObject* ___0_input, AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___1_callback, RuntimeObject* ___2_object, const RuntimeMethod* method)
|
|
{
|
|
void *__d_args[2] = {0};
|
|
__d_args[0] = ___0_input;
|
|
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___1_callback, (RuntimeObject*)___2_object);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ImporterFunc_EndInvoke_mBA9C97FCC0F1A51B4F9ADBA9C3C71B2992B8C853 (ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* __this, RuntimeObject* ___0_result, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___0_result, 0);
|
|
return (RuntimeObject*)__result;
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
RuntimeObject* WrapperFactory_Invoke_mDEC930B07F8B4652EBECE1E6386E92701A93C7D5_Multicast(WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* __this, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_array_size_t length = __this->___delegates->max_length;
|
|
Delegate_t** delegatesToInvoke = reinterpret_cast<Delegate_t**>(__this->___delegates->GetAddressAtUnchecked(0));
|
|
RuntimeObject* retVal = NULL;
|
|
for (il2cpp_array_size_t i = 0; i < length; i++)
|
|
{
|
|
WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* currentDelegate = reinterpret_cast<WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD*>(delegatesToInvoke[i]);
|
|
typedef RuntimeObject* (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
|
|
retVal = ((FunctionPointerType)currentDelegate->___invoke_impl)((Il2CppObject*)currentDelegate->___method_code, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method));
|
|
}
|
|
return retVal;
|
|
}
|
|
RuntimeObject* WrapperFactory_Invoke_mDEC930B07F8B4652EBECE1E6386E92701A93C7D5_OpenInst(WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* __this, const RuntimeMethod* method)
|
|
{
|
|
typedef RuntimeObject* (*FunctionPointerType) (const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___method_ptr)(method);
|
|
}
|
|
RuntimeObject* WrapperFactory_Invoke_mDEC930B07F8B4652EBECE1E6386E92701A93C7D5_OpenStatic(WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* __this, const RuntimeMethod* method)
|
|
{
|
|
typedef RuntimeObject* (*FunctionPointerType) (const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___method_ptr)(method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WrapperFactory__ctor_mDCB80755422A0F810CF4702BBE931A9B4AE5C809 (WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
__this->___method_ptr = (intptr_t)il2cpp_codegen_get_method_pointer((RuntimeMethod*)___1_method);
|
|
__this->___method = ___1_method;
|
|
__this->___m_target = ___0_object;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target), (void*)___0_object);
|
|
int parameterCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___1_method);
|
|
__this->___method_code = (intptr_t)__this;
|
|
if (MethodIsStatic((RuntimeMethod*)___1_method))
|
|
{
|
|
bool isOpen = parameterCount == 0;
|
|
if (isOpen)
|
|
__this->___invoke_impl = (intptr_t)&WrapperFactory_Invoke_mDEC930B07F8B4652EBECE1E6386E92701A93C7D5_OpenStatic;
|
|
else
|
|
{
|
|
__this->___invoke_impl = __this->___method_ptr;
|
|
__this->___method_code = (intptr_t)__this->___m_target;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (___0_object == NULL)
|
|
il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL);
|
|
__this->___invoke_impl = __this->___method_ptr;
|
|
__this->___method_code = (intptr_t)__this->___m_target;
|
|
}
|
|
__this->___extra_arg = (intptr_t)&WrapperFactory_Invoke_mDEC930B07F8B4652EBECE1E6386E92701A93C7D5_Multicast;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WrapperFactory_Invoke_mDEC930B07F8B4652EBECE1E6386E92701A93C7D5 (WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* __this, const RuntimeMethod* method)
|
|
{
|
|
typedef RuntimeObject* (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WrapperFactory_BeginInvoke_mEFD9FE53CFC5454AAEB8B36D92C3328E55C03066 (WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* __this, AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___0_callback, RuntimeObject* ___1_object, const RuntimeMethod* method)
|
|
{
|
|
void *__d_args[1] = {0};
|
|
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___0_callback, (RuntimeObject*)___1_object);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WrapperFactory_EndInvoke_m425C49E08B2DAB9EE155560276880757C783AE55 (WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* __this, RuntimeObject* ___0_result, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___0_result, 0);
|
|
return (RuntimeObject*)__result;
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper__cctor_mB5697D724FF6E6DB1BBAB0F6128A410F9D2E124A (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m186154EAD1DF359706A7CF36C6BD7F5ACC47CFB7_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m224AC90EC65DF7D2F4D85F0DDEC5FECC74920277_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m3D7546A6DF9CDDA353873ECE10E542AD6406A825_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m95FEBED8F3E1B9BB1282B2C7E18C736BDC259D49_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_mB364E5DE0CF679AC362662B5C96B6A6FB6B12AB8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_mFDB6B4CAA4E2AE6E8C2EA0D6D7DE7172BF609E65_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t13D69527163788C316AD7673426765F0A3E018A0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t51F843E5AA0162639CFD12BF0859C4C0FF822998_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_tAA76A881C8942A9F8F63F6BEE2A572DCF133AB93_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_tB42EF32D51D7595BF925017BF4A743C5B97C9053_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_tD786692960EC82E79B160F75E780BA867D6C1BBD_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_tD8EF042176D7CCA0618F7F42494A6AAD68478914_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityTypeBindings_t8B29FCFD0144021BCAE930AB4077026676F186BA_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject* L_0 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_0, NULL);
|
|
((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___array_metadata_lock = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___array_metadata_lock), (void*)L_0);
|
|
RuntimeObject* L_1 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_1, NULL);
|
|
((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___conv_ops_lock = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___conv_ops_lock), (void*)L_1);
|
|
RuntimeObject* L_2 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_2, NULL);
|
|
((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___object_metadata_lock = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___object_metadata_lock), (void*)L_2);
|
|
RuntimeObject* L_3 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_3, NULL);
|
|
((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___type_properties_lock = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___type_properties_lock), (void*)L_3);
|
|
RuntimeObject* L_4 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_4, NULL);
|
|
((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___static_writer_lock = L_4;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___static_writer_lock), (void*)L_4);
|
|
((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___max_nesting_depth = ((int32_t)100);
|
|
Dictionary_2_tB42EF32D51D7595BF925017BF4A743C5B97C9053* L_5 = (Dictionary_2_tB42EF32D51D7595BF925017BF4A743C5B97C9053*)il2cpp_codegen_object_new(Dictionary_2_tB42EF32D51D7595BF925017BF4A743C5B97C9053_il2cpp_TypeInfo_var);
|
|
Dictionary_2__ctor_m186154EAD1DF359706A7CF36C6BD7F5ACC47CFB7(L_5, Dictionary_2__ctor_m186154EAD1DF359706A7CF36C6BD7F5ACC47CFB7_RuntimeMethod_var);
|
|
((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___array_metadata = L_5;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___array_metadata), (void*)L_5);
|
|
Dictionary_2_tD786692960EC82E79B160F75E780BA867D6C1BBD* L_6 = (Dictionary_2_tD786692960EC82E79B160F75E780BA867D6C1BBD*)il2cpp_codegen_object_new(Dictionary_2_tD786692960EC82E79B160F75E780BA867D6C1BBD_il2cpp_TypeInfo_var);
|
|
Dictionary_2__ctor_mFDB6B4CAA4E2AE6E8C2EA0D6D7DE7172BF609E65(L_6, Dictionary_2__ctor_mFDB6B4CAA4E2AE6E8C2EA0D6D7DE7172BF609E65_RuntimeMethod_var);
|
|
((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___conv_ops = L_6;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___conv_ops), (void*)L_6);
|
|
Dictionary_2_tD8EF042176D7CCA0618F7F42494A6AAD68478914* L_7 = (Dictionary_2_tD8EF042176D7CCA0618F7F42494A6AAD68478914*)il2cpp_codegen_object_new(Dictionary_2_tD8EF042176D7CCA0618F7F42494A6AAD68478914_il2cpp_TypeInfo_var);
|
|
Dictionary_2__ctor_m3D7546A6DF9CDDA353873ECE10E542AD6406A825(L_7, Dictionary_2__ctor_m3D7546A6DF9CDDA353873ECE10E542AD6406A825_RuntimeMethod_var);
|
|
((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___object_metadata = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___object_metadata), (void*)L_7);
|
|
Dictionary_2_tAA76A881C8942A9F8F63F6BEE2A572DCF133AB93* L_8 = (Dictionary_2_tAA76A881C8942A9F8F63F6BEE2A572DCF133AB93*)il2cpp_codegen_object_new(Dictionary_2_tAA76A881C8942A9F8F63F6BEE2A572DCF133AB93_il2cpp_TypeInfo_var);
|
|
Dictionary_2__ctor_mB364E5DE0CF679AC362662B5C96B6A6FB6B12AB8(L_8, Dictionary_2__ctor_mB364E5DE0CF679AC362662B5C96B6A6FB6B12AB8_RuntimeMethod_var);
|
|
((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___type_properties = L_8;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___type_properties), (void*)L_8);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_9 = (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F*)il2cpp_codegen_object_new(JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F_il2cpp_TypeInfo_var);
|
|
JsonWriter__ctor_mFF4C2DE4CAD061714750C2D87291FCF9D0AE4EF0(L_9, NULL);
|
|
((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___static_writer = L_9;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___static_writer), (void*)L_9);
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A_il2cpp_TypeInfo_var);
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_10;
|
|
L_10 = DateTimeFormatInfo_get_InvariantInfo_m24804C20A94D2952323C82193D4A59ADF171C8AA(NULL);
|
|
((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___datetime_format = L_10;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___datetime_format), (void*)L_10);
|
|
Dictionary_2_t13D69527163788C316AD7673426765F0A3E018A0* L_11 = (Dictionary_2_t13D69527163788C316AD7673426765F0A3E018A0*)il2cpp_codegen_object_new(Dictionary_2_t13D69527163788C316AD7673426765F0A3E018A0_il2cpp_TypeInfo_var);
|
|
Dictionary_2__ctor_m224AC90EC65DF7D2F4D85F0DDEC5FECC74920277(L_11, Dictionary_2__ctor_m224AC90EC65DF7D2F4D85F0DDEC5FECC74920277_RuntimeMethod_var);
|
|
((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___base_exporters_table = L_11;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___base_exporters_table), (void*)L_11);
|
|
Dictionary_2_t13D69527163788C316AD7673426765F0A3E018A0* L_12 = (Dictionary_2_t13D69527163788C316AD7673426765F0A3E018A0*)il2cpp_codegen_object_new(Dictionary_2_t13D69527163788C316AD7673426765F0A3E018A0_il2cpp_TypeInfo_var);
|
|
Dictionary_2__ctor_m224AC90EC65DF7D2F4D85F0DDEC5FECC74920277(L_12, Dictionary_2__ctor_m224AC90EC65DF7D2F4D85F0DDEC5FECC74920277_RuntimeMethod_var);
|
|
((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___custom_exporters_table = L_12;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___custom_exporters_table), (void*)L_12);
|
|
Dictionary_2_t51F843E5AA0162639CFD12BF0859C4C0FF822998* L_13 = (Dictionary_2_t51F843E5AA0162639CFD12BF0859C4C0FF822998*)il2cpp_codegen_object_new(Dictionary_2_t51F843E5AA0162639CFD12BF0859C4C0FF822998_il2cpp_TypeInfo_var);
|
|
Dictionary_2__ctor_m95FEBED8F3E1B9BB1282B2C7E18C736BDC259D49(L_13, Dictionary_2__ctor_m95FEBED8F3E1B9BB1282B2C7E18C736BDC259D49_RuntimeMethod_var);
|
|
((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___base_importers_table = L_13;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___base_importers_table), (void*)L_13);
|
|
Dictionary_2_t51F843E5AA0162639CFD12BF0859C4C0FF822998* L_14 = (Dictionary_2_t51F843E5AA0162639CFD12BF0859C4C0FF822998*)il2cpp_codegen_object_new(Dictionary_2_t51F843E5AA0162639CFD12BF0859C4C0FF822998_il2cpp_TypeInfo_var);
|
|
Dictionary_2__ctor_m95FEBED8F3E1B9BB1282B2C7E18C736BDC259D49(L_14, Dictionary_2__ctor_m95FEBED8F3E1B9BB1282B2C7E18C736BDC259D49_RuntimeMethod_var);
|
|
((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___custom_importers_table = L_14;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___custom_importers_table), (void*)L_14);
|
|
JsonMapper_RegisterBaseExporters_m1866D55E6CA556A86EB3F4E4C484706A596A34D9(NULL);
|
|
JsonMapper_RegisterBaseImporters_m108AF061EDD0D019D96B7276A59E909010EF6F79(NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(UnityTypeBindings_t8B29FCFD0144021BCAE930AB4077026676F186BA_il2cpp_TypeInfo_var);
|
|
UnityTypeBindings_Register_m80C74CBD12EF00CFE372EAA26A629B8005F88C18(NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper_AddArrayMetadata_mE3410659CA2904A58B6870D8AD254B2AC926871B (Type_t* ___0_type, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_t8918FFC362E99797BB0E47D0D787D923EC3C8AAA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB6F02FE6CD732AB22BD11BE4254D9546F3BEEE58);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD5DF53EB5CC9A30D6CA4EECD8F9C4882ABF00BB6);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
PropertyInfoU5BU5D_tD81C248B41D0C76207C42DB9C332DC79F490B1D7* V_3 = NULL;
|
|
int32_t V_4 = 0;
|
|
PropertyInfo_t* V_5 = NULL;
|
|
ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* V_6 = NULL;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
bool V_9 = false;
|
|
RuntimeObject* V_10 = NULL;
|
|
bool V_11 = false;
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_0 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___array_metadata;
|
|
Type_t* L_1 = ___0_type;
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = InterfaceFuncInvoker1< bool, Type_t* >::Invoke(4, IDictionary_2_t8918FFC362E99797BB0E47D0D787D923EC3C8AAA_il2cpp_TypeInfo_var, L_0, L_1);
|
|
V_1 = L_2;
|
|
bool L_3 = V_1;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
goto IL_010d;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
il2cpp_codegen_initobj((&V_0), sizeof(ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D));
|
|
Type_t* L_4 = ___0_type;
|
|
NullCheck(L_4);
|
|
bool L_5;
|
|
L_5 = Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673(L_4, NULL);
|
|
ArrayMetadata_set_IsArray_m80C5694C47BE321F66F82FC47D554982E5F47AEE((&V_0), L_5, NULL);
|
|
Type_t* L_6 = ___0_type;
|
|
NullCheck(L_6);
|
|
Type_t* L_7;
|
|
L_7 = Type_GetInterface_m536A2DE796291194A1EAE035EE3742D3A220854E(L_6, _stringLiteralD5DF53EB5CC9A30D6CA4EECD8F9C4882ABF00BB6, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
bool L_8;
|
|
L_8 = Type_op_Inequality_m83209C7BB3C05DFBEA3B6199B0BEFE8037301172(L_7, (Type_t*)NULL, NULL);
|
|
V_2 = L_8;
|
|
bool L_9 = V_2;
|
|
if (!L_9)
|
|
{
|
|
goto IL_004c;
|
|
}
|
|
}
|
|
{
|
|
ArrayMetadata_set_IsList_mE4168A68921BFBA7306369E7BFDFD10CC59083C2((&V_0), (bool)1, NULL);
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
Type_t* L_10 = ___0_type;
|
|
NullCheck(L_10);
|
|
PropertyInfoU5BU5D_tD81C248B41D0C76207C42DB9C332DC79F490B1D7* L_11;
|
|
L_11 = Type_GetProperties_m090A935168ED8AEE2CE95BDF6D69F3AAAF71B2D6(L_10, NULL);
|
|
V_3 = L_11;
|
|
V_4 = 0;
|
|
goto IL_00cc;
|
|
}
|
|
|
|
IL_0059:
|
|
{
|
|
PropertyInfoU5BU5D_tD81C248B41D0C76207C42DB9C332DC79F490B1D7* L_12 = V_3;
|
|
int32_t L_13 = V_4;
|
|
NullCheck(L_12);
|
|
int32_t L_14 = L_13;
|
|
PropertyInfo_t* L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
|
|
V_5 = L_15;
|
|
PropertyInfo_t* L_16 = V_5;
|
|
NullCheck(L_16);
|
|
String_t* L_17;
|
|
L_17 = VirtualFuncInvoker0< String_t* >::Invoke(13, L_16);
|
|
bool L_18;
|
|
L_18 = String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6(L_17, _stringLiteralB6F02FE6CD732AB22BD11BE4254D9546F3BEEE58, NULL);
|
|
V_7 = L_18;
|
|
bool L_19 = V_7;
|
|
if (!L_19)
|
|
{
|
|
goto IL_007a;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00c6;
|
|
}
|
|
|
|
IL_007a:
|
|
{
|
|
PropertyInfo_t* L_20 = V_5;
|
|
NullCheck(L_20);
|
|
ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* L_21;
|
|
L_21 = VirtualFuncInvoker0< ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* >::Invoke(31, L_20);
|
|
V_6 = L_21;
|
|
ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* L_22 = V_6;
|
|
NullCheck(L_22);
|
|
V_8 = (bool)((((int32_t)((((int32_t)((int32_t)(((RuntimeArray*)L_22)->max_length))) == ((int32_t)1))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_23 = V_8;
|
|
if (!L_23)
|
|
{
|
|
goto IL_0096;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00c6;
|
|
}
|
|
|
|
IL_0096:
|
|
{
|
|
ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* L_24 = V_6;
|
|
NullCheck(L_24);
|
|
int32_t L_25 = 0;
|
|
ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F* L_26 = (L_24)->GetAt(static_cast<il2cpp_array_size_t>(L_25));
|
|
NullCheck(L_26);
|
|
Type_t* L_27;
|
|
L_27 = VirtualFuncInvoker0< Type_t* >::Invoke(15, L_26);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_28 = { reinterpret_cast<intptr_t> (Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_29;
|
|
L_29 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_28, NULL);
|
|
bool L_30;
|
|
L_30 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_27, L_29, NULL);
|
|
V_9 = L_30;
|
|
bool L_31 = V_9;
|
|
if (!L_31)
|
|
{
|
|
goto IL_00c5;
|
|
}
|
|
}
|
|
{
|
|
PropertyInfo_t* L_32 = V_5;
|
|
NullCheck(L_32);
|
|
Type_t* L_33;
|
|
L_33 = VirtualFuncInvoker0< Type_t* >::Invoke(30, L_32);
|
|
ArrayMetadata_set_ElementType_m5832C95BFE5A1BAE4F2A604A74935918F18C6FB3((&V_0), L_33, NULL);
|
|
}
|
|
|
|
IL_00c5:
|
|
{
|
|
}
|
|
|
|
IL_00c6:
|
|
{
|
|
int32_t L_34 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add(L_34, 1));
|
|
}
|
|
|
|
IL_00cc:
|
|
{
|
|
int32_t L_35 = V_4;
|
|
PropertyInfoU5BU5D_tD81C248B41D0C76207C42DB9C332DC79F490B1D7* L_36 = V_3;
|
|
NullCheck(L_36);
|
|
if ((((int32_t)L_35) < ((int32_t)((int32_t)(((RuntimeArray*)L_36)->max_length)))))
|
|
{
|
|
goto IL_0059;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_37 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___array_metadata_lock;
|
|
V_10 = L_37;
|
|
V_11 = (bool)0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0100:
|
|
{
|
|
{
|
|
bool L_38 = V_11;
|
|
if (!L_38)
|
|
{
|
|
goto IL_010c;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_39 = V_10;
|
|
Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_39, NULL);
|
|
}
|
|
|
|
IL_010c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
RuntimeObject* L_40 = V_10;
|
|
Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_40, (&V_11), NULL);
|
|
}
|
|
try
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_41 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___array_metadata;
|
|
Type_t* L_42 = ___0_type;
|
|
ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D L_43 = V_0;
|
|
NullCheck(L_41);
|
|
InterfaceActionInvoker2< Type_t*, ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D >::Invoke(5, IDictionary_2_t8918FFC362E99797BB0E47D0D787D923EC3C8AAA_il2cpp_TypeInfo_var, L_41, L_42, L_43);
|
|
goto IL_00fd_1;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_00f9_1;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_00f9_1:
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_44 = ((ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)IL2CPP_GET_ACTIVE_EXCEPTION(ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*));;
|
|
IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
|
|
goto IL_010d;
|
|
}
|
|
|
|
IL_00fd_1:
|
|
{
|
|
goto IL_010d;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_010d:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper_AddObjectMetadata_m9A5768B60C9F0965DA9CD72412DE5371AA9A756C (Type_t* ___0_type, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_mE6A439BEA4E21EF9C6E01E19390EE90B680DD348_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_tD88E8C222DEDEFACEF548AAB380B9ED228B42954_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_tBDC061B9374E6628F4296689FB32A9C598E45C4B_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_tC6EEF4DE19255D76EDF497CDE277E5578CB81EB2_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_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);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0B4852B6F2412388B50C99BF806BFE926E4FFEA5);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB6F02FE6CD732AB22BD11BE4254D9546F3BEEE58);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
PropertyInfoU5BU5D_tD81C248B41D0C76207C42DB9C332DC79F490B1D7* V_3 = NULL;
|
|
int32_t V_4 = 0;
|
|
PropertyInfo_t* V_5 = NULL;
|
|
PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D V_6;
|
|
memset((&V_6), 0, sizeof(V_6));
|
|
bool V_7 = false;
|
|
ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* V_8 = NULL;
|
|
bool V_9 = false;
|
|
bool V_10 = false;
|
|
FieldInfoU5BU5D_t50D47CBECF1AEB152F555803E3329D9E34DBF8D8* V_11 = NULL;
|
|
int32_t V_12 = 0;
|
|
FieldInfo_t* V_13 = NULL;
|
|
PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D V_14;
|
|
memset((&V_14), 0, sizeof(V_14));
|
|
RuntimeObject* V_15 = NULL;
|
|
bool V_16 = false;
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_0 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___object_metadata;
|
|
Type_t* L_1 = ___0_type;
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = InterfaceFuncInvoker1< bool, Type_t* >::Invoke(4, IDictionary_2_tBDC061B9374E6628F4296689FB32A9C598E45C4B_il2cpp_TypeInfo_var, L_0, L_1);
|
|
V_1 = L_2;
|
|
bool L_3 = V_1;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
goto IL_01a9;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
il2cpp_codegen_initobj((&V_0), sizeof(ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661));
|
|
Type_t* L_4 = ___0_type;
|
|
NullCheck(L_4);
|
|
Type_t* L_5;
|
|
L_5 = Type_GetInterface_m536A2DE796291194A1EAE035EE3742D3A220854E(L_4, _stringLiteral0B4852B6F2412388B50C99BF806BFE926E4FFEA5, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
bool L_6;
|
|
L_6 = Type_op_Inequality_m83209C7BB3C05DFBEA3B6199B0BEFE8037301172(L_5, (Type_t*)NULL, NULL);
|
|
V_2 = L_6;
|
|
bool L_7 = V_2;
|
|
if (!L_7)
|
|
{
|
|
goto IL_003e;
|
|
}
|
|
}
|
|
{
|
|
ObjectMetadata_set_IsDictionary_mA0408F3F69CBF5C14DEC1CD12FBD4B9830F91151((&V_0), (bool)1, NULL);
|
|
}
|
|
|
|
IL_003e:
|
|
{
|
|
Dictionary_2_tD88E8C222DEDEFACEF548AAB380B9ED228B42954* L_8 = (Dictionary_2_tD88E8C222DEDEFACEF548AAB380B9ED228B42954*)il2cpp_codegen_object_new(Dictionary_2_tD88E8C222DEDEFACEF548AAB380B9ED228B42954_il2cpp_TypeInfo_var);
|
|
Dictionary_2__ctor_mE6A439BEA4E21EF9C6E01E19390EE90B680DD348(L_8, Dictionary_2__ctor_mE6A439BEA4E21EF9C6E01E19390EE90B680DD348_RuntimeMethod_var);
|
|
ObjectMetadata_set_Properties_m6DD2CBC23136F0B020069E54BDF7A1BCCCF31FE6((&V_0), L_8, NULL);
|
|
Type_t* L_9 = ___0_type;
|
|
NullCheck(L_9);
|
|
PropertyInfoU5BU5D_tD81C248B41D0C76207C42DB9C332DC79F490B1D7* L_10;
|
|
L_10 = Type_GetProperties_m090A935168ED8AEE2CE95BDF6D69F3AAAF71B2D6(L_9, NULL);
|
|
V_3 = L_10;
|
|
V_4 = 0;
|
|
goto IL_0103;
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
PropertyInfoU5BU5D_tD81C248B41D0C76207C42DB9C332DC79F490B1D7* L_11 = V_3;
|
|
int32_t L_12 = V_4;
|
|
NullCheck(L_11);
|
|
int32_t L_13 = L_12;
|
|
PropertyInfo_t* L_14 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_13));
|
|
V_5 = L_14;
|
|
PropertyInfo_t* L_15 = V_5;
|
|
NullCheck(L_15);
|
|
String_t* L_16;
|
|
L_16 = VirtualFuncInvoker0< String_t* >::Invoke(13, L_15);
|
|
bool L_17;
|
|
L_17 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_16, _stringLiteralB6F02FE6CD732AB22BD11BE4254D9546F3BEEE58, NULL);
|
|
V_7 = L_17;
|
|
bool L_18 = V_7;
|
|
if (!L_18)
|
|
{
|
|
goto IL_00c7;
|
|
}
|
|
}
|
|
{
|
|
PropertyInfo_t* L_19 = V_5;
|
|
NullCheck(L_19);
|
|
ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* L_20;
|
|
L_20 = VirtualFuncInvoker0< ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* >::Invoke(31, L_19);
|
|
V_8 = L_20;
|
|
ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* L_21 = V_8;
|
|
NullCheck(L_21);
|
|
V_9 = (bool)((((int32_t)((((int32_t)((int32_t)(((RuntimeArray*)L_21)->max_length))) == ((int32_t)1))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_22 = V_9;
|
|
if (!L_22)
|
|
{
|
|
goto IL_0096;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00fd;
|
|
}
|
|
|
|
IL_0096:
|
|
{
|
|
ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* L_23 = V_8;
|
|
NullCheck(L_23);
|
|
int32_t L_24 = 0;
|
|
ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F* L_25 = (L_23)->GetAt(static_cast<il2cpp_array_size_t>(L_24));
|
|
NullCheck(L_25);
|
|
Type_t* L_26;
|
|
L_26 = VirtualFuncInvoker0< Type_t* >::Invoke(15, L_25);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_27 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_28;
|
|
L_28 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_27, NULL);
|
|
bool L_29;
|
|
L_29 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_26, L_28, NULL);
|
|
V_10 = L_29;
|
|
bool L_30 = V_10;
|
|
if (!L_30)
|
|
{
|
|
goto IL_00c5;
|
|
}
|
|
}
|
|
{
|
|
PropertyInfo_t* L_31 = V_5;
|
|
NullCheck(L_31);
|
|
Type_t* L_32;
|
|
L_32 = VirtualFuncInvoker0< Type_t* >::Invoke(30, L_31);
|
|
ObjectMetadata_set_ElementType_m5AF14DA94DE8B13F68D6913AA0487B6C412A9355((&V_0), L_32, NULL);
|
|
}
|
|
|
|
IL_00c5:
|
|
{
|
|
goto IL_00fd;
|
|
}
|
|
|
|
IL_00c7:
|
|
{
|
|
il2cpp_codegen_initobj((&V_6), sizeof(PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D));
|
|
PropertyInfo_t* L_33 = V_5;
|
|
(&V_6)->___Info = L_33;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_6)->___Info), (void*)L_33);
|
|
PropertyInfo_t* L_34 = V_5;
|
|
NullCheck(L_34);
|
|
Type_t* L_35;
|
|
L_35 = VirtualFuncInvoker0< Type_t* >::Invoke(30, L_34);
|
|
(&V_6)->___Type = L_35;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_6)->___Type), (void*)L_35);
|
|
RuntimeObject* L_36;
|
|
L_36 = ObjectMetadata_get_Properties_m8E9F8EDA9F12FD110E25D5785F084C1A8B393805((&V_0), NULL);
|
|
PropertyInfo_t* L_37 = V_5;
|
|
NullCheck(L_37);
|
|
String_t* L_38;
|
|
L_38 = VirtualFuncInvoker0< String_t* >::Invoke(13, L_37);
|
|
PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D L_39 = V_6;
|
|
NullCheck(L_36);
|
|
InterfaceActionInvoker2< String_t*, PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D >::Invoke(5, IDictionary_2_tC6EEF4DE19255D76EDF497CDE277E5578CB81EB2_il2cpp_TypeInfo_var, L_36, L_38, L_39);
|
|
}
|
|
|
|
IL_00fd:
|
|
{
|
|
int32_t L_40 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add(L_40, 1));
|
|
}
|
|
|
|
IL_0103:
|
|
{
|
|
int32_t L_41 = V_4;
|
|
PropertyInfoU5BU5D_tD81C248B41D0C76207C42DB9C332DC79F490B1D7* L_42 = V_3;
|
|
NullCheck(L_42);
|
|
if ((((int32_t)L_41) < ((int32_t)((int32_t)(((RuntimeArray*)L_42)->max_length)))))
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
Type_t* L_43 = ___0_type;
|
|
NullCheck(L_43);
|
|
FieldInfoU5BU5D_t50D47CBECF1AEB152F555803E3329D9E34DBF8D8* L_44;
|
|
L_44 = Type_GetFields_mC0570FF1986A6D93FA7976303B44B2FF8D0BC77F(L_43, NULL);
|
|
V_11 = L_44;
|
|
V_12 = 0;
|
|
goto IL_0167;
|
|
}
|
|
|
|
IL_011b:
|
|
{
|
|
FieldInfoU5BU5D_t50D47CBECF1AEB152F555803E3329D9E34DBF8D8* L_45 = V_11;
|
|
int32_t L_46 = V_12;
|
|
NullCheck(L_45);
|
|
int32_t L_47 = L_46;
|
|
FieldInfo_t* L_48 = (L_45)->GetAt(static_cast<il2cpp_array_size_t>(L_47));
|
|
V_13 = L_48;
|
|
il2cpp_codegen_initobj((&V_14), sizeof(PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D));
|
|
FieldInfo_t* L_49 = V_13;
|
|
(&V_14)->___Info = L_49;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_14)->___Info), (void*)L_49);
|
|
(&V_14)->___IsField = (bool)1;
|
|
FieldInfo_t* L_50 = V_13;
|
|
NullCheck(L_50);
|
|
Type_t* L_51;
|
|
L_51 = VirtualFuncInvoker0< Type_t* >::Invoke(31, L_50);
|
|
(&V_14)->___Type = L_51;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_14)->___Type), (void*)L_51);
|
|
RuntimeObject* L_52;
|
|
L_52 = ObjectMetadata_get_Properties_m8E9F8EDA9F12FD110E25D5785F084C1A8B393805((&V_0), NULL);
|
|
FieldInfo_t* L_53 = V_13;
|
|
NullCheck(L_53);
|
|
String_t* L_54;
|
|
L_54 = VirtualFuncInvoker0< String_t* >::Invoke(13, L_53);
|
|
PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D L_55 = V_14;
|
|
NullCheck(L_52);
|
|
InterfaceActionInvoker2< String_t*, PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D >::Invoke(5, IDictionary_2_tC6EEF4DE19255D76EDF497CDE277E5578CB81EB2_il2cpp_TypeInfo_var, L_52, L_54, L_55);
|
|
int32_t L_56 = V_12;
|
|
V_12 = ((int32_t)il2cpp_codegen_add(L_56, 1));
|
|
}
|
|
|
|
IL_0167:
|
|
{
|
|
int32_t L_57 = V_12;
|
|
FieldInfoU5BU5D_t50D47CBECF1AEB152F555803E3329D9E34DBF8D8* L_58 = V_11;
|
|
NullCheck(L_58);
|
|
if ((((int32_t)L_57) < ((int32_t)((int32_t)(((RuntimeArray*)L_58)->max_length)))))
|
|
{
|
|
goto IL_011b;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_59 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___object_metadata_lock;
|
|
V_15 = L_59;
|
|
V_16 = (bool)0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_019c:
|
|
{
|
|
{
|
|
bool L_60 = V_16;
|
|
if (!L_60)
|
|
{
|
|
goto IL_01a8;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_61 = V_15;
|
|
Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_61, NULL);
|
|
}
|
|
|
|
IL_01a8:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
RuntimeObject* L_62 = V_15;
|
|
Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_62, (&V_16), NULL);
|
|
}
|
|
try
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_63 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___object_metadata;
|
|
Type_t* L_64 = ___0_type;
|
|
ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661 L_65 = V_0;
|
|
NullCheck(L_63);
|
|
InterfaceActionInvoker2< Type_t*, ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661 >::Invoke(5, IDictionary_2_tBDC061B9374E6628F4296689FB32A9C598E45C4B_il2cpp_TypeInfo_var, L_63, L_64, L_65);
|
|
goto IL_0199_1;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_0195_1;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_0195_1:
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_66 = ((ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)IL2CPP_GET_ACTIVE_EXCEPTION(ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*));;
|
|
IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
|
|
goto IL_01a9;
|
|
}
|
|
|
|
IL_0199_1:
|
|
{
|
|
goto IL_01a9;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_01a9:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper_AddTypeProperties_m24B07F9D8AE8CE6C178AF8E6FD44BDF6A4A84389 (Type_t* ___0_type, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_tE29700207988CC46641C84FE3D958DAF55F9ECDE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_t02C6BF8BB03B58DD552B193E9CABACD0AF9CCFA4_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mAAC32D144B3A74FCD65A76B4CA7CB1D2024A1E3A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t3F16D5D88FAFD68886DA28A9E82E74E30BE371F8_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB6F02FE6CD732AB22BD11BE4254D9546F3BEEE58);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
bool V_1 = false;
|
|
PropertyInfoU5BU5D_tD81C248B41D0C76207C42DB9C332DC79F490B1D7* V_2 = NULL;
|
|
int32_t V_3 = 0;
|
|
PropertyInfo_t* V_4 = NULL;
|
|
PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D V_5;
|
|
memset((&V_5), 0, sizeof(V_5));
|
|
bool V_6 = false;
|
|
FieldInfoU5BU5D_t50D47CBECF1AEB152F555803E3329D9E34DBF8D8* V_7 = NULL;
|
|
int32_t V_8 = 0;
|
|
FieldInfo_t* V_9 = NULL;
|
|
PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D V_10;
|
|
memset((&V_10), 0, sizeof(V_10));
|
|
RuntimeObject* V_11 = NULL;
|
|
bool V_12 = false;
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_0 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___type_properties;
|
|
Type_t* L_1 = ___0_type;
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = InterfaceFuncInvoker1< bool, Type_t* >::Invoke(4, IDictionary_2_t02C6BF8BB03B58DD552B193E9CABACD0AF9CCFA4_il2cpp_TypeInfo_var, L_0, L_1);
|
|
V_1 = L_2;
|
|
bool L_3 = V_1;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00f6;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
List_1_t3F16D5D88FAFD68886DA28A9E82E74E30BE371F8* L_4 = (List_1_t3F16D5D88FAFD68886DA28A9E82E74E30BE371F8*)il2cpp_codegen_object_new(List_1_t3F16D5D88FAFD68886DA28A9E82E74E30BE371F8_il2cpp_TypeInfo_var);
|
|
List_1__ctor_mAAC32D144B3A74FCD65A76B4CA7CB1D2024A1E3A(L_4, List_1__ctor_mAAC32D144B3A74FCD65A76B4CA7CB1D2024A1E3A_RuntimeMethod_var);
|
|
V_0 = L_4;
|
|
Type_t* L_5 = ___0_type;
|
|
NullCheck(L_5);
|
|
PropertyInfoU5BU5D_tD81C248B41D0C76207C42DB9C332DC79F490B1D7* L_6;
|
|
L_6 = Type_GetProperties_m090A935168ED8AEE2CE95BDF6D69F3AAAF71B2D6(L_5, NULL);
|
|
V_2 = L_6;
|
|
V_3 = 0;
|
|
goto IL_006f;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
PropertyInfoU5BU5D_tD81C248B41D0C76207C42DB9C332DC79F490B1D7* L_7 = V_2;
|
|
int32_t L_8 = V_3;
|
|
NullCheck(L_7);
|
|
int32_t L_9 = L_8;
|
|
PropertyInfo_t* L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
|
|
V_4 = L_10;
|
|
PropertyInfo_t* L_11 = V_4;
|
|
NullCheck(L_11);
|
|
String_t* L_12;
|
|
L_12 = VirtualFuncInvoker0< String_t* >::Invoke(13, L_11);
|
|
bool L_13;
|
|
L_13 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_12, _stringLiteralB6F02FE6CD732AB22BD11BE4254D9546F3BEEE58, NULL);
|
|
V_6 = L_13;
|
|
bool L_14 = V_6;
|
|
if (!L_14)
|
|
{
|
|
goto IL_0048;
|
|
}
|
|
}
|
|
{
|
|
goto IL_006b;
|
|
}
|
|
|
|
IL_0048:
|
|
{
|
|
il2cpp_codegen_initobj((&V_5), sizeof(PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D));
|
|
PropertyInfo_t* L_15 = V_4;
|
|
(&V_5)->___Info = L_15;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_5)->___Info), (void*)L_15);
|
|
(&V_5)->___IsField = (bool)0;
|
|
RuntimeObject* L_16 = V_0;
|
|
PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D L_17 = V_5;
|
|
NullCheck(L_16);
|
|
InterfaceActionInvoker1< PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D >::Invoke(2, ICollection_1_tE29700207988CC46641C84FE3D958DAF55F9ECDE_il2cpp_TypeInfo_var, L_16, L_17);
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
int32_t L_18 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_18, 1));
|
|
}
|
|
|
|
IL_006f:
|
|
{
|
|
int32_t L_19 = V_3;
|
|
PropertyInfoU5BU5D_tD81C248B41D0C76207C42DB9C332DC79F490B1D7* L_20 = V_2;
|
|
NullCheck(L_20);
|
|
if ((((int32_t)L_19) < ((int32_t)((int32_t)(((RuntimeArray*)L_20)->max_length)))))
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
Type_t* L_21 = ___0_type;
|
|
NullCheck(L_21);
|
|
FieldInfoU5BU5D_t50D47CBECF1AEB152F555803E3329D9E34DBF8D8* L_22;
|
|
L_22 = Type_GetFields_mC0570FF1986A6D93FA7976303B44B2FF8D0BC77F(L_21, NULL);
|
|
V_7 = L_22;
|
|
V_8 = 0;
|
|
goto IL_00b4;
|
|
}
|
|
|
|
IL_0083:
|
|
{
|
|
FieldInfoU5BU5D_t50D47CBECF1AEB152F555803E3329D9E34DBF8D8* L_23 = V_7;
|
|
int32_t L_24 = V_8;
|
|
NullCheck(L_23);
|
|
int32_t L_25 = L_24;
|
|
FieldInfo_t* L_26 = (L_23)->GetAt(static_cast<il2cpp_array_size_t>(L_25));
|
|
V_9 = L_26;
|
|
il2cpp_codegen_initobj((&V_10), sizeof(PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D));
|
|
FieldInfo_t* L_27 = V_9;
|
|
(&V_10)->___Info = L_27;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_10)->___Info), (void*)L_27);
|
|
(&V_10)->___IsField = (bool)1;
|
|
RuntimeObject* L_28 = V_0;
|
|
PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D L_29 = V_10;
|
|
NullCheck(L_28);
|
|
InterfaceActionInvoker1< PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D >::Invoke(2, ICollection_1_tE29700207988CC46641C84FE3D958DAF55F9ECDE_il2cpp_TypeInfo_var, L_28, L_29);
|
|
int32_t L_30 = V_8;
|
|
V_8 = ((int32_t)il2cpp_codegen_add(L_30, 1));
|
|
}
|
|
|
|
IL_00b4:
|
|
{
|
|
int32_t L_31 = V_8;
|
|
FieldInfoU5BU5D_t50D47CBECF1AEB152F555803E3329D9E34DBF8D8* L_32 = V_7;
|
|
NullCheck(L_32);
|
|
if ((((int32_t)L_31) < ((int32_t)((int32_t)(((RuntimeArray*)L_32)->max_length)))))
|
|
{
|
|
goto IL_0083;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_33 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___type_properties_lock;
|
|
V_11 = L_33;
|
|
V_12 = (bool)0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_00e9:
|
|
{
|
|
{
|
|
bool L_34 = V_12;
|
|
if (!L_34)
|
|
{
|
|
goto IL_00f5;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_35 = V_11;
|
|
Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_35, NULL);
|
|
}
|
|
|
|
IL_00f5:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
RuntimeObject* L_36 = V_11;
|
|
Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_36, (&V_12), NULL);
|
|
}
|
|
try
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_37 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___type_properties;
|
|
Type_t* L_38 = ___0_type;
|
|
RuntimeObject* L_39 = V_0;
|
|
NullCheck(L_37);
|
|
InterfaceActionInvoker2< Type_t*, RuntimeObject* >::Invoke(5, IDictionary_2_t02C6BF8BB03B58DD552B193E9CABACD0AF9CCFA4_il2cpp_TypeInfo_var, L_37, L_38, L_39);
|
|
goto IL_00e6_1;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_00e2_1;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_00e2_1:
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_40 = ((ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)IL2CPP_GET_ACTIVE_EXCEPTION(ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*));;
|
|
IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
|
|
goto IL_00f6;
|
|
}
|
|
|
|
IL_00e6_1:
|
|
{
|
|
goto IL_00f6;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_00f6:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t* JsonMapper_GetConvOp_mA86D07E06B99E4CA3C35F70E294950C288086F8F (Type_t* ___0_t1, Type_t* ___1_t2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m57E4DE0721BD2D645AF3036D988B131AAB138227_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_tB7188876A70AC81C939F78F9171156E43ED476CB_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_t3CC56282CC2E992AD8F56406430E76F0711457AC_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_tE7FFBD71D86A280E4B101DF2F8E59C9FFFAA4C29_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral437906DA6527EA9BAA9A971EC5171183BEB85B59);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
MethodInfo_t* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
bool V_4 = false;
|
|
MethodInfo_t* V_5 = NULL;
|
|
RuntimeObject* V_6 = NULL;
|
|
bool V_7 = false;
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_0 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___conv_ops_lock;
|
|
V_1 = L_0;
|
|
V_2 = (bool)0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_003b:
|
|
{
|
|
{
|
|
bool L_1 = V_2;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0045;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_2 = V_1;
|
|
Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_2, NULL);
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
RuntimeObject* L_3 = V_1;
|
|
Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_3, (&V_2), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_4 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___conv_ops;
|
|
Type_t* L_5 = ___0_t1;
|
|
NullCheck(L_4);
|
|
bool L_6;
|
|
L_6 = InterfaceFuncInvoker1< bool, Type_t* >::Invoke(4, IDictionary_2_tE7FFBD71D86A280E4B101DF2F8E59C9FFFAA4C29_il2cpp_TypeInfo_var, L_4, L_5);
|
|
V_3 = (bool)((((int32_t)L_6) == ((int32_t)0))? 1 : 0);
|
|
bool L_7 = V_3;
|
|
if (!L_7)
|
|
{
|
|
goto IL_0038_1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_8 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___conv_ops;
|
|
Type_t* L_9 = ___0_t1;
|
|
Dictionary_2_tB7188876A70AC81C939F78F9171156E43ED476CB* L_10 = (Dictionary_2_tB7188876A70AC81C939F78F9171156E43ED476CB*)il2cpp_codegen_object_new(Dictionary_2_tB7188876A70AC81C939F78F9171156E43ED476CB_il2cpp_TypeInfo_var);
|
|
Dictionary_2__ctor_m57E4DE0721BD2D645AF3036D988B131AAB138227(L_10, Dictionary_2__ctor_m57E4DE0721BD2D645AF3036D988B131AAB138227_RuntimeMethod_var);
|
|
NullCheck(L_8);
|
|
InterfaceActionInvoker2< Type_t*, RuntimeObject* >::Invoke(5, IDictionary_2_tE7FFBD71D86A280E4B101DF2F8E59C9FFFAA4C29_il2cpp_TypeInfo_var, L_8, L_9, L_10);
|
|
}
|
|
|
|
IL_0038_1:
|
|
{
|
|
goto IL_0046;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0046:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_11 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___conv_ops;
|
|
Type_t* L_12 = ___0_t1;
|
|
NullCheck(L_11);
|
|
RuntimeObject* L_13;
|
|
L_13 = InterfaceFuncInvoker1< RuntimeObject*, Type_t* >::Invoke(0, IDictionary_2_tE7FFBD71D86A280E4B101DF2F8E59C9FFFAA4C29_il2cpp_TypeInfo_var, L_11, L_12);
|
|
Type_t* L_14 = ___1_t2;
|
|
NullCheck(L_13);
|
|
bool L_15;
|
|
L_15 = InterfaceFuncInvoker1< bool, Type_t* >::Invoke(4, IDictionary_2_t3CC56282CC2E992AD8F56406430E76F0711457AC_il2cpp_TypeInfo_var, L_13, L_14);
|
|
V_4 = L_15;
|
|
bool L_16 = V_4;
|
|
if (!L_16)
|
|
{
|
|
goto IL_0073;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_17 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___conv_ops;
|
|
Type_t* L_18 = ___0_t1;
|
|
NullCheck(L_17);
|
|
RuntimeObject* L_19;
|
|
L_19 = InterfaceFuncInvoker1< RuntimeObject*, Type_t* >::Invoke(0, IDictionary_2_tE7FFBD71D86A280E4B101DF2F8E59C9FFFAA4C29_il2cpp_TypeInfo_var, L_17, L_18);
|
|
Type_t* L_20 = ___1_t2;
|
|
NullCheck(L_19);
|
|
MethodInfo_t* L_21;
|
|
L_21 = InterfaceFuncInvoker1< MethodInfo_t*, Type_t* >::Invoke(0, IDictionary_2_t3CC56282CC2E992AD8F56406430E76F0711457AC_il2cpp_TypeInfo_var, L_19, L_20);
|
|
V_5 = L_21;
|
|
goto IL_00e1;
|
|
}
|
|
|
|
IL_0073:
|
|
{
|
|
Type_t* L_22 = ___0_t1;
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_23 = (TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)SZArrayNew(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var, (uint32_t)1);
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_24 = L_23;
|
|
Type_t* L_25 = ___1_t2;
|
|
NullCheck(L_24);
|
|
ArrayElementTypeCheck (L_24, L_25);
|
|
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t*)L_25);
|
|
NullCheck(L_22);
|
|
MethodInfo_t* L_26;
|
|
L_26 = Type_GetMethod_m9E8E55EC8316CE8A2851B62AD4C73E841FEAC2EA(L_22, _stringLiteral437906DA6527EA9BAA9A971EC5171183BEB85B59, L_24, NULL);
|
|
V_0 = L_26;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_27 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___conv_ops_lock;
|
|
V_6 = L_27;
|
|
V_7 = (bool)0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_00cf:
|
|
{
|
|
{
|
|
bool L_28 = V_7;
|
|
if (!L_28)
|
|
{
|
|
goto IL_00db;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_29 = V_6;
|
|
Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_29, NULL);
|
|
}
|
|
|
|
IL_00db:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
RuntimeObject* L_30 = V_6;
|
|
Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_30, (&V_7), NULL);
|
|
}
|
|
try
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_31 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___conv_ops;
|
|
Type_t* L_32 = ___0_t1;
|
|
NullCheck(L_31);
|
|
RuntimeObject* L_33;
|
|
L_33 = InterfaceFuncInvoker1< RuntimeObject*, Type_t* >::Invoke(0, IDictionary_2_tE7FFBD71D86A280E4B101DF2F8E59C9FFFAA4C29_il2cpp_TypeInfo_var, L_31, L_32);
|
|
Type_t* L_34 = ___1_t2;
|
|
MethodInfo_t* L_35 = V_0;
|
|
NullCheck(L_33);
|
|
InterfaceActionInvoker2< Type_t*, MethodInfo_t* >::Invoke(5, IDictionary_2_t3CC56282CC2E992AD8F56406430E76F0711457AC_il2cpp_TypeInfo_var, L_33, L_34, L_35);
|
|
goto IL_00cc_1;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_00b5_1;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_00b5_1:
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_36 = ((ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)IL2CPP_GET_ACTIVE_EXCEPTION(ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*));;
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var)));
|
|
RuntimeObject* L_37 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))))->___conv_ops;
|
|
Type_t* L_38 = ___0_t1;
|
|
NullCheck(L_37);
|
|
RuntimeObject* L_39;
|
|
L_39 = InterfaceFuncInvoker1< RuntimeObject*, Type_t* >::Invoke(0, ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IDictionary_2_tE7FFBD71D86A280E4B101DF2F8E59C9FFFAA4C29_il2cpp_TypeInfo_var)), L_37, L_38);
|
|
Type_t* L_40 = ___1_t2;
|
|
NullCheck(L_39);
|
|
MethodInfo_t* L_41;
|
|
L_41 = InterfaceFuncInvoker1< MethodInfo_t*, Type_t* >::Invoke(0, ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IDictionary_2_t3CC56282CC2E992AD8F56406430E76F0711457AC_il2cpp_TypeInfo_var)), L_39, L_40);
|
|
V_5 = L_41;
|
|
IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
|
|
goto IL_00e1;
|
|
}
|
|
|
|
IL_00cc_1:
|
|
{
|
|
goto IL_00dc;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_00dc:
|
|
{
|
|
MethodInfo_t* L_42 = V_0;
|
|
V_5 = L_42;
|
|
goto IL_00e1;
|
|
}
|
|
|
|
IL_00e1:
|
|
{
|
|
MethodInfo_t* L_43 = V_5;
|
|
return L_43;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonMapper_ReadValue_m12EFFE983BBE0A9254AA072EFEFB7A6156F094E6 (Type_t* ___0_inst_type, JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* ___1_reader, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FieldInfo_t_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_t0BD8FD9B6F60BD6B18C6D1CD2BE215E7F97D3D63_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_t14E89C96BA24B565BED22155CB0969211ADEB1AB_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_t8918FFC362E99797BB0E47D0D787D923EC3C8AAA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_tBDC061B9374E6628F4296689FB32A9C598E45C4B_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_tC6EEF4DE19255D76EDF497CDE277E5578CB81EB2_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyInfo_t_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeArray_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;
|
|
}
|
|
Type_t* V_0 = NULL;
|
|
Type_t* V_1 = NULL;
|
|
RuntimeObject* V_2 = NULL;
|
|
bool V_3 = false;
|
|
RuntimeObject* V_4 = NULL;
|
|
bool V_5 = false;
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
Type_t* V_8 = NULL;
|
|
MethodInfo_t* V_9 = NULL;
|
|
bool V_10 = false;
|
|
bool V_11 = false;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* V_12 = NULL;
|
|
bool V_13 = false;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* V_14 = NULL;
|
|
bool V_15 = false;
|
|
bool V_16 = false;
|
|
bool V_17 = false;
|
|
ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D V_18;
|
|
memset((&V_18), 0, sizeof(V_18));
|
|
RuntimeObject* V_19 = NULL;
|
|
Type_t* V_20 = NULL;
|
|
bool V_21 = false;
|
|
bool V_22 = false;
|
|
RuntimeObject* V_23 = NULL;
|
|
bool V_24 = false;
|
|
bool V_25 = false;
|
|
bool V_26 = false;
|
|
int32_t V_27 = 0;
|
|
int32_t V_28 = 0;
|
|
bool V_29 = false;
|
|
bool V_30 = false;
|
|
ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661 V_31;
|
|
memset((&V_31), 0, sizeof(V_31));
|
|
String_t* V_32 = NULL;
|
|
bool V_33 = false;
|
|
bool V_34 = false;
|
|
PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D V_35;
|
|
memset((&V_35), 0, sizeof(V_35));
|
|
bool V_36 = false;
|
|
PropertyInfo_t* V_37 = NULL;
|
|
bool V_38 = false;
|
|
bool V_39 = false;
|
|
bool V_40 = false;
|
|
bool V_41 = false;
|
|
Type_t* G_B4_0 = NULL;
|
|
Type_t* G_B3_0 = NULL;
|
|
int32_t G_B8_0 = 0;
|
|
int32_t G_B17_0 = 0;
|
|
int32_t G_B23_0 = 0;
|
|
int32_t G_B28_0 = 0;
|
|
int32_t G_B39_0 = 0;
|
|
int32_t G_B48_0 = 0;
|
|
{
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_0 = ___1_reader;
|
|
NullCheck(L_0);
|
|
bool L_1;
|
|
L_1 = JsonReader_Read_mD8D28369934A79C6A0125279F425E48D1D35AE7B(L_0, NULL);
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_2 = ___1_reader;
|
|
NullCheck(L_2);
|
|
int32_t L_3;
|
|
L_3 = JsonReader_get_Token_m519B39A4B87C3A9A7B424AECAE7FDA64B946E975(L_2, NULL);
|
|
V_3 = (bool)((((int32_t)L_3) == ((int32_t)5))? 1 : 0);
|
|
bool L_4 = V_3;
|
|
if (!L_4)
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
V_4 = NULL;
|
|
goto IL_0482;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
Type_t* L_5 = ___0_inst_type;
|
|
Type_t* L_6;
|
|
L_6 = Nullable_GetUnderlyingType_mA8FA7F61D3B8E56EB4E40378020FD2854838BDF8(L_5, NULL);
|
|
V_0 = L_6;
|
|
Type_t* L_7 = V_0;
|
|
Type_t* L_8 = L_7;
|
|
if (L_8)
|
|
{
|
|
G_B4_0 = L_8;
|
|
goto IL_002b;
|
|
}
|
|
G_B3_0 = L_8;
|
|
}
|
|
{
|
|
Type_t* L_9 = ___0_inst_type;
|
|
G_B4_0 = L_9;
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
V_1 = G_B4_0;
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_10 = ___1_reader;
|
|
NullCheck(L_10);
|
|
int32_t L_11;
|
|
L_11 = JsonReader_get_Token_m519B39A4B87C3A9A7B424AECAE7FDA64B946E975(L_10, NULL);
|
|
V_5 = (bool)((((int32_t)L_11) == ((int32_t)((int32_t)11)))? 1 : 0);
|
|
bool L_12 = V_5;
|
|
if (!L_12)
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
Type_t* L_13 = ___0_inst_type;
|
|
NullCheck(L_13);
|
|
bool L_14;
|
|
L_14 = Type_get_IsClass_mACC1E0E79C9996ADE9973F81971B740132B64549(L_13, NULL);
|
|
if (L_14)
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
}
|
|
{
|
|
Type_t* L_15 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
bool L_16;
|
|
L_16 = Type_op_Inequality_m83209C7BB3C05DFBEA3B6199B0BEFE8037301172(L_15, (Type_t*)NULL, NULL);
|
|
G_B8_0 = ((int32_t)(L_16));
|
|
goto IL_004f;
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
G_B8_0 = 1;
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
V_6 = (bool)G_B8_0;
|
|
bool L_17 = V_6;
|
|
if (!L_17)
|
|
{
|
|
goto IL_005e;
|
|
}
|
|
}
|
|
{
|
|
V_4 = NULL;
|
|
goto IL_0482;
|
|
}
|
|
|
|
IL_005e:
|
|
{
|
|
Type_t* L_18 = ___0_inst_type;
|
|
String_t* L_19;
|
|
L_19 = String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC2B624A34AE5F3AF1DE39F5AA12C5DBF59299E28)), L_18, NULL);
|
|
JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76* L_20 = (JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76_il2cpp_TypeInfo_var)));
|
|
JsonException__ctor_m400377A21C20F6CAEE97CE7958869D819BB94BB5(L_20, L_19, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonMapper_ReadValue_m12EFFE983BBE0A9254AA072EFEFB7A6156F094E6_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_006f:
|
|
{
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_21 = ___1_reader;
|
|
NullCheck(L_21);
|
|
int32_t L_22;
|
|
L_22 = JsonReader_get_Token_m519B39A4B87C3A9A7B424AECAE7FDA64B946E975(L_21, NULL);
|
|
if ((((int32_t)L_22) == ((int32_t)8)))
|
|
{
|
|
goto IL_00a0;
|
|
}
|
|
}
|
|
{
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_23 = ___1_reader;
|
|
NullCheck(L_23);
|
|
int32_t L_24;
|
|
L_24 = JsonReader_get_Token_m519B39A4B87C3A9A7B424AECAE7FDA64B946E975(L_23, NULL);
|
|
if ((((int32_t)L_24) == ((int32_t)6)))
|
|
{
|
|
goto IL_00a0;
|
|
}
|
|
}
|
|
{
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_25 = ___1_reader;
|
|
NullCheck(L_25);
|
|
int32_t L_26;
|
|
L_26 = JsonReader_get_Token_m519B39A4B87C3A9A7B424AECAE7FDA64B946E975(L_25, NULL);
|
|
if ((((int32_t)L_26) == ((int32_t)7)))
|
|
{
|
|
goto IL_00a0;
|
|
}
|
|
}
|
|
{
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_27 = ___1_reader;
|
|
NullCheck(L_27);
|
|
int32_t L_28;
|
|
L_28 = JsonReader_get_Token_m519B39A4B87C3A9A7B424AECAE7FDA64B946E975(L_27, NULL);
|
|
if ((((int32_t)L_28) == ((int32_t)((int32_t)9))))
|
|
{
|
|
goto IL_00a0;
|
|
}
|
|
}
|
|
{
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_29 = ___1_reader;
|
|
NullCheck(L_29);
|
|
int32_t L_30;
|
|
L_30 = JsonReader_get_Token_m519B39A4B87C3A9A7B424AECAE7FDA64B946E975(L_29, NULL);
|
|
G_B17_0 = ((((int32_t)L_30) == ((int32_t)((int32_t)10)))? 1 : 0);
|
|
goto IL_00a1;
|
|
}
|
|
|
|
IL_00a0:
|
|
{
|
|
G_B17_0 = 1;
|
|
}
|
|
|
|
IL_00a1:
|
|
{
|
|
V_7 = (bool)G_B17_0;
|
|
bool L_31 = V_7;
|
|
if (!L_31)
|
|
{
|
|
goto IL_01e8;
|
|
}
|
|
}
|
|
{
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_32 = ___1_reader;
|
|
NullCheck(L_32);
|
|
RuntimeObject* L_33;
|
|
L_33 = JsonReader_get_Value_mF219BCB43B2F020C1B67935AA63A40ECD1EE4C05(L_32, NULL);
|
|
NullCheck(L_33);
|
|
Type_t* L_34;
|
|
L_34 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_33, NULL);
|
|
V_8 = L_34;
|
|
Type_t* L_35 = V_1;
|
|
Type_t* L_36 = V_8;
|
|
NullCheck(L_35);
|
|
bool L_37;
|
|
L_37 = VirtualFuncInvoker1< bool, Type_t* >::Invoke(37, L_35, L_36);
|
|
V_10 = L_37;
|
|
bool L_38 = V_10;
|
|
if (!L_38)
|
|
{
|
|
goto IL_00d4;
|
|
}
|
|
}
|
|
{
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_39 = ___1_reader;
|
|
NullCheck(L_39);
|
|
RuntimeObject* L_40;
|
|
L_40 = JsonReader_get_Value_mF219BCB43B2F020C1B67935AA63A40ECD1EE4C05(L_39, NULL);
|
|
V_4 = L_40;
|
|
goto IL_0482;
|
|
}
|
|
|
|
IL_00d4:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_41 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___custom_importers_table;
|
|
Type_t* L_42 = V_8;
|
|
NullCheck(L_41);
|
|
bool L_43;
|
|
L_43 = InterfaceFuncInvoker1< bool, Type_t* >::Invoke(4, IDictionary_2_t0BD8FD9B6F60BD6B18C6D1CD2BE215E7F97D3D63_il2cpp_TypeInfo_var, L_41, L_42);
|
|
if (!L_43)
|
|
{
|
|
goto IL_00f6;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_44 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___custom_importers_table;
|
|
Type_t* L_45 = V_8;
|
|
NullCheck(L_44);
|
|
RuntimeObject* L_46;
|
|
L_46 = InterfaceFuncInvoker1< RuntimeObject*, Type_t* >::Invoke(0, IDictionary_2_t0BD8FD9B6F60BD6B18C6D1CD2BE215E7F97D3D63_il2cpp_TypeInfo_var, L_44, L_45);
|
|
Type_t* L_47 = V_1;
|
|
NullCheck(L_46);
|
|
bool L_48;
|
|
L_48 = InterfaceFuncInvoker1< bool, Type_t* >::Invoke(4, IDictionary_2_t14E89C96BA24B565BED22155CB0969211ADEB1AB_il2cpp_TypeInfo_var, L_46, L_47);
|
|
G_B23_0 = ((int32_t)(L_48));
|
|
goto IL_00f7;
|
|
}
|
|
|
|
IL_00f6:
|
|
{
|
|
G_B23_0 = 0;
|
|
}
|
|
|
|
IL_00f7:
|
|
{
|
|
V_11 = (bool)G_B23_0;
|
|
bool L_49 = V_11;
|
|
if (!L_49)
|
|
{
|
|
goto IL_0126;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_50 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___custom_importers_table;
|
|
Type_t* L_51 = V_8;
|
|
NullCheck(L_50);
|
|
RuntimeObject* L_52;
|
|
L_52 = InterfaceFuncInvoker1< RuntimeObject*, Type_t* >::Invoke(0, IDictionary_2_t0BD8FD9B6F60BD6B18C6D1CD2BE215E7F97D3D63_il2cpp_TypeInfo_var, L_50, L_51);
|
|
Type_t* L_53 = V_1;
|
|
NullCheck(L_52);
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_54;
|
|
L_54 = InterfaceFuncInvoker1< ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5*, Type_t* >::Invoke(0, IDictionary_2_t14E89C96BA24B565BED22155CB0969211ADEB1AB_il2cpp_TypeInfo_var, L_52, L_53);
|
|
V_12 = L_54;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_55 = V_12;
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_56 = ___1_reader;
|
|
NullCheck(L_56);
|
|
RuntimeObject* L_57;
|
|
L_57 = JsonReader_get_Value_mF219BCB43B2F020C1B67935AA63A40ECD1EE4C05(L_56, NULL);
|
|
NullCheck(L_55);
|
|
RuntimeObject* L_58;
|
|
L_58 = ImporterFunc_Invoke_m143089455BBD8920FDB4F1B683E685B50FB8077A_inline(L_55, L_57, NULL);
|
|
V_4 = L_58;
|
|
goto IL_0482;
|
|
}
|
|
|
|
IL_0126:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_59 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___base_importers_table;
|
|
Type_t* L_60 = V_8;
|
|
NullCheck(L_59);
|
|
bool L_61;
|
|
L_61 = InterfaceFuncInvoker1< bool, Type_t* >::Invoke(4, IDictionary_2_t0BD8FD9B6F60BD6B18C6D1CD2BE215E7F97D3D63_il2cpp_TypeInfo_var, L_59, L_60);
|
|
if (!L_61)
|
|
{
|
|
goto IL_0148;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_62 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___base_importers_table;
|
|
Type_t* L_63 = V_8;
|
|
NullCheck(L_62);
|
|
RuntimeObject* L_64;
|
|
L_64 = InterfaceFuncInvoker1< RuntimeObject*, Type_t* >::Invoke(0, IDictionary_2_t0BD8FD9B6F60BD6B18C6D1CD2BE215E7F97D3D63_il2cpp_TypeInfo_var, L_62, L_63);
|
|
Type_t* L_65 = V_1;
|
|
NullCheck(L_64);
|
|
bool L_66;
|
|
L_66 = InterfaceFuncInvoker1< bool, Type_t* >::Invoke(4, IDictionary_2_t14E89C96BA24B565BED22155CB0969211ADEB1AB_il2cpp_TypeInfo_var, L_64, L_65);
|
|
G_B28_0 = ((int32_t)(L_66));
|
|
goto IL_0149;
|
|
}
|
|
|
|
IL_0148:
|
|
{
|
|
G_B28_0 = 0;
|
|
}
|
|
|
|
IL_0149:
|
|
{
|
|
V_13 = (bool)G_B28_0;
|
|
bool L_67 = V_13;
|
|
if (!L_67)
|
|
{
|
|
goto IL_0178;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_68 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___base_importers_table;
|
|
Type_t* L_69 = V_8;
|
|
NullCheck(L_68);
|
|
RuntimeObject* L_70;
|
|
L_70 = InterfaceFuncInvoker1< RuntimeObject*, Type_t* >::Invoke(0, IDictionary_2_t0BD8FD9B6F60BD6B18C6D1CD2BE215E7F97D3D63_il2cpp_TypeInfo_var, L_68, L_69);
|
|
Type_t* L_71 = V_1;
|
|
NullCheck(L_70);
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_72;
|
|
L_72 = InterfaceFuncInvoker1< ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5*, Type_t* >::Invoke(0, IDictionary_2_t14E89C96BA24B565BED22155CB0969211ADEB1AB_il2cpp_TypeInfo_var, L_70, L_71);
|
|
V_14 = L_72;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_73 = V_14;
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_74 = ___1_reader;
|
|
NullCheck(L_74);
|
|
RuntimeObject* L_75;
|
|
L_75 = JsonReader_get_Value_mF219BCB43B2F020C1B67935AA63A40ECD1EE4C05(L_74, NULL);
|
|
NullCheck(L_73);
|
|
RuntimeObject* L_76;
|
|
L_76 = ImporterFunc_Invoke_m143089455BBD8920FDB4F1B683E685B50FB8077A_inline(L_73, L_75, NULL);
|
|
V_4 = L_76;
|
|
goto IL_0482;
|
|
}
|
|
|
|
IL_0178:
|
|
{
|
|
Type_t* L_77 = V_1;
|
|
NullCheck(L_77);
|
|
bool L_78;
|
|
L_78 = VirtualFuncInvoker0< bool >::Invoke(98, L_77);
|
|
V_15 = L_78;
|
|
bool L_79 = V_15;
|
|
if (!L_79)
|
|
{
|
|
goto IL_0198;
|
|
}
|
|
}
|
|
{
|
|
Type_t* L_80 = V_1;
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_81 = ___1_reader;
|
|
NullCheck(L_81);
|
|
RuntimeObject* L_82;
|
|
L_82 = JsonReader_get_Value_mF219BCB43B2F020C1B67935AA63A40ECD1EE4C05(L_81, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_83;
|
|
L_83 = Enum_ToObject_mD898E0819FA640BC4E98924613B5DBD41146D1FF(L_80, L_82, NULL);
|
|
V_4 = L_83;
|
|
goto IL_0482;
|
|
}
|
|
|
|
IL_0198:
|
|
{
|
|
Type_t* L_84 = V_1;
|
|
Type_t* L_85 = V_8;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
MethodInfo_t* L_86;
|
|
L_86 = JsonMapper_GetConvOp_mA86D07E06B99E4CA3C35F70E294950C288086F8F(L_84, L_85, NULL);
|
|
V_9 = L_86;
|
|
MethodInfo_t* L_87 = V_9;
|
|
bool L_88;
|
|
L_88 = MethodInfo_op_Inequality_mB73597A1FCC2F906DBCADDEC68A1B7D5B7E89FA8(L_87, (MethodInfo_t*)NULL, NULL);
|
|
V_16 = L_88;
|
|
bool L_89 = V_16;
|
|
if (!L_89)
|
|
{
|
|
goto IL_01cf;
|
|
}
|
|
}
|
|
{
|
|
MethodInfo_t* L_90 = V_9;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_91 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_92 = L_91;
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_93 = ___1_reader;
|
|
NullCheck(L_93);
|
|
RuntimeObject* L_94;
|
|
L_94 = JsonReader_get_Value_mF219BCB43B2F020C1B67935AA63A40ECD1EE4C05(L_93, NULL);
|
|
NullCheck(L_92);
|
|
ArrayElementTypeCheck (L_92, L_94);
|
|
(L_92)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_94);
|
|
NullCheck(L_90);
|
|
RuntimeObject* L_95;
|
|
L_95 = MethodBase_Invoke_mEEF3218648F111A8C338001A7804091A0747C826(L_90, NULL, L_92, NULL);
|
|
V_4 = L_95;
|
|
goto IL_0482;
|
|
}
|
|
|
|
IL_01cf:
|
|
{
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_96 = ___1_reader;
|
|
NullCheck(L_96);
|
|
RuntimeObject* L_97;
|
|
L_97 = JsonReader_get_Value_mF219BCB43B2F020C1B67935AA63A40ECD1EE4C05(L_96, NULL);
|
|
Type_t* L_98 = V_8;
|
|
Type_t* L_99 = ___0_inst_type;
|
|
String_t* L_100;
|
|
L_100 = String_Format_mA0534D6E2AE4D67A6BD8D45B3321323930EB930C(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF7E5EFDC670ACA0D3155DEFB95477AD16E9744EB)), L_97, L_98, L_99, NULL);
|
|
JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76* L_101 = (JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76_il2cpp_TypeInfo_var)));
|
|
JsonException__ctor_m400377A21C20F6CAEE97CE7958869D819BB94BB5(L_101, L_100, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_101, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonMapper_ReadValue_m12EFFE983BBE0A9254AA072EFEFB7A6156F094E6_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_01e8:
|
|
{
|
|
V_2 = NULL;
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_102 = ___1_reader;
|
|
NullCheck(L_102);
|
|
int32_t L_103;
|
|
L_103 = JsonReader_get_Token_m519B39A4B87C3A9A7B424AECAE7FDA64B946E975(L_102, NULL);
|
|
V_17 = (bool)((((int32_t)L_103) == ((int32_t)4))? 1 : 0);
|
|
bool L_104 = V_17;
|
|
if (!L_104)
|
|
{
|
|
goto IL_0317;
|
|
}
|
|
}
|
|
{
|
|
Type_t* L_105 = ___0_inst_type;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
JsonMapper_AddArrayMetadata_mE3410659CA2904A58B6870D8AD254B2AC926871B(L_105, NULL);
|
|
RuntimeObject* L_106 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___array_metadata;
|
|
Type_t* L_107 = ___0_inst_type;
|
|
NullCheck(L_106);
|
|
ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D L_108;
|
|
L_108 = InterfaceFuncInvoker1< ArrayMetadata_tACCCBD1B8815EDDC21759548BA3FD120086DAA7D, Type_t* >::Invoke(0, IDictionary_2_t8918FFC362E99797BB0E47D0D787D923EC3C8AAA_il2cpp_TypeInfo_var, L_106, L_107);
|
|
V_18 = L_108;
|
|
bool L_109;
|
|
L_109 = ArrayMetadata_get_IsArray_mF60D16C73C7A336444DAC740B3D6A84AD4AA40D2((&V_18), NULL);
|
|
if (L_109)
|
|
{
|
|
goto IL_0226;
|
|
}
|
|
}
|
|
{
|
|
bool L_110;
|
|
L_110 = ArrayMetadata_get_IsList_m65D206DDD4278B4A0DF41E61799AE51EAA23BA7F((&V_18), NULL);
|
|
G_B39_0 = ((((int32_t)L_110) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0227;
|
|
}
|
|
|
|
IL_0226:
|
|
{
|
|
G_B39_0 = 0;
|
|
}
|
|
|
|
IL_0227:
|
|
{
|
|
V_21 = (bool)G_B39_0;
|
|
bool L_111 = V_21;
|
|
if (!L_111)
|
|
{
|
|
goto IL_023f;
|
|
}
|
|
}
|
|
{
|
|
Type_t* L_112 = ___0_inst_type;
|
|
String_t* L_113;
|
|
L_113 = String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAB6E8D33884A8AB4625102A8EEE80D34FD589540)), L_112, NULL);
|
|
JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76* L_114 = (JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76_il2cpp_TypeInfo_var)));
|
|
JsonException__ctor_m400377A21C20F6CAEE97CE7958869D819BB94BB5(L_114, L_113, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_114, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonMapper_ReadValue_m12EFFE983BBE0A9254AA072EFEFB7A6156F094E6_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_023f:
|
|
{
|
|
bool L_115;
|
|
L_115 = ArrayMetadata_get_IsArray_mF60D16C73C7A336444DAC740B3D6A84AD4AA40D2((&V_18), NULL);
|
|
V_22 = (bool)((((int32_t)L_115) == ((int32_t)0))? 1 : 0);
|
|
bool L_116 = V_22;
|
|
if (!L_116)
|
|
{
|
|
goto IL_0269;
|
|
}
|
|
}
|
|
{
|
|
Type_t* L_117 = ___0_inst_type;
|
|
RuntimeObject* L_118;
|
|
L_118 = Activator_CreateInstance_mFF030428C64FDDFACC74DFAC97388A1C628BFBCF(L_117, NULL);
|
|
V_19 = ((RuntimeObject*)Castclass((RuntimeObject*)L_118, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var));
|
|
Type_t* L_119;
|
|
L_119 = ArrayMetadata_get_ElementType_m95F881ADA6D1906BDDAD52E328AEFF30ECA46226((&V_18), NULL);
|
|
V_20 = L_119;
|
|
goto IL_027a;
|
|
}
|
|
|
|
IL_0269:
|
|
{
|
|
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_120 = (ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)il2cpp_codegen_object_new(ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var);
|
|
ArrayList__ctor_m07DC369002304B483B9FC41DBDAF4A25AC3C9F80(L_120, NULL);
|
|
V_19 = L_120;
|
|
Type_t* L_121 = ___0_inst_type;
|
|
NullCheck(L_121);
|
|
Type_t* L_122;
|
|
L_122 = VirtualFuncInvoker0< Type_t* >::Invoke(64, L_121);
|
|
V_20 = L_122;
|
|
}
|
|
|
|
IL_027a:
|
|
{
|
|
RuntimeObject* L_123 = V_19;
|
|
NullCheck(L_123);
|
|
InterfaceActionInvoker0::Invoke(4, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_123);
|
|
goto IL_02b3;
|
|
}
|
|
|
|
IL_0284:
|
|
{
|
|
Type_t* L_124 = V_20;
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_125 = ___1_reader;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_126;
|
|
L_126 = JsonMapper_ReadValue_m12EFFE983BBE0A9254AA072EFEFB7A6156F094E6(L_124, L_125, NULL);
|
|
V_23 = L_126;
|
|
RuntimeObject* L_127 = V_23;
|
|
if (L_127)
|
|
{
|
|
goto IL_029e;
|
|
}
|
|
}
|
|
{
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_128 = ___1_reader;
|
|
NullCheck(L_128);
|
|
int32_t L_129;
|
|
L_129 = JsonReader_get_Token_m519B39A4B87C3A9A7B424AECAE7FDA64B946E975(L_128, NULL);
|
|
G_B48_0 = ((((int32_t)L_129) == ((int32_t)5))? 1 : 0);
|
|
goto IL_029f;
|
|
}
|
|
|
|
IL_029e:
|
|
{
|
|
G_B48_0 = 0;
|
|
}
|
|
|
|
IL_029f:
|
|
{
|
|
V_24 = (bool)G_B48_0;
|
|
bool L_130 = V_24;
|
|
if (!L_130)
|
|
{
|
|
goto IL_02a8;
|
|
}
|
|
}
|
|
{
|
|
goto IL_02b8;
|
|
}
|
|
|
|
IL_02a8:
|
|
{
|
|
RuntimeObject* L_131 = V_19;
|
|
RuntimeObject* L_132 = V_23;
|
|
NullCheck(L_131);
|
|
int32_t L_133;
|
|
L_133 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(2, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_131, L_132);
|
|
}
|
|
|
|
IL_02b3:
|
|
{
|
|
V_25 = (bool)1;
|
|
goto IL_0284;
|
|
}
|
|
|
|
IL_02b8:
|
|
{
|
|
bool L_134;
|
|
L_134 = ArrayMetadata_get_IsArray_mF60D16C73C7A336444DAC740B3D6A84AD4AA40D2((&V_18), NULL);
|
|
V_26 = L_134;
|
|
bool L_135 = V_26;
|
|
if (!L_135)
|
|
{
|
|
goto IL_030c;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_136 = V_19;
|
|
NullCheck(L_136);
|
|
int32_t L_137;
|
|
L_137 = InterfaceFuncInvoker0< int32_t >::Invoke(1, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var, L_136);
|
|
V_27 = L_137;
|
|
Type_t* L_138 = V_20;
|
|
int32_t L_139 = V_27;
|
|
RuntimeArray* L_140;
|
|
L_140 = Array_CreateInstance_m13B202130951A03AF5F52470A19E17D3AD2A8983(L_138, L_139, NULL);
|
|
V_2 = L_140;
|
|
V_28 = 0;
|
|
goto IL_02fd;
|
|
}
|
|
|
|
IL_02de:
|
|
{
|
|
RuntimeObject* L_141 = V_2;
|
|
RuntimeObject* L_142 = V_19;
|
|
int32_t L_143 = V_28;
|
|
NullCheck(L_142);
|
|
RuntimeObject* L_144;
|
|
L_144 = InterfaceFuncInvoker1< RuntimeObject*, int32_t >::Invoke(0, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_142, L_143);
|
|
int32_t L_145 = V_28;
|
|
NullCheck(((RuntimeArray*)CastclassClass((RuntimeObject*)L_141, RuntimeArray_il2cpp_TypeInfo_var)));
|
|
Array_SetValue_mE9507B366ED84E91E92BF32649D36916F96C67B8(((RuntimeArray*)CastclassClass((RuntimeObject*)L_141, RuntimeArray_il2cpp_TypeInfo_var)), L_144, L_145, NULL);
|
|
int32_t L_146 = V_28;
|
|
V_28 = ((int32_t)il2cpp_codegen_add(L_146, 1));
|
|
}
|
|
|
|
IL_02fd:
|
|
{
|
|
int32_t L_147 = V_28;
|
|
int32_t L_148 = V_27;
|
|
V_29 = (bool)((((int32_t)L_147) < ((int32_t)L_148))? 1 : 0);
|
|
bool L_149 = V_29;
|
|
if (L_149)
|
|
{
|
|
goto IL_02de;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0311;
|
|
}
|
|
|
|
IL_030c:
|
|
{
|
|
RuntimeObject* L_150 = V_19;
|
|
V_2 = L_150;
|
|
}
|
|
|
|
IL_0311:
|
|
{
|
|
goto IL_047d;
|
|
}
|
|
|
|
IL_0317:
|
|
{
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_151 = ___1_reader;
|
|
NullCheck(L_151);
|
|
int32_t L_152;
|
|
L_152 = JsonReader_get_Token_m519B39A4B87C3A9A7B424AECAE7FDA64B946E975(L_151, NULL);
|
|
V_30 = (bool)((((int32_t)L_152) == ((int32_t)1))? 1 : 0);
|
|
bool L_153 = V_30;
|
|
if (!L_153)
|
|
{
|
|
goto IL_047d;
|
|
}
|
|
}
|
|
{
|
|
Type_t* L_154 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
JsonMapper_AddObjectMetadata_m9A5768B60C9F0965DA9CD72412DE5371AA9A756C(L_154, NULL);
|
|
RuntimeObject* L_155 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___object_metadata;
|
|
Type_t* L_156 = V_1;
|
|
NullCheck(L_155);
|
|
ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661 L_157;
|
|
L_157 = InterfaceFuncInvoker1< ObjectMetadata_t02B03E2889142EBF02504FC09D146A753E9A1661, Type_t* >::Invoke(0, IDictionary_2_tBDC061B9374E6628F4296689FB32A9C598E45C4B_il2cpp_TypeInfo_var, L_155, L_156);
|
|
V_31 = L_157;
|
|
Type_t* L_158 = V_1;
|
|
RuntimeObject* L_159;
|
|
L_159 = Activator_CreateInstance_mFF030428C64FDDFACC74DFAC97388A1C628BFBCF(L_158, NULL);
|
|
V_2 = L_159;
|
|
goto IL_0474;
|
|
}
|
|
|
|
IL_034a:
|
|
{
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_160 = ___1_reader;
|
|
NullCheck(L_160);
|
|
bool L_161;
|
|
L_161 = JsonReader_Read_mD8D28369934A79C6A0125279F425E48D1D35AE7B(L_160, NULL);
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_162 = ___1_reader;
|
|
NullCheck(L_162);
|
|
int32_t L_163;
|
|
L_163 = JsonReader_get_Token_m519B39A4B87C3A9A7B424AECAE7FDA64B946E975(L_162, NULL);
|
|
V_33 = (bool)((((int32_t)L_163) == ((int32_t)3))? 1 : 0);
|
|
bool L_164 = V_33;
|
|
if (!L_164)
|
|
{
|
|
goto IL_0367;
|
|
}
|
|
}
|
|
{
|
|
goto IL_047c;
|
|
}
|
|
|
|
IL_0367:
|
|
{
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_165 = ___1_reader;
|
|
NullCheck(L_165);
|
|
RuntimeObject* L_166;
|
|
L_166 = JsonReader_get_Value_mF219BCB43B2F020C1B67935AA63A40ECD1EE4C05(L_165, NULL);
|
|
V_32 = ((String_t*)CastclassSealed((RuntimeObject*)L_166, String_t_il2cpp_TypeInfo_var));
|
|
RuntimeObject* L_167;
|
|
L_167 = ObjectMetadata_get_Properties_m8E9F8EDA9F12FD110E25D5785F084C1A8B393805((&V_31), NULL);
|
|
String_t* L_168 = V_32;
|
|
NullCheck(L_167);
|
|
bool L_169;
|
|
L_169 = InterfaceFuncInvoker1< bool, String_t* >::Invoke(4, IDictionary_2_tC6EEF4DE19255D76EDF497CDE277E5578CB81EB2_il2cpp_TypeInfo_var, L_167, L_168);
|
|
V_34 = L_169;
|
|
bool L_170 = V_34;
|
|
if (!L_170)
|
|
{
|
|
goto IL_0418;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_171;
|
|
L_171 = ObjectMetadata_get_Properties_m8E9F8EDA9F12FD110E25D5785F084C1A8B393805((&V_31), NULL);
|
|
String_t* L_172 = V_32;
|
|
NullCheck(L_171);
|
|
PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D L_173;
|
|
L_173 = InterfaceFuncInvoker1< PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D, String_t* >::Invoke(0, IDictionary_2_tC6EEF4DE19255D76EDF497CDE277E5578CB81EB2_il2cpp_TypeInfo_var, L_171, L_172);
|
|
V_35 = L_173;
|
|
PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D L_174 = V_35;
|
|
bool L_175 = L_174.___IsField;
|
|
V_36 = L_175;
|
|
bool L_176 = V_36;
|
|
if (!L_176)
|
|
{
|
|
goto IL_03cd;
|
|
}
|
|
}
|
|
{
|
|
PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D L_177 = V_35;
|
|
MemberInfo_t* L_178 = L_177.___Info;
|
|
RuntimeObject* L_179 = V_2;
|
|
PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D L_180 = V_35;
|
|
Type_t* L_181 = L_180.___Type;
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_182 = ___1_reader;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_183;
|
|
L_183 = JsonMapper_ReadValue_m12EFFE983BBE0A9254AA072EFEFB7A6156F094E6(L_181, L_182, NULL);
|
|
NullCheck(((FieldInfo_t*)CastclassClass((RuntimeObject*)L_178, FieldInfo_t_il2cpp_TypeInfo_var)));
|
|
FieldInfo_SetValue_mD8C0DA3A1A0CFF073F971622BBDBAAB6688B4B6C(((FieldInfo_t*)CastclassClass((RuntimeObject*)L_178, FieldInfo_t_il2cpp_TypeInfo_var)), L_179, L_183, NULL);
|
|
goto IL_0415;
|
|
}
|
|
|
|
IL_03cd:
|
|
{
|
|
PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D L_184 = V_35;
|
|
MemberInfo_t* L_185 = L_184.___Info;
|
|
V_37 = ((PropertyInfo_t*)CastclassClass((RuntimeObject*)L_185, PropertyInfo_t_il2cpp_TypeInfo_var));
|
|
PropertyInfo_t* L_186 = V_37;
|
|
NullCheck(L_186);
|
|
bool L_187;
|
|
L_187 = VirtualFuncInvoker0< bool >::Invoke(35, L_186);
|
|
V_38 = L_187;
|
|
bool L_188 = V_38;
|
|
if (!L_188)
|
|
{
|
|
goto IL_0404;
|
|
}
|
|
}
|
|
{
|
|
PropertyInfo_t* L_189 = V_37;
|
|
RuntimeObject* L_190 = V_2;
|
|
PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D L_191 = V_35;
|
|
Type_t* L_192 = L_191.___Type;
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_193 = ___1_reader;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_194;
|
|
L_194 = JsonMapper_ReadValue_m12EFFE983BBE0A9254AA072EFEFB7A6156F094E6(L_192, L_193, NULL);
|
|
NullCheck(L_189);
|
|
VirtualActionInvoker3< RuntimeObject*, RuntimeObject*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* >::Invoke(50, L_189, L_190, L_194, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL);
|
|
goto IL_0414;
|
|
}
|
|
|
|
IL_0404:
|
|
{
|
|
PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D L_195 = V_35;
|
|
Type_t* L_196 = L_195.___Type;
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_197 = ___1_reader;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_198;
|
|
L_198 = JsonMapper_ReadValue_m12EFFE983BBE0A9254AA072EFEFB7A6156F094E6(L_196, L_197, NULL);
|
|
}
|
|
|
|
IL_0414:
|
|
{
|
|
}
|
|
|
|
IL_0415:
|
|
{
|
|
goto IL_0473;
|
|
}
|
|
|
|
IL_0418:
|
|
{
|
|
bool L_199;
|
|
L_199 = ObjectMetadata_get_IsDictionary_mC66AF9CA841EC0386F35FAD3DA899EB5C0DB082E((&V_31), NULL);
|
|
V_39 = (bool)((((int32_t)L_199) == ((int32_t)0))? 1 : 0);
|
|
bool L_200 = V_39;
|
|
if (!L_200)
|
|
{
|
|
goto IL_0457;
|
|
}
|
|
}
|
|
{
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_201 = ___1_reader;
|
|
NullCheck(L_201);
|
|
bool L_202;
|
|
L_202 = JsonReader_get_SkipNonMembers_mD965BE953D678EA7BE0DBC707DFFB8BB7ADA1531(L_201, NULL);
|
|
V_40 = (bool)((((int32_t)L_202) == ((int32_t)0))? 1 : 0);
|
|
bool L_203 = V_40;
|
|
if (!L_203)
|
|
{
|
|
goto IL_044d;
|
|
}
|
|
}
|
|
{
|
|
Type_t* L_204 = ___0_inst_type;
|
|
String_t* L_205 = V_32;
|
|
String_t* L_206;
|
|
L_206 = String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3898E7D2C1147692B865B70C530E4BB2264D9234)), L_204, L_205, NULL);
|
|
JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76* L_207 = (JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76_il2cpp_TypeInfo_var)));
|
|
JsonException__ctor_m400377A21C20F6CAEE97CE7958869D819BB94BB5(L_207, L_206, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_207, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonMapper_ReadValue_m12EFFE983BBE0A9254AA072EFEFB7A6156F094E6_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_044d:
|
|
{
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_208 = ___1_reader;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
JsonMapper_ReadSkip_m7F6CAE3D09563D1EB8937A3C7D4E89B3D7DA08A0(L_208, NULL);
|
|
goto IL_0474;
|
|
}
|
|
|
|
IL_0457:
|
|
{
|
|
RuntimeObject* L_209 = V_2;
|
|
String_t* L_210 = V_32;
|
|
Type_t* L_211;
|
|
L_211 = ObjectMetadata_get_ElementType_mEC34F3956588C3B5C7EB07A112A7797BF8935BEE((&V_31), NULL);
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_212 = ___1_reader;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_213;
|
|
L_213 = JsonMapper_ReadValue_m12EFFE983BBE0A9254AA072EFEFB7A6156F094E6(L_211, L_212, NULL);
|
|
NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_209, IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var)));
|
|
InterfaceActionInvoker2< RuntimeObject*, RuntimeObject* >::Invoke(5, IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_209, IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var)), L_210, L_213);
|
|
}
|
|
|
|
IL_0473:
|
|
{
|
|
}
|
|
|
|
IL_0474:
|
|
{
|
|
V_41 = (bool)1;
|
|
goto IL_034a;
|
|
}
|
|
|
|
IL_047c:
|
|
{
|
|
}
|
|
|
|
IL_047d:
|
|
{
|
|
RuntimeObject* L_214 = V_2;
|
|
V_4 = L_214;
|
|
goto IL_0482;
|
|
}
|
|
|
|
IL_0482:
|
|
{
|
|
RuntimeObject* L_215 = V_4;
|
|
return L_215;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonMapper_ReadValue_m1E79EF3FC740E018A6C14D7D4A5D9FBE12239856 (WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* ___0_factory, JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* ___1_reader, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IJsonWrapper_t447B39837883BA1281A17C3D6BA122AD22837DD9_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
bool V_1 = false;
|
|
RuntimeObject* V_2 = NULL;
|
|
bool V_3 = false;
|
|
bool V_4 = false;
|
|
bool V_5 = false;
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
RuntimeObject* V_9 = NULL;
|
|
bool V_10 = false;
|
|
bool V_11 = false;
|
|
bool V_12 = false;
|
|
String_t* V_13 = NULL;
|
|
bool V_14 = false;
|
|
bool V_15 = false;
|
|
int32_t G_B3_0 = 0;
|
|
int32_t G_B20_0 = 0;
|
|
{
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_0 = ___1_reader;
|
|
NullCheck(L_0);
|
|
bool L_1;
|
|
L_1 = JsonReader_Read_mD8D28369934A79C6A0125279F425E48D1D35AE7B(L_0, NULL);
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_2 = ___1_reader;
|
|
NullCheck(L_2);
|
|
int32_t L_3;
|
|
L_3 = JsonReader_get_Token_m519B39A4B87C3A9A7B424AECAE7FDA64B946E975(L_2, NULL);
|
|
if ((((int32_t)L_3) == ((int32_t)5)))
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_4 = ___1_reader;
|
|
NullCheck(L_4);
|
|
int32_t L_5;
|
|
L_5 = JsonReader_get_Token_m519B39A4B87C3A9A7B424AECAE7FDA64B946E975(L_4, NULL);
|
|
G_B3_0 = ((((int32_t)L_5) == ((int32_t)((int32_t)11)))? 1 : 0);
|
|
goto IL_001e;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
G_B3_0 = 1;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
V_1 = (bool)G_B3_0;
|
|
bool L_6 = V_1;
|
|
if (!L_6)
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
V_2 = (RuntimeObject*)NULL;
|
|
goto IL_01a9;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* L_7 = ___0_factory;
|
|
NullCheck(L_7);
|
|
RuntimeObject* L_8;
|
|
L_8 = WrapperFactory_Invoke_mDEC930B07F8B4652EBECE1E6386E92701A93C7D5_inline(L_7, NULL);
|
|
V_0 = L_8;
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_9 = ___1_reader;
|
|
NullCheck(L_9);
|
|
int32_t L_10;
|
|
L_10 = JsonReader_get_Token_m519B39A4B87C3A9A7B424AECAE7FDA64B946E975(L_9, NULL);
|
|
V_3 = (bool)((((int32_t)L_10) == ((int32_t)((int32_t)9)))? 1 : 0);
|
|
bool L_11 = V_3;
|
|
if (!L_11)
|
|
{
|
|
goto IL_0059;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_12 = V_0;
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_13 = ___1_reader;
|
|
NullCheck(L_13);
|
|
RuntimeObject* L_14;
|
|
L_14 = JsonReader_get_Value_mF219BCB43B2F020C1B67935AA63A40ECD1EE4C05(L_13, NULL);
|
|
NullCheck(L_12);
|
|
InterfaceActionInvoker1< String_t* >::Invoke(18, IJsonWrapper_t447B39837883BA1281A17C3D6BA122AD22837DD9_il2cpp_TypeInfo_var, L_12, ((String_t*)CastclassSealed((RuntimeObject*)L_14, String_t_il2cpp_TypeInfo_var)));
|
|
RuntimeObject* L_15 = V_0;
|
|
V_2 = L_15;
|
|
goto IL_01a9;
|
|
}
|
|
|
|
IL_0059:
|
|
{
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_16 = ___1_reader;
|
|
NullCheck(L_16);
|
|
int32_t L_17;
|
|
L_17 = JsonReader_get_Token_m519B39A4B87C3A9A7B424AECAE7FDA64B946E975(L_16, NULL);
|
|
V_4 = (bool)((((int32_t)L_17) == ((int32_t)8))? 1 : 0);
|
|
bool L_18 = V_4;
|
|
if (!L_18)
|
|
{
|
|
goto IL_0082;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_19 = V_0;
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_20 = ___1_reader;
|
|
NullCheck(L_20);
|
|
RuntimeObject* L_21;
|
|
L_21 = JsonReader_get_Value_mF219BCB43B2F020C1B67935AA63A40ECD1EE4C05(L_20, NULL);
|
|
NullCheck(L_19);
|
|
InterfaceActionInvoker1< double >::Invoke(14, IJsonWrapper_t447B39837883BA1281A17C3D6BA122AD22837DD9_il2cpp_TypeInfo_var, L_19, ((*(double*)((double*)(double*)UnBox(L_21, Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var)))));
|
|
RuntimeObject* L_22 = V_0;
|
|
V_2 = L_22;
|
|
goto IL_01a9;
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_23 = ___1_reader;
|
|
NullCheck(L_23);
|
|
int32_t L_24;
|
|
L_24 = JsonReader_get_Token_m519B39A4B87C3A9A7B424AECAE7FDA64B946E975(L_23, NULL);
|
|
V_5 = (bool)((((int32_t)L_24) == ((int32_t)6))? 1 : 0);
|
|
bool L_25 = V_5;
|
|
if (!L_25)
|
|
{
|
|
goto IL_00ab;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_26 = V_0;
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_27 = ___1_reader;
|
|
NullCheck(L_27);
|
|
RuntimeObject* L_28;
|
|
L_28 = JsonReader_get_Value_mF219BCB43B2F020C1B67935AA63A40ECD1EE4C05(L_27, NULL);
|
|
NullCheck(L_26);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(15, IJsonWrapper_t447B39837883BA1281A17C3D6BA122AD22837DD9_il2cpp_TypeInfo_var, L_26, ((*(int32_t*)((int32_t*)(int32_t*)UnBox(L_28, Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)))));
|
|
RuntimeObject* L_29 = V_0;
|
|
V_2 = L_29;
|
|
goto IL_01a9;
|
|
}
|
|
|
|
IL_00ab:
|
|
{
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_30 = ___1_reader;
|
|
NullCheck(L_30);
|
|
int32_t L_31;
|
|
L_31 = JsonReader_get_Token_m519B39A4B87C3A9A7B424AECAE7FDA64B946E975(L_30, NULL);
|
|
V_6 = (bool)((((int32_t)L_31) == ((int32_t)7))? 1 : 0);
|
|
bool L_32 = V_6;
|
|
if (!L_32)
|
|
{
|
|
goto IL_00d4;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_33 = V_0;
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_34 = ___1_reader;
|
|
NullCheck(L_34);
|
|
RuntimeObject* L_35;
|
|
L_35 = JsonReader_get_Value_mF219BCB43B2F020C1B67935AA63A40ECD1EE4C05(L_34, NULL);
|
|
NullCheck(L_33);
|
|
InterfaceActionInvoker1< int64_t >::Invoke(17, IJsonWrapper_t447B39837883BA1281A17C3D6BA122AD22837DD9_il2cpp_TypeInfo_var, L_33, ((*(int64_t*)((int64_t*)(int64_t*)UnBox(L_35, Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var)))));
|
|
RuntimeObject* L_36 = V_0;
|
|
V_2 = L_36;
|
|
goto IL_01a9;
|
|
}
|
|
|
|
IL_00d4:
|
|
{
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_37 = ___1_reader;
|
|
NullCheck(L_37);
|
|
int32_t L_38;
|
|
L_38 = JsonReader_get_Token_m519B39A4B87C3A9A7B424AECAE7FDA64B946E975(L_37, NULL);
|
|
V_7 = (bool)((((int32_t)L_38) == ((int32_t)((int32_t)10)))? 1 : 0);
|
|
bool L_39 = V_7;
|
|
if (!L_39)
|
|
{
|
|
goto IL_00fe;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_40 = V_0;
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_41 = ___1_reader;
|
|
NullCheck(L_41);
|
|
RuntimeObject* L_42;
|
|
L_42 = JsonReader_get_Value_mF219BCB43B2F020C1B67935AA63A40ECD1EE4C05(L_41, NULL);
|
|
NullCheck(L_40);
|
|
InterfaceActionInvoker1< bool >::Invoke(13, IJsonWrapper_t447B39837883BA1281A17C3D6BA122AD22837DD9_il2cpp_TypeInfo_var, L_40, ((*(bool*)((bool*)(bool*)UnBox(L_42, Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var)))));
|
|
RuntimeObject* L_43 = V_0;
|
|
V_2 = L_43;
|
|
goto IL_01a9;
|
|
}
|
|
|
|
IL_00fe:
|
|
{
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_44 = ___1_reader;
|
|
NullCheck(L_44);
|
|
int32_t L_45;
|
|
L_45 = JsonReader_get_Token_m519B39A4B87C3A9A7B424AECAE7FDA64B946E975(L_44, NULL);
|
|
V_8 = (bool)((((int32_t)L_45) == ((int32_t)4))? 1 : 0);
|
|
bool L_46 = V_8;
|
|
if (!L_46)
|
|
{
|
|
goto IL_014d;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_47 = V_0;
|
|
NullCheck(L_47);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(16, IJsonWrapper_t447B39837883BA1281A17C3D6BA122AD22837DD9_il2cpp_TypeInfo_var, L_47, 2);
|
|
goto IL_0145;
|
|
}
|
|
|
|
IL_0118:
|
|
{
|
|
WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* L_48 = ___0_factory;
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_49 = ___1_reader;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_50;
|
|
L_50 = JsonMapper_ReadValue_m1E79EF3FC740E018A6C14D7D4A5D9FBE12239856(L_48, L_49, NULL);
|
|
V_9 = L_50;
|
|
RuntimeObject* L_51 = V_9;
|
|
if (L_51)
|
|
{
|
|
goto IL_0131;
|
|
}
|
|
}
|
|
{
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_52 = ___1_reader;
|
|
NullCheck(L_52);
|
|
int32_t L_53;
|
|
L_53 = JsonReader_get_Token_m519B39A4B87C3A9A7B424AECAE7FDA64B946E975(L_52, NULL);
|
|
G_B20_0 = ((((int32_t)L_53) == ((int32_t)5))? 1 : 0);
|
|
goto IL_0132;
|
|
}
|
|
|
|
IL_0131:
|
|
{
|
|
G_B20_0 = 0;
|
|
}
|
|
|
|
IL_0132:
|
|
{
|
|
V_10 = (bool)G_B20_0;
|
|
bool L_54 = V_10;
|
|
if (!L_54)
|
|
{
|
|
goto IL_013b;
|
|
}
|
|
}
|
|
{
|
|
goto IL_014a;
|
|
}
|
|
|
|
IL_013b:
|
|
{
|
|
RuntimeObject* L_55 = V_0;
|
|
RuntimeObject* L_56 = V_9;
|
|
NullCheck(L_55);
|
|
int32_t L_57;
|
|
L_57 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(2, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_55, L_56);
|
|
}
|
|
|
|
IL_0145:
|
|
{
|
|
V_11 = (bool)1;
|
|
goto IL_0118;
|
|
}
|
|
|
|
IL_014a:
|
|
{
|
|
goto IL_01a5;
|
|
}
|
|
|
|
IL_014d:
|
|
{
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_58 = ___1_reader;
|
|
NullCheck(L_58);
|
|
int32_t L_59;
|
|
L_59 = JsonReader_get_Token_m519B39A4B87C3A9A7B424AECAE7FDA64B946E975(L_58, NULL);
|
|
V_12 = (bool)((((int32_t)L_59) == ((int32_t)1))? 1 : 0);
|
|
bool L_60 = V_12;
|
|
if (!L_60)
|
|
{
|
|
goto IL_01a5;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_61 = V_0;
|
|
NullCheck(L_61);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(16, IJsonWrapper_t447B39837883BA1281A17C3D6BA122AD22837DD9_il2cpp_TypeInfo_var, L_61, 1);
|
|
goto IL_019f;
|
|
}
|
|
|
|
IL_0167:
|
|
{
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_62 = ___1_reader;
|
|
NullCheck(L_62);
|
|
bool L_63;
|
|
L_63 = JsonReader_Read_mD8D28369934A79C6A0125279F425E48D1D35AE7B(L_62, NULL);
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_64 = ___1_reader;
|
|
NullCheck(L_64);
|
|
int32_t L_65;
|
|
L_65 = JsonReader_get_Token_m519B39A4B87C3A9A7B424AECAE7FDA64B946E975(L_64, NULL);
|
|
V_14 = (bool)((((int32_t)L_65) == ((int32_t)3))? 1 : 0);
|
|
bool L_66 = V_14;
|
|
if (!L_66)
|
|
{
|
|
goto IL_0181;
|
|
}
|
|
}
|
|
{
|
|
goto IL_01a4;
|
|
}
|
|
|
|
IL_0181:
|
|
{
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_67 = ___1_reader;
|
|
NullCheck(L_67);
|
|
RuntimeObject* L_68;
|
|
L_68 = JsonReader_get_Value_mF219BCB43B2F020C1B67935AA63A40ECD1EE4C05(L_67, NULL);
|
|
V_13 = ((String_t*)CastclassSealed((RuntimeObject*)L_68, String_t_il2cpp_TypeInfo_var));
|
|
RuntimeObject* L_69 = V_0;
|
|
String_t* L_70 = V_13;
|
|
WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* L_71 = ___0_factory;
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_72 = ___1_reader;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_73;
|
|
L_73 = JsonMapper_ReadValue_m1E79EF3FC740E018A6C14D7D4A5D9FBE12239856(L_71, L_72, NULL);
|
|
NullCheck(L_69);
|
|
InterfaceActionInvoker2< RuntimeObject*, RuntimeObject* >::Invoke(1, IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var, L_69, L_70, L_73);
|
|
}
|
|
|
|
IL_019f:
|
|
{
|
|
V_15 = (bool)1;
|
|
goto IL_0167;
|
|
}
|
|
|
|
IL_01a4:
|
|
{
|
|
}
|
|
|
|
IL_01a5:
|
|
{
|
|
RuntimeObject* L_74 = V_0;
|
|
V_2 = L_74;
|
|
goto IL_01a9;
|
|
}
|
|
|
|
IL_01a9:
|
|
{
|
|
RuntimeObject* L_75 = V_2;
|
|
return L_75;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper_ReadSkip_m7F6CAE3D09563D1EB8937A3C7D4E89B3D7DA08A0 (JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* ___0_reader, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CReadSkipU3Eb__23_0_m7074B21692E9EFD286668701F7FD89898F967FDB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* G_B2_0 = NULL;
|
|
WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* G_B1_0 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* L_0 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__23_0;
|
|
WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* L_1 = L_0;
|
|
if (L_1)
|
|
{
|
|
G_B2_0 = L_1;
|
|
goto IL_0020;
|
|
}
|
|
G_B1_0 = L_1;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* L_2 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* L_3 = (WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD*)il2cpp_codegen_object_new(WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD_il2cpp_TypeInfo_var);
|
|
WrapperFactory__ctor_mDCB80755422A0F810CF4702BBE931A9B4AE5C809(L_3, L_2, (intptr_t)((void*)U3CU3Ec_U3CReadSkipU3Eb__23_0_m7074B21692E9EFD286668701F7FD89898F967FDB_RuntimeMethod_var), NULL);
|
|
WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* L_4 = L_3;
|
|
((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__23_0 = L_4;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__23_0), (void*)L_4);
|
|
G_B2_0 = L_4;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_5 = ___0_reader;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_6;
|
|
L_6 = JsonMapper_ToWrapper_m28AEBBDAD4A1AC70073753BC264C59020323B8A1(G_B2_0, L_5, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper_RegisterBaseExporters_m1866D55E6CA556A86EB3F4E4C484706A596A34D9 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_t74600F66BA04DC423A37DB24919A3C9D56D75B43_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterBaseExportersU3Eb__24_0_mEA8451E773AD80B42C0AD938BB1F036F74AF47A8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterBaseExportersU3Eb__24_1_mF07BD87EA371F70F1AC4F5B3983A1E56C946E2E0_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterBaseExportersU3Eb__24_2_m3570961EF7CB535D815B01B2E75970154A44C1CB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterBaseExportersU3Eb__24_3_m437A270B128418DD0FDB4F1C1102CFC0C1156CA9_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterBaseExportersU3Eb__24_4_mE52A127C58303F167191B6ACE7CD95D390D03FAA_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterBaseExportersU3Eb__24_5_m5C055FF98C94616CED18E073093097C052D8C911_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterBaseExportersU3Eb__24_6_m12211EE75901E156D59A696B882BAB20904FA17E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterBaseExportersU3Eb__24_7_m19293FEE634D2346F9B7FA26BAC06D26A72F4CC2_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterBaseExportersU3Eb__24_8_mEAB2AEC54786FAA72CB2BE0794628E1AB9CDC2BB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterBaseExportersU3Eb__24_9_m68CDAD6EC8058ECD04A734B47D08ACBA41AAB1AA_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_0_0_0_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* G_B2_0 = NULL;
|
|
Type_t* G_B2_1 = NULL;
|
|
RuntimeObject* G_B2_2 = NULL;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* G_B1_0 = NULL;
|
|
Type_t* G_B1_1 = NULL;
|
|
RuntimeObject* G_B1_2 = NULL;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* G_B4_0 = NULL;
|
|
Type_t* G_B4_1 = NULL;
|
|
RuntimeObject* G_B4_2 = NULL;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* G_B3_0 = NULL;
|
|
Type_t* G_B3_1 = NULL;
|
|
RuntimeObject* G_B3_2 = NULL;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* G_B6_0 = NULL;
|
|
Type_t* G_B6_1 = NULL;
|
|
RuntimeObject* G_B6_2 = NULL;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* G_B5_0 = NULL;
|
|
Type_t* G_B5_1 = NULL;
|
|
RuntimeObject* G_B5_2 = NULL;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* G_B8_0 = NULL;
|
|
Type_t* G_B8_1 = NULL;
|
|
RuntimeObject* G_B8_2 = NULL;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* G_B7_0 = NULL;
|
|
Type_t* G_B7_1 = NULL;
|
|
RuntimeObject* G_B7_2 = NULL;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* G_B10_0 = NULL;
|
|
Type_t* G_B10_1 = NULL;
|
|
RuntimeObject* G_B10_2 = NULL;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* G_B9_0 = NULL;
|
|
Type_t* G_B9_1 = NULL;
|
|
RuntimeObject* G_B9_2 = NULL;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* G_B12_0 = NULL;
|
|
Type_t* G_B12_1 = NULL;
|
|
RuntimeObject* G_B12_2 = NULL;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* G_B11_0 = NULL;
|
|
Type_t* G_B11_1 = NULL;
|
|
RuntimeObject* G_B11_2 = NULL;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* G_B14_0 = NULL;
|
|
Type_t* G_B14_1 = NULL;
|
|
RuntimeObject* G_B14_2 = NULL;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* G_B13_0 = NULL;
|
|
Type_t* G_B13_1 = NULL;
|
|
RuntimeObject* G_B13_2 = NULL;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* G_B16_0 = NULL;
|
|
Type_t* G_B16_1 = NULL;
|
|
RuntimeObject* G_B16_2 = NULL;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* G_B15_0 = NULL;
|
|
Type_t* G_B15_1 = NULL;
|
|
RuntimeObject* G_B15_2 = NULL;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* G_B18_0 = NULL;
|
|
Type_t* G_B18_1 = NULL;
|
|
RuntimeObject* G_B18_2 = NULL;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* G_B17_0 = NULL;
|
|
Type_t* G_B17_1 = NULL;
|
|
RuntimeObject* G_B17_2 = NULL;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* G_B20_0 = NULL;
|
|
Type_t* G_B20_1 = NULL;
|
|
RuntimeObject* G_B20_2 = NULL;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* G_B19_0 = NULL;
|
|
Type_t* G_B19_1 = NULL;
|
|
RuntimeObject* G_B19_2 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_0 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___base_exporters_table;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_1 = { reinterpret_cast<intptr_t> (Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_2;
|
|
L_2 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_1, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* L_3 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__24_0;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* L_4 = L_3;
|
|
if (L_4)
|
|
{
|
|
G_B2_0 = L_4;
|
|
G_B2_1 = L_2;
|
|
G_B2_2 = L_0;
|
|
goto IL_002f;
|
|
}
|
|
G_B1_0 = L_4;
|
|
G_B1_1 = L_2;
|
|
G_B1_2 = L_0;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* L_5 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* L_6 = (ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A*)il2cpp_codegen_object_new(ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A_il2cpp_TypeInfo_var);
|
|
ExporterFunc__ctor_mE42C7A27446C000BC923E32171289DA0E9CDC5D2(L_6, L_5, (intptr_t)((void*)U3CU3Ec_U3CRegisterBaseExportersU3Eb__24_0_mEA8451E773AD80B42C0AD938BB1F036F74AF47A8_RuntimeMethod_var), NULL);
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* L_7 = L_6;
|
|
((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__24_0 = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__24_0), (void*)L_7);
|
|
G_B2_0 = L_7;
|
|
G_B2_1 = G_B1_1;
|
|
G_B2_2 = G_B1_2;
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
NullCheck(G_B2_2);
|
|
InterfaceActionInvoker2< Type_t*, ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* >::Invoke(1, IDictionary_2_t74600F66BA04DC423A37DB24919A3C9D56D75B43_il2cpp_TypeInfo_var, G_B2_2, G_B2_1, G_B2_0);
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_8 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___base_exporters_table;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_9 = { reinterpret_cast<intptr_t> (Char_t521A6F19B456D956AF452D926C32709DC03D6B17_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_10;
|
|
L_10 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_9, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* L_11 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__24_1;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* L_12 = L_11;
|
|
if (L_12)
|
|
{
|
|
G_B4_0 = L_12;
|
|
G_B4_1 = L_10;
|
|
G_B4_2 = L_8;
|
|
goto IL_0063;
|
|
}
|
|
G_B3_0 = L_12;
|
|
G_B3_1 = L_10;
|
|
G_B3_2 = L_8;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* L_13 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* L_14 = (ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A*)il2cpp_codegen_object_new(ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A_il2cpp_TypeInfo_var);
|
|
ExporterFunc__ctor_mE42C7A27446C000BC923E32171289DA0E9CDC5D2(L_14, L_13, (intptr_t)((void*)U3CU3Ec_U3CRegisterBaseExportersU3Eb__24_1_mF07BD87EA371F70F1AC4F5B3983A1E56C946E2E0_RuntimeMethod_var), NULL);
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* L_15 = L_14;
|
|
((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__24_1 = L_15;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__24_1), (void*)L_15);
|
|
G_B4_0 = L_15;
|
|
G_B4_1 = G_B3_1;
|
|
G_B4_2 = G_B3_2;
|
|
}
|
|
|
|
IL_0063:
|
|
{
|
|
NullCheck(G_B4_2);
|
|
InterfaceActionInvoker2< Type_t*, ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* >::Invoke(1, IDictionary_2_t74600F66BA04DC423A37DB24919A3C9D56D75B43_il2cpp_TypeInfo_var, G_B4_2, G_B4_1, G_B4_0);
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_16 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___base_exporters_table;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_17 = { reinterpret_cast<intptr_t> (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_18;
|
|
L_18 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_17, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* L_19 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__24_2;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* L_20 = L_19;
|
|
if (L_20)
|
|
{
|
|
G_B6_0 = L_20;
|
|
G_B6_1 = L_18;
|
|
G_B6_2 = L_16;
|
|
goto IL_0097;
|
|
}
|
|
G_B5_0 = L_20;
|
|
G_B5_1 = L_18;
|
|
G_B5_2 = L_16;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* L_21 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* L_22 = (ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A*)il2cpp_codegen_object_new(ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A_il2cpp_TypeInfo_var);
|
|
ExporterFunc__ctor_mE42C7A27446C000BC923E32171289DA0E9CDC5D2(L_22, L_21, (intptr_t)((void*)U3CU3Ec_U3CRegisterBaseExportersU3Eb__24_2_m3570961EF7CB535D815B01B2E75970154A44C1CB_RuntimeMethod_var), NULL);
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* L_23 = L_22;
|
|
((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__24_2 = L_23;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__24_2), (void*)L_23);
|
|
G_B6_0 = L_23;
|
|
G_B6_1 = G_B5_1;
|
|
G_B6_2 = G_B5_2;
|
|
}
|
|
|
|
IL_0097:
|
|
{
|
|
NullCheck(G_B6_2);
|
|
InterfaceActionInvoker2< Type_t*, ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* >::Invoke(1, IDictionary_2_t74600F66BA04DC423A37DB24919A3C9D56D75B43_il2cpp_TypeInfo_var, G_B6_2, G_B6_1, G_B6_0);
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_24 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___base_exporters_table;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_25 = { reinterpret_cast<intptr_t> (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_26;
|
|
L_26 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_25, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* L_27 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__24_3;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* L_28 = L_27;
|
|
if (L_28)
|
|
{
|
|
G_B8_0 = L_28;
|
|
G_B8_1 = L_26;
|
|
G_B8_2 = L_24;
|
|
goto IL_00cb;
|
|
}
|
|
G_B7_0 = L_28;
|
|
G_B7_1 = L_26;
|
|
G_B7_2 = L_24;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* L_29 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* L_30 = (ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A*)il2cpp_codegen_object_new(ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A_il2cpp_TypeInfo_var);
|
|
ExporterFunc__ctor_mE42C7A27446C000BC923E32171289DA0E9CDC5D2(L_30, L_29, (intptr_t)((void*)U3CU3Ec_U3CRegisterBaseExportersU3Eb__24_3_m437A270B128418DD0FDB4F1C1102CFC0C1156CA9_RuntimeMethod_var), NULL);
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* L_31 = L_30;
|
|
((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__24_3 = L_31;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__24_3), (void*)L_31);
|
|
G_B8_0 = L_31;
|
|
G_B8_1 = G_B7_1;
|
|
G_B8_2 = G_B7_2;
|
|
}
|
|
|
|
IL_00cb:
|
|
{
|
|
NullCheck(G_B8_2);
|
|
InterfaceActionInvoker2< Type_t*, ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* >::Invoke(1, IDictionary_2_t74600F66BA04DC423A37DB24919A3C9D56D75B43_il2cpp_TypeInfo_var, G_B8_2, G_B8_1, G_B8_0);
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_32 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___base_exporters_table;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_33 = { reinterpret_cast<intptr_t> (SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_34;
|
|
L_34 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_33, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* L_35 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__24_4;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* L_36 = L_35;
|
|
if (L_36)
|
|
{
|
|
G_B10_0 = L_36;
|
|
G_B10_1 = L_34;
|
|
G_B10_2 = L_32;
|
|
goto IL_00ff;
|
|
}
|
|
G_B9_0 = L_36;
|
|
G_B9_1 = L_34;
|
|
G_B9_2 = L_32;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* L_37 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* L_38 = (ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A*)il2cpp_codegen_object_new(ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A_il2cpp_TypeInfo_var);
|
|
ExporterFunc__ctor_mE42C7A27446C000BC923E32171289DA0E9CDC5D2(L_38, L_37, (intptr_t)((void*)U3CU3Ec_U3CRegisterBaseExportersU3Eb__24_4_mE52A127C58303F167191B6ACE7CD95D390D03FAA_RuntimeMethod_var), NULL);
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* L_39 = L_38;
|
|
((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__24_4 = L_39;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__24_4), (void*)L_39);
|
|
G_B10_0 = L_39;
|
|
G_B10_1 = G_B9_1;
|
|
G_B10_2 = G_B9_2;
|
|
}
|
|
|
|
IL_00ff:
|
|
{
|
|
NullCheck(G_B10_2);
|
|
InterfaceActionInvoker2< Type_t*, ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* >::Invoke(1, IDictionary_2_t74600F66BA04DC423A37DB24919A3C9D56D75B43_il2cpp_TypeInfo_var, G_B10_2, G_B10_1, G_B10_0);
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_40 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___base_exporters_table;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_41 = { reinterpret_cast<intptr_t> (Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_42;
|
|
L_42 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_41, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* L_43 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__24_5;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* L_44 = L_43;
|
|
if (L_44)
|
|
{
|
|
G_B12_0 = L_44;
|
|
G_B12_1 = L_42;
|
|
G_B12_2 = L_40;
|
|
goto IL_0133;
|
|
}
|
|
G_B11_0 = L_44;
|
|
G_B11_1 = L_42;
|
|
G_B11_2 = L_40;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* L_45 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* L_46 = (ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A*)il2cpp_codegen_object_new(ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A_il2cpp_TypeInfo_var);
|
|
ExporterFunc__ctor_mE42C7A27446C000BC923E32171289DA0E9CDC5D2(L_46, L_45, (intptr_t)((void*)U3CU3Ec_U3CRegisterBaseExportersU3Eb__24_5_m5C055FF98C94616CED18E073093097C052D8C911_RuntimeMethod_var), NULL);
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* L_47 = L_46;
|
|
((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__24_5 = L_47;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__24_5), (void*)L_47);
|
|
G_B12_0 = L_47;
|
|
G_B12_1 = G_B11_1;
|
|
G_B12_2 = G_B11_2;
|
|
}
|
|
|
|
IL_0133:
|
|
{
|
|
NullCheck(G_B12_2);
|
|
InterfaceActionInvoker2< Type_t*, ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* >::Invoke(1, IDictionary_2_t74600F66BA04DC423A37DB24919A3C9D56D75B43_il2cpp_TypeInfo_var, G_B12_2, G_B12_1, G_B12_0);
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_48 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___base_exporters_table;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_49 = { reinterpret_cast<intptr_t> (UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_50;
|
|
L_50 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_49, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* L_51 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__24_6;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* L_52 = L_51;
|
|
if (L_52)
|
|
{
|
|
G_B14_0 = L_52;
|
|
G_B14_1 = L_50;
|
|
G_B14_2 = L_48;
|
|
goto IL_0167;
|
|
}
|
|
G_B13_0 = L_52;
|
|
G_B13_1 = L_50;
|
|
G_B13_2 = L_48;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* L_53 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* L_54 = (ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A*)il2cpp_codegen_object_new(ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A_il2cpp_TypeInfo_var);
|
|
ExporterFunc__ctor_mE42C7A27446C000BC923E32171289DA0E9CDC5D2(L_54, L_53, (intptr_t)((void*)U3CU3Ec_U3CRegisterBaseExportersU3Eb__24_6_m12211EE75901E156D59A696B882BAB20904FA17E_RuntimeMethod_var), NULL);
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* L_55 = L_54;
|
|
((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__24_6 = L_55;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__24_6), (void*)L_55);
|
|
G_B14_0 = L_55;
|
|
G_B14_1 = G_B13_1;
|
|
G_B14_2 = G_B13_2;
|
|
}
|
|
|
|
IL_0167:
|
|
{
|
|
NullCheck(G_B14_2);
|
|
InterfaceActionInvoker2< Type_t*, ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* >::Invoke(1, IDictionary_2_t74600F66BA04DC423A37DB24919A3C9D56D75B43_il2cpp_TypeInfo_var, G_B14_2, G_B14_1, G_B14_0);
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_56 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___base_exporters_table;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_57 = { reinterpret_cast<intptr_t> (UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_58;
|
|
L_58 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_57, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* L_59 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__24_7;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* L_60 = L_59;
|
|
if (L_60)
|
|
{
|
|
G_B16_0 = L_60;
|
|
G_B16_1 = L_58;
|
|
G_B16_2 = L_56;
|
|
goto IL_019b;
|
|
}
|
|
G_B15_0 = L_60;
|
|
G_B15_1 = L_58;
|
|
G_B15_2 = L_56;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* L_61 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* L_62 = (ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A*)il2cpp_codegen_object_new(ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A_il2cpp_TypeInfo_var);
|
|
ExporterFunc__ctor_mE42C7A27446C000BC923E32171289DA0E9CDC5D2(L_62, L_61, (intptr_t)((void*)U3CU3Ec_U3CRegisterBaseExportersU3Eb__24_7_m19293FEE634D2346F9B7FA26BAC06D26A72F4CC2_RuntimeMethod_var), NULL);
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* L_63 = L_62;
|
|
((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__24_7 = L_63;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__24_7), (void*)L_63);
|
|
G_B16_0 = L_63;
|
|
G_B16_1 = G_B15_1;
|
|
G_B16_2 = G_B15_2;
|
|
}
|
|
|
|
IL_019b:
|
|
{
|
|
NullCheck(G_B16_2);
|
|
InterfaceActionInvoker2< Type_t*, ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* >::Invoke(1, IDictionary_2_t74600F66BA04DC423A37DB24919A3C9D56D75B43_il2cpp_TypeInfo_var, G_B16_2, G_B16_1, G_B16_0);
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_64 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___base_exporters_table;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_65 = { reinterpret_cast<intptr_t> (UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_66;
|
|
L_66 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_65, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* L_67 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__24_8;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* L_68 = L_67;
|
|
if (L_68)
|
|
{
|
|
G_B18_0 = L_68;
|
|
G_B18_1 = L_66;
|
|
G_B18_2 = L_64;
|
|
goto IL_01cf;
|
|
}
|
|
G_B17_0 = L_68;
|
|
G_B17_1 = L_66;
|
|
G_B17_2 = L_64;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* L_69 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* L_70 = (ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A*)il2cpp_codegen_object_new(ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A_il2cpp_TypeInfo_var);
|
|
ExporterFunc__ctor_mE42C7A27446C000BC923E32171289DA0E9CDC5D2(L_70, L_69, (intptr_t)((void*)U3CU3Ec_U3CRegisterBaseExportersU3Eb__24_8_mEAB2AEC54786FAA72CB2BE0794628E1AB9CDC2BB_RuntimeMethod_var), NULL);
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* L_71 = L_70;
|
|
((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__24_8 = L_71;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__24_8), (void*)L_71);
|
|
G_B18_0 = L_71;
|
|
G_B18_1 = G_B17_1;
|
|
G_B18_2 = G_B17_2;
|
|
}
|
|
|
|
IL_01cf:
|
|
{
|
|
NullCheck(G_B18_2);
|
|
InterfaceActionInvoker2< Type_t*, ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* >::Invoke(1, IDictionary_2_t74600F66BA04DC423A37DB24919A3C9D56D75B43_il2cpp_TypeInfo_var, G_B18_2, G_B18_1, G_B18_0);
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_72 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___base_exporters_table;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_73 = { reinterpret_cast<intptr_t> (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_74;
|
|
L_74 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_73, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* L_75 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__24_9;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* L_76 = L_75;
|
|
if (L_76)
|
|
{
|
|
G_B20_0 = L_76;
|
|
G_B20_1 = L_74;
|
|
G_B20_2 = L_72;
|
|
goto IL_0203;
|
|
}
|
|
G_B19_0 = L_76;
|
|
G_B19_1 = L_74;
|
|
G_B19_2 = L_72;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* L_77 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* L_78 = (ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A*)il2cpp_codegen_object_new(ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A_il2cpp_TypeInfo_var);
|
|
ExporterFunc__ctor_mE42C7A27446C000BC923E32171289DA0E9CDC5D2(L_78, L_77, (intptr_t)((void*)U3CU3Ec_U3CRegisterBaseExportersU3Eb__24_9_m68CDAD6EC8058ECD04A734B47D08ACBA41AAB1AA_RuntimeMethod_var), NULL);
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* L_79 = L_78;
|
|
((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__24_9 = L_79;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__24_9), (void*)L_79);
|
|
G_B20_0 = L_79;
|
|
G_B20_1 = G_B19_1;
|
|
G_B20_2 = G_B19_2;
|
|
}
|
|
|
|
IL_0203:
|
|
{
|
|
NullCheck(G_B20_2);
|
|
InterfaceActionInvoker2< Type_t*, ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* >::Invoke(1, IDictionary_2_t74600F66BA04DC423A37DB24919A3C9D56D75B43_il2cpp_TypeInfo_var, G_B20_2, G_B20_1, G_B20_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper_RegisterBaseImporters_m108AF061EDD0D019D96B7276A59E909010EF6F79 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_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);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_0_mCE9EB639AA315BECDAC2A853C944635A87B6D925_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_10_m482CC7BA26F2FEDE6CDB0114B36F35EEDA0EC76A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_11_mDBEA7FF7AE702AE8231AA53A3F58EF06DFD588D2_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_12_m1EF404DE0B87454CA206C71B70A27C71959A85D1_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_13_m91E6999B2F0AC41B8549CA196A8AFEFF85D7B773_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_14_m5E0BAE710E3B9EB9FB08FFAA1DC512C9FA85974C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_1_m8869CABB6968F24C1EC2871532CE0274D284A39F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_2_mDB0291CF44C8E288F1D3E10A3D4F7E7C54C4B96D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_3_mBA0635D09ABC881387E386E60476208A31F3D4DD_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_4_mDCC251A8D7D91FFF36CB6AC596F2F651EF0D9565_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_5_mB3E27EBF9144F8166A52CE50CB35AEEA522E7B53_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_6_m055895C218F8E2E0449E3CA63B630AFEB4383467_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_7_m5F115FCD5246351C6757DB539D611CA16138AE11_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_8_m8ACCC6E2C8E30BB288C157C28225A2A5F7712A23_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_9_mD593D324D0E00C89973CC1EC33723116107E41EE_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_0_0_0_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* V_0 = NULL;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* G_B2_0 = NULL;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* G_B1_0 = NULL;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* G_B4_0 = NULL;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* G_B3_0 = NULL;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* G_B6_0 = NULL;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* G_B5_0 = NULL;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* G_B8_0 = NULL;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* G_B7_0 = NULL;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* G_B10_0 = NULL;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* G_B9_0 = NULL;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* G_B12_0 = NULL;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* G_B11_0 = NULL;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* G_B14_0 = NULL;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* G_B13_0 = NULL;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* G_B16_0 = NULL;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* G_B15_0 = NULL;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* G_B18_0 = NULL;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* G_B17_0 = NULL;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* G_B20_0 = NULL;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* G_B19_0 = NULL;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* G_B22_0 = NULL;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* G_B21_0 = NULL;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* G_B24_0 = NULL;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* G_B23_0 = NULL;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* G_B26_0 = NULL;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* G_B25_0 = NULL;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* G_B28_0 = NULL;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* G_B27_0 = NULL;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* G_B30_0 = NULL;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* G_B29_0 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_0 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__25_0;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_1 = L_0;
|
|
if (L_1)
|
|
{
|
|
G_B2_0 = L_1;
|
|
goto IL_0020;
|
|
}
|
|
G_B1_0 = L_1;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* L_2 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_3 = (ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5*)il2cpp_codegen_object_new(ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5_il2cpp_TypeInfo_var);
|
|
ImporterFunc__ctor_m630470C9B15EC4550BDC9B0A860B2F9C3B66C029(L_3, L_2, (intptr_t)((void*)U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_0_mCE9EB639AA315BECDAC2A853C944635A87B6D925_RuntimeMethod_var), NULL);
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_4 = L_3;
|
|
((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__25_0 = L_4;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__25_0), (void*)L_4);
|
|
G_B2_0 = L_4;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
V_0 = G_B2_0;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_5 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___base_importers_table;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_6 = { reinterpret_cast<intptr_t> (Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_7;
|
|
L_7 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_6, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_8 = { reinterpret_cast<intptr_t> (Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var) };
|
|
Type_t* L_9;
|
|
L_9 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_8, NULL);
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_10 = V_0;
|
|
JsonMapper_RegisterImporter_m091B42BD8AE8DBD08A21E950E11677E1B87363ED(L_5, L_7, L_9, L_10, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_11 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__25_1;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_12 = L_11;
|
|
if (L_12)
|
|
{
|
|
G_B4_0 = L_12;
|
|
goto IL_0060;
|
|
}
|
|
G_B3_0 = L_12;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* L_13 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_14 = (ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5*)il2cpp_codegen_object_new(ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5_il2cpp_TypeInfo_var);
|
|
ImporterFunc__ctor_m630470C9B15EC4550BDC9B0A860B2F9C3B66C029(L_14, L_13, (intptr_t)((void*)U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_1_m8869CABB6968F24C1EC2871532CE0274D284A39F_RuntimeMethod_var), NULL);
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_15 = L_14;
|
|
((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__25_1 = L_15;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__25_1), (void*)L_15);
|
|
G_B4_0 = L_15;
|
|
}
|
|
|
|
IL_0060:
|
|
{
|
|
V_0 = G_B4_0;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_16 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___base_importers_table;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_17 = { reinterpret_cast<intptr_t> (Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_18;
|
|
L_18 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_17, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_19 = { reinterpret_cast<intptr_t> (UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_0_0_0_var) };
|
|
Type_t* L_20;
|
|
L_20 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_19, NULL);
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_21 = V_0;
|
|
JsonMapper_RegisterImporter_m091B42BD8AE8DBD08A21E950E11677E1B87363ED(L_16, L_18, L_20, L_21, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_22 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__25_2;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_23 = L_22;
|
|
if (L_23)
|
|
{
|
|
G_B6_0 = L_23;
|
|
goto IL_00a0;
|
|
}
|
|
G_B5_0 = L_23;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* L_24 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_25 = (ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5*)il2cpp_codegen_object_new(ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5_il2cpp_TypeInfo_var);
|
|
ImporterFunc__ctor_m630470C9B15EC4550BDC9B0A860B2F9C3B66C029(L_25, L_24, (intptr_t)((void*)U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_2_mDB0291CF44C8E288F1D3E10A3D4F7E7C54C4B96D_RuntimeMethod_var), NULL);
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_26 = L_25;
|
|
((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__25_2 = L_26;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__25_2), (void*)L_26);
|
|
G_B6_0 = L_26;
|
|
}
|
|
|
|
IL_00a0:
|
|
{
|
|
V_0 = G_B6_0;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_27 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___base_importers_table;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_28 = { reinterpret_cast<intptr_t> (Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_29;
|
|
L_29 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_28, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_30 = { reinterpret_cast<intptr_t> (Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_0_0_0_var) };
|
|
Type_t* L_31;
|
|
L_31 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_30, NULL);
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_32 = V_0;
|
|
JsonMapper_RegisterImporter_m091B42BD8AE8DBD08A21E950E11677E1B87363ED(L_27, L_29, L_31, L_32, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_33 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__25_3;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_34 = L_33;
|
|
if (L_34)
|
|
{
|
|
G_B8_0 = L_34;
|
|
goto IL_00e0;
|
|
}
|
|
G_B7_0 = L_34;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* L_35 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_36 = (ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5*)il2cpp_codegen_object_new(ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5_il2cpp_TypeInfo_var);
|
|
ImporterFunc__ctor_m630470C9B15EC4550BDC9B0A860B2F9C3B66C029(L_36, L_35, (intptr_t)((void*)U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_3_mBA0635D09ABC881387E386E60476208A31F3D4DD_RuntimeMethod_var), NULL);
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_37 = L_36;
|
|
((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__25_3 = L_37;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__25_3), (void*)L_37);
|
|
G_B8_0 = L_37;
|
|
}
|
|
|
|
IL_00e0:
|
|
{
|
|
V_0 = G_B8_0;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_38 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___base_importers_table;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_39 = { reinterpret_cast<intptr_t> (Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_40;
|
|
L_40 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_39, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_41 = { reinterpret_cast<intptr_t> (SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_0_0_0_var) };
|
|
Type_t* L_42;
|
|
L_42 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_41, NULL);
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_43 = V_0;
|
|
JsonMapper_RegisterImporter_m091B42BD8AE8DBD08A21E950E11677E1B87363ED(L_38, L_40, L_42, L_43, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_44 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__25_4;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_45 = L_44;
|
|
if (L_45)
|
|
{
|
|
G_B10_0 = L_45;
|
|
goto IL_0120;
|
|
}
|
|
G_B9_0 = L_45;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* L_46 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_47 = (ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5*)il2cpp_codegen_object_new(ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5_il2cpp_TypeInfo_var);
|
|
ImporterFunc__ctor_m630470C9B15EC4550BDC9B0A860B2F9C3B66C029(L_47, L_46, (intptr_t)((void*)U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_4_mDCC251A8D7D91FFF36CB6AC596F2F651EF0D9565_RuntimeMethod_var), NULL);
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_48 = L_47;
|
|
((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__25_4 = L_48;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__25_4), (void*)L_48);
|
|
G_B10_0 = L_48;
|
|
}
|
|
|
|
IL_0120:
|
|
{
|
|
V_0 = G_B10_0;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_49 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___base_importers_table;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_50 = { reinterpret_cast<intptr_t> (Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_51;
|
|
L_51 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_50, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_52 = { reinterpret_cast<intptr_t> (Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_0_0_0_var) };
|
|
Type_t* L_53;
|
|
L_53 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_52, NULL);
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_54 = V_0;
|
|
JsonMapper_RegisterImporter_m091B42BD8AE8DBD08A21E950E11677E1B87363ED(L_49, L_51, L_53, L_54, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_55 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__25_5;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_56 = L_55;
|
|
if (L_56)
|
|
{
|
|
G_B12_0 = L_56;
|
|
goto IL_0160;
|
|
}
|
|
G_B11_0 = L_56;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* L_57 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_58 = (ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5*)il2cpp_codegen_object_new(ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5_il2cpp_TypeInfo_var);
|
|
ImporterFunc__ctor_m630470C9B15EC4550BDC9B0A860B2F9C3B66C029(L_58, L_57, (intptr_t)((void*)U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_5_mB3E27EBF9144F8166A52CE50CB35AEEA522E7B53_RuntimeMethod_var), NULL);
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_59 = L_58;
|
|
((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__25_5 = L_59;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__25_5), (void*)L_59);
|
|
G_B12_0 = L_59;
|
|
}
|
|
|
|
IL_0160:
|
|
{
|
|
V_0 = G_B12_0;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_60 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___base_importers_table;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_61 = { reinterpret_cast<intptr_t> (Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_62;
|
|
L_62 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_61, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_63 = { reinterpret_cast<intptr_t> (UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_0_0_0_var) };
|
|
Type_t* L_64;
|
|
L_64 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_63, NULL);
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_65 = V_0;
|
|
JsonMapper_RegisterImporter_m091B42BD8AE8DBD08A21E950E11677E1B87363ED(L_60, L_62, L_64, L_65, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_66 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__25_6;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_67 = L_66;
|
|
if (L_67)
|
|
{
|
|
G_B14_0 = L_67;
|
|
goto IL_01a0;
|
|
}
|
|
G_B13_0 = L_67;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* L_68 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_69 = (ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5*)il2cpp_codegen_object_new(ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5_il2cpp_TypeInfo_var);
|
|
ImporterFunc__ctor_m630470C9B15EC4550BDC9B0A860B2F9C3B66C029(L_69, L_68, (intptr_t)((void*)U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_6_m055895C218F8E2E0449E3CA63B630AFEB4383467_RuntimeMethod_var), NULL);
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_70 = L_69;
|
|
((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__25_6 = L_70;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__25_6), (void*)L_70);
|
|
G_B14_0 = L_70;
|
|
}
|
|
|
|
IL_01a0:
|
|
{
|
|
V_0 = G_B14_0;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_71 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___base_importers_table;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_72 = { reinterpret_cast<intptr_t> (Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_73;
|
|
L_73 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_72, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_74 = { reinterpret_cast<intptr_t> (UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_0_0_0_var) };
|
|
Type_t* L_75;
|
|
L_75 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_74, NULL);
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_76 = V_0;
|
|
JsonMapper_RegisterImporter_m091B42BD8AE8DBD08A21E950E11677E1B87363ED(L_71, L_73, L_75, L_76, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_77 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__25_7;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_78 = L_77;
|
|
if (L_78)
|
|
{
|
|
G_B16_0 = L_78;
|
|
goto IL_01e0;
|
|
}
|
|
G_B15_0 = L_78;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* L_79 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_80 = (ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5*)il2cpp_codegen_object_new(ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5_il2cpp_TypeInfo_var);
|
|
ImporterFunc__ctor_m630470C9B15EC4550BDC9B0A860B2F9C3B66C029(L_80, L_79, (intptr_t)((void*)U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_7_m5F115FCD5246351C6757DB539D611CA16138AE11_RuntimeMethod_var), NULL);
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_81 = L_80;
|
|
((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__25_7 = L_81;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__25_7), (void*)L_81);
|
|
G_B16_0 = L_81;
|
|
}
|
|
|
|
IL_01e0:
|
|
{
|
|
V_0 = G_B16_0;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_82 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___base_importers_table;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_83 = { reinterpret_cast<intptr_t> (Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_84;
|
|
L_84 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_83, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_85 = { reinterpret_cast<intptr_t> (Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_0_0_0_var) };
|
|
Type_t* L_86;
|
|
L_86 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_85, NULL);
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_87 = V_0;
|
|
JsonMapper_RegisterImporter_m091B42BD8AE8DBD08A21E950E11677E1B87363ED(L_82, L_84, L_86, L_87, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_88 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__25_8;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_89 = L_88;
|
|
if (L_89)
|
|
{
|
|
G_B18_0 = L_89;
|
|
goto IL_0220;
|
|
}
|
|
G_B17_0 = L_89;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* L_90 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_91 = (ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5*)il2cpp_codegen_object_new(ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5_il2cpp_TypeInfo_var);
|
|
ImporterFunc__ctor_m630470C9B15EC4550BDC9B0A860B2F9C3B66C029(L_91, L_90, (intptr_t)((void*)U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_8_m8ACCC6E2C8E30BB288C157C28225A2A5F7712A23_RuntimeMethod_var), NULL);
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_92 = L_91;
|
|
((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__25_8 = L_92;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__25_8), (void*)L_92);
|
|
G_B18_0 = L_92;
|
|
}
|
|
|
|
IL_0220:
|
|
{
|
|
V_0 = G_B18_0;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_93 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___base_importers_table;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_94 = { reinterpret_cast<intptr_t> (Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_95;
|
|
L_95 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_94, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_96 = { reinterpret_cast<intptr_t> (Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_0_0_0_var) };
|
|
Type_t* L_97;
|
|
L_97 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_96, NULL);
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_98 = V_0;
|
|
JsonMapper_RegisterImporter_m091B42BD8AE8DBD08A21E950E11677E1B87363ED(L_93, L_95, L_97, L_98, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_99 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__25_9;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_100 = L_99;
|
|
if (L_100)
|
|
{
|
|
G_B20_0 = L_100;
|
|
goto IL_0260;
|
|
}
|
|
G_B19_0 = L_100;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* L_101 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_102 = (ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5*)il2cpp_codegen_object_new(ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5_il2cpp_TypeInfo_var);
|
|
ImporterFunc__ctor_m630470C9B15EC4550BDC9B0A860B2F9C3B66C029(L_102, L_101, (intptr_t)((void*)U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_9_mD593D324D0E00C89973CC1EC33723116107E41EE_RuntimeMethod_var), NULL);
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_103 = L_102;
|
|
((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__25_9 = L_103;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__25_9), (void*)L_103);
|
|
G_B20_0 = L_103;
|
|
}
|
|
|
|
IL_0260:
|
|
{
|
|
V_0 = G_B20_0;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_104 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___base_importers_table;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_105 = { reinterpret_cast<intptr_t> (Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_106;
|
|
L_106 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_105, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_107 = { reinterpret_cast<intptr_t> (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_0_0_0_var) };
|
|
Type_t* L_108;
|
|
L_108 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_107, NULL);
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_109 = V_0;
|
|
JsonMapper_RegisterImporter_m091B42BD8AE8DBD08A21E950E11677E1B87363ED(L_104, L_106, L_108, L_109, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_110 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__25_10;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_111 = L_110;
|
|
if (L_111)
|
|
{
|
|
G_B22_0 = L_111;
|
|
goto IL_02a0;
|
|
}
|
|
G_B21_0 = L_111;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* L_112 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_113 = (ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5*)il2cpp_codegen_object_new(ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5_il2cpp_TypeInfo_var);
|
|
ImporterFunc__ctor_m630470C9B15EC4550BDC9B0A860B2F9C3B66C029(L_113, L_112, (intptr_t)((void*)U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_10_m482CC7BA26F2FEDE6CDB0114B36F35EEDA0EC76A_RuntimeMethod_var), NULL);
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_114 = L_113;
|
|
((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__25_10 = L_114;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__25_10), (void*)L_114);
|
|
G_B22_0 = L_114;
|
|
}
|
|
|
|
IL_02a0:
|
|
{
|
|
V_0 = G_B22_0;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_115 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___base_importers_table;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_116 = { reinterpret_cast<intptr_t> (Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_117;
|
|
L_117 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_116, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_118 = { reinterpret_cast<intptr_t> (Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_0_0_0_var) };
|
|
Type_t* L_119;
|
|
L_119 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_118, NULL);
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_120 = V_0;
|
|
JsonMapper_RegisterImporter_m091B42BD8AE8DBD08A21E950E11677E1B87363ED(L_115, L_117, L_119, L_120, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_121 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__25_11;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_122 = L_121;
|
|
if (L_122)
|
|
{
|
|
G_B24_0 = L_122;
|
|
goto IL_02e0;
|
|
}
|
|
G_B23_0 = L_122;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* L_123 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_124 = (ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5*)il2cpp_codegen_object_new(ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5_il2cpp_TypeInfo_var);
|
|
ImporterFunc__ctor_m630470C9B15EC4550BDC9B0A860B2F9C3B66C029(L_124, L_123, (intptr_t)((void*)U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_11_mDBEA7FF7AE702AE8231AA53A3F58EF06DFD588D2_RuntimeMethod_var), NULL);
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_125 = L_124;
|
|
((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__25_11 = L_125;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__25_11), (void*)L_125);
|
|
G_B24_0 = L_125;
|
|
}
|
|
|
|
IL_02e0:
|
|
{
|
|
V_0 = G_B24_0;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_126 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___base_importers_table;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_127 = { reinterpret_cast<intptr_t> (Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_128;
|
|
L_128 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_127, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_129 = { reinterpret_cast<intptr_t> (UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_0_0_0_var) };
|
|
Type_t* L_130;
|
|
L_130 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_129, NULL);
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_131 = V_0;
|
|
JsonMapper_RegisterImporter_m091B42BD8AE8DBD08A21E950E11677E1B87363ED(L_126, L_128, L_130, L_131, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_132 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__25_12;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_133 = L_132;
|
|
if (L_133)
|
|
{
|
|
G_B26_0 = L_133;
|
|
goto IL_0320;
|
|
}
|
|
G_B25_0 = L_133;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* L_134 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_135 = (ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5*)il2cpp_codegen_object_new(ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5_il2cpp_TypeInfo_var);
|
|
ImporterFunc__ctor_m630470C9B15EC4550BDC9B0A860B2F9C3B66C029(L_135, L_134, (intptr_t)((void*)U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_12_m1EF404DE0B87454CA206C71B70A27C71959A85D1_RuntimeMethod_var), NULL);
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_136 = L_135;
|
|
((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__25_12 = L_136;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__25_12), (void*)L_136);
|
|
G_B26_0 = L_136;
|
|
}
|
|
|
|
IL_0320:
|
|
{
|
|
V_0 = G_B26_0;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_137 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___base_importers_table;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_138 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_139;
|
|
L_139 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_138, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_140 = { reinterpret_cast<intptr_t> (Char_t521A6F19B456D956AF452D926C32709DC03D6B17_0_0_0_var) };
|
|
Type_t* L_141;
|
|
L_141 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_140, NULL);
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_142 = V_0;
|
|
JsonMapper_RegisterImporter_m091B42BD8AE8DBD08A21E950E11677E1B87363ED(L_137, L_139, L_141, L_142, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_143 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__25_13;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_144 = L_143;
|
|
if (L_144)
|
|
{
|
|
G_B28_0 = L_144;
|
|
goto IL_0360;
|
|
}
|
|
G_B27_0 = L_144;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* L_145 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_146 = (ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5*)il2cpp_codegen_object_new(ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5_il2cpp_TypeInfo_var);
|
|
ImporterFunc__ctor_m630470C9B15EC4550BDC9B0A860B2F9C3B66C029(L_146, L_145, (intptr_t)((void*)U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_13_m91E6999B2F0AC41B8549CA196A8AFEFF85D7B773_RuntimeMethod_var), NULL);
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_147 = L_146;
|
|
((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__25_13 = L_147;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__25_13), (void*)L_147);
|
|
G_B28_0 = L_147;
|
|
}
|
|
|
|
IL_0360:
|
|
{
|
|
V_0 = G_B28_0;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_148 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___base_importers_table;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_149 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_150;
|
|
L_150 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_149, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_151 = { reinterpret_cast<intptr_t> (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_0_0_0_var) };
|
|
Type_t* L_152;
|
|
L_152 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_151, NULL);
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_153 = V_0;
|
|
JsonMapper_RegisterImporter_m091B42BD8AE8DBD08A21E950E11677E1B87363ED(L_148, L_150, L_152, L_153, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_154 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__25_14;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_155 = L_154;
|
|
if (L_155)
|
|
{
|
|
G_B30_0 = L_155;
|
|
goto IL_03a0;
|
|
}
|
|
G_B29_0 = L_155;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* L_156 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_157 = (ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5*)il2cpp_codegen_object_new(ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5_il2cpp_TypeInfo_var);
|
|
ImporterFunc__ctor_m630470C9B15EC4550BDC9B0A860B2F9C3B66C029(L_157, L_156, (intptr_t)((void*)U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_14_m5E0BAE710E3B9EB9FB08FFAA1DC512C9FA85974C_RuntimeMethod_var), NULL);
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_158 = L_157;
|
|
((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__25_14 = L_158;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__25_14), (void*)L_158);
|
|
G_B30_0 = L_158;
|
|
}
|
|
|
|
IL_03a0:
|
|
{
|
|
V_0 = G_B30_0;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_159 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___base_importers_table;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_160 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_161;
|
|
L_161 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_160, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_162 = { reinterpret_cast<intptr_t> (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_0_0_0_var) };
|
|
Type_t* L_163;
|
|
L_163 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_162, NULL);
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_164 = V_0;
|
|
JsonMapper_RegisterImporter_m091B42BD8AE8DBD08A21E950E11677E1B87363ED(L_159, L_161, L_163, L_164, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper_RegisterImporter_m091B42BD8AE8DBD08A21E950E11677E1B87363ED (RuntimeObject* ___0_table, Type_t* ___1_json_type, Type_t* ___2_value_type, ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* ___3_importer, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m7B6BA98348249476333A6F6C3EFB7E2ABAEF49A5_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t9017400E4435187C1FB3841B4F5843B94836A625_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_t0BD8FD9B6F60BD6B18C6D1CD2BE215E7F97D3D63_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_t14E89C96BA24B565BED22155CB0969211ADEB1AB_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
RuntimeObject* L_0 = ___0_table;
|
|
Type_t* L_1 = ___1_json_type;
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = InterfaceFuncInvoker1< bool, Type_t* >::Invoke(4, IDictionary_2_t0BD8FD9B6F60BD6B18C6D1CD2BE215E7F97D3D63_il2cpp_TypeInfo_var, L_0, L_1);
|
|
V_0 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
|
|
bool L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_4 = ___0_table;
|
|
Type_t* L_5 = ___1_json_type;
|
|
Dictionary_2_t9017400E4435187C1FB3841B4F5843B94836A625* L_6 = (Dictionary_2_t9017400E4435187C1FB3841B4F5843B94836A625*)il2cpp_codegen_object_new(Dictionary_2_t9017400E4435187C1FB3841B4F5843B94836A625_il2cpp_TypeInfo_var);
|
|
Dictionary_2__ctor_m7B6BA98348249476333A6F6C3EFB7E2ABAEF49A5(L_6, Dictionary_2__ctor_m7B6BA98348249476333A6F6C3EFB7E2ABAEF49A5_RuntimeMethod_var);
|
|
NullCheck(L_4);
|
|
InterfaceActionInvoker2< Type_t*, RuntimeObject* >::Invoke(5, IDictionary_2_t0BD8FD9B6F60BD6B18C6D1CD2BE215E7F97D3D63_il2cpp_TypeInfo_var, L_4, L_5, L_6);
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
RuntimeObject* L_7 = ___0_table;
|
|
Type_t* L_8 = ___1_json_type;
|
|
NullCheck(L_7);
|
|
RuntimeObject* L_9;
|
|
L_9 = InterfaceFuncInvoker1< RuntimeObject*, Type_t* >::Invoke(0, IDictionary_2_t0BD8FD9B6F60BD6B18C6D1CD2BE215E7F97D3D63_il2cpp_TypeInfo_var, L_7, L_8);
|
|
Type_t* L_10 = ___2_value_type;
|
|
ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* L_11 = ___3_importer;
|
|
NullCheck(L_9);
|
|
InterfaceActionInvoker2< Type_t*, ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* >::Invoke(1, IDictionary_2_t14E89C96BA24B565BED22155CB0969211ADEB1AB_il2cpp_TypeInfo_var, L_9, L_10, L_11);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper_WriteValue_m143881E655EEAE7440BFE564E13A2580A021DBDE (RuntimeObject* ___0_obj, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___1_writer, bool ___2_writer_is_private, int32_t ___3_depth, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FieldInfo_t_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_t02C6BF8BB03B58DD552B193E9CABACD0AF9CCFA4_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_t74600F66BA04DC423A37DB24919A3C9D56D75B43_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_tDFAB6A0EC1A6A40B5D759F32652B70BD609099EE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t05B5613D1899393C5D9EB2B8AE7E874C4C23ED6C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IJsonWrapper_t447B39837883BA1281A17C3D6BA122AD22837DD9_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyInfo_t_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeArray_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_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);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Type_t* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
bool V_4 = false;
|
|
bool V_5 = false;
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
bool V_9 = false;
|
|
bool V_10 = false;
|
|
bool V_11 = false;
|
|
bool V_12 = false;
|
|
RuntimeObject* V_13 = NULL;
|
|
RuntimeObject* V_14 = NULL;
|
|
RuntimeObject* V_15 = NULL;
|
|
bool V_16 = false;
|
|
RuntimeObject* V_17 = NULL;
|
|
RuntimeObject* V_18 = NULL;
|
|
bool V_19 = false;
|
|
RuntimeObject* V_20 = NULL;
|
|
RuntimeObject* V_21 = NULL;
|
|
DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB V_22;
|
|
memset((&V_22), 0, sizeof(V_22));
|
|
String_t* V_23 = NULL;
|
|
bool V_24 = false;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* V_25 = NULL;
|
|
bool V_26 = false;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* V_27 = NULL;
|
|
bool V_28 = false;
|
|
Type_t* V_29 = NULL;
|
|
bool V_30 = false;
|
|
RuntimeObject* V_31 = NULL;
|
|
PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D V_32;
|
|
memset((&V_32), 0, sizeof(V_32));
|
|
bool V_33 = false;
|
|
PropertyInfo_t* V_34 = NULL;
|
|
bool V_35 = false;
|
|
String_t* G_B47_0 = NULL;
|
|
int32_t G_B63_0 = 0;
|
|
{
|
|
int32_t L_0 = ___3_depth;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
int32_t L_1 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___max_nesting_depth;
|
|
V_2 = (bool)((((int32_t)L_0) > ((int32_t)L_1))? 1 : 0);
|
|
bool L_2 = V_2;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0024;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = ___0_obj;
|
|
NullCheck(L_3);
|
|
Type_t* L_4;
|
|
L_4 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_3, NULL);
|
|
String_t* L_5;
|
|
L_5 = String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral456BA6DFA4ECDFAAD0D654A1EC48EE0C8CB90B18)), L_4, NULL);
|
|
JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76* L_6 = (JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76_il2cpp_TypeInfo_var)));
|
|
JsonException__ctor_m400377A21C20F6CAEE97CE7958869D819BB94BB5(L_6, L_5, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonMapper_WriteValue_m143881E655EEAE7440BFE564E13A2580A021DBDE_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
RuntimeObject* L_7 = ___0_obj;
|
|
V_3 = (bool)((((RuntimeObject*)(RuntimeObject*)L_7) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_8 = V_3;
|
|
if (!L_8)
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_9 = ___1_writer;
|
|
NullCheck(L_9);
|
|
JsonWriter_Write_mC6C394BE18186CAEB8597055057A1AECDEE56916(L_9, (String_t*)NULL, NULL);
|
|
goto IL_0495;
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
RuntimeObject* L_10 = ___0_obj;
|
|
V_4 = (bool)((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_10, IJsonWrapper_t447B39837883BA1281A17C3D6BA122AD22837DD9_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_11 = V_4;
|
|
if (!L_11)
|
|
{
|
|
goto IL_0080;
|
|
}
|
|
}
|
|
{
|
|
bool L_12 = ___2_writer_is_private;
|
|
V_5 = L_12;
|
|
bool L_13 = V_5;
|
|
if (!L_13)
|
|
{
|
|
goto IL_006c;
|
|
}
|
|
}
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_14 = ___1_writer;
|
|
NullCheck(L_14);
|
|
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_15;
|
|
L_15 = JsonWriter_get_TextWriter_m8C5C9441F52C2813A2A3A1834E7A8A3AF2CF875F(L_14, NULL);
|
|
RuntimeObject* L_16 = ___0_obj;
|
|
NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_16, IJsonWrapper_t447B39837883BA1281A17C3D6BA122AD22837DD9_il2cpp_TypeInfo_var)));
|
|
String_t* L_17;
|
|
L_17 = InterfaceFuncInvoker0< String_t* >::Invoke(19, IJsonWrapper_t447B39837883BA1281A17C3D6BA122AD22837DD9_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_16, IJsonWrapper_t447B39837883BA1281A17C3D6BA122AD22837DD9_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_15);
|
|
VirtualActionInvoker1< String_t* >::Invoke(27, L_15, L_17);
|
|
goto IL_007b;
|
|
}
|
|
|
|
IL_006c:
|
|
{
|
|
RuntimeObject* L_18 = ___0_obj;
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_19 = ___1_writer;
|
|
NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_18, IJsonWrapper_t447B39837883BA1281A17C3D6BA122AD22837DD9_il2cpp_TypeInfo_var)));
|
|
InterfaceActionInvoker1< JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* >::Invoke(20, IJsonWrapper_t447B39837883BA1281A17C3D6BA122AD22837DD9_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_18, IJsonWrapper_t447B39837883BA1281A17C3D6BA122AD22837DD9_il2cpp_TypeInfo_var)), L_19);
|
|
}
|
|
|
|
IL_007b:
|
|
{
|
|
goto IL_0495;
|
|
}
|
|
|
|
IL_0080:
|
|
{
|
|
RuntimeObject* L_20 = ___0_obj;
|
|
V_6 = (bool)((!(((RuntimeObject*)(String_t*)((String_t*)IsInstSealed((RuntimeObject*)L_20, String_t_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_21 = V_6;
|
|
if (!L_21)
|
|
{
|
|
goto IL_00a2;
|
|
}
|
|
}
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_22 = ___1_writer;
|
|
RuntimeObject* L_23 = ___0_obj;
|
|
NullCheck(L_22);
|
|
JsonWriter_Write_mC6C394BE18186CAEB8597055057A1AECDEE56916(L_22, ((String_t*)CastclassSealed((RuntimeObject*)L_23, String_t_il2cpp_TypeInfo_var)), NULL);
|
|
goto IL_0495;
|
|
}
|
|
|
|
IL_00a2:
|
|
{
|
|
RuntimeObject* L_24 = ___0_obj;
|
|
V_7 = (bool)((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_24, Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_25 = V_7;
|
|
if (!L_25)
|
|
{
|
|
goto IL_00c4;
|
|
}
|
|
}
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_26 = ___1_writer;
|
|
RuntimeObject* L_27 = ___0_obj;
|
|
NullCheck(L_26);
|
|
JsonWriter_Write_m657048A70C011FC85FD3773A026EC0B21462AB4D(L_26, ((*(double*)((double*)(double*)UnBox(L_27, Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var)))), NULL);
|
|
goto IL_0495;
|
|
}
|
|
|
|
IL_00c4:
|
|
{
|
|
RuntimeObject* L_28 = ___0_obj;
|
|
V_8 = (bool)((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_28, Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_29 = V_8;
|
|
if (!L_29)
|
|
{
|
|
goto IL_00e6;
|
|
}
|
|
}
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_30 = ___1_writer;
|
|
RuntimeObject* L_31 = ___0_obj;
|
|
NullCheck(L_30);
|
|
JsonWriter_Write_mC98F01D8E7A98604CF52F7438A047C559126FE29(L_30, ((*(float*)((float*)(float*)UnBox(L_31, Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var)))), NULL);
|
|
goto IL_0495;
|
|
}
|
|
|
|
IL_00e6:
|
|
{
|
|
RuntimeObject* L_32 = ___0_obj;
|
|
V_9 = (bool)((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_32, Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_33 = V_9;
|
|
if (!L_33)
|
|
{
|
|
goto IL_0108;
|
|
}
|
|
}
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_34 = ___1_writer;
|
|
RuntimeObject* L_35 = ___0_obj;
|
|
NullCheck(L_34);
|
|
JsonWriter_Write_m3A3246FEFCA9BCEB4F3E7D2D5AC0FF49B8BBD3A7(L_34, ((*(int32_t*)((int32_t*)(int32_t*)UnBox(L_35, Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)))), NULL);
|
|
goto IL_0495;
|
|
}
|
|
|
|
IL_0108:
|
|
{
|
|
RuntimeObject* L_36 = ___0_obj;
|
|
V_10 = (bool)((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_36, Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_37 = V_10;
|
|
if (!L_37)
|
|
{
|
|
goto IL_012a;
|
|
}
|
|
}
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_38 = ___1_writer;
|
|
RuntimeObject* L_39 = ___0_obj;
|
|
NullCheck(L_38);
|
|
JsonWriter_Write_mFACCB1B6087CE1C66A68CE3BA2AF9844F7F31D8C(L_38, ((*(bool*)((bool*)(bool*)UnBox(L_39, Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var)))), NULL);
|
|
goto IL_0495;
|
|
}
|
|
|
|
IL_012a:
|
|
{
|
|
RuntimeObject* L_40 = ___0_obj;
|
|
V_11 = (bool)((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_40, Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_41 = V_11;
|
|
if (!L_41)
|
|
{
|
|
goto IL_014c;
|
|
}
|
|
}
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_42 = ___1_writer;
|
|
RuntimeObject* L_43 = ___0_obj;
|
|
NullCheck(L_42);
|
|
JsonWriter_Write_m500833BCB5B21114C1C8A3FA7DAAF6A1EAD2A3D4(L_42, ((*(int64_t*)((int64_t*)(int64_t*)UnBox(L_43, Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var)))), NULL);
|
|
goto IL_0495;
|
|
}
|
|
|
|
IL_014c:
|
|
{
|
|
RuntimeObject* L_44 = ___0_obj;
|
|
V_12 = (bool)((!(((RuntimeObject*)(RuntimeArray*)((RuntimeArray*)IsInstClass((RuntimeObject*)L_44, RuntimeArray_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_45 = V_12;
|
|
if (!L_45)
|
|
{
|
|
goto IL_01b8;
|
|
}
|
|
}
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_46 = ___1_writer;
|
|
NullCheck(L_46);
|
|
JsonWriter_WriteArrayStart_mF4AB20790AB8817BCCEEB5FA649832890D5AADEB(L_46, NULL);
|
|
RuntimeObject* L_47 = ___0_obj;
|
|
NullCheck(((RuntimeArray*)CastclassClass((RuntimeObject*)L_47, RuntimeArray_il2cpp_TypeInfo_var)));
|
|
RuntimeObject* L_48;
|
|
L_48 = Array_GetEnumerator_mDB7E2AF23F2BDC715D429C71CA3B8D0151F0DC1E(((RuntimeArray*)CastclassClass((RuntimeObject*)L_47, RuntimeArray_il2cpp_TypeInfo_var)), NULL);
|
|
V_13 = L_48;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0196:
|
|
{
|
|
{
|
|
RuntimeObject* L_49 = V_13;
|
|
V_15 = ((RuntimeObject*)IsInst((RuntimeObject*)L_49, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
|
|
RuntimeObject* L_50 = V_15;
|
|
if (!L_50)
|
|
{
|
|
goto IL_01ab;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_51 = V_15;
|
|
NullCheck(L_51);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_51);
|
|
}
|
|
|
|
IL_01ab:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_018b_1;
|
|
}
|
|
|
|
IL_0173_1:
|
|
{
|
|
RuntimeObject* L_52 = V_13;
|
|
NullCheck(L_52);
|
|
RuntimeObject* L_53;
|
|
L_53 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_52);
|
|
V_14 = L_53;
|
|
RuntimeObject* L_54 = V_14;
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_55 = ___1_writer;
|
|
bool L_56 = ___2_writer_is_private;
|
|
int32_t L_57 = ___3_depth;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
JsonMapper_WriteValue_m143881E655EEAE7440BFE564E13A2580A021DBDE(L_54, L_55, L_56, ((int32_t)il2cpp_codegen_add(L_57, 1)), NULL);
|
|
}
|
|
|
|
IL_018b_1:
|
|
{
|
|
RuntimeObject* L_58 = V_13;
|
|
NullCheck(L_58);
|
|
bool L_59;
|
|
L_59 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_58);
|
|
if (L_59)
|
|
{
|
|
goto IL_0173_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_01ac;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_01ac:
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_60 = ___1_writer;
|
|
NullCheck(L_60);
|
|
JsonWriter_WriteArrayEnd_mE8262D6AC279897DA41D549CE12A8EA3054777B5(L_60, NULL);
|
|
goto IL_0495;
|
|
}
|
|
|
|
IL_01b8:
|
|
{
|
|
RuntimeObject* L_61 = ___0_obj;
|
|
V_16 = (bool)((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_61, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_62 = V_16;
|
|
if (!L_62)
|
|
{
|
|
goto IL_0224;
|
|
}
|
|
}
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_63 = ___1_writer;
|
|
NullCheck(L_63);
|
|
JsonWriter_WriteArrayStart_mF4AB20790AB8817BCCEEB5FA649832890D5AADEB(L_63, NULL);
|
|
RuntimeObject* L_64 = ___0_obj;
|
|
NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_64, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var)));
|
|
RuntimeObject* L_65;
|
|
L_65 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_64, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var)));
|
|
V_17 = L_65;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0202:
|
|
{
|
|
{
|
|
RuntimeObject* L_66 = V_17;
|
|
V_15 = ((RuntimeObject*)IsInst((RuntimeObject*)L_66, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
|
|
RuntimeObject* L_67 = V_15;
|
|
if (!L_67)
|
|
{
|
|
goto IL_0217;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_68 = V_15;
|
|
NullCheck(L_68);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_68);
|
|
}
|
|
|
|
IL_0217:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_01f7_1;
|
|
}
|
|
|
|
IL_01df_1:
|
|
{
|
|
RuntimeObject* L_69 = V_17;
|
|
NullCheck(L_69);
|
|
RuntimeObject* L_70;
|
|
L_70 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_69);
|
|
V_18 = L_70;
|
|
RuntimeObject* L_71 = V_18;
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_72 = ___1_writer;
|
|
bool L_73 = ___2_writer_is_private;
|
|
int32_t L_74 = ___3_depth;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
JsonMapper_WriteValue_m143881E655EEAE7440BFE564E13A2580A021DBDE(L_71, L_72, L_73, ((int32_t)il2cpp_codegen_add(L_74, 1)), NULL);
|
|
}
|
|
|
|
IL_01f7_1:
|
|
{
|
|
RuntimeObject* L_75 = V_17;
|
|
NullCheck(L_75);
|
|
bool L_76;
|
|
L_76 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_75);
|
|
if (L_76)
|
|
{
|
|
goto IL_01df_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0218;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0218:
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_77 = ___1_writer;
|
|
NullCheck(L_77);
|
|
JsonWriter_WriteArrayEnd_mE8262D6AC279897DA41D549CE12A8EA3054777B5(L_77, NULL);
|
|
goto IL_0495;
|
|
}
|
|
|
|
IL_0224:
|
|
{
|
|
RuntimeObject* L_78 = ___0_obj;
|
|
V_19 = (bool)((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_78, IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_79 = V_19;
|
|
if (!L_79)
|
|
{
|
|
goto IL_02d9;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_80 = ___0_obj;
|
|
V_20 = ((RuntimeObject*)IsInst((RuntimeObject*)L_80, IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var));
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_81 = ___1_writer;
|
|
NullCheck(L_81);
|
|
JsonWriter_WriteObjectStart_m90F3A0A19C03EA7CF90017768E3FA217E4038688(L_81, NULL);
|
|
RuntimeObject* L_82 = V_20;
|
|
NullCheck(L_82);
|
|
RuntimeObject* L_83;
|
|
L_83 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(9, IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var, L_82);
|
|
V_21 = L_83;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_02b7:
|
|
{
|
|
{
|
|
RuntimeObject* L_84 = V_21;
|
|
V_15 = ((RuntimeObject*)IsInst((RuntimeObject*)L_84, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
|
|
RuntimeObject* L_85 = V_15;
|
|
if (!L_85)
|
|
{
|
|
goto IL_02cc;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_86 = V_15;
|
|
NullCheck(L_86);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_86);
|
|
}
|
|
|
|
IL_02cc:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_02ac_1;
|
|
}
|
|
|
|
IL_0252_1:
|
|
{
|
|
RuntimeObject* L_87 = V_21;
|
|
NullCheck(L_87);
|
|
RuntimeObject* L_88;
|
|
L_88 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_87);
|
|
V_22 = ((*(DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB*)((DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB*)(DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB*)UnBox(L_88, DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_il2cpp_TypeInfo_var))));
|
|
RuntimeObject* L_89;
|
|
L_89 = DictionaryEntry_get_Key_m09845C00732E530E6FCB9042079E90D3912215FE_inline((&V_22), NULL);
|
|
if (((String_t*)IsInstSealed((RuntimeObject*)L_89, String_t_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_0282_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_90;
|
|
L_90 = DictionaryEntry_get_Key_m09845C00732E530E6FCB9042079E90D3912215FE_inline((&V_22), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_91;
|
|
L_91 = CultureInfo_get_InvariantCulture_mD1E96DC845E34B10F78CB744B0CB5D7D63CEB1E6(NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
String_t* L_92;
|
|
L_92 = Convert_ToString_m833ABF9C901B707B28FB10DEBFCC511A87E6C827(L_90, L_91, NULL);
|
|
G_B47_0 = L_92;
|
|
goto IL_028e_1;
|
|
}
|
|
|
|
IL_0282_1:
|
|
{
|
|
RuntimeObject* L_93;
|
|
L_93 = DictionaryEntry_get_Key_m09845C00732E530E6FCB9042079E90D3912215FE_inline((&V_22), NULL);
|
|
G_B47_0 = ((String_t*)IsInstSealed((RuntimeObject*)L_93, String_t_il2cpp_TypeInfo_var));
|
|
}
|
|
|
|
IL_028e_1:
|
|
{
|
|
V_23 = G_B47_0;
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_94 = ___1_writer;
|
|
String_t* L_95 = V_23;
|
|
NullCheck(L_94);
|
|
JsonWriter_WritePropertyName_m5646EF1771ABCFCCAAD52086AAE3387579E158E0(L_94, L_95, NULL);
|
|
RuntimeObject* L_96;
|
|
L_96 = DictionaryEntry_get_Value_m75FD18FE968AE131F28AA2CB0DF4895EBA39075E_inline((&V_22), NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_97 = ___1_writer;
|
|
bool L_98 = ___2_writer_is_private;
|
|
int32_t L_99 = ___3_depth;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
JsonMapper_WriteValue_m143881E655EEAE7440BFE564E13A2580A021DBDE(L_96, L_97, L_98, ((int32_t)il2cpp_codegen_add(L_99, 1)), NULL);
|
|
}
|
|
|
|
IL_02ac_1:
|
|
{
|
|
RuntimeObject* L_100 = V_21;
|
|
NullCheck(L_100);
|
|
bool L_101;
|
|
L_101 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_100);
|
|
if (L_101)
|
|
{
|
|
goto IL_0252_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_02cd;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_02cd:
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_102 = ___1_writer;
|
|
NullCheck(L_102);
|
|
JsonWriter_WriteObjectEnd_m7B1F539A650AC9AA9413B9C3FF1DAA27834141AF(L_102, NULL);
|
|
goto IL_0495;
|
|
}
|
|
|
|
IL_02d9:
|
|
{
|
|
RuntimeObject* L_103 = ___0_obj;
|
|
NullCheck(L_103);
|
|
Type_t* L_104;
|
|
L_104 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_103, NULL);
|
|
V_0 = L_104;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_105 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___custom_exporters_table;
|
|
Type_t* L_106 = V_0;
|
|
NullCheck(L_105);
|
|
bool L_107;
|
|
L_107 = InterfaceFuncInvoker1< bool, Type_t* >::Invoke(4, IDictionary_2_t74600F66BA04DC423A37DB24919A3C9D56D75B43_il2cpp_TypeInfo_var, L_105, L_106);
|
|
V_24 = L_107;
|
|
bool L_108 = V_24;
|
|
if (!L_108)
|
|
{
|
|
goto IL_030e;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_109 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___custom_exporters_table;
|
|
Type_t* L_110 = V_0;
|
|
NullCheck(L_109);
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* L_111;
|
|
L_111 = InterfaceFuncInvoker1< ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A*, Type_t* >::Invoke(0, IDictionary_2_t74600F66BA04DC423A37DB24919A3C9D56D75B43_il2cpp_TypeInfo_var, L_109, L_110);
|
|
V_25 = L_111;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* L_112 = V_25;
|
|
RuntimeObject* L_113 = ___0_obj;
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_114 = ___1_writer;
|
|
NullCheck(L_112);
|
|
ExporterFunc_Invoke_mE96AA8DA43B26B809D4D5D09A1A22966C81D2BDD_inline(L_112, L_113, L_114, NULL);
|
|
goto IL_0495;
|
|
}
|
|
|
|
IL_030e:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_115 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___base_exporters_table;
|
|
Type_t* L_116 = V_0;
|
|
NullCheck(L_115);
|
|
bool L_117;
|
|
L_117 = InterfaceFuncInvoker1< bool, Type_t* >::Invoke(4, IDictionary_2_t74600F66BA04DC423A37DB24919A3C9D56D75B43_il2cpp_TypeInfo_var, L_115, L_116);
|
|
V_26 = L_117;
|
|
bool L_118 = V_26;
|
|
if (!L_118)
|
|
{
|
|
goto IL_033c;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_119 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___base_exporters_table;
|
|
Type_t* L_120 = V_0;
|
|
NullCheck(L_119);
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* L_121;
|
|
L_121 = InterfaceFuncInvoker1< ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A*, Type_t* >::Invoke(0, IDictionary_2_t74600F66BA04DC423A37DB24919A3C9D56D75B43_il2cpp_TypeInfo_var, L_119, L_120);
|
|
V_27 = L_121;
|
|
ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* L_122 = V_27;
|
|
RuntimeObject* L_123 = ___0_obj;
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_124 = ___1_writer;
|
|
NullCheck(L_122);
|
|
ExporterFunc_Invoke_mE96AA8DA43B26B809D4D5D09A1A22966C81D2BDD_inline(L_122, L_123, L_124, NULL);
|
|
goto IL_0495;
|
|
}
|
|
|
|
IL_033c:
|
|
{
|
|
RuntimeObject* L_125 = ___0_obj;
|
|
V_28 = (bool)((!(((RuntimeObject*)(Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2*)((Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2*)IsInstClass((RuntimeObject*)L_125, Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_126 = V_28;
|
|
if (!L_126)
|
|
{
|
|
goto IL_03b9;
|
|
}
|
|
}
|
|
{
|
|
Type_t* L_127 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var);
|
|
Type_t* L_128;
|
|
L_128 = Enum_GetUnderlyingType_mEDDDC2C9F74ECC841E65E401C3703D59C37CBB05(L_127, NULL);
|
|
V_29 = L_128;
|
|
Type_t* L_129 = V_29;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_130 = { reinterpret_cast<intptr_t> (Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_131;
|
|
L_131 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_130, NULL);
|
|
bool L_132;
|
|
L_132 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_129, L_131, NULL);
|
|
if (L_132)
|
|
{
|
|
goto IL_038d;
|
|
}
|
|
}
|
|
{
|
|
Type_t* L_133 = V_29;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_134 = { reinterpret_cast<intptr_t> (UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_135;
|
|
L_135 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_134, NULL);
|
|
bool L_136;
|
|
L_136 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_133, L_135, NULL);
|
|
if (L_136)
|
|
{
|
|
goto IL_038d;
|
|
}
|
|
}
|
|
{
|
|
Type_t* L_137 = V_29;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_138 = { reinterpret_cast<intptr_t> (UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_139;
|
|
L_139 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_138, NULL);
|
|
bool L_140;
|
|
L_140 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_137, L_139, NULL);
|
|
G_B63_0 = ((int32_t)(L_140));
|
|
goto IL_038e;
|
|
}
|
|
|
|
IL_038d:
|
|
{
|
|
G_B63_0 = 1;
|
|
}
|
|
|
|
IL_038e:
|
|
{
|
|
V_30 = (bool)G_B63_0;
|
|
bool L_141 = V_30;
|
|
if (!L_141)
|
|
{
|
|
goto IL_03a5;
|
|
}
|
|
}
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_142 = ___1_writer;
|
|
RuntimeObject* L_143 = ___0_obj;
|
|
NullCheck(L_142);
|
|
JsonWriter_Write_mA2318C6CCFB4A565564457D435FF8EDEDB0F6EAB(L_142, ((*(uint64_t*)((uint64_t*)(uint64_t*)UnBox(L_143, UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var)))), NULL);
|
|
goto IL_03b4;
|
|
}
|
|
|
|
IL_03a5:
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_144 = ___1_writer;
|
|
RuntimeObject* L_145 = ___0_obj;
|
|
NullCheck(L_144);
|
|
JsonWriter_Write_m3A3246FEFCA9BCEB4F3E7D2D5AC0FF49B8BBD3A7(L_144, ((*(int32_t*)((int32_t*)(int32_t*)UnBox(L_145, Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)))), NULL);
|
|
}
|
|
|
|
IL_03b4:
|
|
{
|
|
goto IL_0495;
|
|
}
|
|
|
|
IL_03b9:
|
|
{
|
|
Type_t* L_146 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
JsonMapper_AddTypeProperties_m24B07F9D8AE8CE6C178AF8E6FD44BDF6A4A84389(L_146, NULL);
|
|
RuntimeObject* L_147 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___type_properties;
|
|
Type_t* L_148 = V_0;
|
|
NullCheck(L_147);
|
|
RuntimeObject* L_149;
|
|
L_149 = InterfaceFuncInvoker1< RuntimeObject*, Type_t* >::Invoke(0, IDictionary_2_t02C6BF8BB03B58DD552B193E9CABACD0AF9CCFA4_il2cpp_TypeInfo_var, L_147, L_148);
|
|
V_1 = L_149;
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_150 = ___1_writer;
|
|
NullCheck(L_150);
|
|
JsonWriter_WriteObjectStart_m90F3A0A19C03EA7CF90017768E3FA217E4038688(L_150, NULL);
|
|
RuntimeObject* L_151 = V_1;
|
|
NullCheck(L_151);
|
|
RuntimeObject* L_152;
|
|
L_152 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, IEnumerable_1_tDFAB6A0EC1A6A40B5D759F32652B70BD609099EE_il2cpp_TypeInfo_var, L_151);
|
|
V_31 = L_152;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0481:
|
|
{
|
|
{
|
|
RuntimeObject* L_153 = V_31;
|
|
if (!L_153)
|
|
{
|
|
goto IL_048d;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_154 = V_31;
|
|
NullCheck(L_154);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_154);
|
|
}
|
|
|
|
IL_048d:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0473_1;
|
|
}
|
|
|
|
IL_03e1_1:
|
|
{
|
|
RuntimeObject* L_155 = V_31;
|
|
NullCheck(L_155);
|
|
PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D L_156;
|
|
L_156 = InterfaceFuncInvoker0< PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D >::Invoke(0, IEnumerator_1_t05B5613D1899393C5D9EB2B8AE7E874C4C23ED6C_il2cpp_TypeInfo_var, L_155);
|
|
V_32 = L_156;
|
|
PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D L_157 = V_32;
|
|
bool L_158 = L_157.___IsField;
|
|
V_33 = L_158;
|
|
bool L_159 = V_33;
|
|
if (!L_159)
|
|
{
|
|
goto IL_042c_1;
|
|
}
|
|
}
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_160 = ___1_writer;
|
|
PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D L_161 = V_32;
|
|
MemberInfo_t* L_162 = L_161.___Info;
|
|
NullCheck(L_162);
|
|
String_t* L_163;
|
|
L_163 = VirtualFuncInvoker0< String_t* >::Invoke(13, L_162);
|
|
NullCheck(L_160);
|
|
JsonWriter_WritePropertyName_m5646EF1771ABCFCCAAD52086AAE3387579E158E0(L_160, L_163, NULL);
|
|
PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D L_164 = V_32;
|
|
MemberInfo_t* L_165 = L_164.___Info;
|
|
RuntimeObject* L_166 = ___0_obj;
|
|
NullCheck(((FieldInfo_t*)CastclassClass((RuntimeObject*)L_165, FieldInfo_t_il2cpp_TypeInfo_var)));
|
|
RuntimeObject* L_167;
|
|
L_167 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(48, ((FieldInfo_t*)CastclassClass((RuntimeObject*)L_165, FieldInfo_t_il2cpp_TypeInfo_var)), L_166);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_168 = ___1_writer;
|
|
bool L_169 = ___2_writer_is_private;
|
|
int32_t L_170 = ___3_depth;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
JsonMapper_WriteValue_m143881E655EEAE7440BFE564E13A2580A021DBDE(L_167, L_168, L_169, ((int32_t)il2cpp_codegen_add(L_170, 1)), NULL);
|
|
goto IL_0472_1;
|
|
}
|
|
|
|
IL_042c_1:
|
|
{
|
|
PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D L_171 = V_32;
|
|
MemberInfo_t* L_172 = L_171.___Info;
|
|
V_34 = ((PropertyInfo_t*)CastclassClass((RuntimeObject*)L_172, PropertyInfo_t_il2cpp_TypeInfo_var));
|
|
PropertyInfo_t* L_173 = V_34;
|
|
NullCheck(L_173);
|
|
bool L_174;
|
|
L_174 = VirtualFuncInvoker0< bool >::Invoke(34, L_173);
|
|
V_35 = L_174;
|
|
bool L_175 = V_35;
|
|
if (!L_175)
|
|
{
|
|
goto IL_0471_1;
|
|
}
|
|
}
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_176 = ___1_writer;
|
|
PropertyMetadata_t39488BB7A97631357ACA1E4409FA30D92DC4564D L_177 = V_32;
|
|
MemberInfo_t* L_178 = L_177.___Info;
|
|
NullCheck(L_178);
|
|
String_t* L_179;
|
|
L_179 = VirtualFuncInvoker0< String_t* >::Invoke(13, L_178);
|
|
NullCheck(L_176);
|
|
JsonWriter_WritePropertyName_m5646EF1771ABCFCCAAD52086AAE3387579E158E0(L_176, L_179, NULL);
|
|
PropertyInfo_t* L_180 = V_34;
|
|
RuntimeObject* L_181 = ___0_obj;
|
|
NullCheck(L_180);
|
|
RuntimeObject* L_182;
|
|
L_182 = VirtualFuncInvoker2< RuntimeObject*, RuntimeObject*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* >::Invoke(46, L_180, L_181, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_183 = ___1_writer;
|
|
bool L_184 = ___2_writer_is_private;
|
|
int32_t L_185 = ___3_depth;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
JsonMapper_WriteValue_m143881E655EEAE7440BFE564E13A2580A021DBDE(L_182, L_183, L_184, ((int32_t)il2cpp_codegen_add(L_185, 1)), NULL);
|
|
}
|
|
|
|
IL_0471_1:
|
|
{
|
|
}
|
|
|
|
IL_0472_1:
|
|
{
|
|
}
|
|
|
|
IL_0473_1:
|
|
{
|
|
RuntimeObject* L_186 = V_31;
|
|
NullCheck(L_186);
|
|
bool L_187;
|
|
L_187 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_186);
|
|
if (L_187)
|
|
{
|
|
goto IL_03e1_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_048e;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_048e:
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_188 = ___1_writer;
|
|
NullCheck(L_188);
|
|
JsonWriter_WriteObjectEnd_m7B1F539A650AC9AA9413B9C3FF1DAA27834141AF(L_188, NULL);
|
|
}
|
|
|
|
IL_0495:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonMapper_ToJson_m47E09DCA4D412AB6D98769A2A5544C6D65155811 (RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
bool V_1 = false;
|
|
String_t* V_2 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_0 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___static_writer_lock;
|
|
V_0 = L_0;
|
|
V_1 = (bool)0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0039:
|
|
{
|
|
{
|
|
bool L_1 = V_1;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0043;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_2 = V_0;
|
|
Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_2, NULL);
|
|
}
|
|
|
|
IL_0043:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
RuntimeObject* L_3 = V_0;
|
|
Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_3, (&V_1), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_4 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___static_writer;
|
|
NullCheck(L_4);
|
|
JsonWriter_Reset_mCFA289C24C9ECEE98AD50E970F0D1F032F7E1989(L_4, NULL);
|
|
RuntimeObject* L_5 = ___0_obj;
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_6 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___static_writer;
|
|
JsonMapper_WriteValue_m143881E655EEAE7440BFE564E13A2580A021DBDE(L_5, L_6, (bool)1, 0, NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_7 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___static_writer;
|
|
NullCheck(L_7);
|
|
String_t* L_8;
|
|
L_8 = VirtualFuncInvoker0< String_t* >::Invoke(3, L_7);
|
|
V_2 = L_8;
|
|
goto IL_0044;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0044:
|
|
{
|
|
String_t* L_9 = V_2;
|
|
return L_9;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper_ToJson_m3FBB1723553372CD6BACDEB43C496AA7264BBA63 (RuntimeObject* ___0_obj, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___1_writer, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject* L_0 = ___0_obj;
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_1 = ___1_writer;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
JsonMapper_WriteValue_m143881E655EEAE7440BFE564E13A2580A021DBDE(L_0, L_1, (bool)0, 0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonData_t3C51D89A19D30A47A74617107D861959322307F1* JsonMapper_ToObject_m6A0C017074DC44C7B7EAA323071870B8EA987FA5 (JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* ___0_reader, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonData_t3C51D89A19D30A47A74617107D861959322307F1_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CToObjectU3Eb__30_0_m2FFFC43FA88F7AFFC5F686832A8BE925525A1249_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* V_0 = NULL;
|
|
WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* G_B2_0 = NULL;
|
|
WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* G_B1_0 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* L_0 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__30_0;
|
|
WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* L_1 = L_0;
|
|
if (L_1)
|
|
{
|
|
G_B2_0 = L_1;
|
|
goto IL_0020;
|
|
}
|
|
G_B1_0 = L_1;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* L_2 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* L_3 = (WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD*)il2cpp_codegen_object_new(WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD_il2cpp_TypeInfo_var);
|
|
WrapperFactory__ctor_mDCB80755422A0F810CF4702BBE931A9B4AE5C809(L_3, L_2, (intptr_t)((void*)U3CU3Ec_U3CToObjectU3Eb__30_0_m2FFFC43FA88F7AFFC5F686832A8BE925525A1249_RuntimeMethod_var), NULL);
|
|
WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* L_4 = L_3;
|
|
((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__30_0 = L_4;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__30_0), (void*)L_4);
|
|
G_B2_0 = L_4;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_5 = ___0_reader;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_6;
|
|
L_6 = JsonMapper_ToWrapper_m28AEBBDAD4A1AC70073753BC264C59020323B8A1(G_B2_0, L_5, NULL);
|
|
V_0 = ((JsonData_t3C51D89A19D30A47A74617107D861959322307F1*)CastclassClass((RuntimeObject*)L_6, JsonData_t3C51D89A19D30A47A74617107D861959322307F1_il2cpp_TypeInfo_var));
|
|
goto IL_002e;
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_7 = V_0;
|
|
return L_7;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonData_t3C51D89A19D30A47A74617107D861959322307F1* JsonMapper_ToObject_m3F247D9F223246365382A07DA1BB60C14A177CAE (TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___0_reader, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonData_t3C51D89A19D30A47A74617107D861959322307F1_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CToObjectU3Eb__31_0_m7A4483477BF06A72E4BAF9FF1EC7BB0D5144AE00_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* V_0 = NULL;
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* V_1 = NULL;
|
|
WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* G_B2_0 = NULL;
|
|
WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* G_B1_0 = NULL;
|
|
{
|
|
TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* L_0 = ___0_reader;
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_1 = (JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD*)il2cpp_codegen_object_new(JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD_il2cpp_TypeInfo_var);
|
|
JsonReader__ctor_m796FB622ADB958C9EC9B9F937C12B72B6424DE3A(L_1, L_0, NULL);
|
|
V_0 = L_1;
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* L_2 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__31_0;
|
|
WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* L_3 = L_2;
|
|
if (L_3)
|
|
{
|
|
G_B2_0 = L_3;
|
|
goto IL_0027;
|
|
}
|
|
G_B1_0 = L_3;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* L_4 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* L_5 = (WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD*)il2cpp_codegen_object_new(WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD_il2cpp_TypeInfo_var);
|
|
WrapperFactory__ctor_mDCB80755422A0F810CF4702BBE931A9B4AE5C809(L_5, L_4, (intptr_t)((void*)U3CU3Ec_U3CToObjectU3Eb__31_0_m7A4483477BF06A72E4BAF9FF1EC7BB0D5144AE00_RuntimeMethod_var), NULL);
|
|
WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* L_6 = L_5;
|
|
((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__31_0 = L_6;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__31_0), (void*)L_6);
|
|
G_B2_0 = L_6;
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_7 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_8;
|
|
L_8 = JsonMapper_ToWrapper_m28AEBBDAD4A1AC70073753BC264C59020323B8A1(G_B2_0, L_7, NULL);
|
|
V_1 = ((JsonData_t3C51D89A19D30A47A74617107D861959322307F1*)CastclassClass((RuntimeObject*)L_8, JsonData_t3C51D89A19D30A47A74617107D861959322307F1_il2cpp_TypeInfo_var));
|
|
goto IL_0035;
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_9 = V_1;
|
|
return L_9;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonData_t3C51D89A19D30A47A74617107D861959322307F1* JsonMapper_ToObject_m4CE0C423373F28612B2140D6D1A3DCE4F9161FBA (String_t* ___0_json, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonData_t3C51D89A19D30A47A74617107D861959322307F1_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CToObjectU3Eb__32_0_m976B8254EA28F3AAC16AEF020195280AE0A1B26F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* V_0 = NULL;
|
|
WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* G_B2_0 = NULL;
|
|
WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* G_B1_0 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* L_0 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__32_0;
|
|
WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* L_1 = L_0;
|
|
if (L_1)
|
|
{
|
|
G_B2_0 = L_1;
|
|
goto IL_0020;
|
|
}
|
|
G_B1_0 = L_1;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* L_2 = ((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* L_3 = (WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD*)il2cpp_codegen_object_new(WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD_il2cpp_TypeInfo_var);
|
|
WrapperFactory__ctor_mDCB80755422A0F810CF4702BBE931A9B4AE5C809(L_3, L_2, (intptr_t)((void*)U3CU3Ec_U3CToObjectU3Eb__32_0_m976B8254EA28F3AAC16AEF020195280AE0A1B26F_RuntimeMethod_var), NULL);
|
|
WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* L_4 = L_3;
|
|
((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__32_0 = L_4;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9__32_0), (void*)L_4);
|
|
G_B2_0 = L_4;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
String_t* L_5 = ___0_json;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_6;
|
|
L_6 = JsonMapper_ToWrapper_mA6DFAACCFE4197B6B71E3AB7B325EF9C5D0739E6(G_B2_0, L_5, NULL);
|
|
V_0 = ((JsonData_t3C51D89A19D30A47A74617107D861959322307F1*)CastclassClass((RuntimeObject*)L_6, JsonData_t3C51D89A19D30A47A74617107D861959322307F1_il2cpp_TypeInfo_var));
|
|
goto IL_002e;
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_7 = V_0;
|
|
return L_7;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonMapper_ToObject_mC4A1C96DECA13AD93F34DE3049E8D0B3BE4932FC (String_t* ___0_json, Type_t* ___1_ConvertType, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
{
|
|
String_t* L_0 = ___0_json;
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_1 = (JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD*)il2cpp_codegen_object_new(JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD_il2cpp_TypeInfo_var);
|
|
JsonReader__ctor_mA7B3448630453E385BCAADCA985410AFFCE4ACC3(L_1, L_0, NULL);
|
|
V_0 = L_1;
|
|
Type_t* L_2 = ___1_ConvertType;
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_3 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_4;
|
|
L_4 = JsonMapper_ReadValue_m12EFFE983BBE0A9254AA072EFEFB7A6156F094E6(L_2, L_3, NULL);
|
|
V_1 = L_4;
|
|
goto IL_0012;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
RuntimeObject* L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonMapper_ToWrapper_m28AEBBDAD4A1AC70073753BC264C59020323B8A1 (WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* ___0_factory, JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* ___1_reader, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* L_0 = ___0_factory;
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_1 = ___1_reader;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_2;
|
|
L_2 = JsonMapper_ReadValue_m1E79EF3FC740E018A6C14D7D4A5D9FBE12239856(L_0, L_1, NULL);
|
|
V_0 = L_2;
|
|
goto IL_000b;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
RuntimeObject* L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonMapper_ToWrapper_mA6DFAACCFE4197B6B71E3AB7B325EF9C5D0739E6 (WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* ___0_factory, String_t* ___1_json, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
{
|
|
String_t* L_0 = ___1_json;
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_1 = (JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD*)il2cpp_codegen_object_new(JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD_il2cpp_TypeInfo_var);
|
|
JsonReader__ctor_mA7B3448630453E385BCAADCA985410AFFCE4ACC3(L_1, L_0, NULL);
|
|
V_0 = L_1;
|
|
WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* L_2 = ___0_factory;
|
|
JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* L_3 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_4;
|
|
L_4 = JsonMapper_ReadValue_m1E79EF3FC740E018A6C14D7D4A5D9FBE12239856(L_2, L_3, NULL);
|
|
V_1 = L_4;
|
|
goto IL_0012;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
RuntimeObject* L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper_UnregisterExporters_m8F552F5571351C749E0610D98C679CD8242D0443 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_t3D10824E2D7EC716BB4188AE53FF69437B9FDED5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_0 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___custom_exporters_table;
|
|
NullCheck(L_0);
|
|
InterfaceActionInvoker0::Invoke(3, ICollection_1_t3D10824E2D7EC716BB4188AE53FF69437B9FDED5_il2cpp_TypeInfo_var, L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper_UnregisterImporters_m7FEEE56F8530938EC1FBE2AFB0846355E4E591B9 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_tD9AFA6DDEDB81906ED90E6DD2E1A6E8CB9A28A97_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_0 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___custom_importers_table;
|
|
NullCheck(L_0);
|
|
InterfaceActionInvoker0::Invoke(3, ICollection_1_tD9AFA6DDEDB81906ED90E6DD2E1A6E8CB9A28A97_il2cpp_TypeInfo_var, L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper__ctor_m4EFA59D3C6A7E23D70386738A91ACDCF437E6E8A (JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, 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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_mA7F1C5BA2AE2E80D4A7D523E978CB5ADD8129D12 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* L_0 = (U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D*)il2cpp_codegen_object_new(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var);
|
|
U3CU3Ec__ctor_mF25B9BFAB5148748E869E737C327A39D588D475B(L_0, NULL);
|
|
((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D_il2cpp_TypeInfo_var))->___U3CU3E9), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_mF25B9BFAB5148748E869E737C327A39D588D475B (U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CU3Ec_U3CReadSkipU3Eb__23_0_m7074B21692E9EFD286668701F7FD89898F967FDB (U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* L_0 = (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB*)il2cpp_codegen_object_new(JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB_il2cpp_TypeInfo_var);
|
|
JsonMockWrapper__ctor_m3BE3D4DCA8629B8339CD51D1A7CF9F519376A641(L_0, NULL);
|
|
V_0 = L_0;
|
|
goto IL_0009;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
RuntimeObject* L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec_U3CRegisterBaseExportersU3Eb__24_0_mEA8451E773AD80B42C0AD938BB1F036F74AF47A8 (U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* __this, RuntimeObject* ___0_obj, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___1_writer, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_0 = ___1_writer;
|
|
RuntimeObject* L_1 = ___0_obj;
|
|
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
int32_t L_2;
|
|
L_2 = Convert_ToInt32_mD8869793A34ED86D38EFDF4BFCDD8D03FBBCCAB6(((*(uint8_t*)((uint8_t*)(uint8_t*)UnBox(L_1, Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var)))), NULL);
|
|
NullCheck(L_0);
|
|
JsonWriter_Write_m3A3246FEFCA9BCEB4F3E7D2D5AC0FF49B8BBD3A7(L_0, L_2, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec_U3CRegisterBaseExportersU3Eb__24_1_mF07BD87EA371F70F1AC4F5B3983A1E56C946E2E0 (U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* __this, RuntimeObject* ___0_obj, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___1_writer, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_0 = ___1_writer;
|
|
RuntimeObject* L_1 = ___0_obj;
|
|
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
String_t* L_2;
|
|
L_2 = Convert_ToString_m8270C8361D2796C5C4659D441829CAFEEFBAC91C(((*(Il2CppChar*)((Il2CppChar*)(Il2CppChar*)UnBox(L_1, Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var)))), NULL);
|
|
NullCheck(L_0);
|
|
JsonWriter_Write_mC6C394BE18186CAEB8597055057A1AECDEE56916(L_0, L_2, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec_U3CRegisterBaseExportersU3Eb__24_2_m3570961EF7CB535D815B01B2E75970154A44C1CB (U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* __this, RuntimeObject* ___0_obj, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___1_writer, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_0 = ___1_writer;
|
|
RuntimeObject* L_1 = ___0_obj;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_2 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___datetime_format;
|
|
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
String_t* L_3;
|
|
L_3 = Convert_ToString_m942B26CABBBFDCE9F1E647B15CA98F03D50976A0(((*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)UnBox(L_1, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var)))), L_2, NULL);
|
|
NullCheck(L_0);
|
|
JsonWriter_Write_mC6C394BE18186CAEB8597055057A1AECDEE56916(L_0, L_3, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec_U3CRegisterBaseExportersU3Eb__24_3_m437A270B128418DD0FDB4F1C1102CFC0C1156CA9 (U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* __this, RuntimeObject* ___0_obj, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___1_writer, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_0 = ___1_writer;
|
|
RuntimeObject* L_1 = ___0_obj;
|
|
NullCheck(L_0);
|
|
JsonWriter_Write_m2042A55B478D11A2C4BB399CE96C17DB3D85133A(L_0, ((*(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F*)((Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F*)(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F*)UnBox(L_1, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var)))), NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec_U3CRegisterBaseExportersU3Eb__24_4_mE52A127C58303F167191B6ACE7CD95D390D03FAA (U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* __this, RuntimeObject* ___0_obj, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___1_writer, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_0 = ___1_writer;
|
|
RuntimeObject* L_1 = ___0_obj;
|
|
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
int32_t L_2;
|
|
L_2 = Convert_ToInt32_m9FD81A0DC7D2A34B74068ACA2F311270937DA2A2(((*(int8_t*)((int8_t*)(int8_t*)UnBox(L_1, SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_il2cpp_TypeInfo_var)))), NULL);
|
|
NullCheck(L_0);
|
|
JsonWriter_Write_m3A3246FEFCA9BCEB4F3E7D2D5AC0FF49B8BBD3A7(L_0, L_2, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec_U3CRegisterBaseExportersU3Eb__24_5_m5C055FF98C94616CED18E073093097C052D8C911 (U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* __this, RuntimeObject* ___0_obj, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___1_writer, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_0 = ___1_writer;
|
|
RuntimeObject* L_1 = ___0_obj;
|
|
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
int32_t L_2;
|
|
L_2 = Convert_ToInt32_m708CB4FF71A3D4E08CBAAF70F290D093BD80AFCC(((*(int16_t*)((int16_t*)(int16_t*)UnBox(L_1, Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_il2cpp_TypeInfo_var)))), NULL);
|
|
NullCheck(L_0);
|
|
JsonWriter_Write_m3A3246FEFCA9BCEB4F3E7D2D5AC0FF49B8BBD3A7(L_0, L_2, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec_U3CRegisterBaseExportersU3Eb__24_6_m12211EE75901E156D59A696B882BAB20904FA17E (U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* __this, RuntimeObject* ___0_obj, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___1_writer, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_0 = ___1_writer;
|
|
RuntimeObject* L_1 = ___0_obj;
|
|
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
int32_t L_2;
|
|
L_2 = Convert_ToInt32_m350A3CBA3E031A3D53D14062D7E4ABB4A33F5438(((*(uint16_t*)((uint16_t*)(uint16_t*)UnBox(L_1, UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_il2cpp_TypeInfo_var)))), NULL);
|
|
NullCheck(L_0);
|
|
JsonWriter_Write_m3A3246FEFCA9BCEB4F3E7D2D5AC0FF49B8BBD3A7(L_0, L_2, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec_U3CRegisterBaseExportersU3Eb__24_7_m19293FEE634D2346F9B7FA26BAC06D26A72F4CC2 (U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* __this, RuntimeObject* ___0_obj, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___1_writer, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_0 = ___1_writer;
|
|
RuntimeObject* L_1 = ___0_obj;
|
|
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
uint64_t L_2;
|
|
L_2 = Convert_ToUInt64_m91C774E0D3AA8368D12AB8E2036E823C4FA9CB92(((*(uint32_t*)((uint32_t*)(uint32_t*)UnBox(L_1, UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var)))), NULL);
|
|
NullCheck(L_0);
|
|
JsonWriter_Write_mA2318C6CCFB4A565564457D435FF8EDEDB0F6EAB(L_0, L_2, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec_U3CRegisterBaseExportersU3Eb__24_8_mEAB2AEC54786FAA72CB2BE0794628E1AB9CDC2BB (U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* __this, RuntimeObject* ___0_obj, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___1_writer, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_0 = ___1_writer;
|
|
RuntimeObject* L_1 = ___0_obj;
|
|
NullCheck(L_0);
|
|
JsonWriter_Write_mA2318C6CCFB4A565564457D435FF8EDEDB0F6EAB(L_0, ((*(uint64_t*)((uint64_t*)(uint64_t*)UnBox(L_1, UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var)))), NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec_U3CRegisterBaseExportersU3Eb__24_9_m68CDAD6EC8058ECD04A734B47D08ACBA41AAB1AA (U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* __this, RuntimeObject* ___0_obj, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___1_writer, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral242259752214E86B8CCBBF56AA4774B954BC34AD);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_0 = ___1_writer;
|
|
RuntimeObject* L_1 = ___0_obj;
|
|
V_0 = ((*(DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4*)((DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4*)(DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4*)UnBox(L_1, DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var))));
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_2 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___datetime_format;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var);
|
|
String_t* L_3;
|
|
L_3 = DateTimeOffset_ToString_m4B5BB65E069D2146E808A1CE5F424ACA2F4D2281((&V_0), _stringLiteral242259752214E86B8CCBBF56AA4774B954BC34AD, L_2, NULL);
|
|
NullCheck(L_0);
|
|
JsonWriter_Write_mC6C394BE18186CAEB8597055057A1AECDEE56916(L_0, L_3, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_0_mCE9EB639AA315BECDAC2A853C944635A87B6D925 (U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* __this, RuntimeObject* ___0_input, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___0_input;
|
|
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
uint8_t L_1;
|
|
L_1 = Convert_ToByte_mB200A29D6E5CE42D564544DF1DC8852BF3582833(((*(int32_t*)((int32_t*)(int32_t*)UnBox(L_0, Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)))), NULL);
|
|
uint8_t L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var, &L_2);
|
|
V_0 = L_3;
|
|
goto IL_0014;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
RuntimeObject* L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_1_m8869CABB6968F24C1EC2871532CE0274D284A39F (U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* __this, RuntimeObject* ___0_input, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___0_input;
|
|
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
uint64_t L_1;
|
|
L_1 = Convert_ToUInt64_m53C3A45C87A06F25957619222B04EABFD214373C(((*(int32_t*)((int32_t*)(int32_t*)UnBox(L_0, Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)))), NULL);
|
|
uint64_t L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var, &L_2);
|
|
V_0 = L_3;
|
|
goto IL_0014;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
RuntimeObject* L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_2_mDB0291CF44C8E288F1D3E10A3D4F7E7C54C4B96D (U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* __this, RuntimeObject* ___0_input, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___0_input;
|
|
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
int64_t L_1;
|
|
L_1 = Convert_ToInt64_m96FAEEA01C1BA082BB3925CC2099C0591DBF632A(((*(int32_t*)((int32_t*)(int32_t*)UnBox(L_0, Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)))), NULL);
|
|
int64_t L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var, &L_2);
|
|
V_0 = L_3;
|
|
goto IL_0014;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
RuntimeObject* L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_3_mBA0635D09ABC881387E386E60476208A31F3D4DD (U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* __this, RuntimeObject* ___0_input, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___0_input;
|
|
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
int8_t L_1;
|
|
L_1 = Convert_ToSByte_mA336C42E413A5559B3F47FCD8B45EDB538693E63(((*(int32_t*)((int32_t*)(int32_t*)UnBox(L_0, Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)))), NULL);
|
|
int8_t L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_il2cpp_TypeInfo_var, &L_2);
|
|
V_0 = L_3;
|
|
goto IL_0014;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
RuntimeObject* L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_4_mDCC251A8D7D91FFF36CB6AC596F2F651EF0D9565 (U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* __this, RuntimeObject* ___0_input, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___0_input;
|
|
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
int16_t L_1;
|
|
L_1 = Convert_ToInt16_mF65D8227B8B6F0E30A135BC5F01F1562455AD382(((*(int32_t*)((int32_t*)(int32_t*)UnBox(L_0, Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)))), NULL);
|
|
int16_t L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_il2cpp_TypeInfo_var, &L_2);
|
|
V_0 = L_3;
|
|
goto IL_0014;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
RuntimeObject* L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_5_mB3E27EBF9144F8166A52CE50CB35AEEA522E7B53 (U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* __this, RuntimeObject* ___0_input, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___0_input;
|
|
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
uint16_t L_1;
|
|
L_1 = Convert_ToUInt16_mA3ABC9268BA473D6F1C7801248D3200734180B2B(((*(int32_t*)((int32_t*)(int32_t*)UnBox(L_0, Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)))), NULL);
|
|
uint16_t L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_il2cpp_TypeInfo_var, &L_2);
|
|
V_0 = L_3;
|
|
goto IL_0014;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
RuntimeObject* L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_6_m055895C218F8E2E0449E3CA63B630AFEB4383467 (U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* __this, RuntimeObject* ___0_input, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___0_input;
|
|
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
uint32_t L_1;
|
|
L_1 = Convert_ToUInt32_m3BD840FA8B5073EDD04AD3D3A044785EB00511A3(((*(int32_t*)((int32_t*)(int32_t*)UnBox(L_0, Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)))), NULL);
|
|
uint32_t L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var, &L_2);
|
|
V_0 = L_3;
|
|
goto IL_0014;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
RuntimeObject* L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_7_m5F115FCD5246351C6757DB539D611CA16138AE11 (U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* __this, RuntimeObject* ___0_input, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___0_input;
|
|
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
float L_1;
|
|
L_1 = Convert_ToSingle_mE54B145DE1F8A182C3D1A66AEF3A95CB399C28CE(((*(int32_t*)((int32_t*)(int32_t*)UnBox(L_0, Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)))), NULL);
|
|
float L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var, &L_2);
|
|
V_0 = L_3;
|
|
goto IL_0014;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
RuntimeObject* L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_8_m8ACCC6E2C8E30BB288C157C28225A2A5F7712A23 (U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* __this, RuntimeObject* ___0_input, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___0_input;
|
|
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
double L_1;
|
|
L_1 = Convert_ToDouble_m21A92C91FFDA003BD27748AA55CA0A7D6C0E6694(((*(int32_t*)((int32_t*)(int32_t*)UnBox(L_0, Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)))), NULL);
|
|
double L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var, &L_2);
|
|
V_0 = L_3;
|
|
goto IL_0014;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
RuntimeObject* L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_9_mD593D324D0E00C89973CC1EC33723116107E41EE (U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* __this, RuntimeObject* ___0_input, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___0_input;
|
|
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1;
|
|
L_1 = Convert_ToDecimal_mAF1D2181BB8C5D3F25C0963245437B4AF4E6C575(((*(double*)((double*)(double*)UnBox(L_0, Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var)))), NULL);
|
|
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var, &L_2);
|
|
V_0 = L_3;
|
|
goto IL_0014;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
RuntimeObject* L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_10_m482CC7BA26F2FEDE6CDB0114B36F35EEDA0EC76A (U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* __this, RuntimeObject* ___0_input, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___0_input;
|
|
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
float L_1;
|
|
L_1 = Convert_ToSingle_mF6ADEF60A6A97E9E7E410D8D15B26F2D5995151E(((*(double*)((double*)(double*)UnBox(L_0, Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var)))), NULL);
|
|
float L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var, &L_2);
|
|
V_0 = L_3;
|
|
goto IL_0014;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
RuntimeObject* L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_11_mDBEA7FF7AE702AE8231AA53A3F58EF06DFD588D2 (U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* __this, RuntimeObject* ___0_input, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___0_input;
|
|
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
uint32_t L_1;
|
|
L_1 = Convert_ToUInt32_m8754C042D71DB6C81EB54D85B73B7EC2710E4FA0(((*(int64_t*)((int64_t*)(int64_t*)UnBox(L_0, Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var)))), NULL);
|
|
uint32_t L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var, &L_2);
|
|
V_0 = L_3;
|
|
goto IL_0014;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
RuntimeObject* L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_12_m1EF404DE0B87454CA206C71B70A27C71959A85D1 (U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* __this, RuntimeObject* ___0_input, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___0_input;
|
|
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
Il2CppChar L_1;
|
|
L_1 = Convert_ToChar_m1F2BBA9AD900A2570DE55F3E315BA7D9277E8230(((String_t*)CastclassSealed((RuntimeObject*)L_0, String_t_il2cpp_TypeInfo_var)), NULL);
|
|
Il2CppChar L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var, &L_2);
|
|
V_0 = L_3;
|
|
goto IL_0014;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
RuntimeObject* L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_13_m91E6999B2F0AC41B8549CA196A8AFEFF85D7B773 (U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* __this, RuntimeObject* ___0_input, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___0_input;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_1 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___datetime_format;
|
|
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_2;
|
|
L_2 = Convert_ToDateTime_mA5FF0ECBE84ECB78B337E4E101423CC9AA95C8C3(((String_t*)CastclassSealed((RuntimeObject*)L_0, String_t_il2cpp_TypeInfo_var)), L_1, NULL);
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_3 = L_2;
|
|
RuntimeObject* L_4 = Box(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var, &L_3);
|
|
V_0 = L_4;
|
|
goto IL_0019;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
RuntimeObject* L_5 = V_0;
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CU3Ec_U3CRegisterBaseImportersU3Eb__25_14_m5E0BAE710E3B9EB9FB08FFAA1DC512C9FA85974C (U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* __this, RuntimeObject* ___0_input, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___0_input;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_1 = ((JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var))->___datetime_format;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var);
|
|
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 L_2;
|
|
L_2 = DateTimeOffset_Parse_m8424EADCF014945BF1C47215B851C735B26BC341(((String_t*)CastclassSealed((RuntimeObject*)L_0, String_t_il2cpp_TypeInfo_var)), L_1, NULL);
|
|
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 L_3 = L_2;
|
|
RuntimeObject* L_4 = Box(DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var, &L_3);
|
|
V_0 = L_4;
|
|
goto IL_0019;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
RuntimeObject* L_5 = V_0;
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CU3Ec_U3CToObjectU3Eb__30_0_m2FFFC43FA88F7AFFC5F686832A8BE925525A1249 (U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonData_t3C51D89A19D30A47A74617107D861959322307F1_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_0 = (JsonData_t3C51D89A19D30A47A74617107D861959322307F1*)il2cpp_codegen_object_new(JsonData_t3C51D89A19D30A47A74617107D861959322307F1_il2cpp_TypeInfo_var);
|
|
JsonData__ctor_m6811B52CF3A742B6E425A0C8C02A7F475EC70C22(L_0, NULL);
|
|
V_0 = L_0;
|
|
goto IL_0009;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
RuntimeObject* L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CU3Ec_U3CToObjectU3Eb__31_0_m7A4483477BF06A72E4BAF9FF1EC7BB0D5144AE00 (U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonData_t3C51D89A19D30A47A74617107D861959322307F1_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_0 = (JsonData_t3C51D89A19D30A47A74617107D861959322307F1*)il2cpp_codegen_object_new(JsonData_t3C51D89A19D30A47A74617107D861959322307F1_il2cpp_TypeInfo_var);
|
|
JsonData__ctor_m6811B52CF3A742B6E425A0C8C02A7F475EC70C22(L_0, NULL);
|
|
V_0 = L_0;
|
|
goto IL_0009;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
RuntimeObject* L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CU3Ec_U3CToObjectU3Eb__32_0_m976B8254EA28F3AAC16AEF020195280AE0A1B26F (U3CU3Ec_t908A12620392AFC75CA4D67D039F5FD576166F2D* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonData_t3C51D89A19D30A47A74617107D861959322307F1_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
JsonData_t3C51D89A19D30A47A74617107D861959322307F1* L_0 = (JsonData_t3C51D89A19D30A47A74617107D861959322307F1*)il2cpp_codegen_object_new(JsonData_t3C51D89A19D30A47A74617107D861959322307F1_il2cpp_TypeInfo_var);
|
|
JsonData__ctor_m6811B52CF3A742B6E425A0C8C02A7F475EC70C22(L_0, NULL);
|
|
V_0 = L_0;
|
|
goto IL_0009;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
RuntimeObject* L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonMockWrapper_get_IsArray_m93C3D38B1FC4B7CDEAE4D662F680D0A24ADECD90 (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
V_0 = (bool)0;
|
|
goto IL_0005;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
bool L_0 = V_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonMockWrapper_get_IsBoolean_mD443D2E4571FB617C808FE2DFA2A263D5F0F96B7 (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
V_0 = (bool)0;
|
|
goto IL_0005;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
bool L_0 = V_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonMockWrapper_get_IsDouble_m1FCE21398A211A40FF6CBE9EBE1B1C61E3F93338 (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
V_0 = (bool)0;
|
|
goto IL_0005;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
bool L_0 = V_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonMockWrapper_get_IsInt_m84E47333B5575564FF8731D8EE712967C8975261 (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
V_0 = (bool)0;
|
|
goto IL_0005;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
bool L_0 = V_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonMockWrapper_get_IsLong_mDB02FA369D5D6A6208910C09EA7B7C8275EE1B4E (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
V_0 = (bool)0;
|
|
goto IL_0005;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
bool L_0 = V_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonMockWrapper_get_IsObject_mAE46C21A8A409DC24193FE6E6E49E0452302152A (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
V_0 = (bool)0;
|
|
goto IL_0005;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
bool L_0 = V_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonMockWrapper_get_IsString_mAAE4AC1D42AB248338B79B37418496F79A128B61 (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
V_0 = (bool)0;
|
|
goto IL_0005;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
bool L_0 = V_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonMockWrapper_GetBoolean_m67CD6C0C5D40BD043E90FB88F8851FFCC95D2CA8 (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
V_0 = (bool)0;
|
|
goto IL_0005;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
bool L_0 = V_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double JsonMockWrapper_GetDouble_mFC1566114ABCC1B3C70CDD7270183411ACA6A5F4 (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, const RuntimeMethod* method)
|
|
{
|
|
double V_0 = 0.0;
|
|
{
|
|
V_0 = (0.0);
|
|
goto IL_000d;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
double L_0 = V_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonMockWrapper_GetInt_mC56E5924FE8E3F68A0C0221DAE596C768D499C3F (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
V_0 = 0;
|
|
goto IL_0005;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
int32_t L_0 = V_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonMockWrapper_GetJsonType_m968DC92F69906F3321BCA72231E13A342A755C59 (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
V_0 = 0;
|
|
goto IL_0005;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
int32_t L_0 = V_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t JsonMockWrapper_GetLong_mD7292E8E8ACF505CE5A1D55E0324BD8EF6BD7DD0 (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, const RuntimeMethod* method)
|
|
{
|
|
int64_t V_0 = 0;
|
|
{
|
|
V_0 = ((int64_t)0);
|
|
goto IL_0006;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
int64_t L_0 = V_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonMockWrapper_GetString_mA74BAA0C58D17DFC1D8308101010B1F4B8F2DAC5 (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
{
|
|
String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty;
|
|
V_0 = L_0;
|
|
goto IL_0009;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
String_t* L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMockWrapper_SetBoolean_m7EF05CBA14129A4D623611196D1890139C424634 (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, bool ___0_val, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMockWrapper_SetDouble_m426D5C1AB93FD704430AD4CF36B0AA99834AD6AE (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, double ___0_val, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMockWrapper_SetInt_mCE8EBB5B5CEC2096046E81BADF436C9C2DA91550 (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, int32_t ___0_val, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMockWrapper_SetJsonType_m01D3944EBC04A1DC68F97D46A02B7A34284E7320 (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, int32_t ___0_type, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMockWrapper_SetLong_m2E95C2B3BB1538B0C695F005A4BB6951AFC32735 (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, int64_t ___0_val, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMockWrapper_SetString_m6FFF43B321A67EB22059138EDAB09309AEA5CA7A (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, String_t* ___0_val, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonMockWrapper_ToJson_m00A998E3223125D524285CEF5D3DB1EC78F74ED1 (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
{
|
|
String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty;
|
|
V_0 = L_0;
|
|
goto IL_0009;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
String_t* L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMockWrapper_ToJson_m7A6FB2E3267D413EA1E946C0CD926CF473642172 (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___0_writer, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonMockWrapper_System_Collections_IList_get_IsFixedSize_mF56B389990D9B50FC4A1F4EAEFC47AFA364FB60C (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
V_0 = (bool)1;
|
|
goto IL_0005;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
bool L_0 = V_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonMockWrapper_System_Collections_IList_get_IsReadOnly_mB132A5D26406C95107B527D6ADBCA9262761CBC8 (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
V_0 = (bool)1;
|
|
goto IL_0005;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
bool L_0 = V_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonMockWrapper_System_Collections_IList_get_Item_m324CBFA898839E7BF2BABF18544AC961DB3A7E67 (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
V_0 = NULL;
|
|
goto IL_0005;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
RuntimeObject* L_0 = V_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMockWrapper_System_Collections_IList_set_Item_mF046A351A900BB0AB5AA2DB213C958319DC9FE69 (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, int32_t ___0_index, RuntimeObject* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonMockWrapper_System_Collections_IList_Add_m3443C6967253955DA80A01773E78AE36A234CE79 (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, RuntimeObject* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
V_0 = 0;
|
|
goto IL_0005;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
int32_t L_0 = V_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMockWrapper_System_Collections_IList_Clear_m714C04E2FAB313824C2C36BDE5B5F4702DE4E3B9 (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonMockWrapper_System_Collections_IList_Contains_mFDB839839B65A3508AF4F382F77A815A9172B0F5 (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, RuntimeObject* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
V_0 = (bool)0;
|
|
goto IL_0005;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
bool L_0 = V_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonMockWrapper_System_Collections_IList_IndexOf_mB59A6663E7F72F989FED13B33DC27A95D534F4D4 (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, RuntimeObject* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
V_0 = (-1);
|
|
goto IL_0005;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
int32_t L_0 = V_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMockWrapper_System_Collections_IList_Insert_mC7A31C2FF1A41979BC0F3E20FED30DE32A8F3CFE (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, int32_t ___0_i, RuntimeObject* ___1_v, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMockWrapper_System_Collections_IList_Remove_m3A92175EDFE77DC964C3B39CAFDE724CE5F54BE3 (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, RuntimeObject* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMockWrapper_System_Collections_IList_RemoveAt_m7A8540720DD3CC42069DAF044B0DDD0E77A86EDC (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonMockWrapper_System_Collections_ICollection_get_Count_m6DB7D529AB7BC6DD7E139AF42F5BA2C81932AAED (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
V_0 = 0;
|
|
goto IL_0005;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
int32_t L_0 = V_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonMockWrapper_System_Collections_ICollection_get_IsSynchronized_m038593709061DCD5CFF6C2D86C0AAEC75151963A (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
V_0 = (bool)0;
|
|
goto IL_0005;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
bool L_0 = V_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonMockWrapper_System_Collections_ICollection_get_SyncRoot_mE5C988A28C7117087A7CBEAE8B31342E1643F5A2 (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
V_0 = NULL;
|
|
goto IL_0005;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
RuntimeObject* L_0 = V_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMockWrapper_System_Collections_ICollection_CopyTo_m838F1E991A8A0CD1374CA9F42B1E42A465082B8B (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, RuntimeArray* ___0_array, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonMockWrapper_System_Collections_IEnumerable_GetEnumerator_m2AE2782AB99835DC7F7604A05EBEA681096A886F (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
V_0 = (RuntimeObject*)NULL;
|
|
goto IL_0005;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
RuntimeObject* L_0 = V_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonMockWrapper_System_Collections_IDictionary_get_IsFixedSize_mEB5D9B847BD8C1910E4AB7E38DBE106DCBE6C1F6 (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
V_0 = (bool)1;
|
|
goto IL_0005;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
bool L_0 = V_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonMockWrapper_System_Collections_IDictionary_get_IsReadOnly_mAD70DF8FDC5CA54485708AD7B1DEDCFA3FEC9BF6 (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
V_0 = (bool)1;
|
|
goto IL_0005;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
bool L_0 = V_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonMockWrapper_System_Collections_IDictionary_get_Keys_m01CDCFD88272836290AD61721FF2347824AABE14 (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
V_0 = (RuntimeObject*)NULL;
|
|
goto IL_0005;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
RuntimeObject* L_0 = V_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonMockWrapper_System_Collections_IDictionary_get_Values_m54920DB84AF441171049DB97109A0CCDDA5C9DCD (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
V_0 = (RuntimeObject*)NULL;
|
|
goto IL_0005;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
RuntimeObject* L_0 = V_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonMockWrapper_System_Collections_IDictionary_get_Item_mA8C517671013998FA19A4A6998D5821F80B91BD8 (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, RuntimeObject* ___0_key, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
V_0 = NULL;
|
|
goto IL_0005;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
RuntimeObject* L_0 = V_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMockWrapper_System_Collections_IDictionary_set_Item_m11CBF4A8458DC5AD8DFD3B270E570CEA6BAFE311 (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, RuntimeObject* ___0_key, RuntimeObject* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMockWrapper_System_Collections_IDictionary_Add_m3DEA9BAA7BE6AC823869CD6823EF372595C42795 (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, RuntimeObject* ___0_k, RuntimeObject* ___1_v, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMockWrapper_System_Collections_IDictionary_Clear_m354CC50FCDE5A81C66A35FBD5575FFCCDA6DE0E4 (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonMockWrapper_System_Collections_IDictionary_Contains_mE78D5C7AA89DF8EF97AE62AB69604AD3AA502B6C (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, RuntimeObject* ___0_key, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
V_0 = (bool)0;
|
|
goto IL_0005;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
bool L_0 = V_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMockWrapper_System_Collections_IDictionary_Remove_mB3624EF8BDCB92B08141EBC165544EECE55EC620 (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, RuntimeObject* ___0_key, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonMockWrapper_System_Collections_IDictionary_GetEnumerator_m0525E1EE8066E7B97A52A0D387E1136DCE57B7D8 (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
V_0 = (RuntimeObject*)NULL;
|
|
goto IL_0005;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
RuntimeObject* L_0 = V_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonMockWrapper_System_Collections_Specialized_IOrderedDictionary_get_Item_m893B39F9CE1BB6B11FF46FF08B98A6AD27A0FAF6 (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, int32_t ___0_idx, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
V_0 = NULL;
|
|
goto IL_0005;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
RuntimeObject* L_0 = V_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMockWrapper_System_Collections_Specialized_IOrderedDictionary_set_Item_mA7AC1950398E6DC15FB1B25673887CC2BC0DDB9F (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, int32_t ___0_idx, RuntimeObject* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonMockWrapper_System_Collections_Specialized_IOrderedDictionary_GetEnumerator_mF32CDBF8089CF7F95DE32C87028719A6774B7592 (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
V_0 = (RuntimeObject*)NULL;
|
|
goto IL_0005;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
RuntimeObject* L_0 = V_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMockWrapper_System_Collections_Specialized_IOrderedDictionary_Insert_m2B94A6397311B8B0F38CAB567833DE1D0CEBEF1D (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, int32_t ___0_i, RuntimeObject* ___1_k, RuntimeObject* ___2_v, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMockWrapper_System_Collections_Specialized_IOrderedDictionary_RemoveAt_m632DF31D07B8D996B32FCB9D5111D67A78E3C144 (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, int32_t ___0_i, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMockWrapper__ctor_m3BE3D4DCA8629B8339CD51D1A7CF9F519376A641 (JsonMockWrapper_t1307E083A859AFEC66C78C143D33726957B3E8DB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonReader_get_AllowComments_mC545DEA4DEF8BD93D5697DB9AFDEE65AE4EFA6F6 (JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_0 = __this->___lexer;
|
|
NullCheck(L_0);
|
|
bool L_1;
|
|
L_1 = Lexer_get_AllowComments_m0810E49622D9958F3C841466EEE6A9695B09F8AB(L_0, NULL);
|
|
V_0 = L_1;
|
|
goto IL_000f;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
bool L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader_set_AllowComments_m33ED48F247F6DA42BA8A583170D31BA4C51C30E4 (JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_0 = __this->___lexer;
|
|
bool L_1 = ___0_value;
|
|
NullCheck(L_0);
|
|
Lexer_set_AllowComments_mD446284CCEBEE8C862E32DCC4C3503D0BA8AF25A(L_0, L_1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonReader_get_AllowSingleQuotedStrings_mEDC14EF3B3F603B0C152CAFFD5BFFC8CF0BEE8C6 (JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_0 = __this->___lexer;
|
|
NullCheck(L_0);
|
|
bool L_1;
|
|
L_1 = Lexer_get_AllowSingleQuotedStrings_m1A632DD60FDED6764AEF678AA716DDB98103A763(L_0, NULL);
|
|
V_0 = L_1;
|
|
goto IL_000f;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
bool L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader_set_AllowSingleQuotedStrings_mA3BC7969C81E0D65C419DA9986921287B19A368D (JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_0 = __this->___lexer;
|
|
bool L_1 = ___0_value;
|
|
NullCheck(L_0);
|
|
Lexer_set_AllowSingleQuotedStrings_mA18FE918B277D75318D4DB37638C04173C05A305(L_0, L_1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonReader_get_SkipNonMembers_mD965BE953D678EA7BE0DBC707DFFB8BB7ADA1531 (JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0 = __this->___skip_non_members;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader_set_SkipNonMembers_m397B6B1DD20B1C9C3F24371A7B4FDB65CDB63877 (JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_value;
|
|
__this->___skip_non_members = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonReader_get_EndOfInput_m95CB8B1F42A424E1A08288A8DA2DD93B6386C2CE (JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0 = __this->___end_of_input;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonReader_get_EndOfJson_m22A0E4F711E833BFD49D80CC442191260EAAB13C (JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0 = __this->___end_of_json;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonReader_get_Token_m519B39A4B87C3A9A7B424AECAE7FDA64B946E975 (JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->___token;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
int32_t L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonReader_get_Value_mF219BCB43B2F020C1B67935AA63A40ECD1EE4C05 (JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* __this, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = __this->___token_value;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
RuntimeObject* L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader__cctor_mA3D3F44D91D95EE86E0813A91391537E68F2EF5E (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = JsonReader_PopulateParseTable_m8BEAB08A46464F43834962A9CE305162826975E1(NULL);
|
|
((JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD_StaticFields*)il2cpp_codegen_static_fields_for(JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD_il2cpp_TypeInfo_var))->___parse_table = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD_StaticFields*)il2cpp_codegen_static_fields_for(JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD_il2cpp_TypeInfo_var))->___parse_table), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader__ctor_mA7B3448630453E385BCAADCA985410AFFCE4ACC3 (JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* __this, String_t* ___0_json_text, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringReader_t1A336148FF22A9584E759A9D720CC96C23E35DD8_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = ___0_json_text;
|
|
StringReader_t1A336148FF22A9584E759A9D720CC96C23E35DD8* L_1 = (StringReader_t1A336148FF22A9584E759A9D720CC96C23E35DD8*)il2cpp_codegen_object_new(StringReader_t1A336148FF22A9584E759A9D720CC96C23E35DD8_il2cpp_TypeInfo_var);
|
|
StringReader__ctor_m72556EC1062F49E05CF41B0825AC7FA2DB2A81C0(L_1, L_0, NULL);
|
|
JsonReader__ctor_mDC4C842CE01B549E193647B6BFEE5420187C446A(__this, L_1, (bool)1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader__ctor_m796FB622ADB958C9EC9B9F937C12B72B6424DE3A (JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* __this, TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___0_reader, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* L_0 = ___0_reader;
|
|
JsonReader__ctor_mDC4C842CE01B549E193647B6BFEE5420187C446A(__this, L_0, (bool)0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader__ctor_mDC4C842CE01B549E193647B6BFEE5420187C446A (JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* __this, TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___0_reader, bool ___1_owned, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Push_mF7CC12CF73D9D4B66FFA2E2D264270212CAB3EDA_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1__ctor_mF63AE96E8925749CDACE05B89002A389DDD748D1_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_t3197E0F5EA36E611B259A88751D31FC2396FE4B6_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* L_0 = ___0_reader;
|
|
V_0 = (bool)((((RuntimeObject*)(TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralECAC83771A00C701043A940F621CC1C765D30D31)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonReader__ctor_mDC4C842CE01B549E193647B6BFEE5420187C446A_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
__this->___parser_in_string = (bool)0;
|
|
__this->___parser_return = (bool)0;
|
|
__this->___read_started = (bool)0;
|
|
Stack_1_t3197E0F5EA36E611B259A88751D31FC2396FE4B6* L_3 = (Stack_1_t3197E0F5EA36E611B259A88751D31FC2396FE4B6*)il2cpp_codegen_object_new(Stack_1_t3197E0F5EA36E611B259A88751D31FC2396FE4B6_il2cpp_TypeInfo_var);
|
|
Stack_1__ctor_mF63AE96E8925749CDACE05B89002A389DDD748D1(L_3, Stack_1__ctor_mF63AE96E8925749CDACE05B89002A389DDD748D1_RuntimeMethod_var);
|
|
__this->___automaton_stack = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___automaton_stack), (void*)L_3);
|
|
Stack_1_t3197E0F5EA36E611B259A88751D31FC2396FE4B6* L_4 = __this->___automaton_stack;
|
|
NullCheck(L_4);
|
|
Stack_1_Push_mF7CC12CF73D9D4B66FFA2E2D264270212CAB3EDA(L_4, ((int32_t)65553), Stack_1_Push_mF7CC12CF73D9D4B66FFA2E2D264270212CAB3EDA_RuntimeMethod_var);
|
|
Stack_1_t3197E0F5EA36E611B259A88751D31FC2396FE4B6* L_5 = __this->___automaton_stack;
|
|
NullCheck(L_5);
|
|
Stack_1_Push_mF7CC12CF73D9D4B66FFA2E2D264270212CAB3EDA(L_5, ((int32_t)65543), Stack_1_Push_mF7CC12CF73D9D4B66FFA2E2D264270212CAB3EDA_RuntimeMethod_var);
|
|
TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* L_6 = ___0_reader;
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_7 = (Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9*)il2cpp_codegen_object_new(Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9_il2cpp_TypeInfo_var);
|
|
Lexer__ctor_mEF8BD28E77BCC5B98C34C9CE51CD2DCF786CA5A9(L_7, L_6, NULL);
|
|
__this->___lexer = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___lexer), (void*)L_7);
|
|
__this->___end_of_input = (bool)0;
|
|
__this->___end_of_json = (bool)0;
|
|
__this->___skip_non_members = (bool)1;
|
|
TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* L_8 = ___0_reader;
|
|
__this->___reader = L_8;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___reader), (void*)L_8);
|
|
bool L_9 = ___1_owned;
|
|
__this->___reader_is_owned = L_9;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonReader_PopulateParseTable_m8BEAB08A46464F43834962A9CE305162826975E1 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_mF37C098D396E6388CF354D6F37970685A85B6FC0_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t403ABC2FA2D9740F9ADD28DB8815C00EE2DB4249_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9B0B2A8DD3C1F36C25925A26EB3ED0CB0DF8189E____59B7E757844D3BF9299877BD1C17451611BFBAB493374D6B18D973FDE534151A_FieldInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9B0B2A8DD3C1F36C25925A26EB3ED0CB0DF8189E____5B979F69B96A61586A09DD4ED26F20534C629B08732AE32FA34B6F8A0049ACDD_FieldInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9B0B2A8DD3C1F36C25925A26EB3ED0CB0DF8189E____7FCA397EF25DB53B2C58A05F9BBFA4E8E0685FDBC8AAF39536123447056895C0_FieldInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9B0B2A8DD3C1F36C25925A26EB3ED0CB0DF8189E____B257E85A5D3CAB5E738D5A0FD1A7AE96624BFE92CB7915726CBBE1518C3225CF_FieldInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9B0B2A8DD3C1F36C25925A26EB3ED0CB0DF8189E____B7A918F6F138CA8137025633559198B529D28CCEC5A51B005376CC69A5B83D85_FieldInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9B0B2A8DD3C1F36C25925A26EB3ED0CB0DF8189E____FC03ECB1D62767A5B31230F548FA4D4C02F01E3DA8CA1FC66C7C332EA16BF206_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
{
|
|
Dictionary_2_t403ABC2FA2D9740F9ADD28DB8815C00EE2DB4249* L_0 = (Dictionary_2_t403ABC2FA2D9740F9ADD28DB8815C00EE2DB4249*)il2cpp_codegen_object_new(Dictionary_2_t403ABC2FA2D9740F9ADD28DB8815C00EE2DB4249_il2cpp_TypeInfo_var);
|
|
Dictionary_2__ctor_mF37C098D396E6388CF354D6F37970685A85B6FC0(L_0, Dictionary_2__ctor_mF37C098D396E6388CF354D6F37970685A85B6FC0_RuntimeMethod_var);
|
|
V_0 = L_0;
|
|
RuntimeObject* L_1 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD_il2cpp_TypeInfo_var);
|
|
JsonReader_TableAddRow_m8F5C42C2EACF441CB7BEF6D0BEDE8BB391BBFFD9(L_1, ((int32_t)65548), NULL);
|
|
RuntimeObject* L_2 = V_0;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_3 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)2);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_4 = L_3;
|
|
NullCheck(L_4);
|
|
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(0), (int32_t)((int32_t)91));
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_5 = L_4;
|
|
NullCheck(L_5);
|
|
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(1), (int32_t)((int32_t)65549));
|
|
JsonReader_TableAddCol_m0338A51AAF69ECAF72215F845D4629D60FF7908C(L_2, ((int32_t)65548), ((int32_t)91), L_5, NULL);
|
|
RuntimeObject* L_6 = V_0;
|
|
JsonReader_TableAddRow_m8F5C42C2EACF441CB7BEF6D0BEDE8BB391BBFFD9(L_6, ((int32_t)65549), NULL);
|
|
RuntimeObject* L_7 = V_0;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_8 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)3);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_9 = L_8;
|
|
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_10 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9B0B2A8DD3C1F36C25925A26EB3ED0CB0DF8189E____7FCA397EF25DB53B2C58A05F9BBFA4E8E0685FDBC8AAF39536123447056895C0_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_9, L_10, NULL);
|
|
JsonReader_TableAddCol_m0338A51AAF69ECAF72215F845D4629D60FF7908C(L_7, ((int32_t)65549), ((int32_t)34), L_9, NULL);
|
|
RuntimeObject* L_11 = V_0;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_12 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)3);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_13 = L_12;
|
|
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_14 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9B0B2A8DD3C1F36C25925A26EB3ED0CB0DF8189E____7FCA397EF25DB53B2C58A05F9BBFA4E8E0685FDBC8AAF39536123447056895C0_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_13, L_14, NULL);
|
|
JsonReader_TableAddCol_m0338A51AAF69ECAF72215F845D4629D60FF7908C(L_11, ((int32_t)65549), ((int32_t)91), L_13, NULL);
|
|
RuntimeObject* L_15 = V_0;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_16 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)1);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_17 = L_16;
|
|
NullCheck(L_17);
|
|
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(0), (int32_t)((int32_t)93));
|
|
JsonReader_TableAddCol_m0338A51AAF69ECAF72215F845D4629D60FF7908C(L_15, ((int32_t)65549), ((int32_t)93), L_17, NULL);
|
|
RuntimeObject* L_18 = V_0;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_19 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)3);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_20 = L_19;
|
|
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_21 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9B0B2A8DD3C1F36C25925A26EB3ED0CB0DF8189E____7FCA397EF25DB53B2C58A05F9BBFA4E8E0685FDBC8AAF39536123447056895C0_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_20, L_21, NULL);
|
|
JsonReader_TableAddCol_m0338A51AAF69ECAF72215F845D4629D60FF7908C(L_18, ((int32_t)65549), ((int32_t)123), L_20, NULL);
|
|
RuntimeObject* L_22 = V_0;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_23 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)3);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_24 = L_23;
|
|
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_25 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9B0B2A8DD3C1F36C25925A26EB3ED0CB0DF8189E____7FCA397EF25DB53B2C58A05F9BBFA4E8E0685FDBC8AAF39536123447056895C0_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_24, L_25, NULL);
|
|
JsonReader_TableAddCol_m0338A51AAF69ECAF72215F845D4629D60FF7908C(L_22, ((int32_t)65549), ((int32_t)65537), L_24, NULL);
|
|
RuntimeObject* L_26 = V_0;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_27 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)3);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_28 = L_27;
|
|
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_29 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9B0B2A8DD3C1F36C25925A26EB3ED0CB0DF8189E____7FCA397EF25DB53B2C58A05F9BBFA4E8E0685FDBC8AAF39536123447056895C0_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_28, L_29, NULL);
|
|
JsonReader_TableAddCol_m0338A51AAF69ECAF72215F845D4629D60FF7908C(L_26, ((int32_t)65549), ((int32_t)65538), L_28, NULL);
|
|
RuntimeObject* L_30 = V_0;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_31 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)3);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_32 = L_31;
|
|
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_33 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9B0B2A8DD3C1F36C25925A26EB3ED0CB0DF8189E____7FCA397EF25DB53B2C58A05F9BBFA4E8E0685FDBC8AAF39536123447056895C0_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_32, L_33, NULL);
|
|
JsonReader_TableAddCol_m0338A51AAF69ECAF72215F845D4629D60FF7908C(L_30, ((int32_t)65549), ((int32_t)65539), L_32, NULL);
|
|
RuntimeObject* L_34 = V_0;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_35 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)3);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_36 = L_35;
|
|
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_37 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9B0B2A8DD3C1F36C25925A26EB3ED0CB0DF8189E____7FCA397EF25DB53B2C58A05F9BBFA4E8E0685FDBC8AAF39536123447056895C0_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_36, L_37, NULL);
|
|
JsonReader_TableAddCol_m0338A51AAF69ECAF72215F845D4629D60FF7908C(L_34, ((int32_t)65549), ((int32_t)65540), L_36, NULL);
|
|
RuntimeObject* L_38 = V_0;
|
|
JsonReader_TableAddRow_m8F5C42C2EACF441CB7BEF6D0BEDE8BB391BBFFD9(L_38, ((int32_t)65544), NULL);
|
|
RuntimeObject* L_39 = V_0;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_40 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)2);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_41 = L_40;
|
|
NullCheck(L_41);
|
|
(L_41)->SetAt(static_cast<il2cpp_array_size_t>(0), (int32_t)((int32_t)123));
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_42 = L_41;
|
|
NullCheck(L_42);
|
|
(L_42)->SetAt(static_cast<il2cpp_array_size_t>(1), (int32_t)((int32_t)65545));
|
|
JsonReader_TableAddCol_m0338A51AAF69ECAF72215F845D4629D60FF7908C(L_39, ((int32_t)65544), ((int32_t)123), L_42, NULL);
|
|
RuntimeObject* L_43 = V_0;
|
|
JsonReader_TableAddRow_m8F5C42C2EACF441CB7BEF6D0BEDE8BB391BBFFD9(L_43, ((int32_t)65545), NULL);
|
|
RuntimeObject* L_44 = V_0;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_45 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)3);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_46 = L_45;
|
|
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_47 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9B0B2A8DD3C1F36C25925A26EB3ED0CB0DF8189E____59B7E757844D3BF9299877BD1C17451611BFBAB493374D6B18D973FDE534151A_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_46, L_47, NULL);
|
|
JsonReader_TableAddCol_m0338A51AAF69ECAF72215F845D4629D60FF7908C(L_44, ((int32_t)65545), ((int32_t)34), L_46, NULL);
|
|
RuntimeObject* L_48 = V_0;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_49 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)1);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_50 = L_49;
|
|
NullCheck(L_50);
|
|
(L_50)->SetAt(static_cast<il2cpp_array_size_t>(0), (int32_t)((int32_t)125));
|
|
JsonReader_TableAddCol_m0338A51AAF69ECAF72215F845D4629D60FF7908C(L_48, ((int32_t)65545), ((int32_t)125), L_50, NULL);
|
|
RuntimeObject* L_51 = V_0;
|
|
JsonReader_TableAddRow_m8F5C42C2EACF441CB7BEF6D0BEDE8BB391BBFFD9(L_51, ((int32_t)65546), NULL);
|
|
RuntimeObject* L_52 = V_0;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_53 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)3);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_54 = L_53;
|
|
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_55 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9B0B2A8DD3C1F36C25925A26EB3ED0CB0DF8189E____B7A918F6F138CA8137025633559198B529D28CCEC5A51B005376CC69A5B83D85_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_54, L_55, NULL);
|
|
JsonReader_TableAddCol_m0338A51AAF69ECAF72215F845D4629D60FF7908C(L_52, ((int32_t)65546), ((int32_t)34), L_54, NULL);
|
|
RuntimeObject* L_56 = V_0;
|
|
JsonReader_TableAddRow_m8F5C42C2EACF441CB7BEF6D0BEDE8BB391BBFFD9(L_56, ((int32_t)65547), NULL);
|
|
RuntimeObject* L_57 = V_0;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_58 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)3);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_59 = L_58;
|
|
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_60 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9B0B2A8DD3C1F36C25925A26EB3ED0CB0DF8189E____FC03ECB1D62767A5B31230F548FA4D4C02F01E3DA8CA1FC66C7C332EA16BF206_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_59, L_60, NULL);
|
|
JsonReader_TableAddCol_m0338A51AAF69ECAF72215F845D4629D60FF7908C(L_57, ((int32_t)65547), ((int32_t)44), L_59, NULL);
|
|
RuntimeObject* L_61 = V_0;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_62 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)1);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_63 = L_62;
|
|
NullCheck(L_63);
|
|
(L_63)->SetAt(static_cast<il2cpp_array_size_t>(0), (int32_t)((int32_t)65554));
|
|
JsonReader_TableAddCol_m0338A51AAF69ECAF72215F845D4629D60FF7908C(L_61, ((int32_t)65547), ((int32_t)125), L_63, NULL);
|
|
RuntimeObject* L_64 = V_0;
|
|
JsonReader_TableAddRow_m8F5C42C2EACF441CB7BEF6D0BEDE8BB391BBFFD9(L_64, ((int32_t)65552), NULL);
|
|
RuntimeObject* L_65 = V_0;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_66 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)3);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_67 = L_66;
|
|
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_68 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9B0B2A8DD3C1F36C25925A26EB3ED0CB0DF8189E____B257E85A5D3CAB5E738D5A0FD1A7AE96624BFE92CB7915726CBBE1518C3225CF_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_67, L_68, NULL);
|
|
JsonReader_TableAddCol_m0338A51AAF69ECAF72215F845D4629D60FF7908C(L_65, ((int32_t)65552), ((int32_t)34), L_67, NULL);
|
|
RuntimeObject* L_69 = V_0;
|
|
JsonReader_TableAddRow_m8F5C42C2EACF441CB7BEF6D0BEDE8BB391BBFFD9(L_69, ((int32_t)65543), NULL);
|
|
RuntimeObject* L_70 = V_0;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_71 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)1);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_72 = L_71;
|
|
NullCheck(L_72);
|
|
(L_72)->SetAt(static_cast<il2cpp_array_size_t>(0), (int32_t)((int32_t)65548));
|
|
JsonReader_TableAddCol_m0338A51AAF69ECAF72215F845D4629D60FF7908C(L_70, ((int32_t)65543), ((int32_t)91), L_72, NULL);
|
|
RuntimeObject* L_73 = V_0;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_74 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)1);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_75 = L_74;
|
|
NullCheck(L_75);
|
|
(L_75)->SetAt(static_cast<il2cpp_array_size_t>(0), (int32_t)((int32_t)65544));
|
|
JsonReader_TableAddCol_m0338A51AAF69ECAF72215F845D4629D60FF7908C(L_73, ((int32_t)65543), ((int32_t)123), L_75, NULL);
|
|
RuntimeObject* L_76 = V_0;
|
|
JsonReader_TableAddRow_m8F5C42C2EACF441CB7BEF6D0BEDE8BB391BBFFD9(L_76, ((int32_t)65550), NULL);
|
|
RuntimeObject* L_77 = V_0;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_78 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)1);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_79 = L_78;
|
|
NullCheck(L_79);
|
|
(L_79)->SetAt(static_cast<il2cpp_array_size_t>(0), (int32_t)((int32_t)65552));
|
|
JsonReader_TableAddCol_m0338A51AAF69ECAF72215F845D4629D60FF7908C(L_77, ((int32_t)65550), ((int32_t)34), L_79, NULL);
|
|
RuntimeObject* L_80 = V_0;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_81 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)1);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_82 = L_81;
|
|
NullCheck(L_82);
|
|
(L_82)->SetAt(static_cast<il2cpp_array_size_t>(0), (int32_t)((int32_t)65548));
|
|
JsonReader_TableAddCol_m0338A51AAF69ECAF72215F845D4629D60FF7908C(L_80, ((int32_t)65550), ((int32_t)91), L_82, NULL);
|
|
RuntimeObject* L_83 = V_0;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_84 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)1);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_85 = L_84;
|
|
NullCheck(L_85);
|
|
(L_85)->SetAt(static_cast<il2cpp_array_size_t>(0), (int32_t)((int32_t)65544));
|
|
JsonReader_TableAddCol_m0338A51AAF69ECAF72215F845D4629D60FF7908C(L_83, ((int32_t)65550), ((int32_t)123), L_85, NULL);
|
|
RuntimeObject* L_86 = V_0;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_87 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)1);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_88 = L_87;
|
|
NullCheck(L_88);
|
|
(L_88)->SetAt(static_cast<il2cpp_array_size_t>(0), (int32_t)((int32_t)65537));
|
|
JsonReader_TableAddCol_m0338A51AAF69ECAF72215F845D4629D60FF7908C(L_86, ((int32_t)65550), ((int32_t)65537), L_88, NULL);
|
|
RuntimeObject* L_89 = V_0;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_90 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)1);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_91 = L_90;
|
|
NullCheck(L_91);
|
|
(L_91)->SetAt(static_cast<il2cpp_array_size_t>(0), (int32_t)((int32_t)65538));
|
|
JsonReader_TableAddCol_m0338A51AAF69ECAF72215F845D4629D60FF7908C(L_89, ((int32_t)65550), ((int32_t)65538), L_91, NULL);
|
|
RuntimeObject* L_92 = V_0;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_93 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)1);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_94 = L_93;
|
|
NullCheck(L_94);
|
|
(L_94)->SetAt(static_cast<il2cpp_array_size_t>(0), (int32_t)((int32_t)65539));
|
|
JsonReader_TableAddCol_m0338A51AAF69ECAF72215F845D4629D60FF7908C(L_92, ((int32_t)65550), ((int32_t)65539), L_94, NULL);
|
|
RuntimeObject* L_95 = V_0;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_96 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)1);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_97 = L_96;
|
|
NullCheck(L_97);
|
|
(L_97)->SetAt(static_cast<il2cpp_array_size_t>(0), (int32_t)((int32_t)65540));
|
|
JsonReader_TableAddCol_m0338A51AAF69ECAF72215F845D4629D60FF7908C(L_95, ((int32_t)65550), ((int32_t)65540), L_97, NULL);
|
|
RuntimeObject* L_98 = V_0;
|
|
JsonReader_TableAddRow_m8F5C42C2EACF441CB7BEF6D0BEDE8BB391BBFFD9(L_98, ((int32_t)65551), NULL);
|
|
RuntimeObject* L_99 = V_0;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_100 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)3);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_101 = L_100;
|
|
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_102 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9B0B2A8DD3C1F36C25925A26EB3ED0CB0DF8189E____5B979F69B96A61586A09DD4ED26F20534C629B08732AE32FA34B6F8A0049ACDD_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_101, L_102, NULL);
|
|
JsonReader_TableAddCol_m0338A51AAF69ECAF72215F845D4629D60FF7908C(L_99, ((int32_t)65551), ((int32_t)44), L_101, NULL);
|
|
RuntimeObject* L_103 = V_0;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_104 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)1);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_105 = L_104;
|
|
NullCheck(L_105);
|
|
(L_105)->SetAt(static_cast<il2cpp_array_size_t>(0), (int32_t)((int32_t)65554));
|
|
JsonReader_TableAddCol_m0338A51AAF69ECAF72215F845D4629D60FF7908C(L_103, ((int32_t)65551), ((int32_t)93), L_105, NULL);
|
|
RuntimeObject* L_106 = V_0;
|
|
V_1 = L_106;
|
|
goto IL_03b7;
|
|
}
|
|
|
|
IL_03b7:
|
|
{
|
|
RuntimeObject* L_107 = V_1;
|
|
return L_107;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader_TableAddCol_m0338A51AAF69ECAF72215F845D4629D60FF7908C (RuntimeObject* ___0_parse_table, int32_t ___1_row, int32_t ___2_col, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___3_symbols, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_t9503DE0744217071D554CC415B2890C454070024_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_tAD4D3CC9C1631510439F3806F67FAA90CE4C4313_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject* L_0 = ___0_parse_table;
|
|
int32_t L_1 = ___1_row;
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_2;
|
|
L_2 = InterfaceFuncInvoker1< RuntimeObject*, int32_t >::Invoke(0, IDictionary_2_t9503DE0744217071D554CC415B2890C454070024_il2cpp_TypeInfo_var, L_0, L_1);
|
|
int32_t L_3 = ___2_col;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_4 = ___3_symbols;
|
|
NullCheck(L_2);
|
|
InterfaceActionInvoker2< int32_t, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* >::Invoke(5, IDictionary_2_tAD4D3CC9C1631510439F3806F67FAA90CE4C4313_il2cpp_TypeInfo_var, L_2, L_3, L_4);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader_TableAddRow_m8F5C42C2EACF441CB7BEF6D0BEDE8BB391BBFFD9 (RuntimeObject* ___0_parse_table, int32_t ___1_rule, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m3F530E7CD9CC3EB97DCC6E1669EAB9FCE984FA9A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t029F6A37F043A1B571A7DB746955ECB8DC548AD9_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_t9503DE0744217071D554CC415B2890C454070024_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject* L_0 = ___0_parse_table;
|
|
int32_t L_1 = ___1_rule;
|
|
Dictionary_2_t029F6A37F043A1B571A7DB746955ECB8DC548AD9* L_2 = (Dictionary_2_t029F6A37F043A1B571A7DB746955ECB8DC548AD9*)il2cpp_codegen_object_new(Dictionary_2_t029F6A37F043A1B571A7DB746955ECB8DC548AD9_il2cpp_TypeInfo_var);
|
|
Dictionary_2__ctor_m3F530E7CD9CC3EB97DCC6E1669EAB9FCE984FA9A(L_2, Dictionary_2__ctor_m3F530E7CD9CC3EB97DCC6E1669EAB9FCE984FA9A_RuntimeMethod_var);
|
|
NullCheck(L_0);
|
|
InterfaceActionInvoker2< int32_t, RuntimeObject* >::Invoke(5, IDictionary_2_t9503DE0744217071D554CC415B2890C454070024_il2cpp_TypeInfo_var, L_0, L_1, L_2);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader_ProcessNumber_mF3EF4D91F87594C1D6357FDE08D539DDB66A624D (JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* __this, String_t* ___0_number, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int64_t V_1 = 0;
|
|
uint64_t V_2 = 0;
|
|
bool V_3 = false;
|
|
double V_4 = 0.0;
|
|
bool V_5 = false;
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
int32_t G_B4_0 = 0;
|
|
{
|
|
String_t* L_0 = ___0_number;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_0, ((int32_t)46), NULL);
|
|
if ((!(((uint32_t)L_1) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_2 = ___0_number;
|
|
NullCheck(L_2);
|
|
int32_t L_3;
|
|
L_3 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_2, ((int32_t)101), NULL);
|
|
if ((!(((uint32_t)L_3) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_4 = ___0_number;
|
|
NullCheck(L_4);
|
|
int32_t L_5;
|
|
L_5 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_4, ((int32_t)69), NULL);
|
|
G_B4_0 = ((((int32_t)((((int32_t)L_5) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0028;
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
G_B4_0 = 1;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
V_3 = (bool)G_B4_0;
|
|
bool L_6 = V_3;
|
|
if (!L_6)
|
|
{
|
|
goto IL_0060;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_7 = ___0_number;
|
|
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_8;
|
|
L_8 = CultureInfo_get_InvariantCulture_mD1E96DC845E34B10F78CB744B0CB5D7D63CEB1E6(NULL);
|
|
bool L_9;
|
|
L_9 = Double_TryParse_m1D39DC22A45BC9A576B9D9130600BFD3CB6DA382(L_7, ((int32_t)511), L_8, (&V_4), NULL);
|
|
V_5 = L_9;
|
|
bool L_10 = V_5;
|
|
if (!L_10)
|
|
{
|
|
goto IL_005f;
|
|
}
|
|
}
|
|
{
|
|
__this->___token = 8;
|
|
double L_11 = V_4;
|
|
double L_12 = L_11;
|
|
RuntimeObject* L_13 = Box(Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var, &L_12);
|
|
__this->___token_value = L_13;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___token_value), (void*)L_13);
|
|
goto IL_00f1;
|
|
}
|
|
|
|
IL_005f:
|
|
{
|
|
}
|
|
|
|
IL_0060:
|
|
{
|
|
String_t* L_14 = ___0_number;
|
|
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_15;
|
|
L_15 = CultureInfo_get_InvariantCulture_mD1E96DC845E34B10F78CB744B0CB5D7D63CEB1E6(NULL);
|
|
bool L_16;
|
|
L_16 = Int32_TryParse_mB8E246A7D6D6308EF36DE3473643BDE4CF8F71FF(L_14, 7, L_15, (&V_0), NULL);
|
|
V_6 = L_16;
|
|
bool L_17 = V_6;
|
|
if (!L_17)
|
|
{
|
|
goto IL_008a;
|
|
}
|
|
}
|
|
{
|
|
__this->___token = 6;
|
|
int32_t L_18 = V_0;
|
|
int32_t L_19 = L_18;
|
|
RuntimeObject* L_20 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_19);
|
|
__this->___token_value = L_20;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___token_value), (void*)L_20);
|
|
goto IL_00f1;
|
|
}
|
|
|
|
IL_008a:
|
|
{
|
|
String_t* L_21 = ___0_number;
|
|
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_22;
|
|
L_22 = CultureInfo_get_InvariantCulture_mD1E96DC845E34B10F78CB744B0CB5D7D63CEB1E6(NULL);
|
|
bool L_23;
|
|
L_23 = Int64_TryParse_m64CEDECE4C3F16B715CA1057801018B2957AE0E3(L_21, 7, L_22, (&V_1), NULL);
|
|
V_7 = L_23;
|
|
bool L_24 = V_7;
|
|
if (!L_24)
|
|
{
|
|
goto IL_00b4;
|
|
}
|
|
}
|
|
{
|
|
__this->___token = 7;
|
|
int64_t L_25 = V_1;
|
|
int64_t L_26 = L_25;
|
|
RuntimeObject* L_27 = Box(Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var, &L_26);
|
|
__this->___token_value = L_27;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___token_value), (void*)L_27);
|
|
goto IL_00f1;
|
|
}
|
|
|
|
IL_00b4:
|
|
{
|
|
String_t* L_28 = ___0_number;
|
|
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_29;
|
|
L_29 = CultureInfo_get_InvariantCulture_mD1E96DC845E34B10F78CB744B0CB5D7D63CEB1E6(NULL);
|
|
bool L_30;
|
|
L_30 = UInt64_TryParse_m33051106D55D2FDFB53461FF5DDB59F8C35B2388(L_28, 7, L_29, (&V_2), NULL);
|
|
V_8 = L_30;
|
|
bool L_31 = V_8;
|
|
if (!L_31)
|
|
{
|
|
goto IL_00de;
|
|
}
|
|
}
|
|
{
|
|
__this->___token = 7;
|
|
uint64_t L_32 = V_2;
|
|
uint64_t L_33 = L_32;
|
|
RuntimeObject* L_34 = Box(UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var, &L_33);
|
|
__this->___token_value = L_34;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___token_value), (void*)L_34);
|
|
goto IL_00f1;
|
|
}
|
|
|
|
IL_00de:
|
|
{
|
|
__this->___token = 6;
|
|
int32_t L_35 = 0;
|
|
RuntimeObject* L_36 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_35);
|
|
__this->___token_value = L_36;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___token_value), (void*)L_36);
|
|
}
|
|
|
|
IL_00f1:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader_ProcessSymbol_m0E855A59E8E386619529E923A6A9BABFEE63769C (JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
bool V_4 = false;
|
|
bool V_5 = false;
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
bool V_9 = false;
|
|
bool V_10 = false;
|
|
bool V_11 = false;
|
|
bool V_12 = false;
|
|
{
|
|
int32_t L_0 = __this->___current_symbol;
|
|
V_0 = (bool)((((int32_t)L_0) == ((int32_t)((int32_t)91)))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0024;
|
|
}
|
|
}
|
|
{
|
|
__this->___token = 4;
|
|
__this->___parser_return = (bool)1;
|
|
goto IL_01e8;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
int32_t L_2 = __this->___current_symbol;
|
|
V_1 = (bool)((((int32_t)L_2) == ((int32_t)((int32_t)93)))? 1 : 0);
|
|
bool L_3 = V_1;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0047;
|
|
}
|
|
}
|
|
{
|
|
__this->___token = 5;
|
|
__this->___parser_return = (bool)1;
|
|
goto IL_01e8;
|
|
}
|
|
|
|
IL_0047:
|
|
{
|
|
int32_t L_4 = __this->___current_symbol;
|
|
V_2 = (bool)((((int32_t)L_4) == ((int32_t)((int32_t)123)))? 1 : 0);
|
|
bool L_5 = V_2;
|
|
if (!L_5)
|
|
{
|
|
goto IL_006a;
|
|
}
|
|
}
|
|
{
|
|
__this->___token = 1;
|
|
__this->___parser_return = (bool)1;
|
|
goto IL_01e8;
|
|
}
|
|
|
|
IL_006a:
|
|
{
|
|
int32_t L_6 = __this->___current_symbol;
|
|
V_3 = (bool)((((int32_t)L_6) == ((int32_t)((int32_t)125)))? 1 : 0);
|
|
bool L_7 = V_3;
|
|
if (!L_7)
|
|
{
|
|
goto IL_008d;
|
|
}
|
|
}
|
|
{
|
|
__this->___token = 3;
|
|
__this->___parser_return = (bool)1;
|
|
goto IL_01e8;
|
|
}
|
|
|
|
IL_008d:
|
|
{
|
|
int32_t L_8 = __this->___current_symbol;
|
|
V_4 = (bool)((((int32_t)L_8) == ((int32_t)((int32_t)34)))? 1 : 0);
|
|
bool L_9 = V_4;
|
|
if (!L_9)
|
|
{
|
|
goto IL_00e4;
|
|
}
|
|
}
|
|
{
|
|
bool L_10 = __this->___parser_in_string;
|
|
V_5 = L_10;
|
|
bool L_11 = V_5;
|
|
if (!L_11)
|
|
{
|
|
goto IL_00bc;
|
|
}
|
|
}
|
|
{
|
|
__this->___parser_in_string = (bool)0;
|
|
__this->___parser_return = (bool)1;
|
|
goto IL_00de;
|
|
}
|
|
|
|
IL_00bc:
|
|
{
|
|
int32_t L_12 = __this->___token;
|
|
V_6 = (bool)((((int32_t)L_12) == ((int32_t)0))? 1 : 0);
|
|
bool L_13 = V_6;
|
|
if (!L_13)
|
|
{
|
|
goto IL_00d6;
|
|
}
|
|
}
|
|
{
|
|
__this->___token = ((int32_t)9);
|
|
}
|
|
|
|
IL_00d6:
|
|
{
|
|
__this->___parser_in_string = (bool)1;
|
|
}
|
|
|
|
IL_00de:
|
|
{
|
|
goto IL_01e8;
|
|
}
|
|
|
|
IL_00e4:
|
|
{
|
|
int32_t L_14 = __this->___current_symbol;
|
|
V_7 = (bool)((((int32_t)L_14) == ((int32_t)((int32_t)65541)))? 1 : 0);
|
|
bool L_15 = V_7;
|
|
if (!L_15)
|
|
{
|
|
goto IL_010f;
|
|
}
|
|
}
|
|
{
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_16 = __this->___lexer;
|
|
NullCheck(L_16);
|
|
String_t* L_17;
|
|
L_17 = Lexer_get_StringValue_mE4230649FF6DC2B66F9FAA021BB30FC8B7EBA5FF(L_16, NULL);
|
|
__this->___token_value = L_17;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___token_value), (void*)L_17);
|
|
goto IL_01e8;
|
|
}
|
|
|
|
IL_010f:
|
|
{
|
|
int32_t L_18 = __this->___current_symbol;
|
|
V_8 = (bool)((((int32_t)L_18) == ((int32_t)((int32_t)65539)))? 1 : 0);
|
|
bool L_19 = V_8;
|
|
if (!L_19)
|
|
{
|
|
goto IL_0144;
|
|
}
|
|
}
|
|
{
|
|
__this->___token = ((int32_t)10);
|
|
bool L_20 = ((bool)0);
|
|
RuntimeObject* L_21 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_20);
|
|
__this->___token_value = L_21;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___token_value), (void*)L_21);
|
|
__this->___parser_return = (bool)1;
|
|
goto IL_01e8;
|
|
}
|
|
|
|
IL_0144:
|
|
{
|
|
int32_t L_22 = __this->___current_symbol;
|
|
V_9 = (bool)((((int32_t)L_22) == ((int32_t)((int32_t)65540)))? 1 : 0);
|
|
bool L_23 = V_9;
|
|
if (!L_23)
|
|
{
|
|
goto IL_016a;
|
|
}
|
|
}
|
|
{
|
|
__this->___token = ((int32_t)11);
|
|
__this->___parser_return = (bool)1;
|
|
goto IL_01e8;
|
|
}
|
|
|
|
IL_016a:
|
|
{
|
|
int32_t L_24 = __this->___current_symbol;
|
|
V_10 = (bool)((((int32_t)L_24) == ((int32_t)((int32_t)65537)))? 1 : 0);
|
|
bool L_25 = V_10;
|
|
if (!L_25)
|
|
{
|
|
goto IL_019a;
|
|
}
|
|
}
|
|
{
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_26 = __this->___lexer;
|
|
NullCheck(L_26);
|
|
String_t* L_27;
|
|
L_27 = Lexer_get_StringValue_mE4230649FF6DC2B66F9FAA021BB30FC8B7EBA5FF(L_26, NULL);
|
|
JsonReader_ProcessNumber_mF3EF4D91F87594C1D6357FDE08D539DDB66A624D(__this, L_27, NULL);
|
|
__this->___parser_return = (bool)1;
|
|
goto IL_01e8;
|
|
}
|
|
|
|
IL_019a:
|
|
{
|
|
int32_t L_28 = __this->___current_symbol;
|
|
V_11 = (bool)((((int32_t)L_28) == ((int32_t)((int32_t)65546)))? 1 : 0);
|
|
bool L_29 = V_11;
|
|
if (!L_29)
|
|
{
|
|
goto IL_01b8;
|
|
}
|
|
}
|
|
{
|
|
__this->___token = 2;
|
|
goto IL_01e8;
|
|
}
|
|
|
|
IL_01b8:
|
|
{
|
|
int32_t L_30 = __this->___current_symbol;
|
|
V_12 = (bool)((((int32_t)L_30) == ((int32_t)((int32_t)65538)))? 1 : 0);
|
|
bool L_31 = V_12;
|
|
if (!L_31)
|
|
{
|
|
goto IL_01e8;
|
|
}
|
|
}
|
|
{
|
|
__this->___token = ((int32_t)10);
|
|
bool L_32 = ((bool)1);
|
|
RuntimeObject* L_33 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_32);
|
|
__this->___token_value = L_33;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___token_value), (void*)L_33);
|
|
__this->___parser_return = (bool)1;
|
|
}
|
|
|
|
IL_01e8:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonReader_ReadToken_m5C6E65529B9286DFC6270FE4A926FA12620894B9 (JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
{
|
|
bool L_0 = __this->___end_of_input;
|
|
V_0 = L_0;
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
V_1 = (bool)0;
|
|
goto IL_004c;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_2 = __this->___lexer;
|
|
NullCheck(L_2);
|
|
bool L_3;
|
|
L_3 = Lexer_NextToken_m1FC49AB01B8C3D281961541D1D7D1A8721B06083(L_2, NULL);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_4 = __this->___lexer;
|
|
NullCheck(L_4);
|
|
bool L_5;
|
|
L_5 = Lexer_get_EndOfInput_m450A1AC83F893FDE38826AFD2A726428956491AC(L_4, NULL);
|
|
V_2 = L_5;
|
|
bool L_6 = V_2;
|
|
if (!L_6)
|
|
{
|
|
goto IL_0037;
|
|
}
|
|
}
|
|
{
|
|
JsonReader_Close_m91AEDB0DE517F63898D830A3140B83032CFE8F2F(__this, NULL);
|
|
V_1 = (bool)0;
|
|
goto IL_004c;
|
|
}
|
|
|
|
IL_0037:
|
|
{
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_7 = __this->___lexer;
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = Lexer_get_Token_m77727EC36916D1258709D74850710E0487B67F99(L_7, NULL);
|
|
__this->___current_input = L_8;
|
|
V_1 = (bool)1;
|
|
goto IL_004c;
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
bool L_9 = V_1;
|
|
return L_9;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader_Close_m91AEDB0DE517F63898D830A3140B83032CFE8F2F (JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* V_2 = NULL;
|
|
{
|
|
bool L_0 = __this->___end_of_input;
|
|
V_0 = L_0;
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0045;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
__this->___end_of_input = (bool)1;
|
|
__this->___end_of_json = (bool)1;
|
|
bool L_2 = __this->___reader_is_owned;
|
|
V_1 = L_2;
|
|
bool L_3 = V_1;
|
|
if (!L_3)
|
|
{
|
|
goto IL_003e;
|
|
}
|
|
}
|
|
{
|
|
TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* L_4 = __this->___reader;
|
|
V_2 = L_4;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0032:
|
|
{
|
|
{
|
|
TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* L_5 = V_2;
|
|
if (!L_5)
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* L_6 = V_2;
|
|
NullCheck(L_6);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_6);
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
}
|
|
|
|
IL_003e:
|
|
{
|
|
__this->___reader = (TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___reader), (void*)(TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7*)NULL);
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonReader_Read_mD8D28369934A79C6A0125279F425E48D1D35AE7B (JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_t9503DE0744217071D554CC415B2890C454070024_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_tAD4D3CC9C1631510439F3806F67FAA90CE4C4313_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Clear_mEE1C6E0AF654AE01D41D12DAF62217D4FE3930E0_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Peek_m919AA48BFC239B260BB6A0639B8E027B60CB8B66_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Pop_m59DFD2B5EC8D9044532E0AD0BDB20DB33BA76748_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Push_mF7CC12CF73D9D4B66FFA2E2D264270212CAB3EDA_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_0 = NULL;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
bool V_4 = false;
|
|
bool V_5 = false;
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
bool V_9 = false;
|
|
bool V_10 = false;
|
|
bool V_11 = false;
|
|
KeyNotFoundException_tCE416EC9BCA9F396A3DFFF86D1B5209BA876079E* V_12 = NULL;
|
|
bool V_13 = false;
|
|
int32_t V_14 = 0;
|
|
bool V_15 = false;
|
|
bool V_16 = false;
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
{
|
|
bool L_0 = __this->___end_of_input;
|
|
V_1 = L_0;
|
|
bool L_1 = V_1;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
V_2 = (bool)0;
|
|
goto IL_01d5;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
bool L_2 = __this->___end_of_json;
|
|
V_3 = L_2;
|
|
bool L_3 = V_3;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0054;
|
|
}
|
|
}
|
|
{
|
|
__this->___end_of_json = (bool)0;
|
|
Stack_1_t3197E0F5EA36E611B259A88751D31FC2396FE4B6* L_4 = __this->___automaton_stack;
|
|
NullCheck(L_4);
|
|
Stack_1_Clear_mEE1C6E0AF654AE01D41D12DAF62217D4FE3930E0(L_4, Stack_1_Clear_mEE1C6E0AF654AE01D41D12DAF62217D4FE3930E0_RuntimeMethod_var);
|
|
Stack_1_t3197E0F5EA36E611B259A88751D31FC2396FE4B6* L_5 = __this->___automaton_stack;
|
|
NullCheck(L_5);
|
|
Stack_1_Push_mF7CC12CF73D9D4B66FFA2E2D264270212CAB3EDA(L_5, ((int32_t)65553), Stack_1_Push_mF7CC12CF73D9D4B66FFA2E2D264270212CAB3EDA_RuntimeMethod_var);
|
|
Stack_1_t3197E0F5EA36E611B259A88751D31FC2396FE4B6* L_6 = __this->___automaton_stack;
|
|
NullCheck(L_6);
|
|
Stack_1_Push_mF7CC12CF73D9D4B66FFA2E2D264270212CAB3EDA(L_6, ((int32_t)65543), Stack_1_Push_mF7CC12CF73D9D4B66FFA2E2D264270212CAB3EDA_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0054:
|
|
{
|
|
__this->___parser_in_string = (bool)0;
|
|
__this->___parser_return = (bool)0;
|
|
__this->___token = 0;
|
|
__this->___token_value = NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___token_value), (void*)NULL);
|
|
bool L_7 = __this->___read_started;
|
|
V_4 = (bool)((((int32_t)L_7) == ((int32_t)0))? 1 : 0);
|
|
bool L_8 = V_4;
|
|
if (!L_8)
|
|
{
|
|
goto IL_009f;
|
|
}
|
|
}
|
|
{
|
|
__this->___read_started = (bool)1;
|
|
bool L_9;
|
|
L_9 = JsonReader_ReadToken_m5C6E65529B9286DFC6270FE4A926FA12620894B9(__this, NULL);
|
|
V_5 = (bool)((((int32_t)L_9) == ((int32_t)0))? 1 : 0);
|
|
bool L_10 = V_5;
|
|
if (!L_10)
|
|
{
|
|
goto IL_009e;
|
|
}
|
|
}
|
|
{
|
|
V_2 = (bool)0;
|
|
goto IL_01d5;
|
|
}
|
|
|
|
IL_009e:
|
|
{
|
|
}
|
|
|
|
IL_009f:
|
|
{
|
|
goto IL_01cd;
|
|
}
|
|
|
|
IL_00a4:
|
|
{
|
|
bool L_11 = __this->___parser_return;
|
|
V_6 = L_11;
|
|
bool L_12 = V_6;
|
|
if (!L_12)
|
|
{
|
|
goto IL_00da;
|
|
}
|
|
}
|
|
{
|
|
Stack_1_t3197E0F5EA36E611B259A88751D31FC2396FE4B6* L_13 = __this->___automaton_stack;
|
|
NullCheck(L_13);
|
|
int32_t L_14;
|
|
L_14 = Stack_1_Peek_m919AA48BFC239B260BB6A0639B8E027B60CB8B66(L_13, Stack_1_Peek_m919AA48BFC239B260BB6A0639B8E027B60CB8B66_RuntimeMethod_var);
|
|
V_7 = (bool)((((int32_t)L_14) == ((int32_t)((int32_t)65553)))? 1 : 0);
|
|
bool L_15 = V_7;
|
|
if (!L_15)
|
|
{
|
|
goto IL_00d3;
|
|
}
|
|
}
|
|
{
|
|
__this->___end_of_json = (bool)1;
|
|
}
|
|
|
|
IL_00d3:
|
|
{
|
|
V_2 = (bool)1;
|
|
goto IL_01d5;
|
|
}
|
|
|
|
IL_00da:
|
|
{
|
|
Stack_1_t3197E0F5EA36E611B259A88751D31FC2396FE4B6* L_16 = __this->___automaton_stack;
|
|
NullCheck(L_16);
|
|
int32_t L_17;
|
|
L_17 = Stack_1_Pop_m59DFD2B5EC8D9044532E0AD0BDB20DB33BA76748(L_16, Stack_1_Pop_m59DFD2B5EC8D9044532E0AD0BDB20DB33BA76748_RuntimeMethod_var);
|
|
__this->___current_symbol = L_17;
|
|
JsonReader_ProcessSymbol_m0E855A59E8E386619529E923A6A9BABFEE63769C(__this, NULL);
|
|
int32_t L_18 = __this->___current_symbol;
|
|
int32_t L_19 = __this->___current_input;
|
|
V_8 = (bool)((((int32_t)L_18) == ((int32_t)L_19))? 1 : 0);
|
|
bool L_20 = V_8;
|
|
if (!L_20)
|
|
{
|
|
goto IL_0158;
|
|
}
|
|
}
|
|
{
|
|
bool L_21;
|
|
L_21 = JsonReader_ReadToken_m5C6E65529B9286DFC6270FE4A926FA12620894B9(__this, NULL);
|
|
V_9 = (bool)((((int32_t)L_21) == ((int32_t)0))? 1 : 0);
|
|
bool L_22 = V_9;
|
|
if (!L_22)
|
|
{
|
|
goto IL_0156;
|
|
}
|
|
}
|
|
{
|
|
Stack_1_t3197E0F5EA36E611B259A88751D31FC2396FE4B6* L_23 = __this->___automaton_stack;
|
|
NullCheck(L_23);
|
|
int32_t L_24;
|
|
L_24 = Stack_1_Peek_m919AA48BFC239B260BB6A0639B8E027B60CB8B66(L_23, Stack_1_Peek_m919AA48BFC239B260BB6A0639B8E027B60CB8B66_RuntimeMethod_var);
|
|
V_10 = (bool)((((int32_t)((((int32_t)L_24) == ((int32_t)((int32_t)65553)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_25 = V_10;
|
|
if (!L_25)
|
|
{
|
|
goto IL_013e;
|
|
}
|
|
}
|
|
{
|
|
JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76* L_26 = (JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76_il2cpp_TypeInfo_var)));
|
|
JsonException__ctor_m400377A21C20F6CAEE97CE7958869D819BB94BB5(L_26, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7B6EE056E549534162451A09C7F0AFAC372DBD06)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_26, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonReader_Read_mD8D28369934A79C6A0125279F425E48D1D35AE7B_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_013e:
|
|
{
|
|
bool L_27 = __this->___parser_return;
|
|
V_11 = L_27;
|
|
bool L_28 = V_11;
|
|
if (!L_28)
|
|
{
|
|
goto IL_0152;
|
|
}
|
|
}
|
|
{
|
|
V_2 = (bool)1;
|
|
goto IL_01d5;
|
|
}
|
|
|
|
IL_0152:
|
|
{
|
|
V_2 = (bool)0;
|
|
goto IL_01d5;
|
|
}
|
|
|
|
IL_0156:
|
|
{
|
|
goto IL_01cd;
|
|
}
|
|
|
|
IL_0158:
|
|
{
|
|
}
|
|
try
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_29 = ((JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD_StaticFields*)il2cpp_codegen_static_fields_for(JsonReader_t848C81F0C12BBE7E0135F28350F6635928FAAABD_il2cpp_TypeInfo_var))->___parse_table;
|
|
int32_t L_30 = __this->___current_symbol;
|
|
NullCheck(L_29);
|
|
RuntimeObject* L_31;
|
|
L_31 = InterfaceFuncInvoker1< RuntimeObject*, int32_t >::Invoke(0, IDictionary_2_t9503DE0744217071D554CC415B2890C454070024_il2cpp_TypeInfo_var, L_29, L_30);
|
|
int32_t L_32 = __this->___current_input;
|
|
NullCheck(L_31);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_33;
|
|
L_33 = InterfaceFuncInvoker1< Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*, int32_t >::Invoke(0, IDictionary_2_tAD4D3CC9C1631510439F3806F67FAA90CE4C4313_il2cpp_TypeInfo_var, L_31, L_32);
|
|
V_0 = L_33;
|
|
goto IL_018a;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeyNotFoundException_tCE416EC9BCA9F396A3DFFF86D1B5209BA876079E_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_0179;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_0179:
|
|
{
|
|
KeyNotFoundException_tCE416EC9BCA9F396A3DFFF86D1B5209BA876079E* L_34 = ((KeyNotFoundException_tCE416EC9BCA9F396A3DFFF86D1B5209BA876079E*)IL2CPP_GET_ACTIVE_EXCEPTION(KeyNotFoundException_tCE416EC9BCA9F396A3DFFF86D1B5209BA876079E*));;
|
|
V_12 = L_34;
|
|
int32_t L_35 = __this->___current_input;
|
|
KeyNotFoundException_tCE416EC9BCA9F396A3DFFF86D1B5209BA876079E* L_36 = V_12;
|
|
JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76* L_37 = (JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76_il2cpp_TypeInfo_var)));
|
|
JsonException__ctor_mD12D72A1D7949F48B846F1207BFA40EB8CB61E23(L_37, L_35, L_36, NULL);
|
|
IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_37, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonReader_Read_mD8D28369934A79C6A0125279F425E48D1D35AE7B_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_018a:
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_38 = V_0;
|
|
NullCheck(L_38);
|
|
int32_t L_39 = 0;
|
|
int32_t L_40 = (L_38)->GetAt(static_cast<il2cpp_array_size_t>(L_39));
|
|
V_13 = (bool)((((int32_t)L_40) == ((int32_t)((int32_t)65554)))? 1 : 0);
|
|
bool L_41 = V_13;
|
|
if (!L_41)
|
|
{
|
|
goto IL_019d;
|
|
}
|
|
}
|
|
{
|
|
goto IL_01cd;
|
|
}
|
|
|
|
IL_019d:
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_42 = V_0;
|
|
NullCheck(L_42);
|
|
V_14 = ((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_42)->max_length)), 1));
|
|
goto IL_01be;
|
|
}
|
|
|
|
IL_01a6:
|
|
{
|
|
Stack_1_t3197E0F5EA36E611B259A88751D31FC2396FE4B6* L_43 = __this->___automaton_stack;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_44 = V_0;
|
|
int32_t L_45 = V_14;
|
|
NullCheck(L_44);
|
|
int32_t L_46 = L_45;
|
|
int32_t L_47 = (L_44)->GetAt(static_cast<il2cpp_array_size_t>(L_46));
|
|
NullCheck(L_43);
|
|
Stack_1_Push_mF7CC12CF73D9D4B66FFA2E2D264270212CAB3EDA(L_43, L_47, Stack_1_Push_mF7CC12CF73D9D4B66FFA2E2D264270212CAB3EDA_RuntimeMethod_var);
|
|
int32_t L_48 = V_14;
|
|
V_14 = ((int32_t)il2cpp_codegen_subtract(L_48, 1));
|
|
}
|
|
|
|
IL_01be:
|
|
{
|
|
int32_t L_49 = V_14;
|
|
V_15 = (bool)((((int32_t)((((int32_t)L_49) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_50 = V_15;
|
|
if (L_50)
|
|
{
|
|
goto IL_01a6;
|
|
}
|
|
}
|
|
{
|
|
}
|
|
|
|
IL_01cd:
|
|
{
|
|
V_16 = (bool)1;
|
|
goto IL_00a4;
|
|
}
|
|
|
|
IL_01d5:
|
|
{
|
|
bool L_51 = V_2;
|
|
return L_51;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WriterContext__ctor_m776EF36E46B33DFC054B4AD1E6F3139B038AF037 (WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, 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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonWriter_get_IndentValue_mF2FD1FADA3207ECD754534B9D5E65CC12A770182 (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->___indent_value;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
int32_t L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_set_IndentValue_m50BCF8F90DF5E4EB581AEC9B320FAF57960B7A92 (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___indentation;
|
|
int32_t L_1 = __this->___indent_value;
|
|
int32_t L_2 = ___0_value;
|
|
__this->___indentation = ((int32_t)il2cpp_codegen_multiply(((int32_t)(L_0/L_1)), L_2));
|
|
int32_t L_3 = ___0_value;
|
|
__this->___indent_value = L_3;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonWriter_get_PrettyPrint_mD81B92E6DF9C1A37598BB57E018818E616472446 (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0 = __this->___pretty_print;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_set_PrettyPrint_mF46CF67E6862407E9B7BCF628F99BA071B4EE25C (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_value;
|
|
__this->___pretty_print = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* JsonWriter_get_TextWriter_m8C5C9441F52C2813A2A3A1834E7A8A3AF2CF875F (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, const RuntimeMethod* method)
|
|
{
|
|
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* V_0 = NULL;
|
|
{
|
|
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0 = __this->___writer;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonWriter_get_Validate_m28498F5A80E666297849E7C4F723F48A0B9A4DF6 (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0 = __this->___validate;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_set_Validate_mA5EE11772D5EEEDBF8653894C89D686A6B184F7B (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_value;
|
|
__this->___validate = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonWriter_get_LowerCaseProperties_m2A5C4D0D2A2158557962B39DD3B9E4AD2AA8C5D6 (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0 = __this->___lower_case_properties;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_set_LowerCaseProperties_m3F95C0981E3371C88952D2A5DA9D58A7FF45B3BE (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_value;
|
|
__this->___lower_case_properties = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter__cctor_m64A42C0DCDC27BC8FFB605455420856AC720739F (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_0;
|
|
L_0 = NumberFormatInfo_get_InvariantInfo_m4689F466D2607C7369BCE394E3FB3681A6E644FA(NULL);
|
|
((JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F_StaticFields*)il2cpp_codegen_static_fields_for(JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F_il2cpp_TypeInfo_var))->___number_format = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F_StaticFields*)il2cpp_codegen_static_fields_for(JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F_il2cpp_TypeInfo_var))->___number_format), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter__ctor_mFF4C2DE4CAD061714750C2D87291FCF9D0AE4EF0 (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringWriter_tF48052BE4F980E5C85403221E835768E4156267D_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
StringBuilder_t* L_0 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
|
|
StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D(L_0, NULL);
|
|
__this->___inst_string_builder = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___inst_string_builder), (void*)L_0);
|
|
StringBuilder_t* L_1 = __this->___inst_string_builder;
|
|
StringWriter_tF48052BE4F980E5C85403221E835768E4156267D* L_2 = (StringWriter_tF48052BE4F980E5C85403221E835768E4156267D*)il2cpp_codegen_object_new(StringWriter_tF48052BE4F980E5C85403221E835768E4156267D_il2cpp_TypeInfo_var);
|
|
StringWriter__ctor_mF38CB8046B79DEF523E427B7F41CA3135671D0C8(L_2, L_1, NULL);
|
|
__this->___writer = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___writer), (void*)L_2);
|
|
JsonWriter_Init_m9DD0FC6AED98A7D661B9374FFDFF534411DDB838(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter__ctor_m25FA80F1F771C70FB5353B2C9B592DB260A56B52 (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, StringBuilder_t* ___0_sb, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringWriter_tF48052BE4F980E5C85403221E835768E4156267D_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
StringBuilder_t* L_0 = ___0_sb;
|
|
StringWriter_tF48052BE4F980E5C85403221E835768E4156267D* L_1 = (StringWriter_tF48052BE4F980E5C85403221E835768E4156267D*)il2cpp_codegen_object_new(StringWriter_tF48052BE4F980E5C85403221E835768E4156267D_il2cpp_TypeInfo_var);
|
|
StringWriter__ctor_mF38CB8046B79DEF523E427B7F41CA3135671D0C8(L_1, L_0, NULL);
|
|
JsonWriter__ctor_m59AEC417CBCF6AB49675BCCFD00F274C31D3585E(__this, L_1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter__ctor_m59AEC417CBCF6AB49675BCCFD00F274C31D3585E (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___0_writer, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0 = ___0_writer;
|
|
V_0 = (bool)((((RuntimeObject*)(TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral638C5441E8427B2B9D2C941DDBF958579B5FE3F0)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonWriter__ctor_m59AEC417CBCF6AB49675BCCFD00F274C31D3585E_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_3 = ___0_writer;
|
|
__this->___writer = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___writer), (void*)L_3);
|
|
JsonWriter_Init_m9DD0FC6AED98A7D661B9374FFDFF534411DDB838(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_DoValidation_m3F03AD6E422930F933D182AD01154E08F32EFF3B (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, int32_t ___0_cond, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
bool V_5 = false;
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
bool V_9 = false;
|
|
int32_t G_B14_0 = 0;
|
|
int32_t G_B20_0 = 0;
|
|
int32_t G_B26_0 = 0;
|
|
int32_t G_B33_0 = 0;
|
|
int32_t G_B35_0 = 0;
|
|
{
|
|
WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* L_0 = __this->___context;
|
|
NullCheck(L_0);
|
|
bool L_1 = L_0->___ExpectingValue;
|
|
V_0 = (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* L_3 = __this->___context;
|
|
WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* L_4 = L_3;
|
|
NullCheck(L_4);
|
|
int32_t L_5 = L_4->___Count;
|
|
NullCheck(L_4);
|
|
L_4->___Count = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
bool L_6 = __this->___validate;
|
|
V_1 = (bool)((((int32_t)L_6) == ((int32_t)0))? 1 : 0);
|
|
bool L_7 = V_1;
|
|
if (!L_7)
|
|
{
|
|
goto IL_003b;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0170;
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
bool L_8 = __this->___has_reached_end;
|
|
V_2 = L_8;
|
|
bool L_9 = V_2;
|
|
if (!L_9)
|
|
{
|
|
goto IL_0051;
|
|
}
|
|
}
|
|
{
|
|
JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76* L_10 = (JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76_il2cpp_TypeInfo_var)));
|
|
JsonException__ctor_m400377A21C20F6CAEE97CE7958869D819BB94BB5(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8E284AA45C643AAA8D3553AA7AB6A1C3BC3E32D1)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonWriter_DoValidation_m3F03AD6E422930F933D182AD01154E08F32EFF3B_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0051:
|
|
{
|
|
int32_t L_11 = ___0_cond;
|
|
V_4 = L_11;
|
|
int32_t L_12 = V_4;
|
|
V_3 = L_12;
|
|
int32_t L_13 = V_3;
|
|
switch (L_13)
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0076;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_009b;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_00cd;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_00ff;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_012e;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_0170;
|
|
}
|
|
|
|
IL_0076:
|
|
{
|
|
WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* L_14 = __this->___context;
|
|
NullCheck(L_14);
|
|
bool L_15 = L_14->___InArray;
|
|
V_5 = (bool)((((int32_t)L_15) == ((int32_t)0))? 1 : 0);
|
|
bool L_16 = V_5;
|
|
if (!L_16)
|
|
{
|
|
goto IL_0096;
|
|
}
|
|
}
|
|
{
|
|
JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76* L_17 = (JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76_il2cpp_TypeInfo_var)));
|
|
JsonException__ctor_m400377A21C20F6CAEE97CE7958869D819BB94BB5(L_17, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral057118C49B28F31FA4955B194753088DDCD94999)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonWriter_DoValidation_m3F03AD6E422930F933D182AD01154E08F32EFF3B_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0096:
|
|
{
|
|
goto IL_0170;
|
|
}
|
|
|
|
IL_009b:
|
|
{
|
|
WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* L_18 = __this->___context;
|
|
NullCheck(L_18);
|
|
bool L_19 = L_18->___InObject;
|
|
if (!L_19)
|
|
{
|
|
goto IL_00b5;
|
|
}
|
|
}
|
|
{
|
|
WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* L_20 = __this->___context;
|
|
NullCheck(L_20);
|
|
bool L_21 = L_20->___ExpectingValue;
|
|
G_B14_0 = ((int32_t)(L_21));
|
|
goto IL_00b6;
|
|
}
|
|
|
|
IL_00b5:
|
|
{
|
|
G_B14_0 = 1;
|
|
}
|
|
|
|
IL_00b6:
|
|
{
|
|
V_6 = (bool)G_B14_0;
|
|
bool L_22 = V_6;
|
|
if (!L_22)
|
|
{
|
|
goto IL_00c8;
|
|
}
|
|
}
|
|
{
|
|
JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76* L_23 = (JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76_il2cpp_TypeInfo_var)));
|
|
JsonException__ctor_m400377A21C20F6CAEE97CE7958869D819BB94BB5(L_23, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCEE7535349ADB76DD55B08451D311FC3CF06A19C)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_23, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonWriter_DoValidation_m3F03AD6E422930F933D182AD01154E08F32EFF3B_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_00c8:
|
|
{
|
|
goto IL_0170;
|
|
}
|
|
|
|
IL_00cd:
|
|
{
|
|
WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* L_24 = __this->___context;
|
|
NullCheck(L_24);
|
|
bool L_25 = L_24->___InObject;
|
|
if (!L_25)
|
|
{
|
|
goto IL_00ea;
|
|
}
|
|
}
|
|
{
|
|
WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* L_26 = __this->___context;
|
|
NullCheck(L_26);
|
|
bool L_27 = L_26->___ExpectingValue;
|
|
G_B20_0 = ((((int32_t)L_27) == ((int32_t)0))? 1 : 0);
|
|
goto IL_00eb;
|
|
}
|
|
|
|
IL_00ea:
|
|
{
|
|
G_B20_0 = 0;
|
|
}
|
|
|
|
IL_00eb:
|
|
{
|
|
V_7 = (bool)G_B20_0;
|
|
bool L_28 = V_7;
|
|
if (!L_28)
|
|
{
|
|
goto IL_00fd;
|
|
}
|
|
}
|
|
{
|
|
JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76* L_29 = (JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76_il2cpp_TypeInfo_var)));
|
|
JsonException__ctor_m400377A21C20F6CAEE97CE7958869D819BB94BB5(L_29, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCDA723AA4DBB226A906416AA9BF1C2D4CEC53C89)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_29, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonWriter_DoValidation_m3F03AD6E422930F933D182AD01154E08F32EFF3B_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_00fd:
|
|
{
|
|
goto IL_0170;
|
|
}
|
|
|
|
IL_00ff:
|
|
{
|
|
WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* L_30 = __this->___context;
|
|
NullCheck(L_30);
|
|
bool L_31 = L_30->___InObject;
|
|
if (!L_31)
|
|
{
|
|
goto IL_0119;
|
|
}
|
|
}
|
|
{
|
|
WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* L_32 = __this->___context;
|
|
NullCheck(L_32);
|
|
bool L_33 = L_32->___ExpectingValue;
|
|
G_B26_0 = ((int32_t)(L_33));
|
|
goto IL_011a;
|
|
}
|
|
|
|
IL_0119:
|
|
{
|
|
G_B26_0 = 1;
|
|
}
|
|
|
|
IL_011a:
|
|
{
|
|
V_8 = (bool)G_B26_0;
|
|
bool L_34 = V_8;
|
|
if (!L_34)
|
|
{
|
|
goto IL_012c;
|
|
}
|
|
}
|
|
{
|
|
JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76* L_35 = (JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76_il2cpp_TypeInfo_var)));
|
|
JsonException__ctor_m400377A21C20F6CAEE97CE7958869D819BB94BB5(L_35, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral84BE6DF7F5E86A94476E7ED44C8A9ACA10E6236A)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_35, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonWriter_DoValidation_m3F03AD6E422930F933D182AD01154E08F32EFF3B_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_012c:
|
|
{
|
|
goto IL_0170;
|
|
}
|
|
|
|
IL_012e:
|
|
{
|
|
WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* L_36 = __this->___context;
|
|
NullCheck(L_36);
|
|
bool L_37 = L_36->___InArray;
|
|
if (L_37)
|
|
{
|
|
goto IL_015b;
|
|
}
|
|
}
|
|
{
|
|
WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* L_38 = __this->___context;
|
|
NullCheck(L_38);
|
|
bool L_39 = L_38->___InObject;
|
|
if (!L_39)
|
|
{
|
|
goto IL_0158;
|
|
}
|
|
}
|
|
{
|
|
WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* L_40 = __this->___context;
|
|
NullCheck(L_40);
|
|
bool L_41 = L_40->___ExpectingValue;
|
|
G_B33_0 = ((((int32_t)L_41) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0159;
|
|
}
|
|
|
|
IL_0158:
|
|
{
|
|
G_B33_0 = 1;
|
|
}
|
|
|
|
IL_0159:
|
|
{
|
|
G_B35_0 = G_B33_0;
|
|
goto IL_015c;
|
|
}
|
|
|
|
IL_015b:
|
|
{
|
|
G_B35_0 = 0;
|
|
}
|
|
|
|
IL_015c:
|
|
{
|
|
V_9 = (bool)G_B35_0;
|
|
bool L_42 = V_9;
|
|
if (!L_42)
|
|
{
|
|
goto IL_016e;
|
|
}
|
|
}
|
|
{
|
|
JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76* L_43 = (JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76_il2cpp_TypeInfo_var)));
|
|
JsonException__ctor_m400377A21C20F6CAEE97CE7958869D819BB94BB5(L_43, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC63496F78F80F09E4841EF5CD0DA8DAF7028FB4B)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_43, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonWriter_DoValidation_m3F03AD6E422930F933D182AD01154E08F32EFF3B_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_016e:
|
|
{
|
|
goto IL_0170;
|
|
}
|
|
|
|
IL_0170:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Init_m9DD0FC6AED98A7D661B9374FFDFF534411DDB838 (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Push_mCC27D4FD504E058A5A42BE3285782C44D715DF4A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1__ctor_m2A8D4EF841D474ABBD42CA0BE7389F3C1A1A31E7_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_t2CDC562A4A6FD1FE4DE0FC63A08FC106C6A84EFD_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
__this->___has_reached_end = (bool)0;
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)4);
|
|
__this->___hex_seq = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___hex_seq), (void*)L_0);
|
|
__this->___indentation = 0;
|
|
__this->___indent_value = 4;
|
|
__this->___pretty_print = (bool)0;
|
|
__this->___validate = (bool)1;
|
|
__this->___lower_case_properties = (bool)0;
|
|
Stack_1_t2CDC562A4A6FD1FE4DE0FC63A08FC106C6A84EFD* L_1 = (Stack_1_t2CDC562A4A6FD1FE4DE0FC63A08FC106C6A84EFD*)il2cpp_codegen_object_new(Stack_1_t2CDC562A4A6FD1FE4DE0FC63A08FC106C6A84EFD_il2cpp_TypeInfo_var);
|
|
Stack_1__ctor_m2A8D4EF841D474ABBD42CA0BE7389F3C1A1A31E7(L_1, Stack_1__ctor_m2A8D4EF841D474ABBD42CA0BE7389F3C1A1A31E7_RuntimeMethod_var);
|
|
__this->___ctx_stack = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___ctx_stack), (void*)L_1);
|
|
WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* L_2 = (WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F*)il2cpp_codegen_object_new(WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F_il2cpp_TypeInfo_var);
|
|
WriterContext__ctor_m776EF36E46B33DFC054B4AD1E6F3139B038AF037(L_2, NULL);
|
|
__this->___context = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___context), (void*)L_2);
|
|
Stack_1_t2CDC562A4A6FD1FE4DE0FC63A08FC106C6A84EFD* L_3 = __this->___ctx_stack;
|
|
WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* L_4 = __this->___context;
|
|
NullCheck(L_3);
|
|
Stack_1_Push_mCC27D4FD504E058A5A42BE3285782C44D715DF4A(L_3, L_4, Stack_1_Push_mCC27D4FD504E058A5A42BE3285782C44D715DF4A_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_IntToHex_mF5E06CC13D2F0D5229D2BD63C5FD75D07CD2E2FE (int32_t ___0_n, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___1_hex, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
{
|
|
V_1 = 0;
|
|
goto IL_003b;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
int32_t L_0 = ___0_n;
|
|
V_0 = ((int32_t)(L_0%((int32_t)16)));
|
|
int32_t L_1 = V_0;
|
|
V_2 = (bool)((((int32_t)L_1) < ((int32_t)((int32_t)10)))? 1 : 0);
|
|
bool L_2 = V_2;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_3 = ___1_hex;
|
|
int32_t L_4 = V_1;
|
|
int32_t L_5 = V_0;
|
|
NullCheck(L_3);
|
|
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract(3, L_4))), (Il2CppChar)((int32_t)(uint16_t)((int32_t)il2cpp_codegen_add(((int32_t)48), L_5))));
|
|
goto IL_0031;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_6 = ___1_hex;
|
|
int32_t L_7 = V_1;
|
|
int32_t L_8 = V_0;
|
|
NullCheck(L_6);
|
|
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract(3, L_7))), (Il2CppChar)((int32_t)(uint16_t)((int32_t)il2cpp_codegen_add(((int32_t)65), ((int32_t)il2cpp_codegen_subtract(L_8, ((int32_t)10)))))));
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
int32_t L_9 = ___0_n;
|
|
___0_n = ((int32_t)(L_9>>4));
|
|
int32_t L_10 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_10, 1));
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
int32_t L_11 = V_1;
|
|
V_3 = (bool)((((int32_t)L_11) < ((int32_t)4))? 1 : 0);
|
|
bool L_12 = V_3;
|
|
if (L_12)
|
|
{
|
|
goto IL_0005;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Indent_m139D71DBB2C331C1C9A23D48AD0B607D10D8FEFA (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0 = __this->___pretty_print;
|
|
V_0 = L_0;
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = __this->___indentation;
|
|
int32_t L_3 = __this->___indent_value;
|
|
__this->___indentation = ((int32_t)il2cpp_codegen_add(L_2, L_3));
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Put_mFABB67DDE2B46F39CB3BD04A8A883D908934CDF0 (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, String_t* ___0_str, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
bool L_0 = __this->___pretty_print;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* L_1 = __this->___context;
|
|
NullCheck(L_1);
|
|
bool L_2 = L_1->___ExpectingValue;
|
|
G_B3_0 = ((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
|
|
goto IL_001a;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
bool L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0045;
|
|
}
|
|
}
|
|
{
|
|
V_1 = 0;
|
|
goto IL_0037;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_4 = __this->___writer;
|
|
NullCheck(L_4);
|
|
VirtualActionInvoker1< Il2CppChar >::Invoke(15, L_4, ((int32_t)32));
|
|
int32_t L_5 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
}
|
|
|
|
IL_0037:
|
|
{
|
|
int32_t L_6 = V_1;
|
|
int32_t L_7 = __this->___indentation;
|
|
V_2 = (bool)((((int32_t)L_6) < ((int32_t)L_7))? 1 : 0);
|
|
bool L_8 = V_2;
|
|
if (L_8)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_9 = __this->___writer;
|
|
String_t* L_10 = ___0_str;
|
|
NullCheck(L_9);
|
|
VirtualActionInvoker1< String_t* >::Invoke(27, L_9, L_10);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_PutNewline_mFE1588405B1DBE7ADC65A867FB1DB57A0D9CD3C4 (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
JsonWriter_PutNewline_mC6A36636BB9D628BCAB9C2F1B4C27546A9D07100(__this, (bool)1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_PutNewline_mC6A36636BB9D628BCAB9C2F1B4C27546A9D07100 (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, bool ___0_add_comma, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
int32_t G_B4_0 = 0;
|
|
int32_t G_B9_0 = 0;
|
|
{
|
|
bool L_0 = ___0_add_comma;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0021;
|
|
}
|
|
}
|
|
{
|
|
WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* L_1 = __this->___context;
|
|
NullCheck(L_1);
|
|
bool L_2 = L_1->___ExpectingValue;
|
|
if (L_2)
|
|
{
|
|
goto IL_0021;
|
|
}
|
|
}
|
|
{
|
|
WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* L_3 = __this->___context;
|
|
NullCheck(L_3);
|
|
int32_t L_4 = L_3->___Count;
|
|
G_B4_0 = ((((int32_t)L_4) > ((int32_t)1))? 1 : 0);
|
|
goto IL_0022;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
G_B4_0 = 0;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
V_0 = (bool)G_B4_0;
|
|
bool L_5 = V_0;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0036;
|
|
}
|
|
}
|
|
{
|
|
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_6 = __this->___writer;
|
|
NullCheck(L_6);
|
|
VirtualActionInvoker1< Il2CppChar >::Invoke(15, L_6, ((int32_t)44));
|
|
}
|
|
|
|
IL_0036:
|
|
{
|
|
bool L_7 = __this->___pretty_print;
|
|
if (!L_7)
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
}
|
|
{
|
|
WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* L_8 = __this->___context;
|
|
NullCheck(L_8);
|
|
bool L_9 = L_8->___ExpectingValue;
|
|
G_B9_0 = ((((int32_t)L_9) == ((int32_t)0))? 1 : 0);
|
|
goto IL_004f;
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
G_B9_0 = 0;
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
V_1 = (bool)G_B9_0;
|
|
bool L_10 = V_1;
|
|
if (!L_10)
|
|
{
|
|
goto IL_0066;
|
|
}
|
|
}
|
|
{
|
|
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_11 = __this->___writer;
|
|
String_t* L_12;
|
|
L_12 = Environment_get_NewLine_m8BF68A4EFDAFFB66500984CE779629811BA98FFF(NULL);
|
|
NullCheck(L_11);
|
|
VirtualActionInvoker1< String_t* >::Invoke(27, L_11, L_12);
|
|
}
|
|
|
|
IL_0066:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_PutString_m8BD1DBB2B72F8027F3B9DE4CD5D4807C5849F3D1 (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, String_t* ___0_str, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5962E944D7340CE47999BF097B4AFD70C1501FB9);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral785F17F45C331C415D0A7458E6AAC36966399C51);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7F3238CD8C342B06FB9AB185C610175C84625462);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA7C3FCA8C63E127B542B38A5CA5E3FEEDDD1B122);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB78F235D4291950A7D101307609C259F3E1F033F);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA666908BB15F4E1D2649752EC5DCBD0D5C64699);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
Il2CppChar V_2 = 0x0;
|
|
Il2CppChar V_3 = 0x0;
|
|
bool V_4 = false;
|
|
bool V_5 = false;
|
|
int32_t G_B16_0 = 0;
|
|
{
|
|
String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty;
|
|
JsonWriter_Put_mFABB67DDE2B46F39CB3BD04A8A883D908934CDF0(__this, L_0, NULL);
|
|
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_1 = __this->___writer;
|
|
NullCheck(L_1);
|
|
VirtualActionInvoker1< Il2CppChar >::Invoke(15, L_1, ((int32_t)34));
|
|
String_t* L_2 = ___0_str;
|
|
NullCheck(L_2);
|
|
int32_t L_3;
|
|
L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_2, NULL);
|
|
V_0 = L_3;
|
|
V_1 = 0;
|
|
goto IL_016b;
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
String_t* L_4 = ___0_str;
|
|
int32_t L_5 = V_1;
|
|
NullCheck(L_4);
|
|
Il2CppChar L_6;
|
|
L_6 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_4, L_5, NULL);
|
|
V_3 = L_6;
|
|
Il2CppChar L_7 = V_3;
|
|
V_2 = L_7;
|
|
Il2CppChar L_8 = V_2;
|
|
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_8, 8)))
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_00e5;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0093;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0067;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_00f8;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_00cf;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_007d;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
|
|
IL_0056:
|
|
{
|
|
Il2CppChar L_9 = V_2;
|
|
if ((((int32_t)L_9) == ((int32_t)((int32_t)34))))
|
|
{
|
|
goto IL_00a9;
|
|
}
|
|
}
|
|
{
|
|
goto IL_005d;
|
|
}
|
|
|
|
IL_005d:
|
|
{
|
|
Il2CppChar L_10 = V_2;
|
|
if ((((int32_t)L_10) == ((int32_t)((int32_t)92))))
|
|
{
|
|
goto IL_00a9;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00f8;
|
|
}
|
|
|
|
IL_0067:
|
|
{
|
|
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_11 = __this->___writer;
|
|
NullCheck(L_11);
|
|
VirtualActionInvoker1< String_t* >::Invoke(27, L_11, _stringLiteral785F17F45C331C415D0A7458E6AAC36966399C51);
|
|
goto IL_0167;
|
|
}
|
|
|
|
IL_007d:
|
|
{
|
|
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_12 = __this->___writer;
|
|
NullCheck(L_12);
|
|
VirtualActionInvoker1< String_t* >::Invoke(27, L_12, _stringLiteralB78F235D4291950A7D101307609C259F3E1F033F);
|
|
goto IL_0167;
|
|
}
|
|
|
|
IL_0093:
|
|
{
|
|
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_13 = __this->___writer;
|
|
NullCheck(L_13);
|
|
VirtualActionInvoker1< String_t* >::Invoke(27, L_13, _stringLiteral7F3238CD8C342B06FB9AB185C610175C84625462);
|
|
goto IL_0167;
|
|
}
|
|
|
|
IL_00a9:
|
|
{
|
|
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_14 = __this->___writer;
|
|
NullCheck(L_14);
|
|
VirtualActionInvoker1< Il2CppChar >::Invoke(15, L_14, ((int32_t)92));
|
|
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_15 = __this->___writer;
|
|
String_t* L_16 = ___0_str;
|
|
int32_t L_17 = V_1;
|
|
NullCheck(L_16);
|
|
Il2CppChar L_18;
|
|
L_18 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_16, L_17, NULL);
|
|
NullCheck(L_15);
|
|
VirtualActionInvoker1< Il2CppChar >::Invoke(15, L_15, L_18);
|
|
goto IL_0167;
|
|
}
|
|
|
|
IL_00cf:
|
|
{
|
|
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_19 = __this->___writer;
|
|
NullCheck(L_19);
|
|
VirtualActionInvoker1< String_t* >::Invoke(27, L_19, _stringLiteralA7C3FCA8C63E127B542B38A5CA5E3FEEDDD1B122);
|
|
goto IL_0167;
|
|
}
|
|
|
|
IL_00e5:
|
|
{
|
|
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_20 = __this->___writer;
|
|
NullCheck(L_20);
|
|
VirtualActionInvoker1< String_t* >::Invoke(27, L_20, _stringLiteral5962E944D7340CE47999BF097B4AFD70C1501FB9);
|
|
goto IL_0167;
|
|
}
|
|
|
|
IL_00f8:
|
|
{
|
|
String_t* L_21 = ___0_str;
|
|
int32_t L_22 = V_1;
|
|
NullCheck(L_21);
|
|
Il2CppChar L_23;
|
|
L_23 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_21, L_22, NULL);
|
|
if ((((int32_t)L_23) < ((int32_t)((int32_t)32))))
|
|
{
|
|
goto IL_0113;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_24 = ___0_str;
|
|
int32_t L_25 = V_1;
|
|
NullCheck(L_24);
|
|
Il2CppChar L_26;
|
|
L_26 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_24, L_25, NULL);
|
|
G_B16_0 = ((((int32_t)((((int32_t)L_26) > ((int32_t)((int32_t)126)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0114;
|
|
}
|
|
|
|
IL_0113:
|
|
{
|
|
G_B16_0 = 0;
|
|
}
|
|
|
|
IL_0114:
|
|
{
|
|
V_4 = (bool)G_B16_0;
|
|
bool L_27 = V_4;
|
|
if (!L_27)
|
|
{
|
|
goto IL_0130;
|
|
}
|
|
}
|
|
{
|
|
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_28 = __this->___writer;
|
|
String_t* L_29 = ___0_str;
|
|
int32_t L_30 = V_1;
|
|
NullCheck(L_29);
|
|
Il2CppChar L_31;
|
|
L_31 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_29, L_30, NULL);
|
|
NullCheck(L_28);
|
|
VirtualActionInvoker1< Il2CppChar >::Invoke(15, L_28, L_31);
|
|
goto IL_0167;
|
|
}
|
|
|
|
IL_0130:
|
|
{
|
|
String_t* L_32 = ___0_str;
|
|
int32_t L_33 = V_1;
|
|
NullCheck(L_32);
|
|
Il2CppChar L_34;
|
|
L_34 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_32, L_33, NULL);
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_35 = __this->___hex_seq;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F_il2cpp_TypeInfo_var);
|
|
JsonWriter_IntToHex_mF5E06CC13D2F0D5229D2BD63C5FD75D07CD2E2FE(L_34, L_35, NULL);
|
|
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_36 = __this->___writer;
|
|
NullCheck(L_36);
|
|
VirtualActionInvoker1< String_t* >::Invoke(27, L_36, _stringLiteralDA666908BB15F4E1D2649752EC5DCBD0D5C64699);
|
|
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_37 = __this->___writer;
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_38 = __this->___hex_seq;
|
|
NullCheck(L_37);
|
|
VirtualActionInvoker1< CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* >::Invoke(16, L_37, L_38);
|
|
}
|
|
|
|
IL_0167:
|
|
{
|
|
int32_t L_39 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_39, 1));
|
|
}
|
|
|
|
IL_016b:
|
|
{
|
|
int32_t L_40 = V_1;
|
|
int32_t L_41 = V_0;
|
|
V_5 = (bool)((((int32_t)L_40) < ((int32_t)L_41))? 1 : 0);
|
|
bool L_42 = V_5;
|
|
if (L_42)
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_43 = __this->___writer;
|
|
NullCheck(L_43);
|
|
VirtualActionInvoker1< Il2CppChar >::Invoke(15, L_43, ((int32_t)34));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Unindent_m2EF20A77048699830DA37601DA2BE20F17B1D5E0 (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0 = __this->___pretty_print;
|
|
V_0 = L_0;
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = __this->___indentation;
|
|
int32_t L_3 = __this->___indent_value;
|
|
__this->___indentation = ((int32_t)il2cpp_codegen_subtract(L_2, L_3));
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonWriter_ToString_m787891ECDDA05AC2F51A2571A273ED2A5FF984FC (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
String_t* V_1 = NULL;
|
|
{
|
|
StringBuilder_t* L_0 = __this->___inst_string_builder;
|
|
V_0 = (bool)((((RuntimeObject*)(StringBuilder_t*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty;
|
|
V_1 = L_2;
|
|
goto IL_0025;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
StringBuilder_t* L_3 = __this->___inst_string_builder;
|
|
NullCheck(L_3);
|
|
String_t* L_4;
|
|
L_4 = VirtualFuncInvoker0< String_t* >::Invoke(3, L_3);
|
|
V_1 = L_4;
|
|
goto IL_0025;
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
String_t* L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Reset_mCFA289C24C9ECEE98AD50E970F0D1F032F7E1989 (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Clear_m6ADA89EC27B8CEB290D73A08C00E14FCF1440D65_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Push_mCC27D4FD504E058A5A42BE3285782C44D715DF4A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
__this->___has_reached_end = (bool)0;
|
|
Stack_1_t2CDC562A4A6FD1FE4DE0FC63A08FC106C6A84EFD* L_0 = __this->___ctx_stack;
|
|
NullCheck(L_0);
|
|
Stack_1_Clear_m6ADA89EC27B8CEB290D73A08C00E14FCF1440D65(L_0, Stack_1_Clear_m6ADA89EC27B8CEB290D73A08C00E14FCF1440D65_RuntimeMethod_var);
|
|
WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* L_1 = (WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F*)il2cpp_codegen_object_new(WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F_il2cpp_TypeInfo_var);
|
|
WriterContext__ctor_m776EF36E46B33DFC054B4AD1E6F3139B038AF037(L_1, NULL);
|
|
__this->___context = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___context), (void*)L_1);
|
|
Stack_1_t2CDC562A4A6FD1FE4DE0FC63A08FC106C6A84EFD* L_2 = __this->___ctx_stack;
|
|
WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* L_3 = __this->___context;
|
|
NullCheck(L_2);
|
|
Stack_1_Push_mCC27D4FD504E058A5A42BE3285782C44D715DF4A(L_2, L_3, Stack_1_Push_mCC27D4FD504E058A5A42BE3285782C44D715DF4A_RuntimeMethod_var);
|
|
StringBuilder_t* L_4 = __this->___inst_string_builder;
|
|
V_0 = (bool)((!(((RuntimeObject*)(StringBuilder_t*)L_4) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_5 = V_0;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0058;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_6 = __this->___inst_string_builder;
|
|
StringBuilder_t* L_7 = __this->___inst_string_builder;
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8(L_7, NULL);
|
|
NullCheck(L_6);
|
|
StringBuilder_t* L_9;
|
|
L_9 = StringBuilder_Remove_m0D93692674D1C09795C7D6542420A3B6C5F81E90(L_6, 0, L_8, NULL);
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Write_mFACCB1B6087CE1C66A68CE3BA2AF9844F7F31D8C (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, bool ___0_boolean, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral77D38C0623F92B292B925F6E72CF5CF99A20D4EB);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB7C45DD316C68ABF3429C20058C2981C652192F2);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* G_B2_0 = NULL;
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* G_B1_0 = NULL;
|
|
String_t* G_B3_0 = NULL;
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* G_B3_1 = NULL;
|
|
{
|
|
JsonWriter_DoValidation_m3F03AD6E422930F933D182AD01154E08F32EFF3B(__this, 4, NULL);
|
|
JsonWriter_PutNewline_mFE1588405B1DBE7ADC65A867FB1DB57A0D9CD3C4(__this, NULL);
|
|
bool L_0 = ___0_boolean;
|
|
if (L_0)
|
|
{
|
|
G_B2_0 = __this;
|
|
goto IL_001b;
|
|
}
|
|
G_B1_0 = __this;
|
|
}
|
|
{
|
|
G_B3_0 = _stringLiteral77D38C0623F92B292B925F6E72CF5CF99A20D4EB;
|
|
G_B3_1 = G_B1_0;
|
|
goto IL_0020;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
G_B3_0 = _stringLiteralB7C45DD316C68ABF3429C20058C2981C652192F2;
|
|
G_B3_1 = G_B2_0;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
NullCheck(G_B3_1);
|
|
JsonWriter_Put_mFABB67DDE2B46F39CB3BD04A8A883D908934CDF0(G_B3_1, G_B3_0, NULL);
|
|
WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* L_1 = __this->___context;
|
|
NullCheck(L_1);
|
|
L_1->___ExpectingValue = (bool)0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Write_m2042A55B478D11A2C4BB399CE96C17DB3D85133A (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___0_number, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
JsonWriter_DoValidation_m3F03AD6E422930F933D182AD01154E08F32EFF3B(__this, 4, NULL);
|
|
JsonWriter_PutNewline_mFE1588405B1DBE7ADC65A867FB1DB57A0D9CD3C4(__this, NULL);
|
|
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_0 = ___0_number;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F_il2cpp_TypeInfo_var);
|
|
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_1 = ((JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F_StaticFields*)il2cpp_codegen_static_fields_for(JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F_il2cpp_TypeInfo_var))->___number_format;
|
|
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
String_t* L_2;
|
|
L_2 = Convert_ToString_mF6A8BB10515230B099A7EDA9D28C2F8991F758CA(L_0, L_1, NULL);
|
|
JsonWriter_Put_mFABB67DDE2B46F39CB3BD04A8A883D908934CDF0(__this, L_2, NULL);
|
|
WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* L_3 = __this->___context;
|
|
NullCheck(L_3);
|
|
L_3->___ExpectingValue = (bool)0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Write_m657048A70C011FC85FD3773A026EC0B21462AB4D (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, double ___0_number, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC31E66F919D06AD2730738EF7F884271E99BB7DA);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
bool V_1 = false;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
JsonWriter_DoValidation_m3F03AD6E422930F933D182AD01154E08F32EFF3B(__this, 4, NULL);
|
|
JsonWriter_PutNewline_mFE1588405B1DBE7ADC65A867FB1DB57A0D9CD3C4(__this, NULL);
|
|
double L_0 = ___0_number;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F_il2cpp_TypeInfo_var);
|
|
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_1 = ((JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F_StaticFields*)il2cpp_codegen_static_fields_for(JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F_il2cpp_TypeInfo_var))->___number_format;
|
|
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
String_t* L_2;
|
|
L_2 = Convert_ToString_m7EBE84B1D453D12C9514AD3EF4F6B3F55A5E5C9B(L_0, L_1, NULL);
|
|
V_0 = L_2;
|
|
String_t* L_3 = V_0;
|
|
JsonWriter_Put_mFABB67DDE2B46F39CB3BD04A8A883D908934CDF0(__this, L_3, NULL);
|
|
String_t* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
int32_t L_5;
|
|
L_5 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_4, ((int32_t)46), NULL);
|
|
if ((!(((uint32_t)L_5) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_6 = V_0;
|
|
NullCheck(L_6);
|
|
int32_t L_7;
|
|
L_7 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_6, ((int32_t)69), NULL);
|
|
G_B3_0 = ((((int32_t)L_7) == ((int32_t)(-1)))? 1 : 0);
|
|
goto IL_003d;
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
V_1 = (bool)G_B3_0;
|
|
bool L_8 = V_1;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0054;
|
|
}
|
|
}
|
|
{
|
|
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_9 = __this->___writer;
|
|
NullCheck(L_9);
|
|
VirtualActionInvoker1< String_t* >::Invoke(27, L_9, _stringLiteralC31E66F919D06AD2730738EF7F884271E99BB7DA);
|
|
}
|
|
|
|
IL_0054:
|
|
{
|
|
WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* L_10 = __this->___context;
|
|
NullCheck(L_10);
|
|
L_10->___ExpectingValue = (bool)0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Write_mC98F01D8E7A98604CF52F7438A047C559126FE29 (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, float ___0_number, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
{
|
|
JsonWriter_DoValidation_m3F03AD6E422930F933D182AD01154E08F32EFF3B(__this, 4, NULL);
|
|
JsonWriter_PutNewline_mFE1588405B1DBE7ADC65A867FB1DB57A0D9CD3C4(__this, NULL);
|
|
float L_0 = ___0_number;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F_il2cpp_TypeInfo_var);
|
|
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_1 = ((JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F_StaticFields*)il2cpp_codegen_static_fields_for(JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F_il2cpp_TypeInfo_var))->___number_format;
|
|
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
String_t* L_2;
|
|
L_2 = Convert_ToString_mBFBBE2F36FF6B3235848801940FD15A17028AC70(L_0, L_1, NULL);
|
|
V_0 = L_2;
|
|
String_t* L_3 = V_0;
|
|
JsonWriter_Put_mFABB67DDE2B46F39CB3BD04A8A883D908934CDF0(__this, L_3, NULL);
|
|
WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* L_4 = __this->___context;
|
|
NullCheck(L_4);
|
|
L_4->___ExpectingValue = (bool)0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Write_m3A3246FEFCA9BCEB4F3E7D2D5AC0FF49B8BBD3A7 (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, int32_t ___0_number, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
JsonWriter_DoValidation_m3F03AD6E422930F933D182AD01154E08F32EFF3B(__this, 4, NULL);
|
|
JsonWriter_PutNewline_mFE1588405B1DBE7ADC65A867FB1DB57A0D9CD3C4(__this, NULL);
|
|
int32_t L_0 = ___0_number;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F_il2cpp_TypeInfo_var);
|
|
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_1 = ((JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F_StaticFields*)il2cpp_codegen_static_fields_for(JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F_il2cpp_TypeInfo_var))->___number_format;
|
|
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
String_t* L_2;
|
|
L_2 = Convert_ToString_mC65AC3BEDED3049732E8A67B496AAAEF4C732871(L_0, L_1, NULL);
|
|
JsonWriter_Put_mFABB67DDE2B46F39CB3BD04A8A883D908934CDF0(__this, L_2, NULL);
|
|
WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* L_3 = __this->___context;
|
|
NullCheck(L_3);
|
|
L_3->___ExpectingValue = (bool)0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Write_m500833BCB5B21114C1C8A3FA7DAAF6A1EAD2A3D4 (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, int64_t ___0_number, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
JsonWriter_DoValidation_m3F03AD6E422930F933D182AD01154E08F32EFF3B(__this, 4, NULL);
|
|
JsonWriter_PutNewline_mFE1588405B1DBE7ADC65A867FB1DB57A0D9CD3C4(__this, NULL);
|
|
int64_t L_0 = ___0_number;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F_il2cpp_TypeInfo_var);
|
|
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_1 = ((JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F_StaticFields*)il2cpp_codegen_static_fields_for(JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F_il2cpp_TypeInfo_var))->___number_format;
|
|
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
String_t* L_2;
|
|
L_2 = Convert_ToString_m03FCA4B41451E9A04705485B1C2FFC3D826B63E1(L_0, L_1, NULL);
|
|
JsonWriter_Put_mFABB67DDE2B46F39CB3BD04A8A883D908934CDF0(__this, L_2, NULL);
|
|
WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* L_3 = __this->___context;
|
|
NullCheck(L_3);
|
|
L_3->___ExpectingValue = (bool)0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Write_mC6C394BE18186CAEB8597055057A1AECDEE56916 (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, String_t* ___0_str, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5BEFD8CC60A79699B5BB00E37BAC5B62D371E174);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
JsonWriter_DoValidation_m3F03AD6E422930F933D182AD01154E08F32EFF3B(__this, 4, NULL);
|
|
JsonWriter_PutNewline_mFE1588405B1DBE7ADC65A867FB1DB57A0D9CD3C4(__this, NULL);
|
|
String_t* L_0 = ___0_str;
|
|
V_0 = (bool)((((RuntimeObject*)(String_t*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
JsonWriter_Put_mFABB67DDE2B46F39CB3BD04A8A883D908934CDF0(__this, _stringLiteral5BEFD8CC60A79699B5BB00E37BAC5B62D371E174, NULL);
|
|
goto IL_0032;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
String_t* L_2 = ___0_str;
|
|
JsonWriter_PutString_m8BD1DBB2B72F8027F3B9DE4CD5D4807C5849F3D1(__this, L_2, NULL);
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* L_3 = __this->___context;
|
|
NullCheck(L_3);
|
|
L_3->___ExpectingValue = (bool)0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Write_mA2318C6CCFB4A565564457D435FF8EDEDB0F6EAB (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, uint64_t ___0_number, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
JsonWriter_DoValidation_m3F03AD6E422930F933D182AD01154E08F32EFF3B(__this, 4, NULL);
|
|
JsonWriter_PutNewline_mFE1588405B1DBE7ADC65A867FB1DB57A0D9CD3C4(__this, NULL);
|
|
uint64_t L_0 = ___0_number;
|
|
il2cpp_codegen_runtime_class_init_inline(JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F_il2cpp_TypeInfo_var);
|
|
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_1 = ((JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F_StaticFields*)il2cpp_codegen_static_fields_for(JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F_il2cpp_TypeInfo_var))->___number_format;
|
|
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
String_t* L_2;
|
|
L_2 = Convert_ToString_mB35C9B82D948EFB22F235F65AC3996B9F44C6D38(L_0, L_1, NULL);
|
|
JsonWriter_Put_mFABB67DDE2B46F39CB3BD04A8A883D908934CDF0(__this, L_2, NULL);
|
|
WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* L_3 = __this->___context;
|
|
NullCheck(L_3);
|
|
L_3->___ExpectingValue = (bool)0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WriteArrayEnd_mE8262D6AC279897DA41D549CE12A8EA3054777B5 (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Peek_m20439CD5B4898A681D0F39D58BBC7E2C21CA584C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Pop_m98A1DBF775D66CFC5149DF79AFD2042E2E54ABC2_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_get_Count_m145C99D2412AD5B6C8CADF47696A334272AA6EDB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE166C9564FBDE461738077E3B1B506525EB6ACCC);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
JsonWriter_DoValidation_m3F03AD6E422930F933D182AD01154E08F32EFF3B(__this, 0, NULL);
|
|
JsonWriter_PutNewline_mC6A36636BB9D628BCAB9C2F1B4C27546A9D07100(__this, (bool)0, NULL);
|
|
Stack_1_t2CDC562A4A6FD1FE4DE0FC63A08FC106C6A84EFD* L_0 = __this->___ctx_stack;
|
|
NullCheck(L_0);
|
|
WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* L_1;
|
|
L_1 = Stack_1_Pop_m98A1DBF775D66CFC5149DF79AFD2042E2E54ABC2(L_0, Stack_1_Pop_m98A1DBF775D66CFC5149DF79AFD2042E2E54ABC2_RuntimeMethod_var);
|
|
Stack_1_t2CDC562A4A6FD1FE4DE0FC63A08FC106C6A84EFD* L_2 = __this->___ctx_stack;
|
|
NullCheck(L_2);
|
|
int32_t L_3;
|
|
L_3 = Stack_1_get_Count_m145C99D2412AD5B6C8CADF47696A334272AA6EDB_inline(L_2, Stack_1_get_Count_m145C99D2412AD5B6C8CADF47696A334272AA6EDB_RuntimeMethod_var);
|
|
V_0 = (bool)((((int32_t)L_3) == ((int32_t)1))? 1 : 0);
|
|
bool L_4 = V_0;
|
|
if (!L_4)
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
__this->___has_reached_end = (bool)1;
|
|
goto IL_0059;
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
Stack_1_t2CDC562A4A6FD1FE4DE0FC63A08FC106C6A84EFD* L_5 = __this->___ctx_stack;
|
|
NullCheck(L_5);
|
|
WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* L_6;
|
|
L_6 = Stack_1_Peek_m20439CD5B4898A681D0F39D58BBC7E2C21CA584C(L_5, Stack_1_Peek_m20439CD5B4898A681D0F39D58BBC7E2C21CA584C_RuntimeMethod_var);
|
|
__this->___context = L_6;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___context), (void*)L_6);
|
|
WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* L_7 = __this->___context;
|
|
NullCheck(L_7);
|
|
L_7->___ExpectingValue = (bool)0;
|
|
}
|
|
|
|
IL_0059:
|
|
{
|
|
JsonWriter_Unindent_m2EF20A77048699830DA37601DA2BE20F17B1D5E0(__this, NULL);
|
|
JsonWriter_Put_mFABB67DDE2B46F39CB3BD04A8A883D908934CDF0(__this, _stringLiteralE166C9564FBDE461738077E3B1B506525EB6ACCC, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WriteArrayStart_mF4AB20790AB8817BCCEEB5FA649832890D5AADEB (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Push_mCC27D4FD504E058A5A42BE3285782C44D715DF4A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD9691C4FD8A1F6B09DB1147CA32B442772FB46A1);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
JsonWriter_DoValidation_m3F03AD6E422930F933D182AD01154E08F32EFF3B(__this, 2, NULL);
|
|
JsonWriter_PutNewline_mFE1588405B1DBE7ADC65A867FB1DB57A0D9CD3C4(__this, NULL);
|
|
JsonWriter_Put_mFABB67DDE2B46F39CB3BD04A8A883D908934CDF0(__this, _stringLiteralD9691C4FD8A1F6B09DB1147CA32B442772FB46A1, NULL);
|
|
WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* L_0 = (WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F*)il2cpp_codegen_object_new(WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F_il2cpp_TypeInfo_var);
|
|
WriterContext__ctor_m776EF36E46B33DFC054B4AD1E6F3139B038AF037(L_0, NULL);
|
|
__this->___context = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___context), (void*)L_0);
|
|
WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* L_1 = __this->___context;
|
|
NullCheck(L_1);
|
|
L_1->___InArray = (bool)1;
|
|
Stack_1_t2CDC562A4A6FD1FE4DE0FC63A08FC106C6A84EFD* L_2 = __this->___ctx_stack;
|
|
WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* L_3 = __this->___context;
|
|
NullCheck(L_2);
|
|
Stack_1_Push_mCC27D4FD504E058A5A42BE3285782C44D715DF4A(L_2, L_3, Stack_1_Push_mCC27D4FD504E058A5A42BE3285782C44D715DF4A_RuntimeMethod_var);
|
|
JsonWriter_Indent_m139D71DBB2C331C1C9A23D48AD0B607D10D8FEFA(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WriteObjectEnd_m7B1F539A650AC9AA9413B9C3FF1DAA27834141AF (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Peek_m20439CD5B4898A681D0F39D58BBC7E2C21CA584C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Pop_m98A1DBF775D66CFC5149DF79AFD2042E2E54ABC2_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_get_Count_m145C99D2412AD5B6C8CADF47696A334272AA6EDB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4D8D9C94AC5DA5FCED2EC8A64E10E714A2515C30);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
JsonWriter_DoValidation_m3F03AD6E422930F933D182AD01154E08F32EFF3B(__this, 1, NULL);
|
|
JsonWriter_PutNewline_mC6A36636BB9D628BCAB9C2F1B4C27546A9D07100(__this, (bool)0, NULL);
|
|
Stack_1_t2CDC562A4A6FD1FE4DE0FC63A08FC106C6A84EFD* L_0 = __this->___ctx_stack;
|
|
NullCheck(L_0);
|
|
WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* L_1;
|
|
L_1 = Stack_1_Pop_m98A1DBF775D66CFC5149DF79AFD2042E2E54ABC2(L_0, Stack_1_Pop_m98A1DBF775D66CFC5149DF79AFD2042E2E54ABC2_RuntimeMethod_var);
|
|
Stack_1_t2CDC562A4A6FD1FE4DE0FC63A08FC106C6A84EFD* L_2 = __this->___ctx_stack;
|
|
NullCheck(L_2);
|
|
int32_t L_3;
|
|
L_3 = Stack_1_get_Count_m145C99D2412AD5B6C8CADF47696A334272AA6EDB_inline(L_2, Stack_1_get_Count_m145C99D2412AD5B6C8CADF47696A334272AA6EDB_RuntimeMethod_var);
|
|
V_0 = (bool)((((int32_t)L_3) == ((int32_t)1))? 1 : 0);
|
|
bool L_4 = V_0;
|
|
if (!L_4)
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
__this->___has_reached_end = (bool)1;
|
|
goto IL_0059;
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
Stack_1_t2CDC562A4A6FD1FE4DE0FC63A08FC106C6A84EFD* L_5 = __this->___ctx_stack;
|
|
NullCheck(L_5);
|
|
WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* L_6;
|
|
L_6 = Stack_1_Peek_m20439CD5B4898A681D0F39D58BBC7E2C21CA584C(L_5, Stack_1_Peek_m20439CD5B4898A681D0F39D58BBC7E2C21CA584C_RuntimeMethod_var);
|
|
__this->___context = L_6;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___context), (void*)L_6);
|
|
WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* L_7 = __this->___context;
|
|
NullCheck(L_7);
|
|
L_7->___ExpectingValue = (bool)0;
|
|
}
|
|
|
|
IL_0059:
|
|
{
|
|
JsonWriter_Unindent_m2EF20A77048699830DA37601DA2BE20F17B1D5E0(__this, NULL);
|
|
JsonWriter_Put_mFABB67DDE2B46F39CB3BD04A8A883D908934CDF0(__this, _stringLiteral4D8D9C94AC5DA5FCED2EC8A64E10E714A2515C30, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WriteObjectStart_m90F3A0A19C03EA7CF90017768E3FA217E4038688 (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Push_mCC27D4FD504E058A5A42BE3285782C44D715DF4A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0C3C6829C3CCF8020C6AC45B87963ADC095CD44A);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
JsonWriter_DoValidation_m3F03AD6E422930F933D182AD01154E08F32EFF3B(__this, 2, NULL);
|
|
JsonWriter_PutNewline_mFE1588405B1DBE7ADC65A867FB1DB57A0D9CD3C4(__this, NULL);
|
|
JsonWriter_Put_mFABB67DDE2B46F39CB3BD04A8A883D908934CDF0(__this, _stringLiteral0C3C6829C3CCF8020C6AC45B87963ADC095CD44A, NULL);
|
|
WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* L_0 = (WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F*)il2cpp_codegen_object_new(WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F_il2cpp_TypeInfo_var);
|
|
WriterContext__ctor_m776EF36E46B33DFC054B4AD1E6F3139B038AF037(L_0, NULL);
|
|
__this->___context = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___context), (void*)L_0);
|
|
WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* L_1 = __this->___context;
|
|
NullCheck(L_1);
|
|
L_1->___InObject = (bool)1;
|
|
Stack_1_t2CDC562A4A6FD1FE4DE0FC63A08FC106C6A84EFD* L_2 = __this->___ctx_stack;
|
|
WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* L_3 = __this->___context;
|
|
NullCheck(L_2);
|
|
Stack_1_Push_mCC27D4FD504E058A5A42BE3285782C44D715DF4A(L_2, L_3, Stack_1_Push_mCC27D4FD504E058A5A42BE3285782C44D715DF4A_RuntimeMethod_var);
|
|
JsonWriter_Indent_m139D71DBB2C331C1C9A23D48AD0B607D10D8FEFA(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WritePropertyName_m5646EF1771ABCFCCAAD52086AAE3387579E158E0 (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* __this, String_t* ___0_property_name, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1168E92C164109D6220480DEDA987085B2A21155);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
int32_t V_3 = 0;
|
|
bool V_4 = false;
|
|
String_t* G_B4_0 = NULL;
|
|
{
|
|
JsonWriter_DoValidation_m3F03AD6E422930F933D182AD01154E08F32EFF3B(__this, 3, NULL);
|
|
JsonWriter_PutNewline_mFE1588405B1DBE7ADC65A867FB1DB57A0D9CD3C4(__this, NULL);
|
|
String_t* L_0 = ___0_property_name;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
bool L_1 = __this->___lower_case_properties;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_2 = ___0_property_name;
|
|
NullCheck(L_2);
|
|
String_t* L_3;
|
|
L_3 = String_ToLowerInvariant_mBE32C93DE27C5353FEA3FA654FC1DDBE3D0EB0F2(L_2, NULL);
|
|
G_B4_0 = L_3;
|
|
goto IL_0024;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
String_t* L_4 = ___0_property_name;
|
|
G_B4_0 = L_4;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
V_0 = G_B4_0;
|
|
String_t* L_5 = V_0;
|
|
JsonWriter_PutString_m8BD1DBB2B72F8027F3B9DE4CD5D4807C5849F3D1(__this, L_5, NULL);
|
|
bool L_6 = __this->___pretty_print;
|
|
V_1 = L_6;
|
|
bool L_7 = V_1;
|
|
if (!L_7)
|
|
{
|
|
goto IL_00ac;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_8 = V_0;
|
|
NullCheck(L_8);
|
|
int32_t L_9;
|
|
L_9 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_8, NULL);
|
|
WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* L_10 = __this->___context;
|
|
NullCheck(L_10);
|
|
int32_t L_11 = L_10->___Padding;
|
|
V_2 = (bool)((((int32_t)L_9) > ((int32_t)L_11))? 1 : 0);
|
|
bool L_12 = V_2;
|
|
if (!L_12)
|
|
{
|
|
goto IL_0062;
|
|
}
|
|
}
|
|
{
|
|
WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* L_13 = __this->___context;
|
|
String_t* L_14 = V_0;
|
|
NullCheck(L_14);
|
|
int32_t L_15;
|
|
L_15 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_14, NULL);
|
|
NullCheck(L_13);
|
|
L_13->___Padding = L_15;
|
|
}
|
|
|
|
IL_0062:
|
|
{
|
|
WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* L_16 = __this->___context;
|
|
NullCheck(L_16);
|
|
int32_t L_17 = L_16->___Padding;
|
|
String_t* L_18 = V_0;
|
|
NullCheck(L_18);
|
|
int32_t L_19;
|
|
L_19 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_18, NULL);
|
|
V_3 = ((int32_t)il2cpp_codegen_subtract(L_17, L_19));
|
|
goto IL_008b;
|
|
}
|
|
|
|
IL_0077:
|
|
{
|
|
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_20 = __this->___writer;
|
|
NullCheck(L_20);
|
|
VirtualActionInvoker1< Il2CppChar >::Invoke(15, L_20, ((int32_t)32));
|
|
int32_t L_21 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_subtract(L_21, 1));
|
|
}
|
|
|
|
IL_008b:
|
|
{
|
|
int32_t L_22 = V_3;
|
|
V_4 = (bool)((((int32_t)((((int32_t)L_22) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_23 = V_4;
|
|
if (L_23)
|
|
{
|
|
goto IL_0077;
|
|
}
|
|
}
|
|
{
|
|
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_24 = __this->___writer;
|
|
NullCheck(L_24);
|
|
VirtualActionInvoker1< String_t* >::Invoke(27, L_24, _stringLiteral1168E92C164109D6220480DEDA987085B2A21155);
|
|
goto IL_00bc;
|
|
}
|
|
|
|
IL_00ac:
|
|
{
|
|
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_25 = __this->___writer;
|
|
NullCheck(L_25);
|
|
VirtualActionInvoker1< Il2CppChar >::Invoke(15, L_25, ((int32_t)58));
|
|
}
|
|
|
|
IL_00bc:
|
|
{
|
|
WriterContext_t5E6D8EFF41F41F382870C9F0452344B25B6E666F* L_26 = __this->___context;
|
|
NullCheck(L_26);
|
|
L_26->___ExpectingValue = (bool)1;
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FsmContext__ctor_m65740EA47916AE8C2881DD66B2EEE0CECA3E7189 (FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, 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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Lexer_get_AllowComments_m0810E49622D9958F3C841466EEE6A9695B09F8AB (Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0 = __this->___allow_comments;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Lexer_set_AllowComments_mD446284CCEBEE8C862E32DCC4C3503D0BA8AF25A (Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_value;
|
|
__this->___allow_comments = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Lexer_get_AllowSingleQuotedStrings_m1A632DD60FDED6764AEF678AA716DDB98103A763 (Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0 = __this->___allow_single_quoted_strings;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Lexer_set_AllowSingleQuotedStrings_mA18FE918B277D75318D4DB37638C04173C05A305 (Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_value;
|
|
__this->___allow_single_quoted_strings = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Lexer_get_EndOfInput_m450A1AC83F893FDE38826AFD2A726428956491AC (Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0 = __this->___end_of_input;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Lexer_get_Token_m77727EC36916D1258709D74850710E0487B67F99 (Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->___token;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
int32_t L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Lexer_get_StringValue_mE4230649FF6DC2B66F9FAA021BB30FC8B7EBA5FF (Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* __this, const RuntimeMethod* method)
|
|
{
|
|
String_t* V_0 = NULL;
|
|
{
|
|
String_t* L_0 = __this->___string_value;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
String_t* L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Lexer__cctor_m45DEF85CA6C7779F89F2D875FC750EE22B0B12E9 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Lexer_PopulateFsmTables_m8A3F92F8FE3FF591EA8479047E7D93D6D7C0CBE0((&((Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9_StaticFields*)il2cpp_codegen_static_fields_for(Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9_il2cpp_TypeInfo_var))->___fsm_handler_table), (&((Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9_StaticFields*)il2cpp_codegen_static_fields_for(Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9_il2cpp_TypeInfo_var))->___fsm_return_table), NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Lexer__ctor_mEF8BD28E77BCC5B98C34C9CE51CD2DCF786CA5A9 (Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* __this, TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___0_reader, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
__this->___allow_comments = (bool)1;
|
|
__this->___allow_single_quoted_strings = (bool)1;
|
|
__this->___input_buffer = 0;
|
|
StringBuilder_t* L_0 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
|
|
StringBuilder__ctor_m2619CA8D2C3476DF1A302D9D941498BB1C6164C5(L_0, ((int32_t)128), NULL);
|
|
__this->___string_buffer = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___string_buffer), (void*)L_0);
|
|
__this->___state = 1;
|
|
__this->___end_of_input = (bool)0;
|
|
TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* L_1 = ___0_reader;
|
|
__this->___reader = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___reader), (void*)L_1);
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_2 = (FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1*)il2cpp_codegen_object_new(FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1_il2cpp_TypeInfo_var);
|
|
FsmContext__ctor_m65740EA47916AE8C2881DD66B2EEE0CECA3E7189(L_2, NULL);
|
|
__this->___fsm_context = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___fsm_context), (void*)L_2);
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_3 = __this->___fsm_context;
|
|
NullCheck(L_3);
|
|
L_3->___L = __this;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_3->___L), (void*)__this);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Lexer_HexValue_m5FF113620372573CAA3AAA87DE9BFDFE9D1AA83A (int32_t ___0_digit, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
{
|
|
int32_t L_0 = ___0_digit;
|
|
V_1 = L_0;
|
|
int32_t L_1 = V_1;
|
|
V_0 = L_1;
|
|
int32_t L_2 = V_0;
|
|
switch (((int32_t)il2cpp_codegen_subtract(L_2, ((int32_t)65))))
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_004b;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0050;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0055;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_005a;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_005f;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_0064;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
int32_t L_3 = V_0;
|
|
switch (((int32_t)il2cpp_codegen_subtract(L_3, ((int32_t)97))))
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_004b;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0050;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0055;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_005a;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_005f;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_0064;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_0069;
|
|
}
|
|
|
|
IL_004b:
|
|
{
|
|
V_2 = ((int32_t)10);
|
|
goto IL_0070;
|
|
}
|
|
|
|
IL_0050:
|
|
{
|
|
V_2 = ((int32_t)11);
|
|
goto IL_0070;
|
|
}
|
|
|
|
IL_0055:
|
|
{
|
|
V_2 = ((int32_t)12);
|
|
goto IL_0070;
|
|
}
|
|
|
|
IL_005a:
|
|
{
|
|
V_2 = ((int32_t)13);
|
|
goto IL_0070;
|
|
}
|
|
|
|
IL_005f:
|
|
{
|
|
V_2 = ((int32_t)14);
|
|
goto IL_0070;
|
|
}
|
|
|
|
IL_0064:
|
|
{
|
|
V_2 = ((int32_t)15);
|
|
goto IL_0070;
|
|
}
|
|
|
|
IL_0069:
|
|
{
|
|
int32_t L_4 = ___0_digit;
|
|
V_2 = ((int32_t)il2cpp_codegen_subtract(L_4, ((int32_t)48)));
|
|
goto IL_0070;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
int32_t L_5 = V_2;
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Lexer_PopulateFsmTables_m8A3F92F8FE3FF591EA8479047E7D93D6D7C0CBE0 (StateHandlerU5BU5D_tA4E04C837AF2BDFE9B351DF6813E6AB954722B93** ___0_fsm_handler_table, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C** ___1_fsm_return_table, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Lexer_State10_m5904073970AD0D36A52E6EF3528D8932E8588D59_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Lexer_State11_m5A9D0CA38509AB81A532487CF5D2DC65D6B71F04_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Lexer_State12_m958CFDBC029123955374295C3E9913D1599A196D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Lexer_State13_m560152ABC44290068A66CB6BFC939C5AAFEC51FF_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Lexer_State14_m8C25AB90286E32F384E390E17E726F1BC08BC9DD_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Lexer_State15_m00E0DE3464F1159F7EB835A3286EFFA40B558403_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Lexer_State16_m8BD82487456FA900D6BBDED72C8C975696D67804_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Lexer_State17_mDFB66C6B09C25B8B8CC2EC226F446FEF70AFE493_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Lexer_State18_m2C29A371734A3AF4B66ACD39EA4356FCEEB42703_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Lexer_State19_mD468E390FBA1C3B79566FD0CF8AB183BEF7B9A7C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Lexer_State1_m35B7B80F34B274EC767AAE1FB3F61D2DB4A64699_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Lexer_State20_mB134E41DBE7A01B14B8ADBBEDFAE16596CB76C1A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Lexer_State21_m98740912488BE0C617E7112B1EFA0CC52080297A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Lexer_State22_m40E243F9BE396E171757231B9D5045880E92EC2D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Lexer_State23_m14C029F3770CEF5E40A14DE7B3D3C2952D9C385F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Lexer_State24_mD981E66641429ED14661F0D83F155ACB0ADE601E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Lexer_State25_m846973336CD8B49363EBCFB9EF83676772B9B6F3_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Lexer_State26_m464EBDB9597D118A7666A693F407F7E7126752EB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Lexer_State27_mFDC378B071D2ABA7045A6CE1B8AE7C7F40D99638_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Lexer_State28_m151FEC6858FB9E2A515CABFEFEDE5DAB3F736F91_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Lexer_State2_m205EFB31447C24D81684803A8952AE47F34289E2_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Lexer_State3_mD4320873954DA33A7B26AA9B6CF7CD64A8588783_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Lexer_State4_m88410392996F1D5DAB6DADC91AE16FC7CA54FF86_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Lexer_State5_mA1FA2D1CC7595C3D70A02973568DADDD27CFFA87_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Lexer_State6_m4B7FE39523E86CA3283F618065D8647CCFC6C0B3_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Lexer_State7_m5464256E9F4EF412B26461E52B133812F79EFA41_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Lexer_State8_mEE57AB611D759135E18E796C685799AF59653DF1_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Lexer_State9_m2A2DF75F8B8AEFAAFF778393AFCC9605ED84C01C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StateHandlerU5BU5D_tA4E04C837AF2BDFE9B351DF6813E6AB954722B93_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9B0B2A8DD3C1F36C25925A26EB3ED0CB0DF8189E____C84227140A8A7787B30DFF8BD5693C19AA5A430C4E89FFD0256D7F77B3FEAD82_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
StateHandlerU5BU5D_tA4E04C837AF2BDFE9B351DF6813E6AB954722B93** L_0 = ___0_fsm_handler_table;
|
|
StateHandlerU5BU5D_tA4E04C837AF2BDFE9B351DF6813E6AB954722B93* L_1 = (StateHandlerU5BU5D_tA4E04C837AF2BDFE9B351DF6813E6AB954722B93*)(StateHandlerU5BU5D_tA4E04C837AF2BDFE9B351DF6813E6AB954722B93*)SZArrayNew(StateHandlerU5BU5D_tA4E04C837AF2BDFE9B351DF6813E6AB954722B93_il2cpp_TypeInfo_var, (uint32_t)((int32_t)28));
|
|
StateHandlerU5BU5D_tA4E04C837AF2BDFE9B351DF6813E6AB954722B93* L_2 = L_1;
|
|
StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* L_3 = (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)il2cpp_codegen_object_new(StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603_il2cpp_TypeInfo_var);
|
|
StateHandler__ctor_m33A94C96682C78721802E376BDC6673C9CDB08E1(L_3, NULL, (intptr_t)((void*)Lexer_State1_m35B7B80F34B274EC767AAE1FB3F61D2DB4A64699_RuntimeMethod_var), NULL);
|
|
NullCheck(L_2);
|
|
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(0), (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)L_3);
|
|
StateHandlerU5BU5D_tA4E04C837AF2BDFE9B351DF6813E6AB954722B93* L_4 = L_2;
|
|
StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* L_5 = (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)il2cpp_codegen_object_new(StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603_il2cpp_TypeInfo_var);
|
|
StateHandler__ctor_m33A94C96682C78721802E376BDC6673C9CDB08E1(L_5, NULL, (intptr_t)((void*)Lexer_State2_m205EFB31447C24D81684803A8952AE47F34289E2_RuntimeMethod_var), NULL);
|
|
NullCheck(L_4);
|
|
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(1), (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)L_5);
|
|
StateHandlerU5BU5D_tA4E04C837AF2BDFE9B351DF6813E6AB954722B93* L_6 = L_4;
|
|
StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* L_7 = (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)il2cpp_codegen_object_new(StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603_il2cpp_TypeInfo_var);
|
|
StateHandler__ctor_m33A94C96682C78721802E376BDC6673C9CDB08E1(L_7, NULL, (intptr_t)((void*)Lexer_State3_mD4320873954DA33A7B26AA9B6CF7CD64A8588783_RuntimeMethod_var), NULL);
|
|
NullCheck(L_6);
|
|
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(2), (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)L_7);
|
|
StateHandlerU5BU5D_tA4E04C837AF2BDFE9B351DF6813E6AB954722B93* L_8 = L_6;
|
|
StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* L_9 = (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)il2cpp_codegen_object_new(StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603_il2cpp_TypeInfo_var);
|
|
StateHandler__ctor_m33A94C96682C78721802E376BDC6673C9CDB08E1(L_9, NULL, (intptr_t)((void*)Lexer_State4_m88410392996F1D5DAB6DADC91AE16FC7CA54FF86_RuntimeMethod_var), NULL);
|
|
NullCheck(L_8);
|
|
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(3), (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)L_9);
|
|
StateHandlerU5BU5D_tA4E04C837AF2BDFE9B351DF6813E6AB954722B93* L_10 = L_8;
|
|
StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* L_11 = (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)il2cpp_codegen_object_new(StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603_il2cpp_TypeInfo_var);
|
|
StateHandler__ctor_m33A94C96682C78721802E376BDC6673C9CDB08E1(L_11, NULL, (intptr_t)((void*)Lexer_State5_mA1FA2D1CC7595C3D70A02973568DADDD27CFFA87_RuntimeMethod_var), NULL);
|
|
NullCheck(L_10);
|
|
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(4), (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)L_11);
|
|
StateHandlerU5BU5D_tA4E04C837AF2BDFE9B351DF6813E6AB954722B93* L_12 = L_10;
|
|
StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* L_13 = (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)il2cpp_codegen_object_new(StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603_il2cpp_TypeInfo_var);
|
|
StateHandler__ctor_m33A94C96682C78721802E376BDC6673C9CDB08E1(L_13, NULL, (intptr_t)((void*)Lexer_State6_m4B7FE39523E86CA3283F618065D8647CCFC6C0B3_RuntimeMethod_var), NULL);
|
|
NullCheck(L_12);
|
|
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(5), (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)L_13);
|
|
StateHandlerU5BU5D_tA4E04C837AF2BDFE9B351DF6813E6AB954722B93* L_14 = L_12;
|
|
StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* L_15 = (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)il2cpp_codegen_object_new(StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603_il2cpp_TypeInfo_var);
|
|
StateHandler__ctor_m33A94C96682C78721802E376BDC6673C9CDB08E1(L_15, NULL, (intptr_t)((void*)Lexer_State7_m5464256E9F4EF412B26461E52B133812F79EFA41_RuntimeMethod_var), NULL);
|
|
NullCheck(L_14);
|
|
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(6), (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)L_15);
|
|
StateHandlerU5BU5D_tA4E04C837AF2BDFE9B351DF6813E6AB954722B93* L_16 = L_14;
|
|
StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* L_17 = (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)il2cpp_codegen_object_new(StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603_il2cpp_TypeInfo_var);
|
|
StateHandler__ctor_m33A94C96682C78721802E376BDC6673C9CDB08E1(L_17, NULL, (intptr_t)((void*)Lexer_State8_mEE57AB611D759135E18E796C685799AF59653DF1_RuntimeMethod_var), NULL);
|
|
NullCheck(L_16);
|
|
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(7), (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)L_17);
|
|
StateHandlerU5BU5D_tA4E04C837AF2BDFE9B351DF6813E6AB954722B93* L_18 = L_16;
|
|
StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* L_19 = (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)il2cpp_codegen_object_new(StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603_il2cpp_TypeInfo_var);
|
|
StateHandler__ctor_m33A94C96682C78721802E376BDC6673C9CDB08E1(L_19, NULL, (intptr_t)((void*)Lexer_State9_m2A2DF75F8B8AEFAAFF778393AFCC9605ED84C01C_RuntimeMethod_var), NULL);
|
|
NullCheck(L_18);
|
|
(L_18)->SetAt(static_cast<il2cpp_array_size_t>(8), (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)L_19);
|
|
StateHandlerU5BU5D_tA4E04C837AF2BDFE9B351DF6813E6AB954722B93* L_20 = L_18;
|
|
StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* L_21 = (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)il2cpp_codegen_object_new(StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603_il2cpp_TypeInfo_var);
|
|
StateHandler__ctor_m33A94C96682C78721802E376BDC6673C9CDB08E1(L_21, NULL, (intptr_t)((void*)Lexer_State10_m5904073970AD0D36A52E6EF3528D8932E8588D59_RuntimeMethod_var), NULL);
|
|
NullCheck(L_20);
|
|
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)9)), (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)L_21);
|
|
StateHandlerU5BU5D_tA4E04C837AF2BDFE9B351DF6813E6AB954722B93* L_22 = L_20;
|
|
StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* L_23 = (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)il2cpp_codegen_object_new(StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603_il2cpp_TypeInfo_var);
|
|
StateHandler__ctor_m33A94C96682C78721802E376BDC6673C9CDB08E1(L_23, NULL, (intptr_t)((void*)Lexer_State11_m5A9D0CA38509AB81A532487CF5D2DC65D6B71F04_RuntimeMethod_var), NULL);
|
|
NullCheck(L_22);
|
|
(L_22)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)10)), (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)L_23);
|
|
StateHandlerU5BU5D_tA4E04C837AF2BDFE9B351DF6813E6AB954722B93* L_24 = L_22;
|
|
StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* L_25 = (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)il2cpp_codegen_object_new(StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603_il2cpp_TypeInfo_var);
|
|
StateHandler__ctor_m33A94C96682C78721802E376BDC6673C9CDB08E1(L_25, NULL, (intptr_t)((void*)Lexer_State12_m958CFDBC029123955374295C3E9913D1599A196D_RuntimeMethod_var), NULL);
|
|
NullCheck(L_24);
|
|
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)11)), (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)L_25);
|
|
StateHandlerU5BU5D_tA4E04C837AF2BDFE9B351DF6813E6AB954722B93* L_26 = L_24;
|
|
StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* L_27 = (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)il2cpp_codegen_object_new(StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603_il2cpp_TypeInfo_var);
|
|
StateHandler__ctor_m33A94C96682C78721802E376BDC6673C9CDB08E1(L_27, NULL, (intptr_t)((void*)Lexer_State13_m560152ABC44290068A66CB6BFC939C5AAFEC51FF_RuntimeMethod_var), NULL);
|
|
NullCheck(L_26);
|
|
(L_26)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)12)), (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)L_27);
|
|
StateHandlerU5BU5D_tA4E04C837AF2BDFE9B351DF6813E6AB954722B93* L_28 = L_26;
|
|
StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* L_29 = (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)il2cpp_codegen_object_new(StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603_il2cpp_TypeInfo_var);
|
|
StateHandler__ctor_m33A94C96682C78721802E376BDC6673C9CDB08E1(L_29, NULL, (intptr_t)((void*)Lexer_State14_m8C25AB90286E32F384E390E17E726F1BC08BC9DD_RuntimeMethod_var), NULL);
|
|
NullCheck(L_28);
|
|
(L_28)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)13)), (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)L_29);
|
|
StateHandlerU5BU5D_tA4E04C837AF2BDFE9B351DF6813E6AB954722B93* L_30 = L_28;
|
|
StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* L_31 = (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)il2cpp_codegen_object_new(StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603_il2cpp_TypeInfo_var);
|
|
StateHandler__ctor_m33A94C96682C78721802E376BDC6673C9CDB08E1(L_31, NULL, (intptr_t)((void*)Lexer_State15_m00E0DE3464F1159F7EB835A3286EFFA40B558403_RuntimeMethod_var), NULL);
|
|
NullCheck(L_30);
|
|
(L_30)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)14)), (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)L_31);
|
|
StateHandlerU5BU5D_tA4E04C837AF2BDFE9B351DF6813E6AB954722B93* L_32 = L_30;
|
|
StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* L_33 = (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)il2cpp_codegen_object_new(StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603_il2cpp_TypeInfo_var);
|
|
StateHandler__ctor_m33A94C96682C78721802E376BDC6673C9CDB08E1(L_33, NULL, (intptr_t)((void*)Lexer_State16_m8BD82487456FA900D6BBDED72C8C975696D67804_RuntimeMethod_var), NULL);
|
|
NullCheck(L_32);
|
|
(L_32)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)15)), (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)L_33);
|
|
StateHandlerU5BU5D_tA4E04C837AF2BDFE9B351DF6813E6AB954722B93* L_34 = L_32;
|
|
StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* L_35 = (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)il2cpp_codegen_object_new(StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603_il2cpp_TypeInfo_var);
|
|
StateHandler__ctor_m33A94C96682C78721802E376BDC6673C9CDB08E1(L_35, NULL, (intptr_t)((void*)Lexer_State17_mDFB66C6B09C25B8B8CC2EC226F446FEF70AFE493_RuntimeMethod_var), NULL);
|
|
NullCheck(L_34);
|
|
(L_34)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)16)), (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)L_35);
|
|
StateHandlerU5BU5D_tA4E04C837AF2BDFE9B351DF6813E6AB954722B93* L_36 = L_34;
|
|
StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* L_37 = (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)il2cpp_codegen_object_new(StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603_il2cpp_TypeInfo_var);
|
|
StateHandler__ctor_m33A94C96682C78721802E376BDC6673C9CDB08E1(L_37, NULL, (intptr_t)((void*)Lexer_State18_m2C29A371734A3AF4B66ACD39EA4356FCEEB42703_RuntimeMethod_var), NULL);
|
|
NullCheck(L_36);
|
|
(L_36)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)17)), (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)L_37);
|
|
StateHandlerU5BU5D_tA4E04C837AF2BDFE9B351DF6813E6AB954722B93* L_38 = L_36;
|
|
StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* L_39 = (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)il2cpp_codegen_object_new(StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603_il2cpp_TypeInfo_var);
|
|
StateHandler__ctor_m33A94C96682C78721802E376BDC6673C9CDB08E1(L_39, NULL, (intptr_t)((void*)Lexer_State19_mD468E390FBA1C3B79566FD0CF8AB183BEF7B9A7C_RuntimeMethod_var), NULL);
|
|
NullCheck(L_38);
|
|
(L_38)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)18)), (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)L_39);
|
|
StateHandlerU5BU5D_tA4E04C837AF2BDFE9B351DF6813E6AB954722B93* L_40 = L_38;
|
|
StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* L_41 = (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)il2cpp_codegen_object_new(StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603_il2cpp_TypeInfo_var);
|
|
StateHandler__ctor_m33A94C96682C78721802E376BDC6673C9CDB08E1(L_41, NULL, (intptr_t)((void*)Lexer_State20_mB134E41DBE7A01B14B8ADBBEDFAE16596CB76C1A_RuntimeMethod_var), NULL);
|
|
NullCheck(L_40);
|
|
(L_40)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)19)), (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)L_41);
|
|
StateHandlerU5BU5D_tA4E04C837AF2BDFE9B351DF6813E6AB954722B93* L_42 = L_40;
|
|
StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* L_43 = (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)il2cpp_codegen_object_new(StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603_il2cpp_TypeInfo_var);
|
|
StateHandler__ctor_m33A94C96682C78721802E376BDC6673C9CDB08E1(L_43, NULL, (intptr_t)((void*)Lexer_State21_m98740912488BE0C617E7112B1EFA0CC52080297A_RuntimeMethod_var), NULL);
|
|
NullCheck(L_42);
|
|
(L_42)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)20)), (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)L_43);
|
|
StateHandlerU5BU5D_tA4E04C837AF2BDFE9B351DF6813E6AB954722B93* L_44 = L_42;
|
|
StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* L_45 = (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)il2cpp_codegen_object_new(StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603_il2cpp_TypeInfo_var);
|
|
StateHandler__ctor_m33A94C96682C78721802E376BDC6673C9CDB08E1(L_45, NULL, (intptr_t)((void*)Lexer_State22_m40E243F9BE396E171757231B9D5045880E92EC2D_RuntimeMethod_var), NULL);
|
|
NullCheck(L_44);
|
|
(L_44)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)21)), (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)L_45);
|
|
StateHandlerU5BU5D_tA4E04C837AF2BDFE9B351DF6813E6AB954722B93* L_46 = L_44;
|
|
StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* L_47 = (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)il2cpp_codegen_object_new(StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603_il2cpp_TypeInfo_var);
|
|
StateHandler__ctor_m33A94C96682C78721802E376BDC6673C9CDB08E1(L_47, NULL, (intptr_t)((void*)Lexer_State23_m14C029F3770CEF5E40A14DE7B3D3C2952D9C385F_RuntimeMethod_var), NULL);
|
|
NullCheck(L_46);
|
|
(L_46)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)22)), (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)L_47);
|
|
StateHandlerU5BU5D_tA4E04C837AF2BDFE9B351DF6813E6AB954722B93* L_48 = L_46;
|
|
StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* L_49 = (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)il2cpp_codegen_object_new(StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603_il2cpp_TypeInfo_var);
|
|
StateHandler__ctor_m33A94C96682C78721802E376BDC6673C9CDB08E1(L_49, NULL, (intptr_t)((void*)Lexer_State24_mD981E66641429ED14661F0D83F155ACB0ADE601E_RuntimeMethod_var), NULL);
|
|
NullCheck(L_48);
|
|
(L_48)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)23)), (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)L_49);
|
|
StateHandlerU5BU5D_tA4E04C837AF2BDFE9B351DF6813E6AB954722B93* L_50 = L_48;
|
|
StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* L_51 = (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)il2cpp_codegen_object_new(StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603_il2cpp_TypeInfo_var);
|
|
StateHandler__ctor_m33A94C96682C78721802E376BDC6673C9CDB08E1(L_51, NULL, (intptr_t)((void*)Lexer_State25_m846973336CD8B49363EBCFB9EF83676772B9B6F3_RuntimeMethod_var), NULL);
|
|
NullCheck(L_50);
|
|
(L_50)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)24)), (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)L_51);
|
|
StateHandlerU5BU5D_tA4E04C837AF2BDFE9B351DF6813E6AB954722B93* L_52 = L_50;
|
|
StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* L_53 = (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)il2cpp_codegen_object_new(StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603_il2cpp_TypeInfo_var);
|
|
StateHandler__ctor_m33A94C96682C78721802E376BDC6673C9CDB08E1(L_53, NULL, (intptr_t)((void*)Lexer_State26_m464EBDB9597D118A7666A693F407F7E7126752EB_RuntimeMethod_var), NULL);
|
|
NullCheck(L_52);
|
|
(L_52)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)25)), (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)L_53);
|
|
StateHandlerU5BU5D_tA4E04C837AF2BDFE9B351DF6813E6AB954722B93* L_54 = L_52;
|
|
StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* L_55 = (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)il2cpp_codegen_object_new(StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603_il2cpp_TypeInfo_var);
|
|
StateHandler__ctor_m33A94C96682C78721802E376BDC6673C9CDB08E1(L_55, NULL, (intptr_t)((void*)Lexer_State27_mFDC378B071D2ABA7045A6CE1B8AE7C7F40D99638_RuntimeMethod_var), NULL);
|
|
NullCheck(L_54);
|
|
(L_54)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)26)), (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)L_55);
|
|
StateHandlerU5BU5D_tA4E04C837AF2BDFE9B351DF6813E6AB954722B93* L_56 = L_54;
|
|
StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* L_57 = (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)il2cpp_codegen_object_new(StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603_il2cpp_TypeInfo_var);
|
|
StateHandler__ctor_m33A94C96682C78721802E376BDC6673C9CDB08E1(L_57, NULL, (intptr_t)((void*)Lexer_State28_m151FEC6858FB9E2A515CABFEFEDE5DAB3F736F91_RuntimeMethod_var), NULL);
|
|
NullCheck(L_56);
|
|
(L_56)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)27)), (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*)L_57);
|
|
*((RuntimeObject**)L_0) = (RuntimeObject*)L_56;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_0, (void*)(RuntimeObject*)L_56);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C** L_58 = ___1_fsm_return_table;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_59 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)((int32_t)28));
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_60 = L_59;
|
|
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_61 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9B0B2A8DD3C1F36C25925A26EB3ED0CB0DF8189E____C84227140A8A7787B30DFF8BD5693C19AA5A430C4E89FFD0256D7F77B3FEAD82_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_60, L_61, NULL);
|
|
*((RuntimeObject**)L_58) = (RuntimeObject*)L_60;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_58, (void*)(RuntimeObject*)L_60);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Lexer_ProcessEscChar_m1E23F62F3A8846AA52FD98E49917B3A8C9C168E3 (int32_t ___0_esc_char, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
Il2CppChar V_2 = 0x0;
|
|
{
|
|
int32_t L_0 = ___0_esc_char;
|
|
V_1 = L_0;
|
|
int32_t L_1 = V_1;
|
|
V_0 = L_1;
|
|
int32_t L_2 = V_0;
|
|
if ((((int32_t)L_2) > ((int32_t)((int32_t)92))))
|
|
{
|
|
goto IL_002b;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = V_0;
|
|
if ((((int32_t)L_3) > ((int32_t)((int32_t)39))))
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_4 = V_0;
|
|
if ((((int32_t)L_4) == ((int32_t)((int32_t)34))))
|
|
{
|
|
goto IL_0053;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
int32_t L_5 = V_0;
|
|
if ((((int32_t)L_5) == ((int32_t)((int32_t)39))))
|
|
{
|
|
goto IL_0053;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0074;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
int32_t L_6 = V_0;
|
|
if ((((int32_t)L_6) == ((int32_t)((int32_t)47))))
|
|
{
|
|
goto IL_0053;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0024;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
int32_t L_7 = V_0;
|
|
if ((((int32_t)L_7) == ((int32_t)((int32_t)92))))
|
|
{
|
|
goto IL_0053;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0074;
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
int32_t L_8 = V_0;
|
|
if ((((int32_t)L_8) > ((int32_t)((int32_t)102))))
|
|
{
|
|
goto IL_003e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_9 = V_0;
|
|
if ((((int32_t)L_9) == ((int32_t)((int32_t)98))))
|
|
{
|
|
goto IL_006b;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0037;
|
|
}
|
|
|
|
IL_0037:
|
|
{
|
|
int32_t L_10 = V_0;
|
|
if ((((int32_t)L_10) == ((int32_t)((int32_t)102))))
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0074;
|
|
}
|
|
|
|
IL_003e:
|
|
{
|
|
int32_t L_11 = V_0;
|
|
if ((((int32_t)L_11) == ((int32_t)((int32_t)110))))
|
|
{
|
|
goto IL_005c;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0045;
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
int32_t L_12 = V_0;
|
|
if ((((int32_t)L_12) == ((int32_t)((int32_t)114))))
|
|
{
|
|
goto IL_0066;
|
|
}
|
|
}
|
|
{
|
|
goto IL_004c;
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
int32_t L_13 = V_0;
|
|
if ((((int32_t)L_13) == ((int32_t)((int32_t)116))))
|
|
{
|
|
goto IL_0061;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0074;
|
|
}
|
|
|
|
IL_0053:
|
|
{
|
|
int32_t L_14 = ___0_esc_char;
|
|
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
Il2CppChar L_15;
|
|
L_15 = Convert_ToChar_mF1B1B205DDEFDE52251235514E7DAFCAB37D1F24(L_14, NULL);
|
|
V_2 = L_15;
|
|
goto IL_0079;
|
|
}
|
|
|
|
IL_005c:
|
|
{
|
|
V_2 = ((int32_t)10);
|
|
goto IL_0079;
|
|
}
|
|
|
|
IL_0061:
|
|
{
|
|
V_2 = ((int32_t)9);
|
|
goto IL_0079;
|
|
}
|
|
|
|
IL_0066:
|
|
{
|
|
V_2 = ((int32_t)13);
|
|
goto IL_0079;
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
V_2 = 8;
|
|
goto IL_0079;
|
|
}
|
|
|
|
IL_006f:
|
|
{
|
|
V_2 = ((int32_t)12);
|
|
goto IL_0079;
|
|
}
|
|
|
|
IL_0074:
|
|
{
|
|
V_2 = ((int32_t)63);
|
|
goto IL_0079;
|
|
}
|
|
|
|
IL_0079:
|
|
{
|
|
Il2CppChar L_16 = V_2;
|
|
return L_16;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Lexer_State1_m35B7B80F34B274EC767AAE1FB3F61D2DB4A64699 (FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* ___0_ctx, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
bool V_5 = false;
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
int32_t G_B5_0 = 0;
|
|
int32_t G_B7_0 = 0;
|
|
int32_t G_B12_0 = 0;
|
|
{
|
|
goto IL_0244;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_0 = ___0_ctx;
|
|
NullCheck(L_0);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_1 = L_0->___L;
|
|
NullCheck(L_1);
|
|
int32_t L_2 = L_1->___input_char;
|
|
if ((((int32_t)L_2) == ((int32_t)((int32_t)32))))
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_3 = ___0_ctx;
|
|
NullCheck(L_3);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_4 = L_3->___L;
|
|
NullCheck(L_4);
|
|
int32_t L_5 = L_4->___input_char;
|
|
if ((((int32_t)L_5) < ((int32_t)((int32_t)9))))
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_6 = ___0_ctx;
|
|
NullCheck(L_6);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_7 = L_6->___L;
|
|
NullCheck(L_7);
|
|
int32_t L_8 = L_7->___input_char;
|
|
G_B5_0 = ((((int32_t)((((int32_t)L_8) > ((int32_t)((int32_t)13)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_003a;
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
G_B5_0 = 0;
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
G_B7_0 = G_B5_0;
|
|
goto IL_003d;
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
G_B7_0 = 1;
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
V_0 = (bool)G_B7_0;
|
|
bool L_9 = V_0;
|
|
if (!L_9)
|
|
{
|
|
goto IL_0047;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0244;
|
|
}
|
|
|
|
IL_0047:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_10 = ___0_ctx;
|
|
NullCheck(L_10);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_11 = L_10->___L;
|
|
NullCheck(L_11);
|
|
int32_t L_12 = L_11->___input_char;
|
|
if ((((int32_t)L_12) < ((int32_t)((int32_t)49))))
|
|
{
|
|
goto IL_006a;
|
|
}
|
|
}
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_13 = ___0_ctx;
|
|
NullCheck(L_13);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_14 = L_13->___L;
|
|
NullCheck(L_14);
|
|
int32_t L_15 = L_14->___input_char;
|
|
G_B12_0 = ((((int32_t)((((int32_t)L_15) > ((int32_t)((int32_t)57)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_006b;
|
|
}
|
|
|
|
IL_006a:
|
|
{
|
|
G_B12_0 = 0;
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
V_1 = (bool)G_B12_0;
|
|
bool L_16 = V_1;
|
|
if (!L_16)
|
|
{
|
|
goto IL_009b;
|
|
}
|
|
}
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_17 = ___0_ctx;
|
|
NullCheck(L_17);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_18 = L_17->___L;
|
|
NullCheck(L_18);
|
|
StringBuilder_t* L_19 = L_18->___string_buffer;
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_20 = ___0_ctx;
|
|
NullCheck(L_20);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_21 = L_20->___L;
|
|
NullCheck(L_21);
|
|
int32_t L_22 = L_21->___input_char;
|
|
NullCheck(L_19);
|
|
StringBuilder_t* L_23;
|
|
L_23 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_19, ((int32_t)(uint16_t)L_22), NULL);
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_24 = ___0_ctx;
|
|
NullCheck(L_24);
|
|
L_24->___NextState = 3;
|
|
V_2 = (bool)1;
|
|
goto IL_025c;
|
|
}
|
|
|
|
IL_009b:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_25 = ___0_ctx;
|
|
NullCheck(L_25);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_26 = L_25->___L;
|
|
NullCheck(L_26);
|
|
int32_t L_27 = L_26->___input_char;
|
|
V_4 = L_27;
|
|
int32_t L_28 = V_4;
|
|
V_3 = L_28;
|
|
int32_t L_29 = V_3;
|
|
if ((((int32_t)L_29) > ((int32_t)((int32_t)91))))
|
|
{
|
|
goto IL_00f9;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_30 = V_3;
|
|
if ((((int32_t)L_30) > ((int32_t)((int32_t)39))))
|
|
{
|
|
goto IL_00c9;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_31 = V_3;
|
|
if ((((int32_t)L_31) == ((int32_t)((int32_t)34))))
|
|
{
|
|
goto IL_0137;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00bc;
|
|
}
|
|
|
|
IL_00bc:
|
|
{
|
|
int32_t L_32 = V_3;
|
|
if ((((int32_t)L_32) == ((int32_t)((int32_t)39))))
|
|
{
|
|
goto IL_01e2;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0240;
|
|
}
|
|
|
|
IL_00c9:
|
|
{
|
|
int32_t L_33 = V_3;
|
|
switch (((int32_t)il2cpp_codegen_subtract(L_33, ((int32_t)44))))
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_014d;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0162;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0240;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_021b;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_018d;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_00e8;
|
|
}
|
|
|
|
IL_00e8:
|
|
{
|
|
int32_t L_34 = V_3;
|
|
if ((((int32_t)L_34) == ((int32_t)((int32_t)58))))
|
|
{
|
|
goto IL_014d;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00ef;
|
|
}
|
|
|
|
IL_00ef:
|
|
{
|
|
int32_t L_35 = V_3;
|
|
if ((((int32_t)L_35) == ((int32_t)((int32_t)91))))
|
|
{
|
|
goto IL_014d;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0240;
|
|
}
|
|
|
|
IL_00f9:
|
|
{
|
|
int32_t L_36 = V_3;
|
|
if ((((int32_t)L_36) > ((int32_t)((int32_t)110))))
|
|
{
|
|
goto IL_011c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_37 = V_3;
|
|
if ((((int32_t)L_37) == ((int32_t)((int32_t)93))))
|
|
{
|
|
goto IL_014d;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0105;
|
|
}
|
|
|
|
IL_0105:
|
|
{
|
|
int32_t L_38 = V_3;
|
|
if ((((int32_t)L_38) == ((int32_t)((int32_t)102))))
|
|
{
|
|
goto IL_01b8;
|
|
}
|
|
}
|
|
{
|
|
goto IL_010f;
|
|
}
|
|
|
|
IL_010f:
|
|
{
|
|
int32_t L_39 = V_3;
|
|
if ((((int32_t)L_39) == ((int32_t)((int32_t)110))))
|
|
{
|
|
goto IL_01c7;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0240;
|
|
}
|
|
|
|
IL_011c:
|
|
{
|
|
int32_t L_40 = V_3;
|
|
if ((((int32_t)L_40) == ((int32_t)((int32_t)116))))
|
|
{
|
|
goto IL_01d6;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0126;
|
|
}
|
|
|
|
IL_0126:
|
|
{
|
|
int32_t L_41 = V_3;
|
|
if ((((int32_t)L_41) == ((int32_t)((int32_t)123))))
|
|
{
|
|
goto IL_014d;
|
|
}
|
|
}
|
|
{
|
|
goto IL_012d;
|
|
}
|
|
|
|
IL_012d:
|
|
{
|
|
int32_t L_42 = V_3;
|
|
if ((((int32_t)L_42) == ((int32_t)((int32_t)125))))
|
|
{
|
|
goto IL_014d;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0240;
|
|
}
|
|
|
|
IL_0137:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_43 = ___0_ctx;
|
|
NullCheck(L_43);
|
|
L_43->___NextState = ((int32_t)19);
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_44 = ___0_ctx;
|
|
NullCheck(L_44);
|
|
L_44->___Return = (bool)1;
|
|
V_2 = (bool)1;
|
|
goto IL_025c;
|
|
}
|
|
|
|
IL_014d:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_45 = ___0_ctx;
|
|
NullCheck(L_45);
|
|
L_45->___NextState = 1;
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_46 = ___0_ctx;
|
|
NullCheck(L_46);
|
|
L_46->___Return = (bool)1;
|
|
V_2 = (bool)1;
|
|
goto IL_025c;
|
|
}
|
|
|
|
IL_0162:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_47 = ___0_ctx;
|
|
NullCheck(L_47);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_48 = L_47->___L;
|
|
NullCheck(L_48);
|
|
StringBuilder_t* L_49 = L_48->___string_buffer;
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_50 = ___0_ctx;
|
|
NullCheck(L_50);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_51 = L_50->___L;
|
|
NullCheck(L_51);
|
|
int32_t L_52 = L_51->___input_char;
|
|
NullCheck(L_49);
|
|
StringBuilder_t* L_53;
|
|
L_53 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_49, ((int32_t)(uint16_t)L_52), NULL);
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_54 = ___0_ctx;
|
|
NullCheck(L_54);
|
|
L_54->___NextState = 2;
|
|
V_2 = (bool)1;
|
|
goto IL_025c;
|
|
}
|
|
|
|
IL_018d:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_55 = ___0_ctx;
|
|
NullCheck(L_55);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_56 = L_55->___L;
|
|
NullCheck(L_56);
|
|
StringBuilder_t* L_57 = L_56->___string_buffer;
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_58 = ___0_ctx;
|
|
NullCheck(L_58);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_59 = L_58->___L;
|
|
NullCheck(L_59);
|
|
int32_t L_60 = L_59->___input_char;
|
|
NullCheck(L_57);
|
|
StringBuilder_t* L_61;
|
|
L_61 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_57, ((int32_t)(uint16_t)L_60), NULL);
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_62 = ___0_ctx;
|
|
NullCheck(L_62);
|
|
L_62->___NextState = 4;
|
|
V_2 = (bool)1;
|
|
goto IL_025c;
|
|
}
|
|
|
|
IL_01b8:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_63 = ___0_ctx;
|
|
NullCheck(L_63);
|
|
L_63->___NextState = ((int32_t)12);
|
|
V_2 = (bool)1;
|
|
goto IL_025c;
|
|
}
|
|
|
|
IL_01c7:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_64 = ___0_ctx;
|
|
NullCheck(L_64);
|
|
L_64->___NextState = ((int32_t)16);
|
|
V_2 = (bool)1;
|
|
goto IL_025c;
|
|
}
|
|
|
|
IL_01d6:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_65 = ___0_ctx;
|
|
NullCheck(L_65);
|
|
L_65->___NextState = ((int32_t)9);
|
|
V_2 = (bool)1;
|
|
goto IL_025c;
|
|
}
|
|
|
|
IL_01e2:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_66 = ___0_ctx;
|
|
NullCheck(L_66);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_67 = L_66->___L;
|
|
NullCheck(L_67);
|
|
bool L_68 = L_67->___allow_single_quoted_strings;
|
|
V_5 = (bool)((((int32_t)L_68) == ((int32_t)0))? 1 : 0);
|
|
bool L_69 = V_5;
|
|
if (!L_69)
|
|
{
|
|
goto IL_01fb;
|
|
}
|
|
}
|
|
{
|
|
V_2 = (bool)0;
|
|
goto IL_025c;
|
|
}
|
|
|
|
IL_01fb:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_70 = ___0_ctx;
|
|
NullCheck(L_70);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_71 = L_70->___L;
|
|
NullCheck(L_71);
|
|
L_71->___input_char = ((int32_t)34);
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_72 = ___0_ctx;
|
|
NullCheck(L_72);
|
|
L_72->___NextState = ((int32_t)23);
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_73 = ___0_ctx;
|
|
NullCheck(L_73);
|
|
L_73->___Return = (bool)1;
|
|
V_2 = (bool)1;
|
|
goto IL_025c;
|
|
}
|
|
|
|
IL_021b:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_74 = ___0_ctx;
|
|
NullCheck(L_74);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_75 = L_74->___L;
|
|
NullCheck(L_75);
|
|
bool L_76 = L_75->___allow_comments;
|
|
V_6 = (bool)((((int32_t)L_76) == ((int32_t)0))? 1 : 0);
|
|
bool L_77 = V_6;
|
|
if (!L_77)
|
|
{
|
|
goto IL_0234;
|
|
}
|
|
}
|
|
{
|
|
V_2 = (bool)0;
|
|
goto IL_025c;
|
|
}
|
|
|
|
IL_0234:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_78 = ___0_ctx;
|
|
NullCheck(L_78);
|
|
L_78->___NextState = ((int32_t)25);
|
|
V_2 = (bool)1;
|
|
goto IL_025c;
|
|
}
|
|
|
|
IL_0240:
|
|
{
|
|
V_2 = (bool)0;
|
|
goto IL_025c;
|
|
}
|
|
|
|
IL_0244:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_79 = ___0_ctx;
|
|
NullCheck(L_79);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_80 = L_79->___L;
|
|
NullCheck(L_80);
|
|
bool L_81;
|
|
L_81 = Lexer_GetChar_m240416C419AACCDFAD8C74F764421740C53A6253(L_80, NULL);
|
|
V_7 = L_81;
|
|
bool L_82 = V_7;
|
|
if (L_82)
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
V_2 = (bool)1;
|
|
goto IL_025c;
|
|
}
|
|
|
|
IL_025c:
|
|
{
|
|
bool L_83 = V_2;
|
|
return L_83;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Lexer_State2_m205EFB31447C24D81684803A8952AE47F34289E2 (FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* ___0_ctx, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_0 = ___0_ctx;
|
|
NullCheck(L_0);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_1 = L_0->___L;
|
|
NullCheck(L_1);
|
|
bool L_2;
|
|
L_2 = Lexer_GetChar_m240416C419AACCDFAD8C74F764421740C53A6253(L_1, NULL);
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_3 = ___0_ctx;
|
|
NullCheck(L_3);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_4 = L_3->___L;
|
|
NullCheck(L_4);
|
|
int32_t L_5 = L_4->___input_char;
|
|
if ((((int32_t)L_5) < ((int32_t)((int32_t)49))))
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_6 = ___0_ctx;
|
|
NullCheck(L_6);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_7 = L_6->___L;
|
|
NullCheck(L_7);
|
|
int32_t L_8 = L_7->___input_char;
|
|
G_B3_0 = ((((int32_t)((((int32_t)L_8) > ((int32_t)((int32_t)57)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0031;
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
bool L_9 = V_0;
|
|
if (!L_9)
|
|
{
|
|
goto IL_005e;
|
|
}
|
|
}
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_10 = ___0_ctx;
|
|
NullCheck(L_10);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_11 = L_10->___L;
|
|
NullCheck(L_11);
|
|
StringBuilder_t* L_12 = L_11->___string_buffer;
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_13 = ___0_ctx;
|
|
NullCheck(L_13);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_14 = L_13->___L;
|
|
NullCheck(L_14);
|
|
int32_t L_15 = L_14->___input_char;
|
|
NullCheck(L_12);
|
|
StringBuilder_t* L_16;
|
|
L_16 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_12, ((int32_t)(uint16_t)L_15), NULL);
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_17 = ___0_ctx;
|
|
NullCheck(L_17);
|
|
L_17->___NextState = 3;
|
|
V_1 = (bool)1;
|
|
goto IL_009f;
|
|
}
|
|
|
|
IL_005e:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_18 = ___0_ctx;
|
|
NullCheck(L_18);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_19 = L_18->___L;
|
|
NullCheck(L_19);
|
|
int32_t L_20 = L_19->___input_char;
|
|
V_3 = L_20;
|
|
int32_t L_21 = V_3;
|
|
V_2 = L_21;
|
|
int32_t L_22 = V_2;
|
|
if ((((int32_t)L_22) == ((int32_t)((int32_t)48))))
|
|
{
|
|
goto IL_0073;
|
|
}
|
|
}
|
|
{
|
|
goto IL_009b;
|
|
}
|
|
|
|
IL_0073:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_23 = ___0_ctx;
|
|
NullCheck(L_23);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_24 = L_23->___L;
|
|
NullCheck(L_24);
|
|
StringBuilder_t* L_25 = L_24->___string_buffer;
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_26 = ___0_ctx;
|
|
NullCheck(L_26);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_27 = L_26->___L;
|
|
NullCheck(L_27);
|
|
int32_t L_28 = L_27->___input_char;
|
|
NullCheck(L_25);
|
|
StringBuilder_t* L_29;
|
|
L_29 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_25, ((int32_t)(uint16_t)L_28), NULL);
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_30 = ___0_ctx;
|
|
NullCheck(L_30);
|
|
L_30->___NextState = 4;
|
|
V_1 = (bool)1;
|
|
goto IL_009f;
|
|
}
|
|
|
|
IL_009b:
|
|
{
|
|
V_1 = (bool)0;
|
|
goto IL_009f;
|
|
}
|
|
|
|
IL_009f:
|
|
{
|
|
bool L_31 = V_1;
|
|
return L_31;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Lexer_State3_mD4320873954DA33A7B26AA9B6CF7CD64A8588783 (FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* ___0_ctx, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
bool V_5 = false;
|
|
int32_t G_B4_0 = 0;
|
|
int32_t G_B10_0 = 0;
|
|
int32_t G_B12_0 = 0;
|
|
{
|
|
goto IL_0156;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_0 = ___0_ctx;
|
|
NullCheck(L_0);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_1 = L_0->___L;
|
|
NullCheck(L_1);
|
|
int32_t L_2 = L_1->___input_char;
|
|
if ((((int32_t)L_2) < ((int32_t)((int32_t)48))))
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_3 = ___0_ctx;
|
|
NullCheck(L_3);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_4 = L_3->___L;
|
|
NullCheck(L_4);
|
|
int32_t L_5 = L_4->___input_char;
|
|
G_B4_0 = ((((int32_t)((((int32_t)L_5) > ((int32_t)((int32_t)57)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_002b;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
G_B4_0 = 0;
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
V_0 = (bool)G_B4_0;
|
|
bool L_6 = V_0;
|
|
if (!L_6)
|
|
{
|
|
goto IL_0052;
|
|
}
|
|
}
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_7 = ___0_ctx;
|
|
NullCheck(L_7);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_8 = L_7->___L;
|
|
NullCheck(L_8);
|
|
StringBuilder_t* L_9 = L_8->___string_buffer;
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_10 = ___0_ctx;
|
|
NullCheck(L_10);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_11 = L_10->___L;
|
|
NullCheck(L_11);
|
|
int32_t L_12 = L_11->___input_char;
|
|
NullCheck(L_9);
|
|
StringBuilder_t* L_13;
|
|
L_13 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_9, ((int32_t)(uint16_t)L_12), NULL);
|
|
goto IL_0156;
|
|
}
|
|
|
|
IL_0052:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_14 = ___0_ctx;
|
|
NullCheck(L_14);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_15 = L_14->___L;
|
|
NullCheck(L_15);
|
|
int32_t L_16 = L_15->___input_char;
|
|
if ((((int32_t)L_16) == ((int32_t)((int32_t)32))))
|
|
{
|
|
goto IL_0087;
|
|
}
|
|
}
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_17 = ___0_ctx;
|
|
NullCheck(L_17);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_18 = L_17->___L;
|
|
NullCheck(L_18);
|
|
int32_t L_19 = L_18->___input_char;
|
|
if ((((int32_t)L_19) < ((int32_t)((int32_t)9))))
|
|
{
|
|
goto IL_0084;
|
|
}
|
|
}
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_20 = ___0_ctx;
|
|
NullCheck(L_20);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_21 = L_20->___L;
|
|
NullCheck(L_21);
|
|
int32_t L_22 = L_21->___input_char;
|
|
G_B10_0 = ((((int32_t)((((int32_t)L_22) > ((int32_t)((int32_t)13)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0085;
|
|
}
|
|
|
|
IL_0084:
|
|
{
|
|
G_B10_0 = 0;
|
|
}
|
|
|
|
IL_0085:
|
|
{
|
|
G_B12_0 = G_B10_0;
|
|
goto IL_0088;
|
|
}
|
|
|
|
IL_0087:
|
|
{
|
|
G_B12_0 = 1;
|
|
}
|
|
|
|
IL_0088:
|
|
{
|
|
V_1 = (bool)G_B12_0;
|
|
bool L_23 = V_1;
|
|
if (!L_23)
|
|
{
|
|
goto IL_00a2;
|
|
}
|
|
}
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_24 = ___0_ctx;
|
|
NullCheck(L_24);
|
|
L_24->___Return = (bool)1;
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_25 = ___0_ctx;
|
|
NullCheck(L_25);
|
|
L_25->___NextState = 1;
|
|
V_2 = (bool)1;
|
|
goto IL_016e;
|
|
}
|
|
|
|
IL_00a2:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_26 = ___0_ctx;
|
|
NullCheck(L_26);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_27 = L_26->___L;
|
|
NullCheck(L_27);
|
|
int32_t L_28 = L_27->___input_char;
|
|
V_4 = L_28;
|
|
int32_t L_29 = V_4;
|
|
V_3 = L_29;
|
|
int32_t L_30 = V_3;
|
|
if ((((int32_t)L_30) > ((int32_t)((int32_t)69))))
|
|
{
|
|
goto IL_00cf;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_31 = V_3;
|
|
if ((((int32_t)L_31) == ((int32_t)((int32_t)44))))
|
|
{
|
|
goto IL_00e4;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00be;
|
|
}
|
|
|
|
IL_00be:
|
|
{
|
|
int32_t L_32 = V_3;
|
|
if ((((int32_t)L_32) == ((int32_t)((int32_t)46))))
|
|
{
|
|
goto IL_0102;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00c5;
|
|
}
|
|
|
|
IL_00c5:
|
|
{
|
|
int32_t L_33 = V_3;
|
|
if ((((int32_t)L_33) == ((int32_t)((int32_t)69))))
|
|
{
|
|
goto IL_012a;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0152;
|
|
}
|
|
|
|
IL_00cf:
|
|
{
|
|
int32_t L_34 = V_3;
|
|
if ((((int32_t)L_34) == ((int32_t)((int32_t)93))))
|
|
{
|
|
goto IL_00e4;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00d6;
|
|
}
|
|
|
|
IL_00d6:
|
|
{
|
|
int32_t L_35 = V_3;
|
|
if ((((int32_t)L_35) == ((int32_t)((int32_t)101))))
|
|
{
|
|
goto IL_012a;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00dd;
|
|
}
|
|
|
|
IL_00dd:
|
|
{
|
|
int32_t L_36 = V_3;
|
|
if ((((int32_t)L_36) == ((int32_t)((int32_t)125))))
|
|
{
|
|
goto IL_00e4;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0152;
|
|
}
|
|
|
|
IL_00e4:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_37 = ___0_ctx;
|
|
NullCheck(L_37);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_38 = L_37->___L;
|
|
NullCheck(L_38);
|
|
Lexer_UngetChar_m1FBA3B548EFBD21F87308A001FD32ECCCF86C5D4(L_38, NULL);
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_39 = ___0_ctx;
|
|
NullCheck(L_39);
|
|
L_39->___Return = (bool)1;
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_40 = ___0_ctx;
|
|
NullCheck(L_40);
|
|
L_40->___NextState = 1;
|
|
V_2 = (bool)1;
|
|
goto IL_016e;
|
|
}
|
|
|
|
IL_0102:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_41 = ___0_ctx;
|
|
NullCheck(L_41);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_42 = L_41->___L;
|
|
NullCheck(L_42);
|
|
StringBuilder_t* L_43 = L_42->___string_buffer;
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_44 = ___0_ctx;
|
|
NullCheck(L_44);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_45 = L_44->___L;
|
|
NullCheck(L_45);
|
|
int32_t L_46 = L_45->___input_char;
|
|
NullCheck(L_43);
|
|
StringBuilder_t* L_47;
|
|
L_47 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_43, ((int32_t)(uint16_t)L_46), NULL);
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_48 = ___0_ctx;
|
|
NullCheck(L_48);
|
|
L_48->___NextState = 5;
|
|
V_2 = (bool)1;
|
|
goto IL_016e;
|
|
}
|
|
|
|
IL_012a:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_49 = ___0_ctx;
|
|
NullCheck(L_49);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_50 = L_49->___L;
|
|
NullCheck(L_50);
|
|
StringBuilder_t* L_51 = L_50->___string_buffer;
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_52 = ___0_ctx;
|
|
NullCheck(L_52);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_53 = L_52->___L;
|
|
NullCheck(L_53);
|
|
int32_t L_54 = L_53->___input_char;
|
|
NullCheck(L_51);
|
|
StringBuilder_t* L_55;
|
|
L_55 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_51, ((int32_t)(uint16_t)L_54), NULL);
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_56 = ___0_ctx;
|
|
NullCheck(L_56);
|
|
L_56->___NextState = 7;
|
|
V_2 = (bool)1;
|
|
goto IL_016e;
|
|
}
|
|
|
|
IL_0152:
|
|
{
|
|
V_2 = (bool)0;
|
|
goto IL_016e;
|
|
}
|
|
|
|
IL_0156:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_57 = ___0_ctx;
|
|
NullCheck(L_57);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_58 = L_57->___L;
|
|
NullCheck(L_58);
|
|
bool L_59;
|
|
L_59 = Lexer_GetChar_m240416C419AACCDFAD8C74F764421740C53A6253(L_58, NULL);
|
|
V_5 = L_59;
|
|
bool L_60 = V_5;
|
|
if (L_60)
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
V_2 = (bool)1;
|
|
goto IL_016e;
|
|
}
|
|
|
|
IL_016e:
|
|
{
|
|
bool L_61 = V_2;
|
|
return L_61;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Lexer_State4_m88410392996F1D5DAB6DADC91AE16FC7CA54FF86 (FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* ___0_ctx, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
int32_t G_B4_0 = 0;
|
|
int32_t G_B6_0 = 0;
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_0 = ___0_ctx;
|
|
NullCheck(L_0);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_1 = L_0->___L;
|
|
NullCheck(L_1);
|
|
bool L_2;
|
|
L_2 = Lexer_GetChar_m240416C419AACCDFAD8C74F764421740C53A6253(L_1, NULL);
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_3 = ___0_ctx;
|
|
NullCheck(L_3);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_4 = L_3->___L;
|
|
NullCheck(L_4);
|
|
int32_t L_5 = L_4->___input_char;
|
|
if ((((int32_t)L_5) == ((int32_t)((int32_t)32))))
|
|
{
|
|
goto IL_0042;
|
|
}
|
|
}
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_6 = ___0_ctx;
|
|
NullCheck(L_6);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_7 = L_6->___L;
|
|
NullCheck(L_7);
|
|
int32_t L_8 = L_7->___input_char;
|
|
if ((((int32_t)L_8) < ((int32_t)((int32_t)9))))
|
|
{
|
|
goto IL_003f;
|
|
}
|
|
}
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_9 = ___0_ctx;
|
|
NullCheck(L_9);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_10 = L_9->___L;
|
|
NullCheck(L_10);
|
|
int32_t L_11 = L_10->___input_char;
|
|
G_B4_0 = ((((int32_t)((((int32_t)L_11) > ((int32_t)((int32_t)13)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0040;
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
G_B4_0 = 0;
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
G_B6_0 = G_B4_0;
|
|
goto IL_0043;
|
|
}
|
|
|
|
IL_0042:
|
|
{
|
|
G_B6_0 = 1;
|
|
}
|
|
|
|
IL_0043:
|
|
{
|
|
V_0 = (bool)G_B6_0;
|
|
bool L_12 = V_0;
|
|
if (!L_12)
|
|
{
|
|
goto IL_005d;
|
|
}
|
|
}
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_13 = ___0_ctx;
|
|
NullCheck(L_13);
|
|
L_13->___Return = (bool)1;
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_14 = ___0_ctx;
|
|
NullCheck(L_14);
|
|
L_14->___NextState = 1;
|
|
V_1 = (bool)1;
|
|
goto IL_010f;
|
|
}
|
|
|
|
IL_005d:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_15 = ___0_ctx;
|
|
NullCheck(L_15);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_16 = L_15->___L;
|
|
NullCheck(L_16);
|
|
int32_t L_17 = L_16->___input_char;
|
|
V_3 = L_17;
|
|
int32_t L_18 = V_3;
|
|
V_2 = L_18;
|
|
int32_t L_19 = V_2;
|
|
if ((((int32_t)L_19) > ((int32_t)((int32_t)69))))
|
|
{
|
|
goto IL_0088;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_20 = V_2;
|
|
if ((((int32_t)L_20) == ((int32_t)((int32_t)44))))
|
|
{
|
|
goto IL_009d;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0077;
|
|
}
|
|
|
|
IL_0077:
|
|
{
|
|
int32_t L_21 = V_2;
|
|
if ((((int32_t)L_21) == ((int32_t)((int32_t)46))))
|
|
{
|
|
goto IL_00bb;
|
|
}
|
|
}
|
|
{
|
|
goto IL_007e;
|
|
}
|
|
|
|
IL_007e:
|
|
{
|
|
int32_t L_22 = V_2;
|
|
if ((((int32_t)L_22) == ((int32_t)((int32_t)69))))
|
|
{
|
|
goto IL_00e3;
|
|
}
|
|
}
|
|
{
|
|
goto IL_010b;
|
|
}
|
|
|
|
IL_0088:
|
|
{
|
|
int32_t L_23 = V_2;
|
|
if ((((int32_t)L_23) == ((int32_t)((int32_t)93))))
|
|
{
|
|
goto IL_009d;
|
|
}
|
|
}
|
|
{
|
|
goto IL_008f;
|
|
}
|
|
|
|
IL_008f:
|
|
{
|
|
int32_t L_24 = V_2;
|
|
if ((((int32_t)L_24) == ((int32_t)((int32_t)101))))
|
|
{
|
|
goto IL_00e3;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0096;
|
|
}
|
|
|
|
IL_0096:
|
|
{
|
|
int32_t L_25 = V_2;
|
|
if ((((int32_t)L_25) == ((int32_t)((int32_t)125))))
|
|
{
|
|
goto IL_009d;
|
|
}
|
|
}
|
|
{
|
|
goto IL_010b;
|
|
}
|
|
|
|
IL_009d:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_26 = ___0_ctx;
|
|
NullCheck(L_26);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_27 = L_26->___L;
|
|
NullCheck(L_27);
|
|
Lexer_UngetChar_m1FBA3B548EFBD21F87308A001FD32ECCCF86C5D4(L_27, NULL);
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_28 = ___0_ctx;
|
|
NullCheck(L_28);
|
|
L_28->___Return = (bool)1;
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_29 = ___0_ctx;
|
|
NullCheck(L_29);
|
|
L_29->___NextState = 1;
|
|
V_1 = (bool)1;
|
|
goto IL_010f;
|
|
}
|
|
|
|
IL_00bb:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_30 = ___0_ctx;
|
|
NullCheck(L_30);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_31 = L_30->___L;
|
|
NullCheck(L_31);
|
|
StringBuilder_t* L_32 = L_31->___string_buffer;
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_33 = ___0_ctx;
|
|
NullCheck(L_33);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_34 = L_33->___L;
|
|
NullCheck(L_34);
|
|
int32_t L_35 = L_34->___input_char;
|
|
NullCheck(L_32);
|
|
StringBuilder_t* L_36;
|
|
L_36 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_32, ((int32_t)(uint16_t)L_35), NULL);
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_37 = ___0_ctx;
|
|
NullCheck(L_37);
|
|
L_37->___NextState = 5;
|
|
V_1 = (bool)1;
|
|
goto IL_010f;
|
|
}
|
|
|
|
IL_00e3:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_38 = ___0_ctx;
|
|
NullCheck(L_38);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_39 = L_38->___L;
|
|
NullCheck(L_39);
|
|
StringBuilder_t* L_40 = L_39->___string_buffer;
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_41 = ___0_ctx;
|
|
NullCheck(L_41);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_42 = L_41->___L;
|
|
NullCheck(L_42);
|
|
int32_t L_43 = L_42->___input_char;
|
|
NullCheck(L_40);
|
|
StringBuilder_t* L_44;
|
|
L_44 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_40, ((int32_t)(uint16_t)L_43), NULL);
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_45 = ___0_ctx;
|
|
NullCheck(L_45);
|
|
L_45->___NextState = 7;
|
|
V_1 = (bool)1;
|
|
goto IL_010f;
|
|
}
|
|
|
|
IL_010b:
|
|
{
|
|
V_1 = (bool)0;
|
|
goto IL_010f;
|
|
}
|
|
|
|
IL_010f:
|
|
{
|
|
bool L_46 = V_1;
|
|
return L_46;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Lexer_State5_mA1FA2D1CC7595C3D70A02973568DADDD27CFFA87 (FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* ___0_ctx, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_0 = ___0_ctx;
|
|
NullCheck(L_0);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_1 = L_0->___L;
|
|
NullCheck(L_1);
|
|
bool L_2;
|
|
L_2 = Lexer_GetChar_m240416C419AACCDFAD8C74F764421740C53A6253(L_1, NULL);
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_3 = ___0_ctx;
|
|
NullCheck(L_3);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_4 = L_3->___L;
|
|
NullCheck(L_4);
|
|
int32_t L_5 = L_4->___input_char;
|
|
if ((((int32_t)L_5) < ((int32_t)((int32_t)48))))
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_6 = ___0_ctx;
|
|
NullCheck(L_6);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_7 = L_6->___L;
|
|
NullCheck(L_7);
|
|
int32_t L_8 = L_7->___input_char;
|
|
G_B3_0 = ((((int32_t)((((int32_t)L_8) > ((int32_t)((int32_t)57)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0031;
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
bool L_9 = V_0;
|
|
if (!L_9)
|
|
{
|
|
goto IL_005e;
|
|
}
|
|
}
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_10 = ___0_ctx;
|
|
NullCheck(L_10);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_11 = L_10->___L;
|
|
NullCheck(L_11);
|
|
StringBuilder_t* L_12 = L_11->___string_buffer;
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_13 = ___0_ctx;
|
|
NullCheck(L_13);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_14 = L_13->___L;
|
|
NullCheck(L_14);
|
|
int32_t L_15 = L_14->___input_char;
|
|
NullCheck(L_12);
|
|
StringBuilder_t* L_16;
|
|
L_16 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_12, ((int32_t)(uint16_t)L_15), NULL);
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_17 = ___0_ctx;
|
|
NullCheck(L_17);
|
|
L_17->___NextState = 6;
|
|
V_1 = (bool)1;
|
|
goto IL_0062;
|
|
}
|
|
|
|
IL_005e:
|
|
{
|
|
V_1 = (bool)0;
|
|
goto IL_0062;
|
|
}
|
|
|
|
IL_0062:
|
|
{
|
|
bool L_18 = V_1;
|
|
return L_18;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Lexer_State6_m4B7FE39523E86CA3283F618065D8647CCFC6C0B3 (FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* ___0_ctx, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
bool V_5 = false;
|
|
int32_t G_B4_0 = 0;
|
|
int32_t G_B10_0 = 0;
|
|
int32_t G_B12_0 = 0;
|
|
{
|
|
goto IL_0124;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_0 = ___0_ctx;
|
|
NullCheck(L_0);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_1 = L_0->___L;
|
|
NullCheck(L_1);
|
|
int32_t L_2 = L_1->___input_char;
|
|
if ((((int32_t)L_2) < ((int32_t)((int32_t)48))))
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_3 = ___0_ctx;
|
|
NullCheck(L_3);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_4 = L_3->___L;
|
|
NullCheck(L_4);
|
|
int32_t L_5 = L_4->___input_char;
|
|
G_B4_0 = ((((int32_t)((((int32_t)L_5) > ((int32_t)((int32_t)57)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_002b;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
G_B4_0 = 0;
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
V_0 = (bool)G_B4_0;
|
|
bool L_6 = V_0;
|
|
if (!L_6)
|
|
{
|
|
goto IL_0052;
|
|
}
|
|
}
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_7 = ___0_ctx;
|
|
NullCheck(L_7);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_8 = L_7->___L;
|
|
NullCheck(L_8);
|
|
StringBuilder_t* L_9 = L_8->___string_buffer;
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_10 = ___0_ctx;
|
|
NullCheck(L_10);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_11 = L_10->___L;
|
|
NullCheck(L_11);
|
|
int32_t L_12 = L_11->___input_char;
|
|
NullCheck(L_9);
|
|
StringBuilder_t* L_13;
|
|
L_13 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_9, ((int32_t)(uint16_t)L_12), NULL);
|
|
goto IL_0124;
|
|
}
|
|
|
|
IL_0052:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_14 = ___0_ctx;
|
|
NullCheck(L_14);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_15 = L_14->___L;
|
|
NullCheck(L_15);
|
|
int32_t L_16 = L_15->___input_char;
|
|
if ((((int32_t)L_16) == ((int32_t)((int32_t)32))))
|
|
{
|
|
goto IL_0087;
|
|
}
|
|
}
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_17 = ___0_ctx;
|
|
NullCheck(L_17);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_18 = L_17->___L;
|
|
NullCheck(L_18);
|
|
int32_t L_19 = L_18->___input_char;
|
|
if ((((int32_t)L_19) < ((int32_t)((int32_t)9))))
|
|
{
|
|
goto IL_0084;
|
|
}
|
|
}
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_20 = ___0_ctx;
|
|
NullCheck(L_20);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_21 = L_20->___L;
|
|
NullCheck(L_21);
|
|
int32_t L_22 = L_21->___input_char;
|
|
G_B10_0 = ((((int32_t)((((int32_t)L_22) > ((int32_t)((int32_t)13)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0085;
|
|
}
|
|
|
|
IL_0084:
|
|
{
|
|
G_B10_0 = 0;
|
|
}
|
|
|
|
IL_0085:
|
|
{
|
|
G_B12_0 = G_B10_0;
|
|
goto IL_0088;
|
|
}
|
|
|
|
IL_0087:
|
|
{
|
|
G_B12_0 = 1;
|
|
}
|
|
|
|
IL_0088:
|
|
{
|
|
V_1 = (bool)G_B12_0;
|
|
bool L_23 = V_1;
|
|
if (!L_23)
|
|
{
|
|
goto IL_00a2;
|
|
}
|
|
}
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_24 = ___0_ctx;
|
|
NullCheck(L_24);
|
|
L_24->___Return = (bool)1;
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_25 = ___0_ctx;
|
|
NullCheck(L_25);
|
|
L_25->___NextState = 1;
|
|
V_2 = (bool)1;
|
|
goto IL_013c;
|
|
}
|
|
|
|
IL_00a2:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_26 = ___0_ctx;
|
|
NullCheck(L_26);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_27 = L_26->___L;
|
|
NullCheck(L_27);
|
|
int32_t L_28 = L_27->___input_char;
|
|
V_4 = L_28;
|
|
int32_t L_29 = V_4;
|
|
V_3 = L_29;
|
|
int32_t L_30 = V_3;
|
|
if ((((int32_t)L_30) > ((int32_t)((int32_t)69))))
|
|
{
|
|
goto IL_00c5;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_31 = V_3;
|
|
if ((((int32_t)L_31) == ((int32_t)((int32_t)44))))
|
|
{
|
|
goto IL_00da;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00be;
|
|
}
|
|
|
|
IL_00be:
|
|
{
|
|
int32_t L_32 = V_3;
|
|
if ((((int32_t)L_32) == ((int32_t)((int32_t)69))))
|
|
{
|
|
goto IL_00f8;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0120;
|
|
}
|
|
|
|
IL_00c5:
|
|
{
|
|
int32_t L_33 = V_3;
|
|
if ((((int32_t)L_33) == ((int32_t)((int32_t)93))))
|
|
{
|
|
goto IL_00da;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00cc;
|
|
}
|
|
|
|
IL_00cc:
|
|
{
|
|
int32_t L_34 = V_3;
|
|
if ((((int32_t)L_34) == ((int32_t)((int32_t)101))))
|
|
{
|
|
goto IL_00f8;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00d3;
|
|
}
|
|
|
|
IL_00d3:
|
|
{
|
|
int32_t L_35 = V_3;
|
|
if ((((int32_t)L_35) == ((int32_t)((int32_t)125))))
|
|
{
|
|
goto IL_00da;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0120;
|
|
}
|
|
|
|
IL_00da:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_36 = ___0_ctx;
|
|
NullCheck(L_36);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_37 = L_36->___L;
|
|
NullCheck(L_37);
|
|
Lexer_UngetChar_m1FBA3B548EFBD21F87308A001FD32ECCCF86C5D4(L_37, NULL);
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_38 = ___0_ctx;
|
|
NullCheck(L_38);
|
|
L_38->___Return = (bool)1;
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_39 = ___0_ctx;
|
|
NullCheck(L_39);
|
|
L_39->___NextState = 1;
|
|
V_2 = (bool)1;
|
|
goto IL_013c;
|
|
}
|
|
|
|
IL_00f8:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_40 = ___0_ctx;
|
|
NullCheck(L_40);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_41 = L_40->___L;
|
|
NullCheck(L_41);
|
|
StringBuilder_t* L_42 = L_41->___string_buffer;
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_43 = ___0_ctx;
|
|
NullCheck(L_43);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_44 = L_43->___L;
|
|
NullCheck(L_44);
|
|
int32_t L_45 = L_44->___input_char;
|
|
NullCheck(L_42);
|
|
StringBuilder_t* L_46;
|
|
L_46 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_42, ((int32_t)(uint16_t)L_45), NULL);
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_47 = ___0_ctx;
|
|
NullCheck(L_47);
|
|
L_47->___NextState = 7;
|
|
V_2 = (bool)1;
|
|
goto IL_013c;
|
|
}
|
|
|
|
IL_0120:
|
|
{
|
|
V_2 = (bool)0;
|
|
goto IL_013c;
|
|
}
|
|
|
|
IL_0124:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_48 = ___0_ctx;
|
|
NullCheck(L_48);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_49 = L_48->___L;
|
|
NullCheck(L_49);
|
|
bool L_50;
|
|
L_50 = Lexer_GetChar_m240416C419AACCDFAD8C74F764421740C53A6253(L_49, NULL);
|
|
V_5 = L_50;
|
|
bool L_51 = V_5;
|
|
if (L_51)
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
V_2 = (bool)1;
|
|
goto IL_013c;
|
|
}
|
|
|
|
IL_013c:
|
|
{
|
|
bool L_52 = V_2;
|
|
return L_52;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Lexer_State7_m5464256E9F4EF412B26461E52B133812F79EFA41 (FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* ___0_ctx, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_0 = ___0_ctx;
|
|
NullCheck(L_0);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_1 = L_0->___L;
|
|
NullCheck(L_1);
|
|
bool L_2;
|
|
L_2 = Lexer_GetChar_m240416C419AACCDFAD8C74F764421740C53A6253(L_1, NULL);
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_3 = ___0_ctx;
|
|
NullCheck(L_3);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_4 = L_3->___L;
|
|
NullCheck(L_4);
|
|
int32_t L_5 = L_4->___input_char;
|
|
if ((((int32_t)L_5) < ((int32_t)((int32_t)48))))
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_6 = ___0_ctx;
|
|
NullCheck(L_6);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_7 = L_6->___L;
|
|
NullCheck(L_7);
|
|
int32_t L_8 = L_7->___input_char;
|
|
G_B3_0 = ((((int32_t)((((int32_t)L_8) > ((int32_t)((int32_t)57)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0031;
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
bool L_9 = V_0;
|
|
if (!L_9)
|
|
{
|
|
goto IL_005e;
|
|
}
|
|
}
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_10 = ___0_ctx;
|
|
NullCheck(L_10);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_11 = L_10->___L;
|
|
NullCheck(L_11);
|
|
StringBuilder_t* L_12 = L_11->___string_buffer;
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_13 = ___0_ctx;
|
|
NullCheck(L_13);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_14 = L_13->___L;
|
|
NullCheck(L_14);
|
|
int32_t L_15 = L_14->___input_char;
|
|
NullCheck(L_12);
|
|
StringBuilder_t* L_16;
|
|
L_16 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_12, ((int32_t)(uint16_t)L_15), NULL);
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_17 = ___0_ctx;
|
|
NullCheck(L_17);
|
|
L_17->___NextState = 8;
|
|
V_1 = (bool)1;
|
|
goto IL_00a6;
|
|
}
|
|
|
|
IL_005e:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_18 = ___0_ctx;
|
|
NullCheck(L_18);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_19 = L_18->___L;
|
|
NullCheck(L_19);
|
|
int32_t L_20 = L_19->___input_char;
|
|
V_3 = L_20;
|
|
int32_t L_21 = V_3;
|
|
V_2 = L_21;
|
|
int32_t L_22 = V_2;
|
|
if ((((int32_t)L_22) == ((int32_t)((int32_t)43))))
|
|
{
|
|
goto IL_007a;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0073;
|
|
}
|
|
|
|
IL_0073:
|
|
{
|
|
int32_t L_23 = V_2;
|
|
if ((((int32_t)L_23) == ((int32_t)((int32_t)45))))
|
|
{
|
|
goto IL_007a;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00a2;
|
|
}
|
|
|
|
IL_007a:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_24 = ___0_ctx;
|
|
NullCheck(L_24);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_25 = L_24->___L;
|
|
NullCheck(L_25);
|
|
StringBuilder_t* L_26 = L_25->___string_buffer;
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_27 = ___0_ctx;
|
|
NullCheck(L_27);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_28 = L_27->___L;
|
|
NullCheck(L_28);
|
|
int32_t L_29 = L_28->___input_char;
|
|
NullCheck(L_26);
|
|
StringBuilder_t* L_30;
|
|
L_30 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_26, ((int32_t)(uint16_t)L_29), NULL);
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_31 = ___0_ctx;
|
|
NullCheck(L_31);
|
|
L_31->___NextState = 8;
|
|
V_1 = (bool)1;
|
|
goto IL_00a6;
|
|
}
|
|
|
|
IL_00a2:
|
|
{
|
|
V_1 = (bool)0;
|
|
goto IL_00a6;
|
|
}
|
|
|
|
IL_00a6:
|
|
{
|
|
bool L_32 = V_1;
|
|
return L_32;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Lexer_State8_mEE57AB611D759135E18E796C685799AF59653DF1 (FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* ___0_ctx, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
bool V_5 = false;
|
|
int32_t G_B4_0 = 0;
|
|
int32_t G_B10_0 = 0;
|
|
int32_t G_B12_0 = 0;
|
|
{
|
|
goto IL_00e6;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_0 = ___0_ctx;
|
|
NullCheck(L_0);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_1 = L_0->___L;
|
|
NullCheck(L_1);
|
|
int32_t L_2 = L_1->___input_char;
|
|
if ((((int32_t)L_2) < ((int32_t)((int32_t)48))))
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_3 = ___0_ctx;
|
|
NullCheck(L_3);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_4 = L_3->___L;
|
|
NullCheck(L_4);
|
|
int32_t L_5 = L_4->___input_char;
|
|
G_B4_0 = ((((int32_t)((((int32_t)L_5) > ((int32_t)((int32_t)57)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_002b;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
G_B4_0 = 0;
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
V_0 = (bool)G_B4_0;
|
|
bool L_6 = V_0;
|
|
if (!L_6)
|
|
{
|
|
goto IL_0052;
|
|
}
|
|
}
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_7 = ___0_ctx;
|
|
NullCheck(L_7);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_8 = L_7->___L;
|
|
NullCheck(L_8);
|
|
StringBuilder_t* L_9 = L_8->___string_buffer;
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_10 = ___0_ctx;
|
|
NullCheck(L_10);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_11 = L_10->___L;
|
|
NullCheck(L_11);
|
|
int32_t L_12 = L_11->___input_char;
|
|
NullCheck(L_9);
|
|
StringBuilder_t* L_13;
|
|
L_13 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_9, ((int32_t)(uint16_t)L_12), NULL);
|
|
goto IL_00e6;
|
|
}
|
|
|
|
IL_0052:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_14 = ___0_ctx;
|
|
NullCheck(L_14);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_15 = L_14->___L;
|
|
NullCheck(L_15);
|
|
int32_t L_16 = L_15->___input_char;
|
|
if ((((int32_t)L_16) == ((int32_t)((int32_t)32))))
|
|
{
|
|
goto IL_0087;
|
|
}
|
|
}
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_17 = ___0_ctx;
|
|
NullCheck(L_17);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_18 = L_17->___L;
|
|
NullCheck(L_18);
|
|
int32_t L_19 = L_18->___input_char;
|
|
if ((((int32_t)L_19) < ((int32_t)((int32_t)9))))
|
|
{
|
|
goto IL_0084;
|
|
}
|
|
}
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_20 = ___0_ctx;
|
|
NullCheck(L_20);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_21 = L_20->___L;
|
|
NullCheck(L_21);
|
|
int32_t L_22 = L_21->___input_char;
|
|
G_B10_0 = ((((int32_t)((((int32_t)L_22) > ((int32_t)((int32_t)13)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0085;
|
|
}
|
|
|
|
IL_0084:
|
|
{
|
|
G_B10_0 = 0;
|
|
}
|
|
|
|
IL_0085:
|
|
{
|
|
G_B12_0 = G_B10_0;
|
|
goto IL_0088;
|
|
}
|
|
|
|
IL_0087:
|
|
{
|
|
G_B12_0 = 1;
|
|
}
|
|
|
|
IL_0088:
|
|
{
|
|
V_1 = (bool)G_B12_0;
|
|
bool L_23 = V_1;
|
|
if (!L_23)
|
|
{
|
|
goto IL_009f;
|
|
}
|
|
}
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_24 = ___0_ctx;
|
|
NullCheck(L_24);
|
|
L_24->___Return = (bool)1;
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_25 = ___0_ctx;
|
|
NullCheck(L_25);
|
|
L_25->___NextState = 1;
|
|
V_2 = (bool)1;
|
|
goto IL_00fe;
|
|
}
|
|
|
|
IL_009f:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_26 = ___0_ctx;
|
|
NullCheck(L_26);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_27 = L_26->___L;
|
|
NullCheck(L_27);
|
|
int32_t L_28 = L_27->___input_char;
|
|
V_4 = L_28;
|
|
int32_t L_29 = V_4;
|
|
V_3 = L_29;
|
|
int32_t L_30 = V_3;
|
|
if ((((int32_t)L_30) == ((int32_t)((int32_t)44))))
|
|
{
|
|
goto IL_00c4;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00b6;
|
|
}
|
|
|
|
IL_00b6:
|
|
{
|
|
int32_t L_31 = V_3;
|
|
if ((((int32_t)L_31) == ((int32_t)((int32_t)93))))
|
|
{
|
|
goto IL_00c4;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00bd;
|
|
}
|
|
|
|
IL_00bd:
|
|
{
|
|
int32_t L_32 = V_3;
|
|
if ((((int32_t)L_32) == ((int32_t)((int32_t)125))))
|
|
{
|
|
goto IL_00c4;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00e2;
|
|
}
|
|
|
|
IL_00c4:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_33 = ___0_ctx;
|
|
NullCheck(L_33);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_34 = L_33->___L;
|
|
NullCheck(L_34);
|
|
Lexer_UngetChar_m1FBA3B548EFBD21F87308A001FD32ECCCF86C5D4(L_34, NULL);
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_35 = ___0_ctx;
|
|
NullCheck(L_35);
|
|
L_35->___Return = (bool)1;
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_36 = ___0_ctx;
|
|
NullCheck(L_36);
|
|
L_36->___NextState = 1;
|
|
V_2 = (bool)1;
|
|
goto IL_00fe;
|
|
}
|
|
|
|
IL_00e2:
|
|
{
|
|
V_2 = (bool)0;
|
|
goto IL_00fe;
|
|
}
|
|
|
|
IL_00e6:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_37 = ___0_ctx;
|
|
NullCheck(L_37);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_38 = L_37->___L;
|
|
NullCheck(L_38);
|
|
bool L_39;
|
|
L_39 = Lexer_GetChar_m240416C419AACCDFAD8C74F764421740C53A6253(L_38, NULL);
|
|
V_5 = L_39;
|
|
bool L_40 = V_5;
|
|
if (L_40)
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
V_2 = (bool)1;
|
|
goto IL_00fe;
|
|
}
|
|
|
|
IL_00fe:
|
|
{
|
|
bool L_41 = V_2;
|
|
return L_41;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Lexer_State9_m2A2DF75F8B8AEFAAFF778393AFCC9605ED84C01C (FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* ___0_ctx, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_0 = ___0_ctx;
|
|
NullCheck(L_0);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_1 = L_0->___L;
|
|
NullCheck(L_1);
|
|
bool L_2;
|
|
L_2 = Lexer_GetChar_m240416C419AACCDFAD8C74F764421740C53A6253(L_1, NULL);
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_3 = ___0_ctx;
|
|
NullCheck(L_3);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_4 = L_3->___L;
|
|
NullCheck(L_4);
|
|
int32_t L_5 = L_4->___input_char;
|
|
V_1 = L_5;
|
|
int32_t L_6 = V_1;
|
|
V_0 = L_6;
|
|
int32_t L_7 = V_0;
|
|
if ((((int32_t)L_7) == ((int32_t)((int32_t)114))))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_8 = ___0_ctx;
|
|
NullCheck(L_8);
|
|
L_8->___NextState = ((int32_t)10);
|
|
V_2 = (bool)1;
|
|
goto IL_0032;
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
V_2 = (bool)0;
|
|
goto IL_0032;
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
bool L_9 = V_2;
|
|
return L_9;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Lexer_State10_m5904073970AD0D36A52E6EF3528D8932E8588D59 (FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* ___0_ctx, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_0 = ___0_ctx;
|
|
NullCheck(L_0);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_1 = L_0->___L;
|
|
NullCheck(L_1);
|
|
bool L_2;
|
|
L_2 = Lexer_GetChar_m240416C419AACCDFAD8C74F764421740C53A6253(L_1, NULL);
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_3 = ___0_ctx;
|
|
NullCheck(L_3);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_4 = L_3->___L;
|
|
NullCheck(L_4);
|
|
int32_t L_5 = L_4->___input_char;
|
|
V_1 = L_5;
|
|
int32_t L_6 = V_1;
|
|
V_0 = L_6;
|
|
int32_t L_7 = V_0;
|
|
if ((((int32_t)L_7) == ((int32_t)((int32_t)117))))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_8 = ___0_ctx;
|
|
NullCheck(L_8);
|
|
L_8->___NextState = ((int32_t)11);
|
|
V_2 = (bool)1;
|
|
goto IL_0032;
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
V_2 = (bool)0;
|
|
goto IL_0032;
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
bool L_9 = V_2;
|
|
return L_9;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Lexer_State11_m5A9D0CA38509AB81A532487CF5D2DC65D6B71F04 (FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* ___0_ctx, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_0 = ___0_ctx;
|
|
NullCheck(L_0);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_1 = L_0->___L;
|
|
NullCheck(L_1);
|
|
bool L_2;
|
|
L_2 = Lexer_GetChar_m240416C419AACCDFAD8C74F764421740C53A6253(L_1, NULL);
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_3 = ___0_ctx;
|
|
NullCheck(L_3);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_4 = L_3->___L;
|
|
NullCheck(L_4);
|
|
int32_t L_5 = L_4->___input_char;
|
|
V_1 = L_5;
|
|
int32_t L_6 = V_1;
|
|
V_0 = L_6;
|
|
int32_t L_7 = V_0;
|
|
if ((((int32_t)L_7) == ((int32_t)((int32_t)101))))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_8 = ___0_ctx;
|
|
NullCheck(L_8);
|
|
L_8->___Return = (bool)1;
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_9 = ___0_ctx;
|
|
NullCheck(L_9);
|
|
L_9->___NextState = 1;
|
|
V_2 = (bool)1;
|
|
goto IL_0038;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
V_2 = (bool)0;
|
|
goto IL_0038;
|
|
}
|
|
|
|
IL_0038:
|
|
{
|
|
bool L_10 = V_2;
|
|
return L_10;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Lexer_State12_m958CFDBC029123955374295C3E9913D1599A196D (FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* ___0_ctx, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_0 = ___0_ctx;
|
|
NullCheck(L_0);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_1 = L_0->___L;
|
|
NullCheck(L_1);
|
|
bool L_2;
|
|
L_2 = Lexer_GetChar_m240416C419AACCDFAD8C74F764421740C53A6253(L_1, NULL);
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_3 = ___0_ctx;
|
|
NullCheck(L_3);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_4 = L_3->___L;
|
|
NullCheck(L_4);
|
|
int32_t L_5 = L_4->___input_char;
|
|
V_1 = L_5;
|
|
int32_t L_6 = V_1;
|
|
V_0 = L_6;
|
|
int32_t L_7 = V_0;
|
|
if ((((int32_t)L_7) == ((int32_t)((int32_t)97))))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_8 = ___0_ctx;
|
|
NullCheck(L_8);
|
|
L_8->___NextState = ((int32_t)13);
|
|
V_2 = (bool)1;
|
|
goto IL_0032;
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
V_2 = (bool)0;
|
|
goto IL_0032;
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
bool L_9 = V_2;
|
|
return L_9;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Lexer_State13_m560152ABC44290068A66CB6BFC939C5AAFEC51FF (FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* ___0_ctx, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_0 = ___0_ctx;
|
|
NullCheck(L_0);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_1 = L_0->___L;
|
|
NullCheck(L_1);
|
|
bool L_2;
|
|
L_2 = Lexer_GetChar_m240416C419AACCDFAD8C74F764421740C53A6253(L_1, NULL);
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_3 = ___0_ctx;
|
|
NullCheck(L_3);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_4 = L_3->___L;
|
|
NullCheck(L_4);
|
|
int32_t L_5 = L_4->___input_char;
|
|
V_1 = L_5;
|
|
int32_t L_6 = V_1;
|
|
V_0 = L_6;
|
|
int32_t L_7 = V_0;
|
|
if ((((int32_t)L_7) == ((int32_t)((int32_t)108))))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_8 = ___0_ctx;
|
|
NullCheck(L_8);
|
|
L_8->___NextState = ((int32_t)14);
|
|
V_2 = (bool)1;
|
|
goto IL_0032;
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
V_2 = (bool)0;
|
|
goto IL_0032;
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
bool L_9 = V_2;
|
|
return L_9;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Lexer_State14_m8C25AB90286E32F384E390E17E726F1BC08BC9DD (FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* ___0_ctx, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_0 = ___0_ctx;
|
|
NullCheck(L_0);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_1 = L_0->___L;
|
|
NullCheck(L_1);
|
|
bool L_2;
|
|
L_2 = Lexer_GetChar_m240416C419AACCDFAD8C74F764421740C53A6253(L_1, NULL);
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_3 = ___0_ctx;
|
|
NullCheck(L_3);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_4 = L_3->___L;
|
|
NullCheck(L_4);
|
|
int32_t L_5 = L_4->___input_char;
|
|
V_1 = L_5;
|
|
int32_t L_6 = V_1;
|
|
V_0 = L_6;
|
|
int32_t L_7 = V_0;
|
|
if ((((int32_t)L_7) == ((int32_t)((int32_t)115))))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_8 = ___0_ctx;
|
|
NullCheck(L_8);
|
|
L_8->___NextState = ((int32_t)15);
|
|
V_2 = (bool)1;
|
|
goto IL_0032;
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
V_2 = (bool)0;
|
|
goto IL_0032;
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
bool L_9 = V_2;
|
|
return L_9;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Lexer_State15_m00E0DE3464F1159F7EB835A3286EFFA40B558403 (FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* ___0_ctx, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_0 = ___0_ctx;
|
|
NullCheck(L_0);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_1 = L_0->___L;
|
|
NullCheck(L_1);
|
|
bool L_2;
|
|
L_2 = Lexer_GetChar_m240416C419AACCDFAD8C74F764421740C53A6253(L_1, NULL);
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_3 = ___0_ctx;
|
|
NullCheck(L_3);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_4 = L_3->___L;
|
|
NullCheck(L_4);
|
|
int32_t L_5 = L_4->___input_char;
|
|
V_1 = L_5;
|
|
int32_t L_6 = V_1;
|
|
V_0 = L_6;
|
|
int32_t L_7 = V_0;
|
|
if ((((int32_t)L_7) == ((int32_t)((int32_t)101))))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_8 = ___0_ctx;
|
|
NullCheck(L_8);
|
|
L_8->___Return = (bool)1;
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_9 = ___0_ctx;
|
|
NullCheck(L_9);
|
|
L_9->___NextState = 1;
|
|
V_2 = (bool)1;
|
|
goto IL_0038;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
V_2 = (bool)0;
|
|
goto IL_0038;
|
|
}
|
|
|
|
IL_0038:
|
|
{
|
|
bool L_10 = V_2;
|
|
return L_10;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Lexer_State16_m8BD82487456FA900D6BBDED72C8C975696D67804 (FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* ___0_ctx, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_0 = ___0_ctx;
|
|
NullCheck(L_0);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_1 = L_0->___L;
|
|
NullCheck(L_1);
|
|
bool L_2;
|
|
L_2 = Lexer_GetChar_m240416C419AACCDFAD8C74F764421740C53A6253(L_1, NULL);
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_3 = ___0_ctx;
|
|
NullCheck(L_3);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_4 = L_3->___L;
|
|
NullCheck(L_4);
|
|
int32_t L_5 = L_4->___input_char;
|
|
V_1 = L_5;
|
|
int32_t L_6 = V_1;
|
|
V_0 = L_6;
|
|
int32_t L_7 = V_0;
|
|
if ((((int32_t)L_7) == ((int32_t)((int32_t)117))))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_8 = ___0_ctx;
|
|
NullCheck(L_8);
|
|
L_8->___NextState = ((int32_t)17);
|
|
V_2 = (bool)1;
|
|
goto IL_0032;
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
V_2 = (bool)0;
|
|
goto IL_0032;
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
bool L_9 = V_2;
|
|
return L_9;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Lexer_State17_mDFB66C6B09C25B8B8CC2EC226F446FEF70AFE493 (FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* ___0_ctx, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_0 = ___0_ctx;
|
|
NullCheck(L_0);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_1 = L_0->___L;
|
|
NullCheck(L_1);
|
|
bool L_2;
|
|
L_2 = Lexer_GetChar_m240416C419AACCDFAD8C74F764421740C53A6253(L_1, NULL);
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_3 = ___0_ctx;
|
|
NullCheck(L_3);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_4 = L_3->___L;
|
|
NullCheck(L_4);
|
|
int32_t L_5 = L_4->___input_char;
|
|
V_1 = L_5;
|
|
int32_t L_6 = V_1;
|
|
V_0 = L_6;
|
|
int32_t L_7 = V_0;
|
|
if ((((int32_t)L_7) == ((int32_t)((int32_t)108))))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_8 = ___0_ctx;
|
|
NullCheck(L_8);
|
|
L_8->___NextState = ((int32_t)18);
|
|
V_2 = (bool)1;
|
|
goto IL_0032;
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
V_2 = (bool)0;
|
|
goto IL_0032;
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
bool L_9 = V_2;
|
|
return L_9;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Lexer_State18_m2C29A371734A3AF4B66ACD39EA4356FCEEB42703 (FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* ___0_ctx, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_0 = ___0_ctx;
|
|
NullCheck(L_0);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_1 = L_0->___L;
|
|
NullCheck(L_1);
|
|
bool L_2;
|
|
L_2 = Lexer_GetChar_m240416C419AACCDFAD8C74F764421740C53A6253(L_1, NULL);
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_3 = ___0_ctx;
|
|
NullCheck(L_3);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_4 = L_3->___L;
|
|
NullCheck(L_4);
|
|
int32_t L_5 = L_4->___input_char;
|
|
V_1 = L_5;
|
|
int32_t L_6 = V_1;
|
|
V_0 = L_6;
|
|
int32_t L_7 = V_0;
|
|
if ((((int32_t)L_7) == ((int32_t)((int32_t)108))))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_8 = ___0_ctx;
|
|
NullCheck(L_8);
|
|
L_8->___Return = (bool)1;
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_9 = ___0_ctx;
|
|
NullCheck(L_9);
|
|
L_9->___NextState = 1;
|
|
V_2 = (bool)1;
|
|
goto IL_0038;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
V_2 = (bool)0;
|
|
goto IL_0038;
|
|
}
|
|
|
|
IL_0038:
|
|
{
|
|
bool L_10 = V_2;
|
|
return L_10;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Lexer_State19_mD468E390FBA1C3B79566FD0CF8AB183BEF7B9A7C (FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* ___0_ctx, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
{
|
|
goto IL_0072;
|
|
}
|
|
|
|
IL_0003:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_0 = ___0_ctx;
|
|
NullCheck(L_0);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_1 = L_0->___L;
|
|
NullCheck(L_1);
|
|
int32_t L_2 = L_1->___input_char;
|
|
V_1 = L_2;
|
|
int32_t L_3 = V_1;
|
|
V_0 = L_3;
|
|
int32_t L_4 = V_0;
|
|
if ((((int32_t)L_4) == ((int32_t)((int32_t)34))))
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
int32_t L_5 = V_0;
|
|
if ((((int32_t)L_5) == ((int32_t)((int32_t)92))))
|
|
{
|
|
goto IL_003f;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0053;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_6 = ___0_ctx;
|
|
NullCheck(L_6);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_7 = L_6->___L;
|
|
NullCheck(L_7);
|
|
Lexer_UngetChar_m1FBA3B548EFBD21F87308A001FD32ECCCF86C5D4(L_7, NULL);
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_8 = ___0_ctx;
|
|
NullCheck(L_8);
|
|
L_8->___Return = (bool)1;
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_9 = ___0_ctx;
|
|
NullCheck(L_9);
|
|
L_9->___NextState = ((int32_t)20);
|
|
V_2 = (bool)1;
|
|
goto IL_0085;
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_10 = ___0_ctx;
|
|
NullCheck(L_10);
|
|
L_10->___StateStack = ((int32_t)19);
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_11 = ___0_ctx;
|
|
NullCheck(L_11);
|
|
L_11->___NextState = ((int32_t)21);
|
|
V_2 = (bool)1;
|
|
goto IL_0085;
|
|
}
|
|
|
|
IL_0053:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_12 = ___0_ctx;
|
|
NullCheck(L_12);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_13 = L_12->___L;
|
|
NullCheck(L_13);
|
|
StringBuilder_t* L_14 = L_13->___string_buffer;
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_15 = ___0_ctx;
|
|
NullCheck(L_15);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_16 = L_15->___L;
|
|
NullCheck(L_16);
|
|
int32_t L_17 = L_16->___input_char;
|
|
NullCheck(L_14);
|
|
StringBuilder_t* L_18;
|
|
L_18 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_14, ((int32_t)(uint16_t)L_17), NULL);
|
|
goto IL_0072;
|
|
}
|
|
|
|
IL_0072:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_19 = ___0_ctx;
|
|
NullCheck(L_19);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_20 = L_19->___L;
|
|
NullCheck(L_20);
|
|
bool L_21;
|
|
L_21 = Lexer_GetChar_m240416C419AACCDFAD8C74F764421740C53A6253(L_20, NULL);
|
|
V_3 = L_21;
|
|
bool L_22 = V_3;
|
|
if (L_22)
|
|
{
|
|
goto IL_0003;
|
|
}
|
|
}
|
|
{
|
|
V_2 = (bool)1;
|
|
goto IL_0085;
|
|
}
|
|
|
|
IL_0085:
|
|
{
|
|
bool L_23 = V_2;
|
|
return L_23;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Lexer_State20_mB134E41DBE7A01B14B8ADBBEDFAE16596CB76C1A (FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* ___0_ctx, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_0 = ___0_ctx;
|
|
NullCheck(L_0);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_1 = L_0->___L;
|
|
NullCheck(L_1);
|
|
bool L_2;
|
|
L_2 = Lexer_GetChar_m240416C419AACCDFAD8C74F764421740C53A6253(L_1, NULL);
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_3 = ___0_ctx;
|
|
NullCheck(L_3);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_4 = L_3->___L;
|
|
NullCheck(L_4);
|
|
int32_t L_5 = L_4->___input_char;
|
|
V_1 = L_5;
|
|
int32_t L_6 = V_1;
|
|
V_0 = L_6;
|
|
int32_t L_7 = V_0;
|
|
if ((((int32_t)L_7) == ((int32_t)((int32_t)34))))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_8 = ___0_ctx;
|
|
NullCheck(L_8);
|
|
L_8->___Return = (bool)1;
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_9 = ___0_ctx;
|
|
NullCheck(L_9);
|
|
L_9->___NextState = 1;
|
|
V_2 = (bool)1;
|
|
goto IL_0038;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
V_2 = (bool)0;
|
|
goto IL_0038;
|
|
}
|
|
|
|
IL_0038:
|
|
{
|
|
bool L_10 = V_2;
|
|
return L_10;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Lexer_State21_m98740912488BE0C617E7112B1EFA0CC52080297A (FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* ___0_ctx, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_0 = ___0_ctx;
|
|
NullCheck(L_0);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_1 = L_0->___L;
|
|
NullCheck(L_1);
|
|
bool L_2;
|
|
L_2 = Lexer_GetChar_m240416C419AACCDFAD8C74F764421740C53A6253(L_1, NULL);
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_3 = ___0_ctx;
|
|
NullCheck(L_3);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_4 = L_3->___L;
|
|
NullCheck(L_4);
|
|
int32_t L_5 = L_4->___input_char;
|
|
V_1 = L_5;
|
|
int32_t L_6 = V_1;
|
|
V_0 = L_6;
|
|
int32_t L_7 = V_0;
|
|
if ((((int32_t)L_7) > ((int32_t)((int32_t)92))))
|
|
{
|
|
goto IL_0044;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_8 = V_0;
|
|
if ((((int32_t)L_8) > ((int32_t)((int32_t)39))))
|
|
{
|
|
goto IL_0036;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_9 = V_0;
|
|
if ((((int32_t)L_9) == ((int32_t)((int32_t)34))))
|
|
{
|
|
goto IL_0085;
|
|
}
|
|
}
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
int32_t L_10 = V_0;
|
|
if ((((int32_t)L_10) == ((int32_t)((int32_t)39))))
|
|
{
|
|
goto IL_0085;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00b6;
|
|
}
|
|
|
|
IL_0036:
|
|
{
|
|
int32_t L_11 = V_0;
|
|
if ((((int32_t)L_11) == ((int32_t)((int32_t)47))))
|
|
{
|
|
goto IL_0085;
|
|
}
|
|
}
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
int32_t L_12 = V_0;
|
|
if ((((int32_t)L_12) == ((int32_t)((int32_t)92))))
|
|
{
|
|
goto IL_0085;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00b6;
|
|
}
|
|
|
|
IL_0044:
|
|
{
|
|
int32_t L_13 = V_0;
|
|
if ((((int32_t)L_13) > ((int32_t)((int32_t)102))))
|
|
{
|
|
goto IL_0057;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_14 = V_0;
|
|
if ((((int32_t)L_14) == ((int32_t)((int32_t)98))))
|
|
{
|
|
goto IL_0085;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0050;
|
|
}
|
|
|
|
IL_0050:
|
|
{
|
|
int32_t L_15 = V_0;
|
|
if ((((int32_t)L_15) == ((int32_t)((int32_t)102))))
|
|
{
|
|
goto IL_0085;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00b6;
|
|
}
|
|
|
|
IL_0057:
|
|
{
|
|
int32_t L_16 = V_0;
|
|
if ((((int32_t)L_16) == ((int32_t)((int32_t)110))))
|
|
{
|
|
goto IL_0085;
|
|
}
|
|
}
|
|
{
|
|
goto IL_005e;
|
|
}
|
|
|
|
IL_005e:
|
|
{
|
|
int32_t L_17 = V_0;
|
|
switch (((int32_t)il2cpp_codegen_subtract(L_17, ((int32_t)114))))
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0085;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_00b6;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0085;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_0079;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_00b6;
|
|
}
|
|
|
|
IL_0079:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_18 = ___0_ctx;
|
|
NullCheck(L_18);
|
|
L_18->___NextState = ((int32_t)22);
|
|
V_2 = (bool)1;
|
|
goto IL_00ba;
|
|
}
|
|
|
|
IL_0085:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_19 = ___0_ctx;
|
|
NullCheck(L_19);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_20 = L_19->___L;
|
|
NullCheck(L_20);
|
|
StringBuilder_t* L_21 = L_20->___string_buffer;
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_22 = ___0_ctx;
|
|
NullCheck(L_22);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_23 = L_22->___L;
|
|
NullCheck(L_23);
|
|
int32_t L_24 = L_23->___input_char;
|
|
il2cpp_codegen_runtime_class_init_inline(Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9_il2cpp_TypeInfo_var);
|
|
Il2CppChar L_25;
|
|
L_25 = Lexer_ProcessEscChar_m1E23F62F3A8846AA52FD98E49917B3A8C9C168E3(L_24, NULL);
|
|
NullCheck(L_21);
|
|
StringBuilder_t* L_26;
|
|
L_26 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_21, L_25, NULL);
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_27 = ___0_ctx;
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_28 = ___0_ctx;
|
|
NullCheck(L_28);
|
|
int32_t L_29 = L_28->___StateStack;
|
|
NullCheck(L_27);
|
|
L_27->___NextState = L_29;
|
|
V_2 = (bool)1;
|
|
goto IL_00ba;
|
|
}
|
|
|
|
IL_00b6:
|
|
{
|
|
V_2 = (bool)0;
|
|
goto IL_00ba;
|
|
}
|
|
|
|
IL_00ba:
|
|
{
|
|
bool L_30 = V_2;
|
|
return L_30;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Lexer_State22_m40E243F9BE396E171757231B9D5045880E92EC2D (FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* ___0_ctx, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
bool V_4 = false;
|
|
bool V_5 = false;
|
|
int32_t G_B8_0 = 0;
|
|
int32_t G_B10_0 = 0;
|
|
{
|
|
V_0 = 0;
|
|
V_1 = ((int32_t)4096);
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_0 = ___0_ctx;
|
|
NullCheck(L_0);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_1 = L_0->___L;
|
|
NullCheck(L_1);
|
|
L_1->___unichar = 0;
|
|
goto IL_00f2;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_2 = ___0_ctx;
|
|
NullCheck(L_2);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_3 = L_2->___L;
|
|
NullCheck(L_3);
|
|
int32_t L_4 = L_3->___input_char;
|
|
if ((((int32_t)L_4) < ((int32_t)((int32_t)48))))
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_5 = ___0_ctx;
|
|
NullCheck(L_5);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_6 = L_5->___L;
|
|
NullCheck(L_6);
|
|
int32_t L_7 = L_6->___input_char;
|
|
if ((((int32_t)L_7) <= ((int32_t)((int32_t)57))))
|
|
{
|
|
goto IL_007d;
|
|
}
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_8 = ___0_ctx;
|
|
NullCheck(L_8);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_9 = L_8->___L;
|
|
NullCheck(L_9);
|
|
int32_t L_10 = L_9->___input_char;
|
|
if ((((int32_t)L_10) < ((int32_t)((int32_t)65))))
|
|
{
|
|
goto IL_0057;
|
|
}
|
|
}
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_11 = ___0_ctx;
|
|
NullCheck(L_11);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_12 = L_11->___L;
|
|
NullCheck(L_12);
|
|
int32_t L_13 = L_12->___input_char;
|
|
if ((((int32_t)L_13) <= ((int32_t)((int32_t)70))))
|
|
{
|
|
goto IL_007d;
|
|
}
|
|
}
|
|
|
|
IL_0057:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_14 = ___0_ctx;
|
|
NullCheck(L_14);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_15 = L_14->___L;
|
|
NullCheck(L_15);
|
|
int32_t L_16 = L_15->___input_char;
|
|
if ((((int32_t)L_16) < ((int32_t)((int32_t)97))))
|
|
{
|
|
goto IL_007a;
|
|
}
|
|
}
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_17 = ___0_ctx;
|
|
NullCheck(L_17);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_18 = L_17->___L;
|
|
NullCheck(L_18);
|
|
int32_t L_19 = L_18->___input_char;
|
|
G_B8_0 = ((((int32_t)((((int32_t)L_19) > ((int32_t)((int32_t)102)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_007b;
|
|
}
|
|
|
|
IL_007a:
|
|
{
|
|
G_B8_0 = 0;
|
|
}
|
|
|
|
IL_007b:
|
|
{
|
|
G_B10_0 = G_B8_0;
|
|
goto IL_007e;
|
|
}
|
|
|
|
IL_007d:
|
|
{
|
|
G_B10_0 = 1;
|
|
}
|
|
|
|
IL_007e:
|
|
{
|
|
V_2 = (bool)G_B10_0;
|
|
bool L_20 = V_2;
|
|
if (!L_20)
|
|
{
|
|
goto IL_00ed;
|
|
}
|
|
}
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_21 = ___0_ctx;
|
|
NullCheck(L_21);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_22 = L_21->___L;
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_23 = L_22;
|
|
NullCheck(L_23);
|
|
int32_t L_24 = L_23->___unichar;
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_25 = ___0_ctx;
|
|
NullCheck(L_25);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_26 = L_25->___L;
|
|
NullCheck(L_26);
|
|
int32_t L_27 = L_26->___input_char;
|
|
il2cpp_codegen_runtime_class_init_inline(Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9_il2cpp_TypeInfo_var);
|
|
int32_t L_28;
|
|
L_28 = Lexer_HexValue_m5FF113620372573CAA3AAA87DE9BFDFE9D1AA83A(L_27, NULL);
|
|
int32_t L_29 = V_1;
|
|
NullCheck(L_23);
|
|
L_23->___unichar = ((int32_t)il2cpp_codegen_add(L_24, ((int32_t)il2cpp_codegen_multiply(L_28, L_29))));
|
|
int32_t L_30 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_30, 1));
|
|
int32_t L_31 = V_1;
|
|
V_1 = ((int32_t)(L_31/((int32_t)16)));
|
|
int32_t L_32 = V_0;
|
|
V_3 = (bool)((((int32_t)L_32) == ((int32_t)4))? 1 : 0);
|
|
bool L_33 = V_3;
|
|
if (!L_33)
|
|
{
|
|
goto IL_00eb;
|
|
}
|
|
}
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_34 = ___0_ctx;
|
|
NullCheck(L_34);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_35 = L_34->___L;
|
|
NullCheck(L_35);
|
|
StringBuilder_t* L_36 = L_35->___string_buffer;
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_37 = ___0_ctx;
|
|
NullCheck(L_37);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_38 = L_37->___L;
|
|
NullCheck(L_38);
|
|
int32_t L_39 = L_38->___unichar;
|
|
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
Il2CppChar L_40;
|
|
L_40 = Convert_ToChar_mF1B1B205DDEFDE52251235514E7DAFCAB37D1F24(L_39, NULL);
|
|
NullCheck(L_36);
|
|
StringBuilder_t* L_41;
|
|
L_41 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_36, L_40, NULL);
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_42 = ___0_ctx;
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_43 = ___0_ctx;
|
|
NullCheck(L_43);
|
|
int32_t L_44 = L_43->___StateStack;
|
|
NullCheck(L_42);
|
|
L_42->___NextState = L_44;
|
|
V_4 = (bool)1;
|
|
goto IL_010b;
|
|
}
|
|
|
|
IL_00eb:
|
|
{
|
|
goto IL_00f2;
|
|
}
|
|
|
|
IL_00ed:
|
|
{
|
|
V_4 = (bool)0;
|
|
goto IL_010b;
|
|
}
|
|
|
|
IL_00f2:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_45 = ___0_ctx;
|
|
NullCheck(L_45);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_46 = L_45->___L;
|
|
NullCheck(L_46);
|
|
bool L_47;
|
|
L_47 = Lexer_GetChar_m240416C419AACCDFAD8C74F764421740C53A6253(L_46, NULL);
|
|
V_5 = L_47;
|
|
bool L_48 = V_5;
|
|
if (L_48)
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
V_4 = (bool)1;
|
|
goto IL_010b;
|
|
}
|
|
|
|
IL_010b:
|
|
{
|
|
bool L_49 = V_4;
|
|
return L_49;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Lexer_State23_m14C029F3770CEF5E40A14DE7B3D3C2952D9C385F (FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* ___0_ctx, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
{
|
|
goto IL_0072;
|
|
}
|
|
|
|
IL_0003:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_0 = ___0_ctx;
|
|
NullCheck(L_0);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_1 = L_0->___L;
|
|
NullCheck(L_1);
|
|
int32_t L_2 = L_1->___input_char;
|
|
V_1 = L_2;
|
|
int32_t L_3 = V_1;
|
|
V_0 = L_3;
|
|
int32_t L_4 = V_0;
|
|
if ((((int32_t)L_4) == ((int32_t)((int32_t)39))))
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
int32_t L_5 = V_0;
|
|
if ((((int32_t)L_5) == ((int32_t)((int32_t)92))))
|
|
{
|
|
goto IL_003f;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0053;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_6 = ___0_ctx;
|
|
NullCheck(L_6);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_7 = L_6->___L;
|
|
NullCheck(L_7);
|
|
Lexer_UngetChar_m1FBA3B548EFBD21F87308A001FD32ECCCF86C5D4(L_7, NULL);
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_8 = ___0_ctx;
|
|
NullCheck(L_8);
|
|
L_8->___Return = (bool)1;
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_9 = ___0_ctx;
|
|
NullCheck(L_9);
|
|
L_9->___NextState = ((int32_t)24);
|
|
V_2 = (bool)1;
|
|
goto IL_0085;
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_10 = ___0_ctx;
|
|
NullCheck(L_10);
|
|
L_10->___StateStack = ((int32_t)23);
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_11 = ___0_ctx;
|
|
NullCheck(L_11);
|
|
L_11->___NextState = ((int32_t)21);
|
|
V_2 = (bool)1;
|
|
goto IL_0085;
|
|
}
|
|
|
|
IL_0053:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_12 = ___0_ctx;
|
|
NullCheck(L_12);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_13 = L_12->___L;
|
|
NullCheck(L_13);
|
|
StringBuilder_t* L_14 = L_13->___string_buffer;
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_15 = ___0_ctx;
|
|
NullCheck(L_15);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_16 = L_15->___L;
|
|
NullCheck(L_16);
|
|
int32_t L_17 = L_16->___input_char;
|
|
NullCheck(L_14);
|
|
StringBuilder_t* L_18;
|
|
L_18 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_14, ((int32_t)(uint16_t)L_17), NULL);
|
|
goto IL_0072;
|
|
}
|
|
|
|
IL_0072:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_19 = ___0_ctx;
|
|
NullCheck(L_19);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_20 = L_19->___L;
|
|
NullCheck(L_20);
|
|
bool L_21;
|
|
L_21 = Lexer_GetChar_m240416C419AACCDFAD8C74F764421740C53A6253(L_20, NULL);
|
|
V_3 = L_21;
|
|
bool L_22 = V_3;
|
|
if (L_22)
|
|
{
|
|
goto IL_0003;
|
|
}
|
|
}
|
|
{
|
|
V_2 = (bool)1;
|
|
goto IL_0085;
|
|
}
|
|
|
|
IL_0085:
|
|
{
|
|
bool L_23 = V_2;
|
|
return L_23;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Lexer_State24_mD981E66641429ED14661F0D83F155ACB0ADE601E (FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* ___0_ctx, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_0 = ___0_ctx;
|
|
NullCheck(L_0);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_1 = L_0->___L;
|
|
NullCheck(L_1);
|
|
bool L_2;
|
|
L_2 = Lexer_GetChar_m240416C419AACCDFAD8C74F764421740C53A6253(L_1, NULL);
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_3 = ___0_ctx;
|
|
NullCheck(L_3);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_4 = L_3->___L;
|
|
NullCheck(L_4);
|
|
int32_t L_5 = L_4->___input_char;
|
|
V_1 = L_5;
|
|
int32_t L_6 = V_1;
|
|
V_0 = L_6;
|
|
int32_t L_7 = V_0;
|
|
if ((((int32_t)L_7) == ((int32_t)((int32_t)39))))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_8 = ___0_ctx;
|
|
NullCheck(L_8);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_9 = L_8->___L;
|
|
NullCheck(L_9);
|
|
L_9->___input_char = ((int32_t)34);
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_10 = ___0_ctx;
|
|
NullCheck(L_10);
|
|
L_10->___Return = (bool)1;
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_11 = ___0_ctx;
|
|
NullCheck(L_11);
|
|
L_11->___NextState = 1;
|
|
V_2 = (bool)1;
|
|
goto IL_0045;
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
V_2 = (bool)0;
|
|
goto IL_0045;
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
bool L_12 = V_2;
|
|
return L_12;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Lexer_State25_m846973336CD8B49363EBCFB9EF83676772B9B6F3 (FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* ___0_ctx, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_0 = ___0_ctx;
|
|
NullCheck(L_0);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_1 = L_0->___L;
|
|
NullCheck(L_1);
|
|
bool L_2;
|
|
L_2 = Lexer_GetChar_m240416C419AACCDFAD8C74F764421740C53A6253(L_1, NULL);
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_3 = ___0_ctx;
|
|
NullCheck(L_3);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_4 = L_3->___L;
|
|
NullCheck(L_4);
|
|
int32_t L_5 = L_4->___input_char;
|
|
V_1 = L_5;
|
|
int32_t L_6 = V_1;
|
|
V_0 = L_6;
|
|
int32_t L_7 = V_0;
|
|
if ((((int32_t)L_7) == ((int32_t)((int32_t)42))))
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
int32_t L_8 = V_0;
|
|
if ((((int32_t)L_8) == ((int32_t)((int32_t)47))))
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_9 = ___0_ctx;
|
|
NullCheck(L_9);
|
|
L_9->___NextState = ((int32_t)27);
|
|
V_2 = (bool)1;
|
|
goto IL_0045;
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_10 = ___0_ctx;
|
|
NullCheck(L_10);
|
|
L_10->___NextState = ((int32_t)26);
|
|
V_2 = (bool)1;
|
|
goto IL_0045;
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
V_2 = (bool)0;
|
|
goto IL_0045;
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
bool L_11 = V_2;
|
|
return L_11;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Lexer_State26_m464EBDB9597D118A7666A693F407F7E7126752EB (FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* ___0_ctx, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
{
|
|
goto IL_0024;
|
|
}
|
|
|
|
IL_0003:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_0 = ___0_ctx;
|
|
NullCheck(L_0);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_1 = L_0->___L;
|
|
NullCheck(L_1);
|
|
int32_t L_2 = L_1->___input_char;
|
|
V_0 = (bool)((((int32_t)L_2) == ((int32_t)((int32_t)10)))? 1 : 0);
|
|
bool L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_4 = ___0_ctx;
|
|
NullCheck(L_4);
|
|
L_4->___NextState = 1;
|
|
V_1 = (bool)1;
|
|
goto IL_0037;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_5 = ___0_ctx;
|
|
NullCheck(L_5);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_6 = L_5->___L;
|
|
NullCheck(L_6);
|
|
bool L_7;
|
|
L_7 = Lexer_GetChar_m240416C419AACCDFAD8C74F764421740C53A6253(L_6, NULL);
|
|
V_2 = L_7;
|
|
bool L_8 = V_2;
|
|
if (L_8)
|
|
{
|
|
goto IL_0003;
|
|
}
|
|
}
|
|
{
|
|
V_1 = (bool)1;
|
|
goto IL_0037;
|
|
}
|
|
|
|
IL_0037:
|
|
{
|
|
bool L_9 = V_1;
|
|
return L_9;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Lexer_State27_mFDC378B071D2ABA7045A6CE1B8AE7C7F40D99638 (FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* ___0_ctx, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
|
|
IL_0003:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_0 = ___0_ctx;
|
|
NullCheck(L_0);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_1 = L_0->___L;
|
|
NullCheck(L_1);
|
|
int32_t L_2 = L_1->___input_char;
|
|
V_0 = (bool)((((int32_t)L_2) == ((int32_t)((int32_t)42)))? 1 : 0);
|
|
bool L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0024;
|
|
}
|
|
}
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_4 = ___0_ctx;
|
|
NullCheck(L_4);
|
|
L_4->___NextState = ((int32_t)28);
|
|
V_1 = (bool)1;
|
|
goto IL_0038;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_5 = ___0_ctx;
|
|
NullCheck(L_5);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_6 = L_5->___L;
|
|
NullCheck(L_6);
|
|
bool L_7;
|
|
L_7 = Lexer_GetChar_m240416C419AACCDFAD8C74F764421740C53A6253(L_6, NULL);
|
|
V_2 = L_7;
|
|
bool L_8 = V_2;
|
|
if (L_8)
|
|
{
|
|
goto IL_0003;
|
|
}
|
|
}
|
|
{
|
|
V_1 = (bool)1;
|
|
goto IL_0038;
|
|
}
|
|
|
|
IL_0038:
|
|
{
|
|
bool L_9 = V_1;
|
|
return L_9;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Lexer_State28_m151FEC6858FB9E2A515CABFEFEDE5DAB3F736F91 (FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* ___0_ctx, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
{
|
|
goto IL_0045;
|
|
}
|
|
|
|
IL_0003:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_0 = ___0_ctx;
|
|
NullCheck(L_0);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_1 = L_0->___L;
|
|
NullCheck(L_1);
|
|
int32_t L_2 = L_1->___input_char;
|
|
V_0 = (bool)((((int32_t)L_2) == ((int32_t)((int32_t)42)))? 1 : 0);
|
|
bool L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0045;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_4 = ___0_ctx;
|
|
NullCheck(L_4);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_5 = L_4->___L;
|
|
NullCheck(L_5);
|
|
int32_t L_6 = L_5->___input_char;
|
|
V_1 = (bool)((((int32_t)L_6) == ((int32_t)((int32_t)47)))? 1 : 0);
|
|
bool L_7 = V_1;
|
|
if (!L_7)
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_8 = ___0_ctx;
|
|
NullCheck(L_8);
|
|
L_8->___NextState = 1;
|
|
V_2 = (bool)1;
|
|
goto IL_0058;
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_9 = ___0_ctx;
|
|
NullCheck(L_9);
|
|
L_9->___NextState = ((int32_t)27);
|
|
V_2 = (bool)1;
|
|
goto IL_0058;
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_10 = ___0_ctx;
|
|
NullCheck(L_10);
|
|
Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* L_11 = L_10->___L;
|
|
NullCheck(L_11);
|
|
bool L_12;
|
|
L_12 = Lexer_GetChar_m240416C419AACCDFAD8C74F764421740C53A6253(L_11, NULL);
|
|
V_3 = L_12;
|
|
bool L_13 = V_3;
|
|
if (L_13)
|
|
{
|
|
goto IL_0003;
|
|
}
|
|
}
|
|
{
|
|
V_2 = (bool)1;
|
|
goto IL_0058;
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
bool L_14 = V_2;
|
|
return L_14;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Lexer_GetChar_m240416C419AACCDFAD8C74F764421740C53A6253 (Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = Lexer_NextChar_m4416B29A729201704EF5494475D04A81665E7D9D(__this, NULL);
|
|
int32_t L_1 = L_0;
|
|
V_1 = L_1;
|
|
__this->___input_char = L_1;
|
|
int32_t L_2 = V_1;
|
|
V_0 = (bool)((((int32_t)((((int32_t)L_2) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
V_2 = (bool)1;
|
|
goto IL_002a;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
__this->___end_of_input = (bool)1;
|
|
V_2 = (bool)0;
|
|
goto IL_002a;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
bool L_4 = V_2;
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Lexer_NextChar_m4416B29A729201704EF5494475D04A81665E7D9D (Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
{
|
|
int32_t L_0 = __this->___input_buffer;
|
|
V_0 = (bool)((!(((uint32_t)L_0) <= ((uint32_t)0)))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0021;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = __this->___input_buffer;
|
|
V_1 = L_2;
|
|
__this->___input_buffer = 0;
|
|
int32_t L_3 = V_1;
|
|
V_2 = L_3;
|
|
goto IL_002f;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* L_4 = __this->___reader;
|
|
NullCheck(L_4);
|
|
int32_t L_5;
|
|
L_5 = VirtualFuncInvoker0< int32_t >::Invoke(10, L_4);
|
|
V_2 = L_5;
|
|
goto IL_002f;
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
int32_t L_6 = V_2;
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Lexer_NextToken_m1FC49AB01B8C3D281961541D1D7D1A8721B06083 (Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* V_0 = NULL;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
bool V_4 = false;
|
|
bool V_5 = false;
|
|
bool V_6 = false;
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_0 = __this->___fsm_context;
|
|
NullCheck(L_0);
|
|
L_0->___Return = (bool)0;
|
|
goto IL_00eb;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9_il2cpp_TypeInfo_var);
|
|
StateHandlerU5BU5D_tA4E04C837AF2BDFE9B351DF6813E6AB954722B93* L_1 = ((Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9_StaticFields*)il2cpp_codegen_static_fields_for(Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9_il2cpp_TypeInfo_var))->___fsm_handler_table;
|
|
int32_t L_2 = __this->___state;
|
|
NullCheck(L_1);
|
|
int32_t L_3 = ((int32_t)il2cpp_codegen_subtract(L_2, 1));
|
|
StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
|
|
V_0 = L_4;
|
|
StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* L_5 = V_0;
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_6 = __this->___fsm_context;
|
|
NullCheck(L_5);
|
|
bool L_7;
|
|
L_7 = StateHandler_Invoke_mAED7B745D78A2D2DC62A793247492E7718A3210E_inline(L_5, L_6, NULL);
|
|
V_1 = (bool)((((int32_t)L_7) == ((int32_t)0))? 1 : 0);
|
|
bool L_8 = V_1;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0042;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_9 = __this->___input_char;
|
|
JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76* L_10 = (JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonException_tA6D9726FBCE77AF0E9B652ABE7C01E4F1E55FA76_il2cpp_TypeInfo_var)));
|
|
JsonException__ctor_m267C4D3DA6783E685C755BEB2B354A15AB620363(L_10, L_9, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Lexer_NextToken_m1FC49AB01B8C3D281961541D1D7D1A8721B06083_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0042:
|
|
{
|
|
bool L_11 = __this->___end_of_input;
|
|
V_2 = L_11;
|
|
bool L_12 = V_2;
|
|
if (!L_12)
|
|
{
|
|
goto IL_0054;
|
|
}
|
|
}
|
|
{
|
|
V_3 = (bool)0;
|
|
goto IL_00f3;
|
|
}
|
|
|
|
IL_0054:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_13 = __this->___fsm_context;
|
|
NullCheck(L_13);
|
|
bool L_14 = L_13->___Return;
|
|
V_4 = L_14;
|
|
bool L_15 = V_4;
|
|
if (!L_15)
|
|
{
|
|
goto IL_00d9;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_16 = __this->___string_buffer;
|
|
NullCheck(L_16);
|
|
String_t* L_17;
|
|
L_17 = VirtualFuncInvoker0< String_t* >::Invoke(3, L_16);
|
|
__this->___string_value = L_17;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___string_value), (void*)L_17);
|
|
StringBuilder_t* L_18 = __this->___string_buffer;
|
|
StringBuilder_t* L_19 = __this->___string_buffer;
|
|
NullCheck(L_19);
|
|
int32_t L_20;
|
|
L_20 = StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8(L_19, NULL);
|
|
NullCheck(L_18);
|
|
StringBuilder_t* L_21;
|
|
L_21 = StringBuilder_Remove_m0D93692674D1C09795C7D6542420A3B6C5F81E90(L_18, 0, L_20, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9_il2cpp_TypeInfo_var);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_22 = ((Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9_StaticFields*)il2cpp_codegen_static_fields_for(Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9_il2cpp_TypeInfo_var))->___fsm_return_table;
|
|
int32_t L_23 = __this->___state;
|
|
NullCheck(L_22);
|
|
int32_t L_24 = ((int32_t)il2cpp_codegen_subtract(L_23, 1));
|
|
int32_t L_25 = (L_22)->GetAt(static_cast<il2cpp_array_size_t>(L_24));
|
|
__this->___token = L_25;
|
|
int32_t L_26 = __this->___token;
|
|
V_5 = (bool)((((int32_t)L_26) == ((int32_t)((int32_t)65542)))? 1 : 0);
|
|
bool L_27 = V_5;
|
|
if (!L_27)
|
|
{
|
|
goto IL_00c4;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_28 = __this->___input_char;
|
|
__this->___token = L_28;
|
|
}
|
|
|
|
IL_00c4:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_29 = __this->___fsm_context;
|
|
NullCheck(L_29);
|
|
int32_t L_30 = L_29->___NextState;
|
|
__this->___state = L_30;
|
|
V_3 = (bool)1;
|
|
goto IL_00f3;
|
|
}
|
|
|
|
IL_00d9:
|
|
{
|
|
FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* L_31 = __this->___fsm_context;
|
|
NullCheck(L_31);
|
|
int32_t L_32 = L_31->___NextState;
|
|
__this->___state = L_32;
|
|
}
|
|
|
|
IL_00eb:
|
|
{
|
|
V_6 = (bool)1;
|
|
goto IL_0012;
|
|
}
|
|
|
|
IL_00f3:
|
|
{
|
|
bool L_33 = V_3;
|
|
return L_33;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Lexer_UngetChar_m1FBA3B548EFBD21F87308A001FD32ECCCF86C5D4 (Lexer_t8EA7E771DBFBCCC71E85B400AF902FC3F482EBC9* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___input_char;
|
|
__this->___input_buffer = L_0;
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
bool StateHandler_Invoke_mAED7B745D78A2D2DC62A793247492E7718A3210E_Multicast(StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* __this, FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* ___0_ctx, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_array_size_t length = __this->___delegates->max_length;
|
|
Delegate_t** delegatesToInvoke = reinterpret_cast<Delegate_t**>(__this->___delegates->GetAddressAtUnchecked(0));
|
|
bool retVal = false;
|
|
for (il2cpp_array_size_t i = 0; i < length; i++)
|
|
{
|
|
StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* currentDelegate = reinterpret_cast<StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603*>(delegatesToInvoke[i]);
|
|
typedef bool (*FunctionPointerType) (RuntimeObject*, FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1*, const RuntimeMethod*);
|
|
retVal = ((FunctionPointerType)currentDelegate->___invoke_impl)((Il2CppObject*)currentDelegate->___method_code, ___0_ctx, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method));
|
|
}
|
|
return retVal;
|
|
}
|
|
bool StateHandler_Invoke_mAED7B745D78A2D2DC62A793247492E7718A3210E_OpenInst(StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* __this, FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* ___0_ctx, const RuntimeMethod* method)
|
|
{
|
|
NullCheck(___0_ctx);
|
|
typedef bool (*FunctionPointerType) (FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___method_ptr)(___0_ctx, method);
|
|
}
|
|
bool StateHandler_Invoke_mAED7B745D78A2D2DC62A793247492E7718A3210E_OpenStatic(StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* __this, FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* ___0_ctx, const RuntimeMethod* method)
|
|
{
|
|
typedef bool (*FunctionPointerType) (FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___method_ptr)(___0_ctx, method);
|
|
}
|
|
bool StateHandler_Invoke_mAED7B745D78A2D2DC62A793247492E7718A3210E_OpenVirtual(StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* __this, FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* ___0_ctx, const RuntimeMethod* method)
|
|
{
|
|
NullCheck(___0_ctx);
|
|
return VirtualFuncInvoker0< bool >::Invoke(il2cpp_codegen_method_get_slot(method), ___0_ctx);
|
|
}
|
|
bool StateHandler_Invoke_mAED7B745D78A2D2DC62A793247492E7718A3210E_OpenInterface(StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* __this, FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* ___0_ctx, const RuntimeMethod* method)
|
|
{
|
|
NullCheck(___0_ctx);
|
|
return InterfaceFuncInvoker0< bool >::Invoke(il2cpp_codegen_method_get_slot(method), il2cpp_codegen_method_get_declaring_type(method), ___0_ctx);
|
|
}
|
|
bool StateHandler_Invoke_mAED7B745D78A2D2DC62A793247492E7718A3210E_OpenGenericVirtual(StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* __this, FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* ___0_ctx, const RuntimeMethod* method)
|
|
{
|
|
NullCheck(___0_ctx);
|
|
return GenericVirtualFuncInvoker0< bool >::Invoke(method, ___0_ctx);
|
|
}
|
|
bool StateHandler_Invoke_mAED7B745D78A2D2DC62A793247492E7718A3210E_OpenGenericInterface(StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* __this, FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* ___0_ctx, const RuntimeMethod* method)
|
|
{
|
|
NullCheck(___0_ctx);
|
|
return GenericInterfaceFuncInvoker0< bool >::Invoke(method, ___0_ctx);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StateHandler__ctor_m33A94C96682C78721802E376BDC6673C9CDB08E1 (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
__this->___method_ptr = (intptr_t)il2cpp_codegen_get_method_pointer((RuntimeMethod*)___1_method);
|
|
__this->___method = ___1_method;
|
|
__this->___m_target = ___0_object;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target), (void*)___0_object);
|
|
int parameterCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___1_method);
|
|
__this->___method_code = (intptr_t)__this;
|
|
if (MethodIsStatic((RuntimeMethod*)___1_method))
|
|
{
|
|
bool isOpen = parameterCount == 1;
|
|
if (isOpen)
|
|
__this->___invoke_impl = (intptr_t)&StateHandler_Invoke_mAED7B745D78A2D2DC62A793247492E7718A3210E_OpenStatic;
|
|
else
|
|
{
|
|
__this->___invoke_impl = __this->___method_ptr;
|
|
__this->___method_code = (intptr_t)__this->___m_target;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
bool isOpen = parameterCount == 0;
|
|
if (isOpen)
|
|
{
|
|
if (__this->___method_is_virtual)
|
|
{
|
|
if (il2cpp_codegen_method_is_generic_instance_method((RuntimeMethod*)___1_method))
|
|
if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___1_method))
|
|
__this->___invoke_impl = (intptr_t)&StateHandler_Invoke_mAED7B745D78A2D2DC62A793247492E7718A3210E_OpenGenericInterface;
|
|
else
|
|
__this->___invoke_impl = (intptr_t)&StateHandler_Invoke_mAED7B745D78A2D2DC62A793247492E7718A3210E_OpenGenericVirtual;
|
|
else
|
|
if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___1_method))
|
|
__this->___invoke_impl = (intptr_t)&StateHandler_Invoke_mAED7B745D78A2D2DC62A793247492E7718A3210E_OpenInterface;
|
|
else
|
|
__this->___invoke_impl = (intptr_t)&StateHandler_Invoke_mAED7B745D78A2D2DC62A793247492E7718A3210E_OpenVirtual;
|
|
}
|
|
else
|
|
{
|
|
__this->___invoke_impl = (intptr_t)&StateHandler_Invoke_mAED7B745D78A2D2DC62A793247492E7718A3210E_OpenInst;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (___0_object == NULL)
|
|
il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL);
|
|
__this->___invoke_impl = __this->___method_ptr;
|
|
__this->___method_code = (intptr_t)__this->___m_target;
|
|
}
|
|
}
|
|
__this->___extra_arg = (intptr_t)&StateHandler_Invoke_mAED7B745D78A2D2DC62A793247492E7718A3210E_Multicast;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StateHandler_Invoke_mAED7B745D78A2D2DC62A793247492E7718A3210E (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* __this, FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* ___0_ctx, const RuntimeMethod* method)
|
|
{
|
|
typedef bool (*FunctionPointerType) (RuntimeObject*, FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_ctx, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* StateHandler_BeginInvoke_m3634450072D2369CDFAFBF2169CCEC492F091DDE (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* __this, FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* ___0_ctx, AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___1_callback, RuntimeObject* ___2_object, const RuntimeMethod* method)
|
|
{
|
|
void *__d_args[2] = {0};
|
|
__d_args[0] = ___0_ctx;
|
|
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___1_callback, (RuntimeObject*)___2_object);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StateHandler_EndInvoke_m074FBD7D69F1004BB97465371BB0B78154F01AFF (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* __this, RuntimeObject* ___0_result, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___0_result, 0);
|
|
return *(bool*)UnBox ((RuntimeObject*)__result);
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityTypeBindings__cctor_m7177BDD21A93C28DBF2A4440E394715BEAB55D6A (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
UnityTypeBindings_Register_m80C74CBD12EF00CFE372EAA26A629B8005F88C18(NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityTypeBindings_Register_m80C74CBD12EF00CFE372EAA26A629B8005F88C18 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_t3CFBD6C56B087A7CE032945C0950C5716540158A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_tE5C1059CE8ACEDAC4083A88C76E66DE3E15B8105_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExporterFunc_1_t0BDB0977957B702E553434D63D76FD4CBBF79E9D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExporterFunc_1_t396C38F979C2517DA37B85C04250C0FB38012D32_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExporterFunc_1_t51D2BA9CE9D91E588EEC4288A798B6F13E55C90B_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExporterFunc_1_t61321F5C3918ED8EDB361F431B32F1983072DBD2_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExporterFunc_1_t66337A5BC3E84B1D048E2D5A3E6B7DA41671BC95_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExporterFunc_1_t68203C504BE983A9A387E0769D39E83F63B0F234_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExporterFunc_1_t81E6D3B3E845005B652EE5F2CE219DAE1518AB83_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExporterFunc_1_t8DEC56EC9C315918327B728EF33F55CE4D9E0204_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExporterFunc_1_tAD0CADBFAA1F3669790D9F40D2D389420D24C825_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExporterFunc_1_tFCF938C955AC8C9EF39571CF0A922FB4B50E00D4_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ImporterFunc_2_tECF771648EC0EB35785D9EE3003167BEBB8C8008_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_RegisterExporter_TisBounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3_m3CF06EF834F36C4AED2171CE91C61DA8DC8A05FE_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_RegisterExporter_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_mC16F18097E95FC3BC0AE9313B7B8CAE49480E1AD_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_RegisterExporter_TisColor_tD001788D726C3A7F1379BEED0260B9591F440C1F_mE28CA3EECB71DB04C370B4811C0C0959B999C3CF_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_RegisterExporter_TisQuaternion_tDA59F214EF07D7700B26E40E562F267AF7306974_m13A2ECD7CDFAC21C1AF4B64A3B5AB4E971302FE0_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_RegisterExporter_TisRectOffset_t6358774A0DEEABA4586840CB9BC7DC88B39660B5_m265194368484D1D2AAE706A2F7A80AA7A3C363ED_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_RegisterExporter_TisRect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D_m57356BB4D41D22B85D5C98568FACE4347B0583B3_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_RegisterExporter_TisType_t_m6CBE1C2D40E0DF5B03DE2028E63B1E1C86C633F5_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_RegisterExporter_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_m06FB369425160BCF1EBE76D0855E12FE17E5CC3A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_RegisterExporter_TisVector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_mA923D9A8735FFE1B2862156D5922071902E1F849_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_RegisterExporter_TisVector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3_mD3678978F84EC31F2276396FFD53E95D6D36A7A3_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_RegisterImporter_TisString_t_TisType_t_mFF375BDC0DE41905D9536A45A8D45A5831564D3C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterU3Eb__2_0_mA1A7596B0C564A5DB9023BB23EF786B570A40536_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterU3Eb__2_11_mE0E79F14D4012C6D0E01B417ED17D44AA6707DC0_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterU3Eb__2_12_mF29155196073920053ED3C66CB61E9A99D7E1623_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterU3Eb__2_1_m99AD9B304FFC1EE02D0A57F4F34B96B5CB37E9F1_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterU3Eb__2_2_m07A5B1C4B85D9C13D0F177E5C86C9CDA9F0E4EC9_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterU3Eb__2_4_m7B4E98EF87FFFD2084D924518A83208F53533757_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterU3Eb__2_6_mA8E19C1295B6B927B088FDF316F19BA5A282387F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterU3Eb__2_7_mA97D4ED397727FE3783E3F29CBF642E4F0F72A32_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterU3Eb__2_8_mBC379F52F684346F7AD7A715313420B3506A3781_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterU3Eb__2_9_mBC56CC9FBA2B5F73DDADF695C926CE15FD03D4A4_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass2_0_U3CRegisterU3Eb__10_m2923B6945258B312C61A6318BD0570D2FEF79779_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass2_0_U3CRegisterU3Eb__3_m725BE532087F75B747D3C5D6624D5F0592574D51_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass2_0_U3CRegisterU3Eb__5_m7352CE818003475C56E5662DAF6C934CFEDDB6FE_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass2_0_t6F9528147EBA1501BA7DC4A28B00FEDC10940082_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityTypeBindings_t8B29FCFD0144021BCAE930AB4077026676F186BA_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
U3CU3Ec__DisplayClass2_0_t6F9528147EBA1501BA7DC4A28B00FEDC10940082* V_0 = NULL;
|
|
bool V_1 = false;
|
|
ExporterFunc_1_t66337A5BC3E84B1D048E2D5A3E6B7DA41671BC95* G_B4_0 = NULL;
|
|
ExporterFunc_1_t66337A5BC3E84B1D048E2D5A3E6B7DA41671BC95* G_B3_0 = NULL;
|
|
ImporterFunc_2_tECF771648EC0EB35785D9EE3003167BEBB8C8008* G_B6_0 = NULL;
|
|
ImporterFunc_2_tECF771648EC0EB35785D9EE3003167BEBB8C8008* G_B5_0 = NULL;
|
|
Action_2_tE5C1059CE8ACEDAC4083A88C76E66DE3E15B8105* G_B8_0 = NULL;
|
|
U3CU3Ec__DisplayClass2_0_t6F9528147EBA1501BA7DC4A28B00FEDC10940082* G_B8_1 = NULL;
|
|
Action_2_tE5C1059CE8ACEDAC4083A88C76E66DE3E15B8105* G_B7_0 = NULL;
|
|
U3CU3Ec__DisplayClass2_0_t6F9528147EBA1501BA7DC4A28B00FEDC10940082* G_B7_1 = NULL;
|
|
Action_2_t3CFBD6C56B087A7CE032945C0950C5716540158A* G_B10_0 = NULL;
|
|
U3CU3Ec__DisplayClass2_0_t6F9528147EBA1501BA7DC4A28B00FEDC10940082* G_B10_1 = NULL;
|
|
Action_2_t3CFBD6C56B087A7CE032945C0950C5716540158A* G_B9_0 = NULL;
|
|
U3CU3Ec__DisplayClass2_0_t6F9528147EBA1501BA7DC4A28B00FEDC10940082* G_B9_1 = NULL;
|
|
ExporterFunc_1_t68203C504BE983A9A387E0769D39E83F63B0F234* G_B12_0 = NULL;
|
|
ExporterFunc_1_t68203C504BE983A9A387E0769D39E83F63B0F234* G_B11_0 = NULL;
|
|
ExporterFunc_1_t0BDB0977957B702E553434D63D76FD4CBBF79E9D* G_B14_0 = NULL;
|
|
ExporterFunc_1_t0BDB0977957B702E553434D63D76FD4CBBF79E9D* G_B13_0 = NULL;
|
|
ExporterFunc_1_t8DEC56EC9C315918327B728EF33F55CE4D9E0204* G_B16_0 = NULL;
|
|
ExporterFunc_1_t8DEC56EC9C315918327B728EF33F55CE4D9E0204* G_B15_0 = NULL;
|
|
ExporterFunc_1_tAD0CADBFAA1F3669790D9F40D2D389420D24C825* G_B18_0 = NULL;
|
|
ExporterFunc_1_tAD0CADBFAA1F3669790D9F40D2D389420D24C825* G_B17_0 = NULL;
|
|
ExporterFunc_1_t396C38F979C2517DA37B85C04250C0FB38012D32* G_B20_0 = NULL;
|
|
ExporterFunc_1_t396C38F979C2517DA37B85C04250C0FB38012D32* G_B19_0 = NULL;
|
|
ExporterFunc_1_t51D2BA9CE9D91E588EEC4288A798B6F13E55C90B* G_B22_0 = NULL;
|
|
ExporterFunc_1_t51D2BA9CE9D91E588EEC4288A798B6F13E55C90B* G_B21_0 = NULL;
|
|
{
|
|
U3CU3Ec__DisplayClass2_0_t6F9528147EBA1501BA7DC4A28B00FEDC10940082* L_0 = (U3CU3Ec__DisplayClass2_0_t6F9528147EBA1501BA7DC4A28B00FEDC10940082*)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass2_0_t6F9528147EBA1501BA7DC4A28B00FEDC10940082_il2cpp_TypeInfo_var);
|
|
U3CU3Ec__DisplayClass2_0__ctor_mC0BCE28FB22848D1B341CB1B6C66AA8B995B3251(L_0, NULL);
|
|
V_0 = L_0;
|
|
il2cpp_codegen_runtime_class_init_inline(UnityTypeBindings_t8B29FCFD0144021BCAE930AB4077026676F186BA_il2cpp_TypeInfo_var);
|
|
bool L_1 = ((UnityTypeBindings_t8B29FCFD0144021BCAE930AB4077026676F186BA_StaticFields*)il2cpp_codegen_static_fields_for(UnityTypeBindings_t8B29FCFD0144021BCAE930AB4077026676F186BA_il2cpp_TypeInfo_var))->___registerd;
|
|
V_1 = L_1;
|
|
bool L_2 = V_1;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
goto IL_01c4;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(UnityTypeBindings_t8B29FCFD0144021BCAE930AB4077026676F186BA_il2cpp_TypeInfo_var);
|
|
((UnityTypeBindings_t8B29FCFD0144021BCAE930AB4077026676F186BA_StaticFields*)il2cpp_codegen_static_fields_for(UnityTypeBindings_t8B29FCFD0144021BCAE930AB4077026676F186BA_il2cpp_TypeInfo_var))->___registerd = (bool)1;
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var);
|
|
ExporterFunc_1_t66337A5BC3E84B1D048E2D5A3E6B7DA41671BC95* L_3 = ((U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var))->___U3CU3E9__2_0;
|
|
ExporterFunc_1_t66337A5BC3E84B1D048E2D5A3E6B7DA41671BC95* L_4 = L_3;
|
|
if (L_4)
|
|
{
|
|
G_B4_0 = L_4;
|
|
goto IL_003b;
|
|
}
|
|
G_B3_0 = L_4;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2* L_5 = ((U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
ExporterFunc_1_t66337A5BC3E84B1D048E2D5A3E6B7DA41671BC95* L_6 = (ExporterFunc_1_t66337A5BC3E84B1D048E2D5A3E6B7DA41671BC95*)il2cpp_codegen_object_new(ExporterFunc_1_t66337A5BC3E84B1D048E2D5A3E6B7DA41671BC95_il2cpp_TypeInfo_var);
|
|
ExporterFunc_1__ctor_m5FE00EEF0FBC92ACF9AA6FC6CB17774A4DE4C029(L_6, L_5, (intptr_t)((void*)U3CU3Ec_U3CRegisterU3Eb__2_0_mA1A7596B0C564A5DB9023BB23EF786B570A40536_RuntimeMethod_var), NULL);
|
|
ExporterFunc_1_t66337A5BC3E84B1D048E2D5A3E6B7DA41671BC95* L_7 = L_6;
|
|
((U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var))->___U3CU3E9__2_0 = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var))->___U3CU3E9__2_0), (void*)L_7);
|
|
G_B4_0 = L_7;
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
JsonMapper_RegisterExporter_TisType_t_m6CBE1C2D40E0DF5B03DE2028E63B1E1C86C633F5(G_B4_0, JsonMapper_RegisterExporter_TisType_t_m6CBE1C2D40E0DF5B03DE2028E63B1E1C86C633F5_RuntimeMethod_var);
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var);
|
|
ImporterFunc_2_tECF771648EC0EB35785D9EE3003167BEBB8C8008* L_8 = ((U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var))->___U3CU3E9__2_1;
|
|
ImporterFunc_2_tECF771648EC0EB35785D9EE3003167BEBB8C8008* L_9 = L_8;
|
|
if (L_9)
|
|
{
|
|
G_B6_0 = L_9;
|
|
goto IL_0060;
|
|
}
|
|
G_B5_0 = L_9;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2* L_10 = ((U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
ImporterFunc_2_tECF771648EC0EB35785D9EE3003167BEBB8C8008* L_11 = (ImporterFunc_2_tECF771648EC0EB35785D9EE3003167BEBB8C8008*)il2cpp_codegen_object_new(ImporterFunc_2_tECF771648EC0EB35785D9EE3003167BEBB8C8008_il2cpp_TypeInfo_var);
|
|
ImporterFunc_2__ctor_m7FDF0BABFD39FE6EA81AF99A071EBC4330F74772(L_11, L_10, (intptr_t)((void*)U3CU3Ec_U3CRegisterU3Eb__2_1_m99AD9B304FFC1EE02D0A57F4F34B96B5CB37E9F1_RuntimeMethod_var), NULL);
|
|
ImporterFunc_2_tECF771648EC0EB35785D9EE3003167BEBB8C8008* L_12 = L_11;
|
|
((U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var))->___U3CU3E9__2_1 = L_12;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var))->___U3CU3E9__2_1), (void*)L_12);
|
|
G_B6_0 = L_12;
|
|
}
|
|
|
|
IL_0060:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
JsonMapper_RegisterImporter_TisString_t_TisType_t_mFF375BDC0DE41905D9536A45A8D45A5831564D3C(G_B6_0, JsonMapper_RegisterImporter_TisString_t_TisType_t_mFF375BDC0DE41905D9536A45A8D45A5831564D3C_RuntimeMethod_var);
|
|
U3CU3Ec__DisplayClass2_0_t6F9528147EBA1501BA7DC4A28B00FEDC10940082* L_13 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var);
|
|
Action_2_tE5C1059CE8ACEDAC4083A88C76E66DE3E15B8105* L_14 = ((U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var))->___U3CU3E9__2_2;
|
|
Action_2_tE5C1059CE8ACEDAC4083A88C76E66DE3E15B8105* L_15 = L_14;
|
|
if (L_15)
|
|
{
|
|
G_B8_0 = L_15;
|
|
G_B8_1 = L_13;
|
|
goto IL_0086;
|
|
}
|
|
G_B7_0 = L_15;
|
|
G_B7_1 = L_13;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2* L_16 = ((U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
Action_2_tE5C1059CE8ACEDAC4083A88C76E66DE3E15B8105* L_17 = (Action_2_tE5C1059CE8ACEDAC4083A88C76E66DE3E15B8105*)il2cpp_codegen_object_new(Action_2_tE5C1059CE8ACEDAC4083A88C76E66DE3E15B8105_il2cpp_TypeInfo_var);
|
|
Action_2__ctor_m43A66BCA47071592759F0C0EE404CB835C9FCC3E(L_17, L_16, (intptr_t)((void*)U3CU3Ec_U3CRegisterU3Eb__2_2_m07A5B1C4B85D9C13D0F177E5C86C9CDA9F0E4EC9_RuntimeMethod_var), NULL);
|
|
Action_2_tE5C1059CE8ACEDAC4083A88C76E66DE3E15B8105* L_18 = L_17;
|
|
((U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var))->___U3CU3E9__2_2 = L_18;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var))->___U3CU3E9__2_2), (void*)L_18);
|
|
G_B8_0 = L_18;
|
|
G_B8_1 = G_B7_1;
|
|
}
|
|
|
|
IL_0086:
|
|
{
|
|
NullCheck(G_B8_1);
|
|
G_B8_1->___writeVector2 = G_B8_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&G_B8_1->___writeVector2), (void*)G_B8_0);
|
|
U3CU3Ec__DisplayClass2_0_t6F9528147EBA1501BA7DC4A28B00FEDC10940082* L_19 = V_0;
|
|
ExporterFunc_1_t61321F5C3918ED8EDB361F431B32F1983072DBD2* L_20 = (ExporterFunc_1_t61321F5C3918ED8EDB361F431B32F1983072DBD2*)il2cpp_codegen_object_new(ExporterFunc_1_t61321F5C3918ED8EDB361F431B32F1983072DBD2_il2cpp_TypeInfo_var);
|
|
ExporterFunc_1__ctor_mC27B1CFD9CA5B0F844AA28557CCBC9D685133A52(L_20, L_19, (intptr_t)((void*)U3CU3Ec__DisplayClass2_0_U3CRegisterU3Eb__3_m725BE532087F75B747D3C5D6624D5F0592574D51_RuntimeMethod_var), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
JsonMapper_RegisterExporter_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_m06FB369425160BCF1EBE76D0855E12FE17E5CC3A(L_20, JsonMapper_RegisterExporter_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_m06FB369425160BCF1EBE76D0855E12FE17E5CC3A_RuntimeMethod_var);
|
|
U3CU3Ec__DisplayClass2_0_t6F9528147EBA1501BA7DC4A28B00FEDC10940082* L_21 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var);
|
|
Action_2_t3CFBD6C56B087A7CE032945C0950C5716540158A* L_22 = ((U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var))->___U3CU3E9__2_4;
|
|
Action_2_t3CFBD6C56B087A7CE032945C0950C5716540158A* L_23 = L_22;
|
|
if (L_23)
|
|
{
|
|
G_B10_0 = L_23;
|
|
G_B10_1 = L_21;
|
|
goto IL_00bd;
|
|
}
|
|
G_B9_0 = L_23;
|
|
G_B9_1 = L_21;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2* L_24 = ((U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
Action_2_t3CFBD6C56B087A7CE032945C0950C5716540158A* L_25 = (Action_2_t3CFBD6C56B087A7CE032945C0950C5716540158A*)il2cpp_codegen_object_new(Action_2_t3CFBD6C56B087A7CE032945C0950C5716540158A_il2cpp_TypeInfo_var);
|
|
Action_2__ctor_m7836B346D07632934D09F577B37E603E058BA957(L_25, L_24, (intptr_t)((void*)U3CU3Ec_U3CRegisterU3Eb__2_4_m7B4E98EF87FFFD2084D924518A83208F53533757_RuntimeMethod_var), NULL);
|
|
Action_2_t3CFBD6C56B087A7CE032945C0950C5716540158A* L_26 = L_25;
|
|
((U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var))->___U3CU3E9__2_4 = L_26;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var))->___U3CU3E9__2_4), (void*)L_26);
|
|
G_B10_0 = L_26;
|
|
G_B10_1 = G_B9_1;
|
|
}
|
|
|
|
IL_00bd:
|
|
{
|
|
NullCheck(G_B10_1);
|
|
G_B10_1->___writeVector3 = G_B10_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&G_B10_1->___writeVector3), (void*)G_B10_0);
|
|
U3CU3Ec__DisplayClass2_0_t6F9528147EBA1501BA7DC4A28B00FEDC10940082* L_27 = V_0;
|
|
ExporterFunc_1_t81E6D3B3E845005B652EE5F2CE219DAE1518AB83* L_28 = (ExporterFunc_1_t81E6D3B3E845005B652EE5F2CE219DAE1518AB83*)il2cpp_codegen_object_new(ExporterFunc_1_t81E6D3B3E845005B652EE5F2CE219DAE1518AB83_il2cpp_TypeInfo_var);
|
|
ExporterFunc_1__ctor_mE7E4838007A5EACD88B96880AAB772AB8AE07164(L_28, L_27, (intptr_t)((void*)U3CU3Ec__DisplayClass2_0_U3CRegisterU3Eb__5_m7352CE818003475C56E5662DAF6C934CFEDDB6FE_RuntimeMethod_var), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
JsonMapper_RegisterExporter_TisVector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_mA923D9A8735FFE1B2862156D5922071902E1F849(L_28, JsonMapper_RegisterExporter_TisVector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_mA923D9A8735FFE1B2862156D5922071902E1F849_RuntimeMethod_var);
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var);
|
|
ExporterFunc_1_t68203C504BE983A9A387E0769D39E83F63B0F234* L_29 = ((U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var))->___U3CU3E9__2_6;
|
|
ExporterFunc_1_t68203C504BE983A9A387E0769D39E83F63B0F234* L_30 = L_29;
|
|
if (L_30)
|
|
{
|
|
G_B12_0 = L_30;
|
|
goto IL_00f3;
|
|
}
|
|
G_B11_0 = L_30;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2* L_31 = ((U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
ExporterFunc_1_t68203C504BE983A9A387E0769D39E83F63B0F234* L_32 = (ExporterFunc_1_t68203C504BE983A9A387E0769D39E83F63B0F234*)il2cpp_codegen_object_new(ExporterFunc_1_t68203C504BE983A9A387E0769D39E83F63B0F234_il2cpp_TypeInfo_var);
|
|
ExporterFunc_1__ctor_mDEED09A4B9D172DEE0B8806033392DCCC99671B1(L_32, L_31, (intptr_t)((void*)U3CU3Ec_U3CRegisterU3Eb__2_6_mA8E19C1295B6B927B088FDF316F19BA5A282387F_RuntimeMethod_var), NULL);
|
|
ExporterFunc_1_t68203C504BE983A9A387E0769D39E83F63B0F234* L_33 = L_32;
|
|
((U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var))->___U3CU3E9__2_6 = L_33;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var))->___U3CU3E9__2_6), (void*)L_33);
|
|
G_B12_0 = L_33;
|
|
}
|
|
|
|
IL_00f3:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
JsonMapper_RegisterExporter_TisVector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3_mD3678978F84EC31F2276396FFD53E95D6D36A7A3(G_B12_0, JsonMapper_RegisterExporter_TisVector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3_mD3678978F84EC31F2276396FFD53E95D6D36A7A3_RuntimeMethod_var);
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var);
|
|
ExporterFunc_1_t0BDB0977957B702E553434D63D76FD4CBBF79E9D* L_34 = ((U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var))->___U3CU3E9__2_7;
|
|
ExporterFunc_1_t0BDB0977957B702E553434D63D76FD4CBBF79E9D* L_35 = L_34;
|
|
if (L_35)
|
|
{
|
|
G_B14_0 = L_35;
|
|
goto IL_0118;
|
|
}
|
|
G_B13_0 = L_35;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2* L_36 = ((U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
ExporterFunc_1_t0BDB0977957B702E553434D63D76FD4CBBF79E9D* L_37 = (ExporterFunc_1_t0BDB0977957B702E553434D63D76FD4CBBF79E9D*)il2cpp_codegen_object_new(ExporterFunc_1_t0BDB0977957B702E553434D63D76FD4CBBF79E9D_il2cpp_TypeInfo_var);
|
|
ExporterFunc_1__ctor_mB20FE33C36F6927F9F6CB6410E5CA92377A16075(L_37, L_36, (intptr_t)((void*)U3CU3Ec_U3CRegisterU3Eb__2_7_mA97D4ED397727FE3783E3F29CBF642E4F0F72A32_RuntimeMethod_var), NULL);
|
|
ExporterFunc_1_t0BDB0977957B702E553434D63D76FD4CBBF79E9D* L_38 = L_37;
|
|
((U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var))->___U3CU3E9__2_7 = L_38;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var))->___U3CU3E9__2_7), (void*)L_38);
|
|
G_B14_0 = L_38;
|
|
}
|
|
|
|
IL_0118:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
JsonMapper_RegisterExporter_TisQuaternion_tDA59F214EF07D7700B26E40E562F267AF7306974_m13A2ECD7CDFAC21C1AF4B64A3B5AB4E971302FE0(G_B14_0, JsonMapper_RegisterExporter_TisQuaternion_tDA59F214EF07D7700B26E40E562F267AF7306974_m13A2ECD7CDFAC21C1AF4B64A3B5AB4E971302FE0_RuntimeMethod_var);
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var);
|
|
ExporterFunc_1_t8DEC56EC9C315918327B728EF33F55CE4D9E0204* L_39 = ((U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var))->___U3CU3E9__2_8;
|
|
ExporterFunc_1_t8DEC56EC9C315918327B728EF33F55CE4D9E0204* L_40 = L_39;
|
|
if (L_40)
|
|
{
|
|
G_B16_0 = L_40;
|
|
goto IL_013d;
|
|
}
|
|
G_B15_0 = L_40;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2* L_41 = ((U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
ExporterFunc_1_t8DEC56EC9C315918327B728EF33F55CE4D9E0204* L_42 = (ExporterFunc_1_t8DEC56EC9C315918327B728EF33F55CE4D9E0204*)il2cpp_codegen_object_new(ExporterFunc_1_t8DEC56EC9C315918327B728EF33F55CE4D9E0204_il2cpp_TypeInfo_var);
|
|
ExporterFunc_1__ctor_mFD7754C078ECF99E821CDAE437AA04DEEA2B7E08(L_42, L_41, (intptr_t)((void*)U3CU3Ec_U3CRegisterU3Eb__2_8_mBC379F52F684346F7AD7A715313420B3506A3781_RuntimeMethod_var), NULL);
|
|
ExporterFunc_1_t8DEC56EC9C315918327B728EF33F55CE4D9E0204* L_43 = L_42;
|
|
((U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var))->___U3CU3E9__2_8 = L_43;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var))->___U3CU3E9__2_8), (void*)L_43);
|
|
G_B16_0 = L_43;
|
|
}
|
|
|
|
IL_013d:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
JsonMapper_RegisterExporter_TisColor_tD001788D726C3A7F1379BEED0260B9591F440C1F_mE28CA3EECB71DB04C370B4811C0C0959B999C3CF(G_B16_0, JsonMapper_RegisterExporter_TisColor_tD001788D726C3A7F1379BEED0260B9591F440C1F_mE28CA3EECB71DB04C370B4811C0C0959B999C3CF_RuntimeMethod_var);
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var);
|
|
ExporterFunc_1_tAD0CADBFAA1F3669790D9F40D2D389420D24C825* L_44 = ((U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var))->___U3CU3E9__2_9;
|
|
ExporterFunc_1_tAD0CADBFAA1F3669790D9F40D2D389420D24C825* L_45 = L_44;
|
|
if (L_45)
|
|
{
|
|
G_B18_0 = L_45;
|
|
goto IL_0162;
|
|
}
|
|
G_B17_0 = L_45;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2* L_46 = ((U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
ExporterFunc_1_tAD0CADBFAA1F3669790D9F40D2D389420D24C825* L_47 = (ExporterFunc_1_tAD0CADBFAA1F3669790D9F40D2D389420D24C825*)il2cpp_codegen_object_new(ExporterFunc_1_tAD0CADBFAA1F3669790D9F40D2D389420D24C825_il2cpp_TypeInfo_var);
|
|
ExporterFunc_1__ctor_m2C36E5FEB9053EBAD33271E94443FF619AB288B7(L_47, L_46, (intptr_t)((void*)U3CU3Ec_U3CRegisterU3Eb__2_9_mBC56CC9FBA2B5F73DDADF695C926CE15FD03D4A4_RuntimeMethod_var), NULL);
|
|
ExporterFunc_1_tAD0CADBFAA1F3669790D9F40D2D389420D24C825* L_48 = L_47;
|
|
((U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var))->___U3CU3E9__2_9 = L_48;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var))->___U3CU3E9__2_9), (void*)L_48);
|
|
G_B18_0 = L_48;
|
|
}
|
|
|
|
IL_0162:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
JsonMapper_RegisterExporter_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_mC16F18097E95FC3BC0AE9313B7B8CAE49480E1AD(G_B18_0, JsonMapper_RegisterExporter_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_mC16F18097E95FC3BC0AE9313B7B8CAE49480E1AD_RuntimeMethod_var);
|
|
U3CU3Ec__DisplayClass2_0_t6F9528147EBA1501BA7DC4A28B00FEDC10940082* L_49 = V_0;
|
|
ExporterFunc_1_tFCF938C955AC8C9EF39571CF0A922FB4B50E00D4* L_50 = (ExporterFunc_1_tFCF938C955AC8C9EF39571CF0A922FB4B50E00D4*)il2cpp_codegen_object_new(ExporterFunc_1_tFCF938C955AC8C9EF39571CF0A922FB4B50E00D4_il2cpp_TypeInfo_var);
|
|
ExporterFunc_1__ctor_m230AB5483E37DB386D38028B234D3E53276B7253(L_50, L_49, (intptr_t)((void*)U3CU3Ec__DisplayClass2_0_U3CRegisterU3Eb__10_m2923B6945258B312C61A6318BD0570D2FEF79779_RuntimeMethod_var), NULL);
|
|
JsonMapper_RegisterExporter_TisBounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3_m3CF06EF834F36C4AED2171CE91C61DA8DC8A05FE(L_50, JsonMapper_RegisterExporter_TisBounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3_m3CF06EF834F36C4AED2171CE91C61DA8DC8A05FE_RuntimeMethod_var);
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var);
|
|
ExporterFunc_1_t396C38F979C2517DA37B85C04250C0FB38012D32* L_51 = ((U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var))->___U3CU3E9__2_11;
|
|
ExporterFunc_1_t396C38F979C2517DA37B85C04250C0FB38012D32* L_52 = L_51;
|
|
if (L_52)
|
|
{
|
|
G_B20_0 = L_52;
|
|
goto IL_0199;
|
|
}
|
|
G_B19_0 = L_52;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2* L_53 = ((U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
ExporterFunc_1_t396C38F979C2517DA37B85C04250C0FB38012D32* L_54 = (ExporterFunc_1_t396C38F979C2517DA37B85C04250C0FB38012D32*)il2cpp_codegen_object_new(ExporterFunc_1_t396C38F979C2517DA37B85C04250C0FB38012D32_il2cpp_TypeInfo_var);
|
|
ExporterFunc_1__ctor_m2A20336A95F86660B5739C8C99B12AFB77852CED(L_54, L_53, (intptr_t)((void*)U3CU3Ec_U3CRegisterU3Eb__2_11_mE0E79F14D4012C6D0E01B417ED17D44AA6707DC0_RuntimeMethod_var), NULL);
|
|
ExporterFunc_1_t396C38F979C2517DA37B85C04250C0FB38012D32* L_55 = L_54;
|
|
((U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var))->___U3CU3E9__2_11 = L_55;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var))->___U3CU3E9__2_11), (void*)L_55);
|
|
G_B20_0 = L_55;
|
|
}
|
|
|
|
IL_0199:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
JsonMapper_RegisterExporter_TisRect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D_m57356BB4D41D22B85D5C98568FACE4347B0583B3(G_B20_0, JsonMapper_RegisterExporter_TisRect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D_m57356BB4D41D22B85D5C98568FACE4347B0583B3_RuntimeMethod_var);
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var);
|
|
ExporterFunc_1_t51D2BA9CE9D91E588EEC4288A798B6F13E55C90B* L_56 = ((U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var))->___U3CU3E9__2_12;
|
|
ExporterFunc_1_t51D2BA9CE9D91E588EEC4288A798B6F13E55C90B* L_57 = L_56;
|
|
if (L_57)
|
|
{
|
|
G_B22_0 = L_57;
|
|
goto IL_01be;
|
|
}
|
|
G_B21_0 = L_57;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2* L_58 = ((U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
ExporterFunc_1_t51D2BA9CE9D91E588EEC4288A798B6F13E55C90B* L_59 = (ExporterFunc_1_t51D2BA9CE9D91E588EEC4288A798B6F13E55C90B*)il2cpp_codegen_object_new(ExporterFunc_1_t51D2BA9CE9D91E588EEC4288A798B6F13E55C90B_il2cpp_TypeInfo_var);
|
|
ExporterFunc_1__ctor_mDDA2B49158AEA3CCF86F4A9220B84AF99F94E1BE(L_59, L_58, (intptr_t)((void*)U3CU3Ec_U3CRegisterU3Eb__2_12_mF29155196073920053ED3C66CB61E9A99D7E1623_RuntimeMethod_var), NULL);
|
|
ExporterFunc_1_t51D2BA9CE9D91E588EEC4288A798B6F13E55C90B* L_60 = L_59;
|
|
((U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var))->___U3CU3E9__2_12 = L_60;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var))->___U3CU3E9__2_12), (void*)L_60);
|
|
G_B22_0 = L_60;
|
|
}
|
|
|
|
IL_01be:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(JsonMapper_t1D8418D75E295325E817EEBABCF549B289BDD24A_il2cpp_TypeInfo_var);
|
|
JsonMapper_RegisterExporter_TisRectOffset_t6358774A0DEEABA4586840CB9BC7DC88B39660B5_m265194368484D1D2AAE706A2F7A80AA7A3C363ED(G_B22_0, JsonMapper_RegisterExporter_TisRectOffset_t6358774A0DEEABA4586840CB9BC7DC88B39660B5_m265194368484D1D2AAE706A2F7A80AA7A3C363ED_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_01c4:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass2_0__ctor_mC0BCE28FB22848D1B341CB1B6C66AA8B995B3251 (U3CU3Ec__DisplayClass2_0_t6F9528147EBA1501BA7DC4A28B00FEDC10940082* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass2_0_U3CRegisterU3Eb__3_m725BE532087F75B747D3C5D6624D5F0592574D51 (U3CU3Ec__DisplayClass2_0_t6F9528147EBA1501BA7DC4A28B00FEDC10940082* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_v, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___1_w, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Action_2_tE5C1059CE8ACEDAC4083A88C76E66DE3E15B8105* L_0 = __this->___writeVector2;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1 = ___0_v;
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_2 = ___1_w;
|
|
NullCheck(L_0);
|
|
Action_2_Invoke_m2CD25AE447E9AE31B860C09C397F9348E83BA623_inline(L_0, L_1, L_2, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass2_0_U3CRegisterU3Eb__5_m7352CE818003475C56E5662DAF6C934CFEDDB6FE (U3CU3Ec__DisplayClass2_0_t6F9528147EBA1501BA7DC4A28B00FEDC10940082* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_v, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___1_w, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Action_2_t3CFBD6C56B087A7CE032945C0950C5716540158A* L_0 = __this->___writeVector3;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_1 = ___0_v;
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_2 = ___1_w;
|
|
NullCheck(L_0);
|
|
Action_2_Invoke_m5EC2A53F7FA73C8B707F74A5FE6294D4840A5B37_inline(L_0, L_1, L_2, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass2_0_U3CRegisterU3Eb__10_m2923B6945258B312C61A6318BD0570D2FEF79779 (U3CU3Ec__DisplayClass2_0_t6F9528147EBA1501BA7DC4A28B00FEDC10940082* __this, Bounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3 ___0_v, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___1_w, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3EE5A4671A4E5AEBD31CA5F013A7773DC18ED22B);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF26F502B14F503952C33ADFF928357DED0388E8D);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_0 = ___1_w;
|
|
NullCheck(L_0);
|
|
JsonWriter_WriteObjectStart_m90F3A0A19C03EA7CF90017768E3FA217E4038688(L_0, NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_1 = ___1_w;
|
|
NullCheck(L_1);
|
|
JsonWriter_WritePropertyName_m5646EF1771ABCFCCAAD52086AAE3387579E158E0(L_1, _stringLiteralF26F502B14F503952C33ADFF928357DED0388E8D, NULL);
|
|
Action_2_t3CFBD6C56B087A7CE032945C0950C5716540158A* L_2 = __this->___writeVector3;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_3;
|
|
L_3 = Bounds_get_center_m5B05F81CB835EB6DD8628FDA24B638F477984DC3_inline((&___0_v), NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_4 = ___1_w;
|
|
NullCheck(L_2);
|
|
Action_2_Invoke_m5EC2A53F7FA73C8B707F74A5FE6294D4840A5B37_inline(L_2, L_3, L_4, NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_5 = ___1_w;
|
|
NullCheck(L_5);
|
|
JsonWriter_WritePropertyName_m5646EF1771ABCFCCAAD52086AAE3387579E158E0(L_5, _stringLiteral3EE5A4671A4E5AEBD31CA5F013A7773DC18ED22B, NULL);
|
|
Action_2_t3CFBD6C56B087A7CE032945C0950C5716540158A* L_6 = __this->___writeVector3;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_7;
|
|
L_7 = Bounds_get_size_m0699A53A55A78B3201D7270D6F338DFA91B6FAD4_inline((&___0_v), NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_8 = ___1_w;
|
|
NullCheck(L_6);
|
|
Action_2_Invoke_m5EC2A53F7FA73C8B707F74A5FE6294D4840A5B37_inline(L_6, L_7, L_8, NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_9 = ___1_w;
|
|
NullCheck(L_9);
|
|
JsonWriter_WriteObjectEnd_m7B1F539A650AC9AA9413B9C3FF1DAA27834141AF(L_9, 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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_m80E56B699844748B301FEFA387996F472E1F294A (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2* L_0 = (U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2*)il2cpp_codegen_object_new(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var);
|
|
U3CU3Ec__ctor_mF4E43E30F01E6C6392E7B37C2872BF905D65093B(L_0, NULL);
|
|
((U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var))->___U3CU3E9 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2_il2cpp_TypeInfo_var))->___U3CU3E9), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_mF4E43E30F01E6C6392E7B37C2872BF905D65093B (U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec_U3CRegisterU3Eb__2_0_mA1A7596B0C564A5DB9023BB23EF786B570A40536 (U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2* __this, Type_t* ___0_v, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___1_w, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_0 = ___1_w;
|
|
Type_t* L_1 = ___0_v;
|
|
NullCheck(L_1);
|
|
String_t* L_2;
|
|
L_2 = VirtualFuncInvoker0< String_t* >::Invoke(41, L_1);
|
|
NullCheck(L_0);
|
|
JsonWriter_Write_mC6C394BE18186CAEB8597055057A1AECDEE56916(L_0, L_2, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* U3CU3Ec_U3CRegisterU3Eb__2_1_m99AD9B304FFC1EE02D0A57F4F34B96B5CB37E9F1 (U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2* __this, String_t* ___0_s, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_GetType_m71A077E0B5DA3BD1DC0AB9AE387056CFCF56F93F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterU3Eb__2_1_m99AD9B304FFC1EE02D0A57F4F34B96B5CB37E9F1_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Type_t* V_0 = NULL;
|
|
{
|
|
String_t* L_0 = ___0_s;
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_1;
|
|
L_1 = il2cpp_codegen_get_type(L_0, Type_GetType_m71A077E0B5DA3BD1DC0AB9AE387056CFCF56F93F_RuntimeMethod_var, U3CU3Ec_U3CRegisterU3Eb__2_1_m99AD9B304FFC1EE02D0A57F4F34B96B5CB37E9F1_RuntimeMethod_var);
|
|
V_0 = L_1;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
Type_t* L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec_U3CRegisterU3Eb__2_2_m07A5B1C4B85D9C13D0F177E5C86C9CDA9F0E4EC9 (U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_v, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___1_w, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral062DB096C728515E033CF8C48A1C1F0B9A79384B);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9384C6EF2DA5C0BD5274A0DACFF291D0ABBFD8B1);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_0 = ___1_w;
|
|
NullCheck(L_0);
|
|
JsonWriter_WriteObjectStart_m90F3A0A19C03EA7CF90017768E3FA217E4038688(L_0, NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_1 = ___1_w;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2 = ___0_v;
|
|
float L_3 = L_2.___x;
|
|
Extensions_WriteProperty_m05152C85D5114443EAC6F434D063A4C656ED3C1D(L_1, _stringLiteral062DB096C728515E033CF8C48A1C1F0B9A79384B, ((double)L_3), NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_4 = ___1_w;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_5 = ___0_v;
|
|
float L_6 = L_5.___y;
|
|
Extensions_WriteProperty_m05152C85D5114443EAC6F434D063A4C656ED3C1D(L_4, _stringLiteral9384C6EF2DA5C0BD5274A0DACFF291D0ABBFD8B1, ((double)L_6), NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_7 = ___1_w;
|
|
NullCheck(L_7);
|
|
JsonWriter_WriteObjectEnd_m7B1F539A650AC9AA9413B9C3FF1DAA27834141AF(L_7, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec_U3CRegisterU3Eb__2_4_m7B4E98EF87FFFD2084D924518A83208F53533757 (U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_v, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___1_w, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral062DB096C728515E033CF8C48A1C1F0B9A79384B);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9384C6EF2DA5C0BD5274A0DACFF291D0ABBFD8B1);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9CE1604D659135925CCC4DD1F526AFFE42E689F1);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_0 = ___1_w;
|
|
NullCheck(L_0);
|
|
JsonWriter_WriteObjectStart_m90F3A0A19C03EA7CF90017768E3FA217E4038688(L_0, NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_1 = ___1_w;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_2 = ___0_v;
|
|
float L_3 = L_2.___x;
|
|
Extensions_WriteProperty_m05152C85D5114443EAC6F434D063A4C656ED3C1D(L_1, _stringLiteral062DB096C728515E033CF8C48A1C1F0B9A79384B, ((double)L_3), NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_4 = ___1_w;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_5 = ___0_v;
|
|
float L_6 = L_5.___y;
|
|
Extensions_WriteProperty_m05152C85D5114443EAC6F434D063A4C656ED3C1D(L_4, _stringLiteral9384C6EF2DA5C0BD5274A0DACFF291D0ABBFD8B1, ((double)L_6), NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_7 = ___1_w;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_8 = ___0_v;
|
|
float L_9 = L_8.___z;
|
|
Extensions_WriteProperty_m05152C85D5114443EAC6F434D063A4C656ED3C1D(L_7, _stringLiteral9CE1604D659135925CCC4DD1F526AFFE42E689F1, ((double)L_9), NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_10 = ___1_w;
|
|
NullCheck(L_10);
|
|
JsonWriter_WriteObjectEnd_m7B1F539A650AC9AA9413B9C3FF1DAA27834141AF(L_10, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec_U3CRegisterU3Eb__2_6_mA8E19C1295B6B927B088FDF316F19BA5A282387F (U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2* __this, Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___0_v, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___1_w, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral062DB096C728515E033CF8C48A1C1F0B9A79384B);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9384C6EF2DA5C0BD5274A0DACFF291D0ABBFD8B1);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9CE1604D659135925CCC4DD1F526AFFE42E689F1);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA9FEAF5F50923952C1AC3A473DE3C7E17D23B907);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_0 = ___1_w;
|
|
NullCheck(L_0);
|
|
JsonWriter_WriteObjectStart_m90F3A0A19C03EA7CF90017768E3FA217E4038688(L_0, NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_1 = ___1_w;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_2 = ___0_v;
|
|
float L_3 = L_2.___x;
|
|
Extensions_WriteProperty_m05152C85D5114443EAC6F434D063A4C656ED3C1D(L_1, _stringLiteral062DB096C728515E033CF8C48A1C1F0B9A79384B, ((double)L_3), NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_4 = ___1_w;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_5 = ___0_v;
|
|
float L_6 = L_5.___y;
|
|
Extensions_WriteProperty_m05152C85D5114443EAC6F434D063A4C656ED3C1D(L_4, _stringLiteral9384C6EF2DA5C0BD5274A0DACFF291D0ABBFD8B1, ((double)L_6), NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_7 = ___1_w;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_8 = ___0_v;
|
|
float L_9 = L_8.___z;
|
|
Extensions_WriteProperty_m05152C85D5114443EAC6F434D063A4C656ED3C1D(L_7, _stringLiteral9CE1604D659135925CCC4DD1F526AFFE42E689F1, ((double)L_9), NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_10 = ___1_w;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_11 = ___0_v;
|
|
float L_12 = L_11.___w;
|
|
Extensions_WriteProperty_m05152C85D5114443EAC6F434D063A4C656ED3C1D(L_10, _stringLiteralA9FEAF5F50923952C1AC3A473DE3C7E17D23B907, ((double)L_12), NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_13 = ___1_w;
|
|
NullCheck(L_13);
|
|
JsonWriter_WriteObjectEnd_m7B1F539A650AC9AA9413B9C3FF1DAA27834141AF(L_13, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec_U3CRegisterU3Eb__2_7_mA97D4ED397727FE3783E3F29CBF642E4F0F72A32 (U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2* __this, Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___0_v, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___1_w, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral062DB096C728515E033CF8C48A1C1F0B9A79384B);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9384C6EF2DA5C0BD5274A0DACFF291D0ABBFD8B1);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9CE1604D659135925CCC4DD1F526AFFE42E689F1);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA9FEAF5F50923952C1AC3A473DE3C7E17D23B907);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_0 = ___1_w;
|
|
NullCheck(L_0);
|
|
JsonWriter_WriteObjectStart_m90F3A0A19C03EA7CF90017768E3FA217E4038688(L_0, NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_1 = ___1_w;
|
|
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_2 = ___0_v;
|
|
float L_3 = L_2.___x;
|
|
Extensions_WriteProperty_m05152C85D5114443EAC6F434D063A4C656ED3C1D(L_1, _stringLiteral062DB096C728515E033CF8C48A1C1F0B9A79384B, ((double)L_3), NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_4 = ___1_w;
|
|
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_5 = ___0_v;
|
|
float L_6 = L_5.___y;
|
|
Extensions_WriteProperty_m05152C85D5114443EAC6F434D063A4C656ED3C1D(L_4, _stringLiteral9384C6EF2DA5C0BD5274A0DACFF291D0ABBFD8B1, ((double)L_6), NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_7 = ___1_w;
|
|
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_8 = ___0_v;
|
|
float L_9 = L_8.___z;
|
|
Extensions_WriteProperty_m05152C85D5114443EAC6F434D063A4C656ED3C1D(L_7, _stringLiteral9CE1604D659135925CCC4DD1F526AFFE42E689F1, ((double)L_9), NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_10 = ___1_w;
|
|
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_11 = ___0_v;
|
|
float L_12 = L_11.___w;
|
|
Extensions_WriteProperty_m05152C85D5114443EAC6F434D063A4C656ED3C1D(L_10, _stringLiteralA9FEAF5F50923952C1AC3A473DE3C7E17D23B907, ((double)L_12), NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_13 = ___1_w;
|
|
NullCheck(L_13);
|
|
JsonWriter_WriteObjectEnd_m7B1F539A650AC9AA9413B9C3FF1DAA27834141AF(L_13, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec_U3CRegisterU3Eb__2_8_mBC379F52F684346F7AD7A715313420B3506A3781 (U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2* __this, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___0_v, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___1_w, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0A04B971B03DA607CE6C455184037B660CA89F78);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2B9B6C84CC15492CCB290C4B79418FA6D7DD24C1);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4609D79FE2FAD95C38B6DA64FC671E8594984D4C);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA33A5CAE02B786C2060461DF8C6764B4C05E9423);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_0 = ___1_w;
|
|
NullCheck(L_0);
|
|
JsonWriter_WriteObjectStart_m90F3A0A19C03EA7CF90017768E3FA217E4038688(L_0, NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_1 = ___1_w;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_2 = ___0_v;
|
|
float L_3 = L_2.___r;
|
|
Extensions_WriteProperty_m05152C85D5114443EAC6F434D063A4C656ED3C1D(L_1, _stringLiteralA33A5CAE02B786C2060461DF8C6764B4C05E9423, ((double)L_3), NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_4 = ___1_w;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_5 = ___0_v;
|
|
float L_6 = L_5.___g;
|
|
Extensions_WriteProperty_m05152C85D5114443EAC6F434D063A4C656ED3C1D(L_4, _stringLiteral2B9B6C84CC15492CCB290C4B79418FA6D7DD24C1, ((double)L_6), NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_7 = ___1_w;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_8 = ___0_v;
|
|
float L_9 = L_8.___b;
|
|
Extensions_WriteProperty_m05152C85D5114443EAC6F434D063A4C656ED3C1D(L_7, _stringLiteral4609D79FE2FAD95C38B6DA64FC671E8594984D4C, ((double)L_9), NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_10 = ___1_w;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_11 = ___0_v;
|
|
float L_12 = L_11.___a;
|
|
Extensions_WriteProperty_m05152C85D5114443EAC6F434D063A4C656ED3C1D(L_10, _stringLiteral0A04B971B03DA607CE6C455184037B660CA89F78, ((double)L_12), NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_13 = ___1_w;
|
|
NullCheck(L_13);
|
|
JsonWriter_WriteObjectEnd_m7B1F539A650AC9AA9413B9C3FF1DAA27834141AF(L_13, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec_U3CRegisterU3Eb__2_9_mBC56CC9FBA2B5F73DDADF695C926CE15FD03D4A4 (U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2* __this, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___0_v, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___1_w, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0A04B971B03DA607CE6C455184037B660CA89F78);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2B9B6C84CC15492CCB290C4B79418FA6D7DD24C1);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4609D79FE2FAD95C38B6DA64FC671E8594984D4C);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA33A5CAE02B786C2060461DF8C6764B4C05E9423);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_0 = ___1_w;
|
|
NullCheck(L_0);
|
|
JsonWriter_WriteObjectStart_m90F3A0A19C03EA7CF90017768E3FA217E4038688(L_0, NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_1 = ___1_w;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_2 = ___0_v;
|
|
uint8_t L_3 = L_2.___r;
|
|
Extensions_WriteProperty_m319B2836A978DCFC82422A1334A002234C8D683C(L_1, _stringLiteralA33A5CAE02B786C2060461DF8C6764B4C05E9423, ((int64_t)(uint64_t)((uint32_t)L_3)), NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_4 = ___1_w;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_5 = ___0_v;
|
|
uint8_t L_6 = L_5.___g;
|
|
Extensions_WriteProperty_m319B2836A978DCFC82422A1334A002234C8D683C(L_4, _stringLiteral2B9B6C84CC15492CCB290C4B79418FA6D7DD24C1, ((int64_t)(uint64_t)((uint32_t)L_6)), NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_7 = ___1_w;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_8 = ___0_v;
|
|
uint8_t L_9 = L_8.___b;
|
|
Extensions_WriteProperty_m319B2836A978DCFC82422A1334A002234C8D683C(L_7, _stringLiteral4609D79FE2FAD95C38B6DA64FC671E8594984D4C, ((int64_t)(uint64_t)((uint32_t)L_9)), NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_10 = ___1_w;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_11 = ___0_v;
|
|
uint8_t L_12 = L_11.___a;
|
|
Extensions_WriteProperty_m319B2836A978DCFC82422A1334A002234C8D683C(L_10, _stringLiteral0A04B971B03DA607CE6C455184037B660CA89F78, ((int64_t)(uint64_t)((uint32_t)L_12)), NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_13 = ___1_w;
|
|
NullCheck(L_13);
|
|
JsonWriter_WriteObjectEnd_m7B1F539A650AC9AA9413B9C3FF1DAA27834141AF(L_13, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec_U3CRegisterU3Eb__2_11_mE0E79F14D4012C6D0E01B417ED17D44AA6707DC0 (U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2* __this, Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___0_v, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___1_w, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral062DB096C728515E033CF8C48A1C1F0B9A79384B);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral647E0FB2B5E859CC4BD7C73623B82C8EFABA2563);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9384C6EF2DA5C0BD5274A0DACFF291D0ABBFD8B1);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEBF5FE0CBF3EEA67902EEA700B7216E3DB0D8E84);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_0 = ___1_w;
|
|
NullCheck(L_0);
|
|
JsonWriter_WriteObjectStart_m90F3A0A19C03EA7CF90017768E3FA217E4038688(L_0, NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_1 = ___1_w;
|
|
float L_2;
|
|
L_2 = Rect_get_x_mB267B718E0D067F2BAE31BA477647FBF964916EB_inline((&___0_v), NULL);
|
|
Extensions_WriteProperty_m05152C85D5114443EAC6F434D063A4C656ED3C1D(L_1, _stringLiteral062DB096C728515E033CF8C48A1C1F0B9A79384B, ((double)L_2), NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_3 = ___1_w;
|
|
float L_4;
|
|
L_4 = Rect_get_y_mC733E8D49F3CE21B2A3D40A1B72D687F22C97F49_inline((&___0_v), NULL);
|
|
Extensions_WriteProperty_m05152C85D5114443EAC6F434D063A4C656ED3C1D(L_3, _stringLiteral9384C6EF2DA5C0BD5274A0DACFF291D0ABBFD8B1, ((double)L_4), NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_5 = ___1_w;
|
|
float L_6;
|
|
L_6 = Rect_get_width_m620D67551372073C9C32C4C4624C2A5713F7F9A9_inline((&___0_v), NULL);
|
|
Extensions_WriteProperty_m05152C85D5114443EAC6F434D063A4C656ED3C1D(L_5, _stringLiteralEBF5FE0CBF3EEA67902EEA700B7216E3DB0D8E84, ((double)L_6), NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_7 = ___1_w;
|
|
float L_8;
|
|
L_8 = Rect_get_height_mE1AA6C6C725CCD2D317BD2157396D3CF7D47C9D8_inline((&___0_v), NULL);
|
|
Extensions_WriteProperty_m05152C85D5114443EAC6F434D063A4C656ED3C1D(L_7, _stringLiteral647E0FB2B5E859CC4BD7C73623B82C8EFABA2563, ((double)L_8), NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_9 = ___1_w;
|
|
NullCheck(L_9);
|
|
JsonWriter_WriteObjectEnd_m7B1F539A650AC9AA9413B9C3FF1DAA27834141AF(L_9, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec_U3CRegisterU3Eb__2_12_mF29155196073920053ED3C66CB61E9A99D7E1623 (U3CU3Ec_t3AAEE6BBEC4C519EEB27C34FC45DFB4EB1584CE2* __this, RectOffset_t6358774A0DEEABA4586840CB9BC7DC88B39660B5* ___0_v, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___1_w, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0DFA9AA29082727751167EB3C54FCAD0F9EDC665);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8739227E8E687EF781DA0D923452C2686CFF10A2);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA11BC0AB16491B5DAEE99EAA33CF52FE6BC826E3);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB1E5119D36EC43B340C0A0DDC99F1156546EA9DF);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_0 = ___1_w;
|
|
NullCheck(L_0);
|
|
JsonWriter_WriteObjectStart_m90F3A0A19C03EA7CF90017768E3FA217E4038688(L_0, NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_1 = ___1_w;
|
|
RectOffset_t6358774A0DEEABA4586840CB9BC7DC88B39660B5* L_2 = ___0_v;
|
|
NullCheck(L_2);
|
|
int32_t L_3;
|
|
L_3 = RectOffset_get_top_m82E49FB93A5BD417131136F5A7DBA0F251F10263(L_2, NULL);
|
|
Extensions_WriteProperty_m319B2836A978DCFC82422A1334A002234C8D683C(L_1, _stringLiteralA11BC0AB16491B5DAEE99EAA33CF52FE6BC826E3, ((int64_t)L_3), NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_4 = ___1_w;
|
|
RectOffset_t6358774A0DEEABA4586840CB9BC7DC88B39660B5* L_5 = ___0_v;
|
|
NullCheck(L_5);
|
|
int32_t L_6;
|
|
L_6 = RectOffset_get_left_mA406D7AFF76E48507EF143CDB1D157C4D5430D90(L_5, NULL);
|
|
Extensions_WriteProperty_m319B2836A978DCFC82422A1334A002234C8D683C(L_4, _stringLiteral8739227E8E687EF781DA0D923452C2686CFF10A2, ((int64_t)L_6), NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_7 = ___1_w;
|
|
RectOffset_t6358774A0DEEABA4586840CB9BC7DC88B39660B5* L_8 = ___0_v;
|
|
NullCheck(L_8);
|
|
int32_t L_9;
|
|
L_9 = RectOffset_get_bottom_mDF9C1EC125F94245D5532C34FCFB65BE0F2A9D0B(L_8, NULL);
|
|
Extensions_WriteProperty_m319B2836A978DCFC82422A1334A002234C8D683C(L_7, _stringLiteral0DFA9AA29082727751167EB3C54FCAD0F9EDC665, ((int64_t)L_9), NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_10 = ___1_w;
|
|
RectOffset_t6358774A0DEEABA4586840CB9BC7DC88B39660B5* L_11 = ___0_v;
|
|
NullCheck(L_11);
|
|
int32_t L_12;
|
|
L_12 = RectOffset_get_right_m07C826B0BC79B0CBC01F5FF489D456C553F047BF(L_11, NULL);
|
|
Extensions_WriteProperty_m319B2836A978DCFC82422A1334A002234C8D683C(L_10, _stringLiteralB1E5119D36EC43B340C0A0DDC99F1156546EA9DF, ((int64_t)L_12), NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_13 = ___1_w;
|
|
NullCheck(L_13);
|
|
JsonWriter_WriteObjectEnd_m7B1F539A650AC9AA9413B9C3FF1DAA27834141AF(L_13, 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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Extensions_WriteProperty_m319B2836A978DCFC82422A1334A002234C8D683C (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___0_w, String_t* ___1_name, int64_t ___2_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_0 = ___0_w;
|
|
String_t* L_1 = ___1_name;
|
|
NullCheck(L_0);
|
|
JsonWriter_WritePropertyName_m5646EF1771ABCFCCAAD52086AAE3387579E158E0(L_0, L_1, NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_2 = ___0_w;
|
|
int64_t L_3 = ___2_value;
|
|
NullCheck(L_2);
|
|
JsonWriter_Write_m500833BCB5B21114C1C8A3FA7DAAF6A1EAD2A3D4(L_2, L_3, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Extensions_WriteProperty_m4FDFF9E40223A67FCAB521E5EE368CD6F5B39B7F (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___0_w, String_t* ___1_name, String_t* ___2_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_0 = ___0_w;
|
|
String_t* L_1 = ___1_name;
|
|
NullCheck(L_0);
|
|
JsonWriter_WritePropertyName_m5646EF1771ABCFCCAAD52086AAE3387579E158E0(L_0, L_1, NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_2 = ___0_w;
|
|
String_t* L_3 = ___2_value;
|
|
NullCheck(L_2);
|
|
JsonWriter_Write_mC6C394BE18186CAEB8597055057A1AECDEE56916(L_2, L_3, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Extensions_WriteProperty_mDFEFD1B7D7C0682D176EA5A9D1E091D53D70E8CE (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___0_w, String_t* ___1_name, bool ___2_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_0 = ___0_w;
|
|
String_t* L_1 = ___1_name;
|
|
NullCheck(L_0);
|
|
JsonWriter_WritePropertyName_m5646EF1771ABCFCCAAD52086AAE3387579E158E0(L_0, L_1, NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_2 = ___0_w;
|
|
bool L_3 = ___2_value;
|
|
NullCheck(L_2);
|
|
JsonWriter_Write_mFACCB1B6087CE1C66A68CE3BA2AF9844F7F31D8C(L_2, L_3, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Extensions_WriteProperty_m05152C85D5114443EAC6F434D063A4C656ED3C1D (JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___0_w, String_t* ___1_name, double ___2_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_0 = ___0_w;
|
|
String_t* L_1 = ___1_name;
|
|
NullCheck(L_0);
|
|
JsonWriter_WritePropertyName_m5646EF1771ABCFCCAAD52086AAE3387579E158E0(L_0, L_1, NULL);
|
|
JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* L_2 = ___0_w;
|
|
double L_3 = ___2_value;
|
|
NullCheck(L_2);
|
|
JsonWriter_Write_m657048A70C011FC85FD3773A026EC0B21462AB4D(L_2, L_3, 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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonIgnore__ctor_mD25C2D3EF04BD437FCCF34392C88247E1AA24B9C (JsonIgnore_t3FF65951D3F8D995E69E2E396F84F51967463103* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Attribute__ctor_m79ED1BF1EE36D1E417BA89A0D9F91F8AAD8D19E2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* DictionaryEntry_get_Key_m09845C00732E530E6FCB9042079E90D3912215FE_inline (DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->____key;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* DictionaryEntry_get_Value_m75FD18FE968AE131F28AA2CB0DF4895EBA39075E_inline (DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->____value;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* ImporterFunc_Invoke_m143089455BBD8920FDB4F1B683E685B50FB8077A_inline (ImporterFunc_t3D41CCB293D2761DC6862831F8BC45D580EB6AA5* __this, RuntimeObject* ___0_input, const RuntimeMethod* method)
|
|
{
|
|
typedef RuntimeObject* (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_input, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* WrapperFactory_Invoke_mDEC930B07F8B4652EBECE1E6386E92701A93C7D5_inline (WrapperFactory_tB4894CC7D3A41BE3FF6BA079B4490DF5FC5C7BDD* __this, const RuntimeMethod* method)
|
|
{
|
|
typedef RuntimeObject* (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ExporterFunc_Invoke_mE96AA8DA43B26B809D4D5D09A1A22966C81D2BDD_inline (ExporterFunc_t0E0FD6EE483CD6380339D2D7AC616079B1D5ED8A* __this, RuntimeObject* ___0_obj, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F* ___1_writer, const RuntimeMethod* method)
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, JsonWriter_t303427DE92107A0D92969763C95C5C20DB2D6F8F*, const RuntimeMethod*);
|
|
((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_obj, ___1_writer, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline (String_t* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->____stringLength;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool StateHandler_Invoke_mAED7B745D78A2D2DC62A793247492E7718A3210E_inline (StateHandler_t96934EB5CE1BA6A1DE19972E93F1CA6D31CD3603* __this, FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1* ___0_ctx, const RuntimeMethod* method)
|
|
{
|
|
typedef bool (*FunctionPointerType) (RuntimeObject*, FsmContext_t039D467FB708DBF74426E9076FDA22760B0D30D1*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_ctx, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Bounds_get_center_m5B05F81CB835EB6DD8628FDA24B638F477984DC3_inline (Bounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3* __this, const RuntimeMethod* method)
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = __this->___m_Center;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Bounds_get_size_m0699A53A55A78B3201D7270D6F338DFA91B6FAD4_inline (Bounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3* __this, const RuntimeMethod* method)
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = __this->___m_Extents;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_1;
|
|
L_1 = Vector3_op_Multiply_m87BA7C578F96C8E49BB07088DAAC4649F83B0353_inline(L_0, (2.0f), NULL);
|
|
V_0 = L_1;
|
|
goto IL_0014;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Rect_get_x_mB267B718E0D067F2BAE31BA477647FBF964916EB_inline (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
{
|
|
float L_0 = __this->___m_XMin;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
float L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Rect_get_y_mC733E8D49F3CE21B2A3D40A1B72D687F22C97F49_inline (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
{
|
|
float L_0 = __this->___m_YMin;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
float L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Rect_get_width_m620D67551372073C9C32C4C4624C2A5713F7F9A9_inline (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
{
|
|
float L_0 = __this->___m_Width;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
float L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Rect_get_height_mE1AA6C6C725CCD2D317BD2157396D3CF7D47C9D8_inline (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
{
|
|
float L_0 = __this->___m_Height;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
float L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* KeyValuePair_2_get_Key_mBD8EA7557C27E6956F2AF29DA3F7499B2F51A282_gshared_inline (KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->___key;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* KeyValuePair_2_get_Value_mC6BD8075F9C9DDEF7B4D731E5C38EC19103988E7_gshared_inline (KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->___value;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Stack_1_get_Count_mD08AE71D49787D30DDD9D484BCD323D646744D2E_gshared_inline (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->____size;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_2_Invoke_m3CE082491EEF378249C13870E46EE164D7908A9C_gshared_inline (Action_2_t8ECF3F2290D85497ADD0537A5F3D76045870EE0A* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7, RuntimeObject*, const RuntimeMethod*);
|
|
((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_arg1, ___1_arg2, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_2_Invoke_m719475FEF89235EA7C17D75BF384DE2B9545839B_gshared_inline (Action_2_t7493708BA3F87F84FAB65917DE69C3FD00878E6C* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2, RuntimeObject*, const RuntimeMethod*);
|
|
((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_arg1, ___1_arg2, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_op_Multiply_m87BA7C578F96C8E49BB07088DAAC4649F83B0353_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_a, float ___1_d, const RuntimeMethod* method)
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___0_a;
|
|
float L_1 = L_0.___x;
|
|
float L_2 = ___1_d;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_3 = ___0_a;
|
|
float L_4 = L_3.___y;
|
|
float L_5 = ___1_d;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_6 = ___0_a;
|
|
float L_7 = L_6.___z;
|
|
float L_8 = ___1_d;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_9;
|
|
memset((&L_9), 0, sizeof(L_9));
|
|
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&L_9), ((float)il2cpp_codegen_multiply(L_1, L_2)), ((float)il2cpp_codegen_multiply(L_4, L_5)), ((float)il2cpp_codegen_multiply(L_7, L_8)), NULL);
|
|
V_0 = L_9;
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_10 = V_0;
|
|
return L_10;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* __this, float ___0_x, float ___1_y, float ___2_z, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = ___0_x;
|
|
__this->___x = L_0;
|
|
float L_1 = ___1_y;
|
|
__this->___y = L_1;
|
|
float L_2 = ___2_z;
|
|
__this->___z = L_2;
|
|
return;
|
|
}
|
|
}
|