#include "pch-cpp.hpp" #ifndef _MSC_VER # include #else # include #endif #include template 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 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 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 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); } }; template struct GenericVirtualFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; 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 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 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 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 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 struct GenericInterfaceFuncInvoker0 { typedef R (*Func)(void*, const RuntimeMethod*); static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); return ((Func)invokeData.methodPtr)(obj, invokeData.method); } }; template struct GenericInterfaceFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template struct InvokerFuncInvoker0 { static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj) { R ret; method->invoker_method(methodPtr, method, obj, NULL, &ret); return ret; } }; template struct InvokerFuncInvoker1 { static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1 p1) { R ret; void* params[1] = { &p1 }; method->invoker_method(methodPtr, method, obj, params, &ret); return ret; } }; template struct InvokerFuncInvoker1 { static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1) { R ret; void* params[1] = { p1 }; method->invoker_method(methodPtr, method, obj, params, &ret); return ret; } }; template struct InvokerFuncInvoker2 { static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1 p1, T2 p2) { R ret; void* params[2] = { &p1, &p2 }; method->invoker_method(methodPtr, method, obj, params, &ret); return ret; } }; template struct InvokerFuncInvoker2 { static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2 p2) { R ret; void* params[2] = { p1, &p2 }; method->invoker_method(methodPtr, method, obj, params, &ret); return ret; } }; template struct InvokerFuncInvoker2 { static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2) { R ret; void* params[2] = { p1, p2 }; method->invoker_method(methodPtr, method, obj, params, &ret); return ret; } }; template struct InvokerFuncInvoker3; template struct InvokerFuncInvoker3 { static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2 p2, T3 p3) { R ret; void* params[3] = { p1, &p2, &p3 }; method->invoker_method(methodPtr, method, obj, params, &ret); return ret; } }; template struct InvokerFuncInvoker3 { static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2, T3* p3) { R ret; void* params[3] = { p1, p2, p3 }; method->invoker_method(methodPtr, method, obj, params, &ret); return ret; } }; // System.Action`1 struct Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87; // System.Collections.Generic.Comparer`1 struct Comparer_1_t8BF4D32ADB431AB730ACD5DB97EADCA2F0E17132; // System.Collections.Generic.Comparer`1 struct Comparer_1_t01D0D35DA07FC84ED9D2F1F36BA10C77FC63589C; // System.Collections.Generic.Comparer`1 struct Comparer_1_tD39CE7A8427C46E74A923BDBFA86E728BC6C59C2; // System.Collections.Generic.Comparer`1 struct Comparer_1_t01F4A3B9CE9BCD8190DF5C60B662F230A074DAD9; // System.Collections.Generic.Comparer`1 struct Comparer_1_tBA6FFE9E1286DCF5C92ED128C9DCCA5E53D8C7B0; // System.Collections.Generic.Comparer`1 struct Comparer_1_tA9689DB6D41BF8CF24D9CB338D0A979B0333D254; // System.Collections.Generic.Comparer`1 struct Comparer_1_t2BCE85BA0C209F373051977D35D1BAB62611194A; // System.Collections.Generic.Comparer`1 struct Comparer_1_t54046A0071F349E7F1D6EA6D46C3DA1DAAD64A99; // System.Collections.Generic.Comparer`1 struct Comparer_1_tF6D449CECF505A134DA65FC83EDAA3EB70D7F1C8; // System.Collections.Generic.Comparer`1 struct Comparer_1_tDBA2459B2A7F6FE73078B1B8CF203E27A2BB8C8B; // System.Collections.Generic.Comparer`1 struct Comparer_1_tCB3D33B877298F17367ADCFE1A026A4A4A2B5385; // System.Collections.Generic.Comparer`1 struct Comparer_1_t2A5B4DEA38F68D1F1BBA6690C544910C4B6CD1F4; // System.Collections.Generic.Comparer`1 struct Comparer_1_tA15AE14FF305091BC51D5BDBFA373EC002DEDF7A; // System.Comparison`1> struct Comparison_1_tB13A0B15D043D16449D293DA3526EB0FC6D8D7CF; // System.Comparison`1> struct Comparison_1_t94455476079A6528E5C23F39EB3DBBBE3B72C154; // System.Comparison`1> struct Comparison_1_t63231751514501D10DF841E8057AF02108BB28B5; // System.Comparison`1> struct Comparison_1_t1087F8E45A489AC50D87CD34DB3491B06DFFC698; // System.Comparison`1> struct Comparison_1_tFE77D9765EFA2A45B552400E1A79BD1631F5579A; // System.Comparison`1> struct Comparison_1_tD4DF67E980CF944B519B1A9261D80BCA6C9F7B7C; // System.Comparison`1 struct Comparison_1_tF15DB3AEC82E2B8B1BF7E34C4EAB7D1031840D68; // System.Comparison`1 struct Comparison_1_t62E47208CF28E709E41BAA9250F30B24B9DE4B2D; // System.Comparison`1 struct Comparison_1_tD2BC24ACADC7AE1FDC0BDF807145456FDE58C734; // System.Comparison`1 struct Comparison_1_t939FA5753922E5ECCF481BF4BC889604ED91887E; // System.Comparison`1 struct Comparison_1_t8EB455F2AAA7E2008173FA39BB2AE4BD31964C79; // System.Comparison`1 struct Comparison_1_tE187014AC57BBB6E2159C658629F8DA65349C771; // System.Comparison`1 struct Comparison_1_tD3247D1EAE3B1B6C4819241A27A08D5D2C9877EC; // System.Comparison`1 struct Comparison_1_tBE4D7DBFCEABC348083DD2DD69D05F1FCAA0FB37; // System.Comparison`1 struct Comparison_1_t7B58587F8689765E13B47F1C8964601B3309E441; // System.Comparison`1 struct Comparison_1_tBF0BE6729972AF8DF6C6E2274134C881021D8631; // System.Comparison`1 struct Comparison_1_tADE2F49C2C7EFB6E067E96182F935E2078B78E90; // System.Comparison`1 struct Comparison_1_tE81C7BD20CD6590757BACBD4D55CBCD17BAA6D8B; // System.Comparison`1 struct Comparison_1_tF964A5F2E76EBC830880EAA79F49245171578AA2; // System.Comparison`1 struct Comparison_1_t6CE5C0E9637BFC69BED33F85B7839DC771A6518F; // System.Comparison`1 struct Comparison_1_tCCC1AA529B0E52A90DB79D3D9E621FCA5ED86C18; // System.Comparison`1 struct Comparison_1_tB7DE1436CB53924C2FC41FF926D074C1ACC14D89; // System.Comparison`1 struct Comparison_1_t867D3AA383F5B47704F3B33AF0917C4E98ABEBF1; // System.Comparison`1 struct Comparison_1_t00EB8BF6E68ACDC037E67C1581D9C44478C500E8; // System.Comparison`1 struct Comparison_1_t09ED0BE2699D1546D891A69C97AFC4FE705CBB3B; // System.Comparison`1 struct Comparison_1_t3F078A1F4A9AE93016C2DB432C7E507BA87E1AA0; // System.Comparison`1 struct Comparison_1_t6002EB6EFE7598F24473C7D235BA040DBB2EA95D; // System.Comparison`1 struct Comparison_1_t62E531E7B8260E2C6C2718C3BDB8CF8655139645; // System.Comparison`1 struct Comparison_1_t2460EF486FDB2AA45C8CFE773DCC0E5844E154D6; // System.Comparison`1 struct Comparison_1_t5A3269D71CFF48B1462FED00091AE93BBABC91E7; // System.Comparison`1 struct Comparison_1_t9FCAC8C8CE160A96C5AAD2DE1D353DCE8A2FEEFC; // System.Comparison`1 struct Comparison_1_tADFA018BEB0FC9516DA48F77953D0ACF00F12037; // System.Comparison`1 struct Comparison_1_t5CB5E2EC675D003F184926AA3D45FEB982675C0E; // System.Comparison`1 struct Comparison_1_tDCADC9B1369BC18C2329F00AACA3F268F5DFBE96; // System.Comparison`1 struct Comparison_1_t1E2D8261CC6BDF2163403F266C5410F5D18FABE0; // System.Comparison`1 struct Comparison_1_t11F78E54645546468696C9CAAB9785713FDD3C1D; // System.Comparison`1 struct Comparison_1_tA503AAE0258A4326482B77662614D54B769842E6; // System.Comparison`1 struct Comparison_1_t5889909C36CD86DEF91396F57847BA81B3D8BCFF; // System.Comparison`1 struct Comparison_1_tBCC4CA10777B41199AAC917419860BAFAB534CFA; // System.Comparison`1 struct Comparison_1_t8BAC82466F40FB22277E7EDF4CA6926294B4989D; // System.Comparison`1 struct Comparison_1_tDEDD2609C3AA3FE49B0B4CA4B2379FE4AAAE0191; // System.Comparison`1 struct Comparison_1_tCE96114C3B053890228B1BFC6AFCCD20289BD13A; // System.Comparison`1 struct Comparison_1_t9675CD64965015038255FCAB0F96BEF64804BAA6; // System.Comparison`1 struct Comparison_1_tD755B36DD73CEAE9B0E7BFE083489A1097F64783; // System.Comparison`1 struct Comparison_1_tE6F02BB19312F9A27AEEA88373BEACBF0C114942; // System.Comparison`1 struct Comparison_1_tDBF0B5EAC8FD372792A4C6AF562EC6CB7BFCE84A; // System.Comparison`1 struct Comparison_1_t13F1243B56F95143AD268EE91E46701998A40539; // System.Comparison`1 struct Comparison_1_tEB47E563C49896E023B67107A8386F91407C1905; // System.Comparison`1 struct Comparison_1_tF066A0EA3AD70B742E51B5CA89F29E000FC9CF03; // System.Comparison`1 struct Comparison_1_tF77ABBDA0482B2BE658FA3EE0DFA2E0ECB09A60B; // System.Comparison`1 struct Comparison_1_tCE25FD8843602A5F64B1B21412BCB30B5D5B6991; // System.Comparison`1 struct Comparison_1_t30B79D9F5F84D1FC372D3727914E6F0CA6B42F65; // System.Comparison`1 struct Comparison_1_t388CFEE675F4A6E15BB604A7AD4C3A5B6D265FB7; // System.Comparison`1 struct Comparison_1_t481A1DF2F78166A7F0827FA0A9A8E26233D3973E; // System.Comparison`1 struct Comparison_1_t6447E02D95C4C995AE37F197D13D355CC1E9AE10; // System.Comparison`1 struct Comparison_1_t82EEB0A214F5A0E823A3CF56E7C66E807B5EA88C; // System.Comparison`1 struct Comparison_1_t613AB8D4C0CB0D00C2B57AEE6833ACBAB39E0090; // System.Comparison`1 struct Comparison_1_t37F7853F3E48157AE0E622BD13D564DD529985BC; // System.Comparison`1 struct Comparison_1_t2303303394895C9C2BBEE644AA33988589B6D130; // System.Comparison`1 struct Comparison_1_t03D3D568F407761E6E641450A12DDA1106489797; // System.Comparison`1 struct Comparison_1_t89BA6BA726C49026677C45BEDBD41952739E06A2; // System.Comparison`1 struct Comparison_1_tC8BBA462D5337723AC34773EEE343018753C7FF3; // System.Comparison`1 struct Comparison_1_tD9EBEF6A651DABC3E978C4201E05B2E5CEBD249C; // System.Comparison`1 struct Comparison_1_tCC5BCF2599EE1133F3D5F448DFA90FD3A157D59B; // System.Comparison`1 struct Comparison_1_t932AA262017AC34B65935732BF67FCC5635A5379; // System.Comparison`1 struct Comparison_1_tC2DFBE498A7F5F0769A4657BE03C6E55762A4811; // System.Comparison`1 struct Comparison_1_tD654C48FB90A48F56CE96FE4B4E79146CBE0CD88; // System.Comparison`1 struct Comparison_1_tE64EEF1779008CF267B47D29FF3CA17C7C66C9EF; // System.Comparison`1 struct Comparison_1_tA6E38F9B8A5E125EC6515F9679C2079C747A0149; // System.Comparison`1 struct Comparison_1_tEF46E57E1EA1EAD3E013A3E7CBF83ADA63BD074A; // System.Comparison`1 struct Comparison_1_t4703F25317F49005421F55E324565AD56F754157; // System.Comparison`1 struct Comparison_1_t9587F6BBCCF465868BB507F3842094EB3EFE433C; // System.Comparison`1 struct Comparison_1_t2CC3A9749FFE6C137307D37250EA2187BC4BC230; // System.Comparison`1 struct Comparison_1_t73B918CD7B86222E2F91CB2F4BDD273A4DF9EAB7; // System.Comparison`1 struct Comparison_1_t2E9E3A70B36A979327C1C4C2C8C4F170248BAC7E; // System.Comparison`1 struct Comparison_1_tA69C0D6AE3DDF220FF4B2C2D75CFB75494E40F12; // System.Comparison`1 struct Comparison_1_t588A0F4BDE4F07A6313CE4762C6D78BC141360A5; // System.Comparison`1 struct Comparison_1_t78F773F6D3A5398CBC43930CE96FB78803B9E742; // System.Comparison`1 struct Comparison_1_t82F11F1A4E7186A008D1413F4C50079E03B95CFE; // System.Comparison`1 struct Comparison_1_t4349A0C0F6E57844038D08909A07D093BF8BBF87; // System.Comparison`1 struct Comparison_1_tEA2D3CD6ED7B836B8E7754800F0686045E87B0F3; // System.Comparison`1 struct Comparison_1_tDF19E1FD642A6D03EC22D6BC3C7899090B8EB768; // System.Comparison`1 struct Comparison_1_tE7E96FD34C52F0992924E65405618B941FEA3229; // System.Comparison`1 struct Comparison_1_tC652E94860093FBD669CD9F7858E5C6792867D13; // System.Comparison`1 struct Comparison_1_t0D538E030DA616BAE9EC08BBAF8EAB30350CCADC; // System.Collections.Concurrent.ConcurrentDictionary`2 struct ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF; // System.Collections.Concurrent.ConcurrentQueue`1 struct ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4; // System.Runtime.CompilerServices.ConditionalWeakTable`2 struct ConditionalWeakTable_2_t87BE12792DC61EC9AE17609EC1ACA0671B3F5605; // System.Runtime.CompilerServices.ConditionalWeakTable`2 struct ConditionalWeakTable_2_t815A43BFBA64EC1F9F92AD042622E80EED65712E; // System.Threading.Tasks.ContinuationResultTaskFromResultTask`2> struct ContinuationResultTaskFromResultTask_2_t53DAF1E386BB83E85FBFA8178C1128E87C8BD88E; // System.Threading.Tasks.ContinuationResultTaskFromResultTask`2> struct ContinuationResultTaskFromResultTask_2_t17224214B46D78ABCBC46FD6BCD37FA917551637; // System.Threading.Tasks.ContinuationResultTaskFromResultTask`2 struct ContinuationResultTaskFromResultTask_2_tE241885AF8BB892C4B06A3EFCF4380AAACE17582; // System.Threading.Tasks.ContinuationTaskFromResultTask`1> struct ContinuationTaskFromResultTask_1_t21D717C4A94ED8DF069846D2343999C1C95F9849; // System.Threading.Tasks.ContinuationTaskFromResultTask`1> struct ContinuationTaskFromResultTask_1_tC87576577E47D9155E48550F3FF98B7BE4578ABF; // System.Threading.Tasks.ContinuationTaskFromResultTask`1> struct ContinuationTaskFromResultTask_1_t9E3D090DA14C151A2E9ADE43FB29EC11D4FAF37E; // System.Threading.Tasks.ContinuationTaskFromResultTask`1> struct ContinuationTaskFromResultTask_1_t5B4CE099E4FA2F6075C238E32EDA472394DF8366; // System.Threading.Tasks.ContinuationTaskFromResultTask`1 struct ContinuationTaskFromResultTask_1_tAE0D398C6A55EAAA6B98F6A654178EB8C7FAEC39; // System.Threading.Tasks.ContinuationTaskFromResultTask`1 struct ContinuationTaskFromResultTask_1_t3ED26B5DC64622CAD8CCE4544E6F7CE63023AA96; // System.Threading.Tasks.ContinuationTaskFromResultTask`1 struct ContinuationTaskFromResultTask_1_t0D3B0C43A4B7C9E5D99AAFE95D96D4C2C83096EC; // System.Threading.Tasks.ContinuationTaskFromResultTask`1 struct ContinuationTaskFromResultTask_1_t0A8FDEA74F016A246D22E5545F9D6EA6503B4D52; // System.Converter`2 struct Converter_2_tC9AFAC88B7B2F2A78BE628A4D126535F0A4A1486; // Vuforia.VuEngine/CreateControllerDelegate`1 struct CreateControllerDelegate_1_t0EFF3A593F0A0BC5FC5CC4B18D9430E7FB8B6D56; // Vuforia.VuGenericList`1/CreateListDelegate struct CreateListDelegate_t0A2081B0219A65601BC05E21D6C65453BE9F088A; // Vuforia.VuGenericList`1/CreateListDelegate struct CreateListDelegate_t98917A01073A8F0BC53EECB8AFB335EE4DD87BA1; // Vuforia.VuGenericList`1/CreateListDelegate struct CreateListDelegate_tEC661DC6FAF8C29C5338F168FD777B1619BB6640; // Vuforia.VuGenericList`1/CreateListDelegate struct CreateListDelegate_t88ACBDE624948B52EFB8FFB761B5CFE10C796F43; // Vuforia.VuGenericList`1/CreateListDelegate struct CreateListDelegate_tE0BE9AF5DF25CE5A398CDA944928350FF111CD5F; // Vuforia.VuGenericList`1/CreateListDelegate struct CreateListDelegate_tF85E2618E8815923A31F4C0D83E6A05A35DC4D49; // Vuforia.VuGenericList`1/CreateListDelegate struct CreateListDelegate_t23116BD09101D620DDC34D97718D8B1156E49687; // Vuforia.VuGenericSet`1/CreateSetDelegate struct CreateSetDelegate_t1EA2FE8AE98BE83755F4E90B4CACE684D3F6202E; // Vuforia.VuGenericSet`1/CreateSetDelegate struct CreateSetDelegate_t09D800508B3D0B25C7FB69610AC8729A043D0003; // Vuforia.VuObservation/CreateStructDelegate`1 struct CreateStructDelegate_1_t4BADA369CEF902626AEAE2C31531EEB2B626816F; // Vuforia.VuObservation/CreateStructDelegate`1 struct CreateStructDelegate_1_tAA3D3BB1131C306B4A25758848325061CE76FBED; // Vuforia.VuObservation/CreateStructDelegate`1 struct CreateStructDelegate_1_tB451F16FCBD015F1DF8442EF8A6E3A514875BA6C; // Vuforia.VuObservation/CreateStructDelegate`1 struct CreateStructDelegate_1_tFBC8CE520AE865303AD475D8F0438F91A50C1B44; // Vuforia.VuObservation/CreateStructDelegate`1 struct CreateStructDelegate_1_tF45AB3692FE6F8A4415AC89848A892F3A031A879; // Vuforia.VuObservation/CreateStructDelegate`1 struct CreateStructDelegate_1_t240D566F743F448A1A6AA369E7E016B4EEA0C03D; // Vuforia.VuObservation/CreateStructDelegate`1 struct CreateStructDelegate_1_t3EDAA16AD9DD5B771784752145396A9B804BDBD7; // Vuforia.VuObservation/CreateStructDelegate`1 struct CreateStructDelegate_1_t740074CFC233D096F98BA627F6C40488DFCC4FD2; // Vuforia.VuObservation/CreateStructDelegate`1 struct CreateStructDelegate_1_t464A4064C663996E35CDD4FE99394922891E8737; // Vuforia.VuObservation/CreateStructDelegate`1 struct CreateStructDelegate_1_tA7153E42E755017370C102D50E073B15E30479CB; // Vuforia.VuObservation/CreateStructDelegate`1 struct CreateStructDelegate_1_t4DB130F0417ECF57ED0339FBB74DCBA3ACD32C4D; // Vuforia.VuObservation/CreateStructDelegate`1 struct CreateStructDelegate_1_t6A358525972DB69F85A1355F5FA4209D9813D11C; // Vuforia.VuObservation/CreateStructDelegate`1 struct CreateStructDelegate_1_tEC00F17F9804B9DD6895037C6A3A770B82AD141B; // Vuforia.VuObservation/CreateStructDelegate`1 struct CreateStructDelegate_1_t4FAC0D9B72B2A0CCCE7B77BEEB0ED3D5D8BB992D; // Vuforia.VuObservation/CreateStructDelegate`1 struct CreateStructDelegate_1_t630E530516EF2B0D93DA69D9AD22811C64BEF666; // System.Runtime.CompilerServices.ConditionalWeakTable`2/CreateValueCallback struct CreateValueCallback_t85D075DDCAD202B428EC47723590605681FE2BD1; // Vuforia.Newtonsoft.Json.Utilities.Creator`1 struct Creator_1_t9B3669283072511C9FBAC1B3645CC70001B7F854; // Vuforia.Newtonsoft.Json.Converters.CustomCreationConverter`1 struct CustomCreationConverter_1_t4C1422769FC4AE644BFD992E3BBAE16062A03429; // UnityEngine.UIElements.UIR.Page/DataSet`1 struct DataSet_1_t06E945F9181593E5AF1D52C4F01F64705D0EE1FB; // UnityEngine.UIElements.UIR.Page/DataSet`1 struct DataSet_1_t7AB6378C4975B89560B35C7854DF838C507AD25A; // System.Collections.Generic.LowLevelDictionary`2/DefaultComparer`1 struct DefaultComparer_1_tF1F3B8981298E50FBC17BDC8CA0B4CFE867AD644; // System.Collections.Generic.LowLevelDictionary`2/DefaultComparer`1 struct DefaultComparer_1_tECD232FD46741EA2BFABC44EA55035C4C90438CE; // System.IO.Enumeration.FileSystemEnumerable`1/DelegateEnumerator struct DelegateEnumerator_t03CC726F1198053E252AFEE23D3871C1435B4970; // Vuforia.VuGenericList`1/DeleteListDelegate struct DeleteListDelegate_t4F43A208509F7D91EE24C2EC4E7D9838058A4AA4; // Vuforia.VuGenericList`1/DeleteListDelegate struct DeleteListDelegate_tA2E6CDE68686D811E1976532813465847FC4D49A; // Vuforia.VuGenericList`1/DeleteListDelegate struct DeleteListDelegate_t39999289AF42C308F5179140E7C93050ED289C45; // Vuforia.VuGenericList`1/DeleteListDelegate struct DeleteListDelegate_t22B5C8E514A10F30AA95C2184F57D2C7C9255AA3; // Vuforia.VuGenericList`1/DeleteListDelegate struct DeleteListDelegate_t9164AF3F1E7559EA5860DFF003D035268C0DCA4D; // Vuforia.VuGenericList`1/DeleteListDelegate struct DeleteListDelegate_tB02BE101F9FD7BD562DD744A1D1202E4F9F8C4EC; // Vuforia.VuGenericList`1/DeleteListDelegate struct DeleteListDelegate_t02467635DBBF610E855E473071C1708768D871B0; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t403063CE4960B4F46C688912237C6A27E550FF55; // System.Collections.Generic.EqualityComparer`1 struct EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2; // System.EventHandler`1 struct EventHandler_1_tFA03C22B53F712FAF52638E57DF4EEDADD1E89C0; // System.EventHandler`1 struct EventHandler_1_tE698654C3F437D97ABCCA3FD0AD8F86E776DC77A; // System.IO.Enumeration.FileSystemEnumerable`1 struct FileSystemEnumerable_1_t6CDB6C3CCEAAD4602A46A2EA5211E12D2DB57B94; // System.IO.Enumeration.FileSystemEnumerable`1/FindPredicate struct FindPredicate_tD904DBA38C8844BD03538991F629C55781F3000D; // System.IO.Enumeration.FileSystemEnumerable`1/FindTransform struct FindTransform_tC499583A33189BE267A9A28ED61DB4DE63B28851; // System.Func`1 struct Func_1_tD59A12717D79BFB403BF973694B1BE5B85474BD1; // System.Func`2 struct Func_2_tACBF5A1656250800CE861707354491F0611F6624; // System.Func`2 struct Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2; // System.Func`3 struct Func_3_t0787D839A577CB564A3192D4164941D5F3DCFBB5; // UnityEngine.UIElements.UIR.Utility/GPUBuffer`1 struct GPUBuffer_1_tA865630D1AFA976A50A92C4ACE0243A78520BDC7; // UnityEngine.UIElements.UIR.Utility/GPUBuffer`1 struct GPUBuffer_1_tD1DC0573556845223680E17430EFF317DDA4A5AC; // System.Collections.Generic.ICollection`1 struct ICollection_1_tD7413105CA5DBF6629BE5E9EE453204D7C0D90FB; // System.Collections.Generic.IComparer`1 struct IComparer_1_tFAD3AE9FE3CE1FB3CBB781C55DC57C986D71521E; // System.Collections.Generic.IDictionary`2 struct IDictionary_2_tB9E0E59186D311A90565ADCFA615B47F1D922BD2; // System.Collections.Generic.IDictionary`2 struct IDictionary_2_tF0FBA164C91E7B487CAD1984F10301308A7A88D7; // System.Collections.Generic.IEnumerable`1> struct IEnumerable_1_t60509816D8966320E2A9660FC756B6C440ADFC50; // System.Collections.Generic.IEnumerator`1> struct IEnumerator_1_t327FF232159D9644239A65F54312F684DB7BE375; // System.Collections.Generic.IEnumerator`1 struct IEnumerator_1_t43D2E4BA9246755F293DFA74F001FB1A70A648FD; // System.Collections.Generic.IEqualityComparer`1 struct IEqualityComparer_1_t2CA7720C7ADCCDECD3B02E45878B4478619D5347; // System.Collections.Generic.IList`1 struct IList_1_t6EE90D273EFCF5E7E4C37FAB712E70BB6F1B4BFF; // System.Collections.Generic.IList`1 struct IList_1_t014DDC88E845E54828905D4E14E32730251F6A11; // System.Collections.Generic.IList`1 struct IList_1_t584D9204058D75EFFA64798E69DE2A27029D282D; // System.Collections.Generic.List`1 struct List_1_t457AA9F866B06898075A7D9DA76EB8DE83CD7B56; // System.Collections.Concurrent.ConcurrentDictionary`2/Node struct Node_t821211F0535E80E80FDC8FFB600F681E98286BF0; // System.Predicate`1 struct Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12; // System.Predicate`1 struct Predicate_1_t7F48518B008C1472339EEEBABA3DE203FE1F26ED; // System.Collections.Generic.Queue`1 struct Queue_1_t55768C6731D974992BF9775CEA33AAFE7F51CF31; // System.Collections.ObjectModel.ReadOnlyCollection`1 struct ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92; // System.Collections.Concurrent.ConcurrentQueue`1/Segment struct Segment_tBE464478C92438E20009981FD7F953F796D7F3B2; // System.Collections.Concurrent.ConcurrentDictionary`2/Tables struct Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6; // System.Threading.Tasks.TaskFactory`1> struct TaskFactory_1_tAE919A7BAE255B9F6EF5F440E30D3AF6A9C9322E; // System.Threading.Tasks.TaskFactory`1> struct TaskFactory_1_t33023AA72DA5D4155ACB9DF7BD7465ABE4589718; // System.Threading.Tasks.TaskFactory`1> struct TaskFactory_1_tAC05D6D406D9ADEA2435D7C2A76B69CC6C6D56B2; // System.Threading.Tasks.TaskFactory`1> struct TaskFactory_1_t01F66E25A9E51E68DEBCF993CDB5F163B96834D4; // System.Threading.Tasks.TaskFactory`1 struct TaskFactory_1_tFAEAC22A1E986463E6956C344A78A7C7197288E0; // System.Threading.Tasks.TaskFactory`1 struct TaskFactory_1_t0BEF06D58E44525B9135AB0B22D016856EE69FF3; // System.Threading.Tasks.TaskFactory`1 struct TaskFactory_1_t6F188FE70F3006B0386002E392B799D85100732B; // System.Threading.Tasks.TaskFactory`1 struct TaskFactory_1_t4BEAD6CE2527DBE682C128CEAA0FF2A79483E96C; // System.Threading.Tasks.Task`1> struct Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7; // System.Threading.Tasks.Task`1> struct Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D; // System.Threading.Tasks.Task`1> struct Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C; // System.Threading.Tasks.Task`1> struct Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A; // System.Threading.Tasks.Task`1 struct Task_1_t824317F4B958F7512E8F7300511752937A6C6043; // System.Threading.Tasks.Task`1 struct Task_1_t4C228DE57804012969575431CFF12D57C875552D; // System.Threading.Tasks.Task`1 struct Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2; // System.Threading.Tasks.Task`1 struct Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17; // System.Collections.Generic.KeyValuePair`2[] struct KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67; // System.Collections.Concurrent.ConcurrentDictionary`2/Node[] struct NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76; // System.Collections.Concurrent.ConcurrentQueue`1/Segment/Slot[] struct SlotU5BU5D_t50AA161D0E0CA4901F88A99B082CD5FA953B023B; // Vuforia.Newtonsoft.Json.JsonWriter/State[][] struct StateU5BU5DU5BU5D_tAB13C3C958E3262183122570FD8B55EC69C8DE5D; // System.Byte[] struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031; // System.Char[] struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB; // System.Delegate[] struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771; // System.Collections.DictionaryEntry[] struct DictionaryEntryU5BU5D_t410156653E754D17B5E1161CC6CF565103B63533; // System.Runtime.CompilerServices.Ephemeron[] struct EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8; // System.Int32[] struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C; // System.IntPtr[] struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832; // System.Object[] struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918; // System.Diagnostics.StackTrace[] struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF; // UnityEngine.UIElements.StyleValueHandle[] struct StyleValueHandleU5BU5D_t66B7732469E9E30B1FB9A6E386315DAB36914ADE; // System.Type[] struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB; // System.Action struct Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07; // System.ArgumentException struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263; // System.ArgumentNullException struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129; // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F; // System.AsyncCallback struct AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C; // UnityEngine.EventSystems.BaseRaycaster struct BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832; // UnityEngine.UIElements.UIR.BestFitAllocator struct BestFitAllocator_t92B43D0CAA763D9109779450069EBB389A57ECC7; // System.Reflection.Binder struct Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235; // System.Byte struct Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3; // System.Collections.Concurrent.CDSCollectionETWBCLProvider struct CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999; // System.Threading.CancellationTokenSource struct CancellationTokenSource_tAAE1E0033BCFC233801F8CB4CED5C852B350CB7B; // System.Threading.ContextCallback struct ContextCallback_tE8AFBDBFCC040FDA8DA8C1EEFE9BD66B16BDA007; // System.Globalization.CultureInfo struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0; // System.Linq.Expressions.Interpreter.DebugInfo struct DebugInfo_t03C716886CE7E99C1662D1C236CCC2CC6F18A167; // System.Delegate struct Delegate_t; // System.DelegateData struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E; // System.IO.EnumerationOptions struct EnumerationOptions_t7C636684933367EC8E4B428073BF1FD4C5CDCA0B; // System.Diagnostics.Tracing.EventSource struct EventSource_tA86759A1E6F272632C299AAC181C0A67E5C52F25; // UnityEngine.UIElements.Focusable struct Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0; // UnityEngine.Font struct Font_tC95270EA3198038970422D78B74A7F2E218A96B6; // UnityEngine.TextCore.Text.FontAsset struct FontAsset_t61A6446D934E582651044E33D250EA8D306AB958; // UnityEngine.UIElements.UIR.GPUBufferAllocator struct GPUBufferAllocator_tF80B451375FD15F0C2A169E686269C5312DE9C48; // UnityEngine.GameObject struct GameObject_t76FEDD663AB33C991A9C9A23129337651094216F; // System.IAsyncResult struct IAsyncResult_t7B9B5A0ECB35DCEC31B8A8122C37D687369253B5; // System.Collections.ICollection struct ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E; // Vuforia.Newtonsoft.Json.Serialization.IContractResolver struct IContractResolver_t0A6FE70FA86867D85D84E098CD19E644BFA1FB1B; // System.Collections.IDictionary struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220; // System.Collections.IDictionaryEnumerator struct IDictionaryEnumerator_tE129D608FCDB7207E0F0ECE33473CC950A83AD16; // System.Collections.IEnumerator struct IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA; // System.Collections.IEqualityComparer struct IEqualityComparer_tEF8F1EC76B9C8E76695BE848D41E6B147928D1C1; // Vuforia.Newtonsoft.Json.Serialization.IReferenceResolver struct IReferenceResolver_t1F99D69E5BE5C75DECC4E8ABA2CBA97A9B7EB69E; // Vuforia.Newtonsoft.Json.Serialization.ITraceWriter struct ITraceWriter_t60897F9173171462425AE3F9FFC477D96513FDA3; // UnityEngine.UIElements.ITreeViewItem struct ITreeViewItem_t0C5908872EA2842688BFFB2055D5096EC1EA9EFC; // System.Linq.Expressions.Interpreter.Instruction struct Instruction_t7ED95EF62BBC5003D30C1CE0FF8B1D79105A8998; // Vuforia.Newtonsoft.Json.JsonConverter struct JsonConverter_t281011C5D2055E17B6C7985E53F532E4B9FA9B93; // Vuforia.Newtonsoft.Json.JsonConverterCollection struct JsonConverterCollection_tEFC555C4520928C645206DAC93D33704C6DFBF3E; // Vuforia.Newtonsoft.Json.JsonReader struct JsonReader_t11A049B304178F213051FD521F698A8BDA955951; // Vuforia.Newtonsoft.Json.JsonSerializationException struct JsonSerializationException_tE0D0E19E6F0A83C3C3185DB138DE8503C2F0DE50; // Vuforia.Newtonsoft.Json.JsonSerializer struct JsonSerializer_t8CB4C9125CF5193D5A4370FFF9E83C5B9367F027; // Vuforia.Newtonsoft.Json.JsonWriter struct JsonWriter_t0206AC5FFB5BE41B9CFEB1FB32856ED33860B5B5; // System.Collections.Generic.KeyNotFoundException struct KeyNotFoundException_tCE416EC9BCA9F396A3DFFF86D1B5209BA876079E; // System.Threading.Lock struct Lock_t529C04C831C120E5FFD6039EC3CB76F9956BCDD7; // System.Threading.ManualResetEvent struct ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158; // UnityEngine.Material struct Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3; // UnityEngine.MaterialPropertyBlock struct MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D; // System.Reflection.MemberFilter struct MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553; // UnityEngine.UIElements.UIR.MeshHandle struct MeshHandle_tC1E9A7ECCFDAEFDE064B8D58B35B9CEE5A70A22E; // System.Reflection.MethodInfo struct MethodInfo_t; // System.MonoTypeInfo struct MonoTypeInfo_t90D5999A69AC524474FDEAC50F55B6CE868AB501; // System.NotSupportedException struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A; // Vuforia.ObservationManager struct ObservationManager_t99938AFA7E9803564F4E20B3E0B9BB3B0C0E251C; // System.OutOfMemoryException struct OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F; // UnityEngine.UIElements.UIR.Page struct Page_tB4EA8095DF85BAF22AB8FCA71400121E721B57C9; // UnityEngine.UIElements.UIR.RenderChainCommand struct RenderChainCommand_t4F70E36AF4BC3645C8F9C822B7A3ACE9CB815727; // UnityEngine.RenderTexture struct RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27; // System.Reflection.RuntimeConstructorInfo struct RuntimeConstructorInfo_tB41E49C7CFA74A03CCC986E78ABB0C0BD331A5AE; // System.RuntimeType struct RuntimeType_tB1A69257E7A00D07AB0CABD8D5BA7D83E0DC9EC1; // System.Runtime.Serialization.SafeSerializationManager struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6; // System.Threading.SendOrPostCallback struct SendOrPostCallback_t5C292A12062F24027A98492F52ECFE9802AA6F0E; // Vuforia.Newtonsoft.Json.SerializationBinder struct SerializationBinder_t21A3FF8851CB13B01E860C61E3522FD567BD0422; // System.Threading.Tasks.StackGuard struct StackGuard_tACE063A1B7374BDF4AD472DE4585D05AD8745352; // System.String struct String_t; // UnityEngine.UIElements.StyleComplexSelector struct StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD; // UnityEngine.UIElements.StyleSheet struct StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428; // System.Threading.Tasks.Task struct Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572; // System.Threading.Tasks.TaskFactory struct TaskFactory_tF781BD37BE23917412AD83424D1497C7C1509DF0; // System.Threading.Tasks.TaskScheduler struct TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E; // UnityEngine.Texture struct Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700; // UnityEngine.Texture2D struct Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4; // System.Type struct Type_t; // UnityEngine.UIElements.UIR.UIRenderDevice struct UIRenderDevice_t59628CBA89B4617E832C2B270E1C1A3931D01302; // UnityEngine.Events.UnityAction struct UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7; // UnityEngine.UIElements.VisualElement struct VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115; // UnityEngine.UIElements.VisualTreeAsset struct VisualTreeAsset_tFB5BF81F0780A412AE5A7C2C552B3EEA64EA2EEB; // System.Void struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915; // Vuforia.VuEngine struct VuEngine_t1F34A373F1915ADEC0EF00456B2A186075AEB8F8; // System.Threading.Tasks.Task/ContingentProperties struct ContingentProperties_t3FA59480914505CEA917B1002EC675F29D0CB540; IL2CPP_EXTERN_C RuntimeClass* ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DictionaryEntryU5BU5D_t410156653E754D17B5E1161CC6CF565103B63533_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* GPUBufferAllocator_tF80B451375FD15F0C2A169E686269C5312DE9C48_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HashHelpers_t75606750E152DB8C7289EB4163D3A728ED1A601A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* JsonSerializationException_tE0D0E19E6F0A83C3C3185DB138DE8503C2F0DE50_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* KeyNotFoundException_tCE416EC9BCA9F396A3DFFF86D1B5209BA876079E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PlatformHelper_t5E497382616B62F0B318E53D098F90E22AB35722_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RuntimeType_tB1A69257E7A00D07AB0CABD8D5BA7D83E0DC9EC1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_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* Utility_t8BCC393462C6270211734BE47CF5350F05EC97AD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C String_t* _stringLiteral020F27A067D9C2A1BC9628BCE378DE63A6F2B5BE; IL2CPP_EXTERN_C String_t* _stringLiteral20D029102A70CD96274496928ED59E8B9C014BBA; IL2CPP_EXTERN_C String_t* _stringLiteral2AA2E732DB2949176A84E755559B51D778BADC01; IL2CPP_EXTERN_C String_t* _stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1; IL2CPP_EXTERN_C String_t* _stringLiteral4CC02BED909F9630E59013E4804C6C269FF8370A; IL2CPP_EXTERN_C String_t* _stringLiteral4D79FE877800EFAEC64F4900FFB67D3ADAF62C16; IL2CPP_EXTERN_C String_t* _stringLiteral561DA6E332E7EF45E52D96B07EC786D85C2955BE; IL2CPP_EXTERN_C String_t* _stringLiteral5B752FEA6C79E292F7975C9C7E92D2B4616F6B66; IL2CPP_EXTERN_C String_t* _stringLiteral672E993A9AD93822B712B165C6987759C6DED80B; IL2CPP_EXTERN_C String_t* _stringLiteral68445D6E030501243B18C07E57CF1AE5C1C5AAF2; IL2CPP_EXTERN_C String_t* _stringLiteral69520730213CDED741A5919BB83F6E4B8610EDBA; IL2CPP_EXTERN_C String_t* _stringLiteral73281EEC82D37C63F7B37551C86CE8D602A926A0; IL2CPP_EXTERN_C String_t* _stringLiteral78194BE0B7C513E141A80FB2A0AF3B3D5C7D9947; IL2CPP_EXTERN_C String_t* _stringLiteral8E3E292F86AACF17B735D4B90BCC2F77DC92C7ED; IL2CPP_EXTERN_C String_t* _stringLiteralA05D9DA01CB9AD0AA6BE899FE1E39018B72923DB; IL2CPP_EXTERN_C String_t* _stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED; IL2CPP_EXTERN_C String_t* _stringLiteralBE1D2E11D58177AC5AC7C4A993B5BE6408F97DAA; IL2CPP_EXTERN_C String_t* _stringLiteralBF10EFAF6473141D13A05C1B850DEF40E641A918; IL2CPP_EXTERN_C String_t* _stringLiteralC37D78082ACFC8DEE7B32D9351C6E433A074FEC7; IL2CPP_EXTERN_C String_t* _stringLiteralC38D57307791EED2AD28D35927B9E90B23E6281D; IL2CPP_EXTERN_C String_t* _stringLiteralC524653D78C03BE4033DDC43C45B67FFB841D141; IL2CPP_EXTERN_C String_t* _stringLiteralCE9C604469720D63E041FC7B3F7FF7D99A882AC2; IL2CPP_EXTERN_C String_t* _stringLiteralD0D86565E49BD212E7AC64BABD33BE3668A4C45B; IL2CPP_EXTERN_C String_t* _stringLiteralE59C400B29D20EE4CB5A86E1F46ED782D7872D43; IL2CPP_EXTERN_C String_t* _stringLiteralE7D028CCE3B6E7B61AE2C752D7AE970DA04AB7C6; IL2CPP_EXTERN_C String_t* _stringLiteralEC0CC039753090F0DDDF2727802FC6E1570B317B; IL2CPP_EXTERN_C String_t* _stringLiteralEDA0106FDFD942FADD2AA6A80843D70DD44B63FD; IL2CPP_EXTERN_C String_t* _stringLiteralEE87639B3A491E0E26BF98722E7EF266338FFC27; IL2CPP_EXTERN_C String_t* _stringLiteralEF68BB0CB45867DA95163C2C6A4B0677DCE80DCF; IL2CPP_EXTERN_C String_t* _stringLiteralFD8CE285C77CDFBCDCBA338A795AFF019E6C3B66; IL2CPP_EXTERN_C const RuntimeMethod* ConcurrentDictionary_2_GetKeys_m88788E15E6643C73CCEBECACE48FE70A95BE7F79_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConcurrentDictionary_2_GetOrAdd_mF8E3897F8089492DC23AF0FE945A15B5C2499B00_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConcurrentDictionary_2_GetValues_m3081AC59E79522BDBD904B8E83BD71AFCCB888F7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConcurrentDictionary_2_GrowTable_mA69966B4AFC2B973D73A66853B8821CBF7B6DE6E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConcurrentDictionary_2_InitializeFromCollection_m8A9AFB3C35AF03B0D953EF7F62D2419FCCEAA0A6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConcurrentDictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_CopyTo_m4658D0F58A61259A38610FE6FC534CDBEC1AE595_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConcurrentDictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Remove_m86EB252EDB136EC13D587695AB17BB95466A5542_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConcurrentDictionary_2_System_Collections_Generic_IDictionaryU3CTKeyU2CTValueU3E_Add_mF6976F8BCC6D517DCF6845A41E36CD5977CC77BB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConcurrentDictionary_2_System_Collections_ICollection_CopyTo_mD08000596CB07898AF7DCA2F3D0231E6E0B6C6B9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConcurrentDictionary_2_System_Collections_ICollection_get_SyncRoot_mAB551351AC68DED87F1C8197711B2C8EDACEE5F3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConcurrentDictionary_2_System_Collections_IDictionary_Add_mF8F580AEFE3D857A7A3C666FFFA4A536B398420B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConcurrentDictionary_2_System_Collections_IDictionary_set_Item_m813D47ADE3220DED5ABFAC54D8D035A8789E8D90_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConcurrentDictionary_2_ThrowKeyNotFoundException_m41CDF9614DAC667AD5F3C68C636E604D33ACADD3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConcurrentDictionary_2_ThrowKeyNullException_mA90E56C9639741D910798981D5291A2CEBD035C6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConcurrentDictionary_2_ToArray_m3BBAB4587582F5F1337AC5B47138B233DCE05611_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConcurrentDictionary_2_TryAddInternal_m62921F1BBA26758C8E118413653422214D054B05_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConcurrentDictionary_2__ctor_m6E7D16F028BFD7FF1F86EC8CA87B54BA90D2B00E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConcurrentQueue_1_CopyTo_m8A2CD5FB0B29389CAE0ED09D48C7C40C3FE47E47_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConcurrentQueue_1_System_Collections_ICollection_CopyTo_mF396233EA6DB5C1221692BAF17C7596C5D584C78_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConcurrentQueue_1_System_Collections_ICollection_get_SyncRoot_m9BB8BC1A86611604D47917EB44A62F04A676B929_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConcurrentQueue_1_ToArray_mE05BD160E613A2B36E3002F87461F4A38B126AFC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConditionalWeakTable_2_Add_mA45BB747BEE445F5A6D5ABC32B2070CAF5E9BE44_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConditionalWeakTable_2_GetValue_mD02297B46B37D3AF2884B5BD1B6A74C563F0DC42_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConditionalWeakTable_2_Remove_m51E45FAFE5B1D6E9FDA123477422367F1F215DE6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConditionalWeakTable_2_TryGetValue_mA6697354DA1D2A76999FFDCC072C62AC5C364124_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CustomCreationConverter_1_ReadJson_mEBDD2ABC5A1D64BE91F994930C05F89B9040D070_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CustomCreationConverter_1_WriteJson_m52EDD3D270BF80C640848E94A49E2D79A3273A66_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CustomStyleProperty_1__ctor_m035465C266768DF00BD13A4CF49C2FE31A599929_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CustomStyleProperty_1__ctor_m8937D5A8F5F6402CB74D27C77E80BD629E757126_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CustomStyleProperty_1__ctor_mA325D95E8AD8AC0AF58A16CBD6763CA32BC435E4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CustomStyleProperty_1__ctor_mEE25B55510091D4D0F2DE7ECD847051717703E0B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_Dispose_mBDFD0A598E3BCF0C5A482451C0DB4619551B55B8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1__ctor_m3C1FB8EE51A4B3B0EE5CB1F29769E3E4DEC248E3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* NativeSliceExtensions_Slice_TisGfxUpdateBufferRange_tC47258BCB472B0727B4FCE21A2A53506644C1A97_mE58DA46937ED525E851BE00D06C2B13B7EE51424_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeType* GenericComparer_1_tADECA8D55B3F132A735E752892B0224B9BF48588_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* IComparable_1_tDF3C054B1D1B2CEE8F9084D2CCCDFB5F22C624E6_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* NullableComparer_1_t1CE3558ABA90E10B2EB5A52546552DAA3EF40275_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Nullable_1_tCC12E6AC31BF7E862A033EBEFF48D5000D6291E6_0_0_0_var; struct Delegate_t_marshaled_com; struct Delegate_t_marshaled_pinvoke; struct Exception_t_marshaled_com; struct Exception_t_marshaled_pinvoke; struct StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D; struct KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67; struct NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76; struct SlotU5BU5D_t50AA161D0E0CA4901F88A99B082CD5FA953B023B; struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771; struct DictionaryEntryU5BU5D_t410156653E754D17B5E1161CC6CF565103B63533; struct EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8; struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C; struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918; struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB; IL2CPP_EXTERN_C_BEGIN IL2CPP_EXTERN_C_END #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Concurrent.ConcurrentQueue`1/d__28 struct U3CEnumerateU3Ed__28_t0208D88B19E67F3B47A3ACACCAF0810D4DA5D4AE : public RuntimeObject { // System.Int32 System.Collections.Concurrent.ConcurrentQueue`1/d__28::<>1__state int32_t ___U3CU3E1__state_0; // T System.Collections.Concurrent.ConcurrentQueue`1/d__28::<>2__current RuntimeObject* ___U3CU3E2__current_1; // System.Collections.Concurrent.ConcurrentQueue`1/Segment System.Collections.Concurrent.ConcurrentQueue`1/d__28::head Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* ___head_2; // System.Collections.Concurrent.ConcurrentQueue`1/Segment System.Collections.Concurrent.ConcurrentQueue`1/d__28::tail Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* ___tail_3; // System.Int32 System.Collections.Concurrent.ConcurrentQueue`1/d__28::tailTail int32_t ___tailTail_4; // System.Int32 System.Collections.Concurrent.ConcurrentQueue`1/d__28::headHead int32_t ___headHead_5; // System.Collections.Concurrent.ConcurrentQueue`1 System.Collections.Concurrent.ConcurrentQueue`1/d__28::<>4__this ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4* ___U3CU3E4__this_6; // System.Int32 System.Collections.Concurrent.ConcurrentQueue`1/d__28::5__2 int32_t ___U3CheadTailU3E5__2_7; // System.Int32 System.Collections.Concurrent.ConcurrentQueue`1/d__28::5__3 int32_t ___U3CiU3E5__3_8; // System.Collections.Concurrent.ConcurrentQueue`1/Segment System.Collections.Concurrent.ConcurrentQueue`1/d__28::5__4 Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* ___U3CsU3E5__4_9; // System.Int32 System.Collections.Concurrent.ConcurrentQueue`1/d__28::5__5 int32_t ___U3CiU3E5__5_10; }; // System.Collections.Generic.Comparer`1 struct Comparer_1_t8BF4D32ADB431AB730ACD5DB97EADCA2F0E17132 : public RuntimeObject { }; // System.Collections.Generic.Comparer`1 struct Comparer_1_t01D0D35DA07FC84ED9D2F1F36BA10C77FC63589C : public RuntimeObject { }; // System.Collections.Generic.Comparer`1 struct Comparer_1_tD39CE7A8427C46E74A923BDBFA86E728BC6C59C2 : public RuntimeObject { }; // System.Collections.Generic.Comparer`1 struct Comparer_1_t01F4A3B9CE9BCD8190DF5C60B662F230A074DAD9 : public RuntimeObject { }; // System.Collections.Generic.Comparer`1 struct Comparer_1_tBA6FFE9E1286DCF5C92ED128C9DCCA5E53D8C7B0 : public RuntimeObject { }; // System.Collections.Generic.Comparer`1 struct Comparer_1_tA9689DB6D41BF8CF24D9CB338D0A979B0333D254 : public RuntimeObject { }; // System.Collections.Generic.Comparer`1 struct Comparer_1_t2BCE85BA0C209F373051977D35D1BAB62611194A : public RuntimeObject { }; // System.Collections.Generic.Comparer`1 struct Comparer_1_t54046A0071F349E7F1D6EA6D46C3DA1DAAD64A99 : public RuntimeObject { }; // System.Collections.Generic.Comparer`1 struct Comparer_1_tF6D449CECF505A134DA65FC83EDAA3EB70D7F1C8 : public RuntimeObject { }; // System.Collections.Generic.Comparer`1 struct Comparer_1_tDBA2459B2A7F6FE73078B1B8CF203E27A2BB8C8B : public RuntimeObject { }; // System.Collections.Generic.Comparer`1 struct Comparer_1_tCB3D33B877298F17367ADCFE1A026A4A4A2B5385 : public RuntimeObject { }; // System.Collections.Generic.Comparer`1 struct Comparer_1_t2A5B4DEA38F68D1F1BBA6690C544910C4B6CD1F4 : public RuntimeObject { }; // System.Collections.Generic.Comparer`1 struct Comparer_1_tA15AE14FF305091BC51D5BDBFA373EC002DEDF7A : public RuntimeObject { }; // System.Collections.Concurrent.ConcurrentDictionary`2 struct ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF : public RuntimeObject { // System.Collections.Concurrent.ConcurrentDictionary`2/Tables modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Concurrent.ConcurrentDictionary`2::_tables Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* ____tables_0; // System.Collections.Generic.IEqualityComparer`1 System.Collections.Concurrent.ConcurrentDictionary`2::_comparer RuntimeObject* ____comparer_1; // System.Boolean System.Collections.Concurrent.ConcurrentDictionary`2::_growLockArray bool ____growLockArray_2; // System.Int32 System.Collections.Concurrent.ConcurrentDictionary`2::_budget int32_t ____budget_3; // System.Collections.Generic.KeyValuePair`2[] System.Collections.Concurrent.ConcurrentDictionary`2::_serializationArray KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67* ____serializationArray_4; // System.Int32 System.Collections.Concurrent.ConcurrentDictionary`2::_serializationConcurrencyLevel int32_t ____serializationConcurrencyLevel_5; // System.Int32 System.Collections.Concurrent.ConcurrentDictionary`2::_serializationCapacity int32_t ____serializationCapacity_6; }; // System.Collections.Concurrent.ConcurrentQueue`1 struct ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4 : public RuntimeObject { // System.Object System.Collections.Concurrent.ConcurrentQueue`1::_crossSegmentLock RuntimeObject* ____crossSegmentLock_0; // System.Collections.Concurrent.ConcurrentQueue`1/Segment modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Concurrent.ConcurrentQueue`1::_tail Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* ____tail_1; // System.Collections.Concurrent.ConcurrentQueue`1/Segment modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Concurrent.ConcurrentQueue`1::_head Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* ____head_2; }; // System.Runtime.CompilerServices.ConditionalWeakTable`2 struct ConditionalWeakTable_2_t87BE12792DC61EC9AE17609EC1ACA0671B3F5605 : public RuntimeObject { // System.Runtime.CompilerServices.Ephemeron[] System.Runtime.CompilerServices.ConditionalWeakTable`2::data EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8* ___data_4; // System.Object System.Runtime.CompilerServices.ConditionalWeakTable`2::_lock RuntimeObject* ____lock_5; // System.Int32 System.Runtime.CompilerServices.ConditionalWeakTable`2::size int32_t ___size_6; }; // System.Collections.Generic.LowLevelDictionary`2/DefaultComparer`1 struct DefaultComparer_1_tF1F3B8981298E50FBC17BDC8CA0B4CFE867AD644 : public RuntimeObject { }; // System.Collections.Generic.LowLevelDictionary`2/DefaultComparer`1 struct DefaultComparer_1_tECD232FD46741EA2BFABC44EA55035C4C90438CE : public RuntimeObject { }; // System.Collections.Concurrent.ConcurrentDictionary`2/DictionaryEnumerator struct DictionaryEnumerator_tBF822449C5FD8462D9DB8BF961E29F69C2F913A9 : public RuntimeObject { // System.Collections.Generic.IEnumerator`1> System.Collections.Concurrent.ConcurrentDictionary`2/DictionaryEnumerator::_enumerator RuntimeObject* ____enumerator_0; }; // System.Collections.Generic.EqualityComparer`1 struct EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2 : public RuntimeObject { }; // System.IO.Enumeration.FileSystemEnumerable`1 struct FileSystemEnumerable_1_t6CDB6C3CCEAAD4602A46A2EA5211E12D2DB57B94 : public RuntimeObject { // System.IO.Enumeration.FileSystemEnumerable`1/DelegateEnumerator System.IO.Enumeration.FileSystemEnumerable`1::_enumerator DelegateEnumerator_t03CC726F1198053E252AFEE23D3871C1435B4970* ____enumerator_0; // System.IO.Enumeration.FileSystemEnumerable`1/FindTransform System.IO.Enumeration.FileSystemEnumerable`1::_transform FindTransform_tC499583A33189BE267A9A28ED61DB4DE63B28851* ____transform_1; // System.IO.EnumerationOptions System.IO.Enumeration.FileSystemEnumerable`1::_options EnumerationOptions_t7C636684933367EC8E4B428073BF1FD4C5CDCA0B* ____options_2; // System.String System.IO.Enumeration.FileSystemEnumerable`1::_directory String_t* ____directory_3; // System.IO.Enumeration.FileSystemEnumerable`1/FindPredicate System.IO.Enumeration.FileSystemEnumerable`1::k__BackingField FindPredicate_tD904DBA38C8844BD03538991F629C55781F3000D* ___U3CShouldIncludePredicateU3Ek__BackingField_4; // System.IO.Enumeration.FileSystemEnumerable`1/FindPredicate System.IO.Enumeration.FileSystemEnumerable`1::k__BackingField FindPredicate_tD904DBA38C8844BD03538991F629C55781F3000D* ___U3CShouldRecursePredicateU3Ek__BackingField_5; }; // System.Collections.Generic.List`1 struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D : public RuntimeObject { // T[] System.Collections.Generic.List`1::_items ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject* ____syncRoot_4; }; // System.Collections.Concurrent.ConcurrentDictionary`2/Node struct Node_t821211F0535E80E80FDC8FFB600F681E98286BF0 : public RuntimeObject { // TKey System.Collections.Concurrent.ConcurrentDictionary`2/Node::_key RuntimeObject* ____key_0; // TValue System.Collections.Concurrent.ConcurrentDictionary`2/Node::_value RuntimeObject* ____value_1; // System.Collections.Concurrent.ConcurrentDictionary`2/Node modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Concurrent.ConcurrentDictionary`2/Node::_next Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* ____next_2; // System.Int32 System.Collections.Concurrent.ConcurrentDictionary`2/Node::_hashcode int32_t ____hashcode_3; }; // System.Collections.ObjectModel.ReadOnlyCollection`1 struct ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92 : public RuntimeObject { // System.Collections.Generic.IList`1 System.Collections.ObjectModel.ReadOnlyCollection`1::list RuntimeObject* ___list_0; // System.Object System.Collections.ObjectModel.ReadOnlyCollection`1::_syncRoot RuntimeObject* ____syncRoot_1; }; // System.Collections.Concurrent.ConcurrentDictionary`2/Tables struct Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6 : public RuntimeObject { // System.Collections.Concurrent.ConcurrentDictionary`2/Node[] System.Collections.Concurrent.ConcurrentDictionary`2/Tables::_buckets NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* ____buckets_0; // System.Object[] System.Collections.Concurrent.ConcurrentDictionary`2/Tables::_locks ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____locks_1; // System.Int32[] modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Concurrent.ConcurrentDictionary`2/Tables::_countPerLock Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____countPerLock_2; }; // System.Runtime.ConstrainedExecution.CriticalFinalizerObject struct CriticalFinalizerObject_t1DCAB623CAEA6529A96F5F3EDE3C7048A6E313C9 : public RuntimeObject { }; // System.IO.EnumerationOptions struct EnumerationOptions_t7C636684933367EC8E4B428073BF1FD4C5CDCA0B : public RuntimeObject { // System.Boolean System.IO.EnumerationOptions::k__BackingField bool ___U3CRecurseSubdirectoriesU3Ek__BackingField_3; // System.Boolean System.IO.EnumerationOptions::k__BackingField bool ___U3CIgnoreInaccessibleU3Ek__BackingField_4; // System.IO.FileAttributes System.IO.EnumerationOptions::k__BackingField int32_t ___U3CAttributesToSkipU3Ek__BackingField_5; // System.IO.MatchType System.IO.EnumerationOptions::k__BackingField int32_t ___U3CMatchTypeU3Ek__BackingField_6; // System.IO.MatchCasing System.IO.EnumerationOptions::k__BackingField int32_t ___U3CMatchCasingU3Ek__BackingField_7; // System.Boolean System.IO.EnumerationOptions::k__BackingField bool ___U3CReturnSpecialDirectoriesU3Ek__BackingField_8; }; // System.Diagnostics.Tracing.EventSource struct EventSource_tA86759A1E6F272632C299AAC181C0A67E5C52F25 : public RuntimeObject { // System.String System.Diagnostics.Tracing.EventSource::k__BackingField String_t* ___U3CNameU3Ek__BackingField_0; }; // System.GC struct GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58 : public RuntimeObject { }; // UnityEngine.UIElements.UIR.GPUBufferAllocator struct GPUBufferAllocator_tF80B451375FD15F0C2A169E686269C5312DE9C48 : public RuntimeObject { // UnityEngine.UIElements.UIR.BestFitAllocator UnityEngine.UIElements.UIR.GPUBufferAllocator::m_Low BestFitAllocator_t92B43D0CAA763D9109779450069EBB389A57ECC7* ___m_Low_0; // UnityEngine.UIElements.UIR.BestFitAllocator UnityEngine.UIElements.UIR.GPUBufferAllocator::m_High BestFitAllocator_t92B43D0CAA763D9109779450069EBB389A57ECC7* ___m_High_1; }; // Vuforia.Newtonsoft.Json.JsonConverter struct JsonConverter_t281011C5D2055E17B6C7985E53F532E4B9FA9B93 : public RuntimeObject { }; // System.Reflection.MemberInfo struct MemberInfo_t : public RuntimeObject { }; // System.String struct String_t : public RuntimeObject { // System.Int32 System.String::_stringLength int32_t ____stringLength_4; // System.Char System.String::_firstChar Il2CppChar ____firstChar_5; }; // System.Threading.Tasks.Task struct Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572 : public RuntimeObject { // System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_taskId int32_t ___m_taskId_1; // System.Delegate System.Threading.Tasks.Task::m_action Delegate_t* ___m_action_2; // System.Object System.Threading.Tasks.Task::m_stateObject RuntimeObject* ___m_stateObject_3; // System.Threading.Tasks.TaskScheduler System.Threading.Tasks.Task::m_taskScheduler TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E* ___m_taskScheduler_4; // System.Threading.Tasks.Task System.Threading.Tasks.Task::m_parent Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___m_parent_5; // System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_stateFlags int32_t ___m_stateFlags_6; // System.Object modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_continuationObject RuntimeObject* ___m_continuationObject_23; // System.Threading.Tasks.Task/ContingentProperties modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_contingentProperties ContingentProperties_t3FA59480914505CEA917B1002EC675F29D0CB540* ___m_contingentProperties_26; }; // System.Threading.Tasks.TaskScheduler struct TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E : public RuntimeObject { // System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.TaskScheduler::m_taskSchedulerId int32_t ___m_taskSchedulerId_3; }; // System.ValueType struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject { }; // Native definition for P/Invoke marshalling of System.ValueType struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke { }; // Native definition for COM marshalling of System.ValueType struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com { }; // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter> struct ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5 { // System.Threading.Tasks.Task`1 System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_task Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7* ___m_task_0; // System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_continueOnCapturedContext bool ___m_continueOnCapturedContext_1; }; // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter> struct ConfiguredTaskAwaiter_tF9E09AAA624DFAC26E447FFC011F497039500719 { // System.Threading.Tasks.Task`1 System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_task Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D* ___m_task_0; // System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_continueOnCapturedContext bool ___m_continueOnCapturedContext_1; }; // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter> struct ConfiguredTaskAwaiter_t5086CFED8E3AFAC65C9ADB222B7B4B568693FCB9 { // System.Threading.Tasks.Task`1 System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_task Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C* ___m_task_0; // System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_continueOnCapturedContext bool ___m_continueOnCapturedContext_1; }; // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter> struct ConfiguredTaskAwaiter_tA4E12A0D799D1D2599D99BCE685DD94CBB7119FC { // System.Threading.Tasks.Task`1 System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_task Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A* ___m_task_0; // System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_continueOnCapturedContext bool ___m_continueOnCapturedContext_1; }; // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter struct ConfiguredTaskAwaiter_tADFEF9AE6CB4E22E17B1DFA386EE3D86DB8955E4 { // System.Threading.Tasks.Task`1 System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_task Task_1_t824317F4B958F7512E8F7300511752937A6C6043* ___m_task_0; // System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_continueOnCapturedContext bool ___m_continueOnCapturedContext_1; }; // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter struct ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80 { // System.Threading.Tasks.Task`1 System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_task Task_1_t4C228DE57804012969575431CFF12D57C875552D* ___m_task_0; // System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_continueOnCapturedContext bool ___m_continueOnCapturedContext_1; }; // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter struct ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2 { // System.Threading.Tasks.Task`1 System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_task Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___m_task_0; // System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_continueOnCapturedContext bool ___m_continueOnCapturedContext_1; }; // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter struct ConfiguredTaskAwaiter_t10F0057B7F31913C37CBB3E2900A547A6C29CD6A { // System.Threading.Tasks.Task`1 System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_task Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* ___m_task_0; // System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_continueOnCapturedContext bool ___m_continueOnCapturedContext_1; }; // System.Threading.Tasks.ContinuationTaskFromResultTask`1> struct ContinuationTaskFromResultTask_1_t21D717C4A94ED8DF069846D2343999C1C95F9849 : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572 { // System.Threading.Tasks.Task`1 System.Threading.Tasks.ContinuationTaskFromResultTask`1::m_antecedent Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7* ___m_antecedent_38; }; // System.Threading.Tasks.ContinuationTaskFromResultTask`1> struct ContinuationTaskFromResultTask_1_tC87576577E47D9155E48550F3FF98B7BE4578ABF : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572 { // System.Threading.Tasks.Task`1 System.Threading.Tasks.ContinuationTaskFromResultTask`1::m_antecedent Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D* ___m_antecedent_38; }; // System.Threading.Tasks.ContinuationTaskFromResultTask`1> struct ContinuationTaskFromResultTask_1_t9E3D090DA14C151A2E9ADE43FB29EC11D4FAF37E : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572 { // System.Threading.Tasks.Task`1 System.Threading.Tasks.ContinuationTaskFromResultTask`1::m_antecedent Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C* ___m_antecedent_38; }; // System.Threading.Tasks.ContinuationTaskFromResultTask`1> struct ContinuationTaskFromResultTask_1_t5B4CE099E4FA2F6075C238E32EDA472394DF8366 : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572 { // System.Threading.Tasks.Task`1 System.Threading.Tasks.ContinuationTaskFromResultTask`1::m_antecedent Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A* ___m_antecedent_38; }; // System.Threading.Tasks.ContinuationTaskFromResultTask`1 struct ContinuationTaskFromResultTask_1_tAE0D398C6A55EAAA6B98F6A654178EB8C7FAEC39 : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572 { // System.Threading.Tasks.Task`1 System.Threading.Tasks.ContinuationTaskFromResultTask`1::m_antecedent Task_1_t824317F4B958F7512E8F7300511752937A6C6043* ___m_antecedent_38; }; // System.Threading.Tasks.ContinuationTaskFromResultTask`1 struct ContinuationTaskFromResultTask_1_t3ED26B5DC64622CAD8CCE4544E6F7CE63023AA96 : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572 { // System.Threading.Tasks.Task`1 System.Threading.Tasks.ContinuationTaskFromResultTask`1::m_antecedent Task_1_t4C228DE57804012969575431CFF12D57C875552D* ___m_antecedent_38; }; // System.Threading.Tasks.ContinuationTaskFromResultTask`1 struct ContinuationTaskFromResultTask_1_t0D3B0C43A4B7C9E5D99AAFE95D96D4C2C83096EC : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572 { // System.Threading.Tasks.Task`1 System.Threading.Tasks.ContinuationTaskFromResultTask`1::m_antecedent Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___m_antecedent_38; }; // System.Threading.Tasks.ContinuationTaskFromResultTask`1 struct ContinuationTaskFromResultTask_1_t0A8FDEA74F016A246D22E5545F9D6EA6503B4D52 : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572 { // System.Threading.Tasks.Task`1 System.Threading.Tasks.ContinuationTaskFromResultTask`1::m_antecedent Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* ___m_antecedent_38; }; // Vuforia.Newtonsoft.Json.Converters.CustomCreationConverter`1 struct CustomCreationConverter_1_t4C1422769FC4AE644BFD992E3BBAE16062A03429 : public JsonConverter_t281011C5D2055E17B6C7985E53F532E4B9FA9B93 { }; // UnityEngine.UIElements.CustomStyleProperty`1 struct CustomStyleProperty_1_tE4B20CAB5BCFEE711EB4A26F077DC700987C0C2D { // System.String UnityEngine.UIElements.CustomStyleProperty`1::k__BackingField String_t* ___U3CnameU3Ek__BackingField_0; }; // Native definition for P/Invoke marshalling of UnityEngine.UIElements.CustomStyleProperty`1 #ifndef CustomStyleProperty_1_t8315EF5D1C5F5FB5F920B77E40695C07DAAB349A_marshaled_pinvoke_define #define CustomStyleProperty_1_t8315EF5D1C5F5FB5F920B77E40695C07DAAB349A_marshaled_pinvoke_define struct CustomStyleProperty_1_t8315EF5D1C5F5FB5F920B77E40695C07DAAB349A_marshaled_pinvoke { char* ___U3CnameU3Ek__BackingField_0; }; #endif // Native definition for COM marshalling of UnityEngine.UIElements.CustomStyleProperty`1 #ifndef CustomStyleProperty_1_t8315EF5D1C5F5FB5F920B77E40695C07DAAB349A_marshaled_com_define #define CustomStyleProperty_1_t8315EF5D1C5F5FB5F920B77E40695C07DAAB349A_marshaled_com_define struct CustomStyleProperty_1_t8315EF5D1C5F5FB5F920B77E40695C07DAAB349A_marshaled_com { Il2CppChar* ___U3CnameU3Ek__BackingField_0; }; #endif // UnityEngine.UIElements.CustomStyleProperty`1 struct CustomStyleProperty_1_t6871E5DBF19AB4DC7E1134B32A03B7A458D52E9F { // System.String UnityEngine.UIElements.CustomStyleProperty`1::k__BackingField String_t* ___U3CnameU3Ek__BackingField_0; }; // Native definition for P/Invoke marshalling of UnityEngine.UIElements.CustomStyleProperty`1 #ifndef CustomStyleProperty_1_t8315EF5D1C5F5FB5F920B77E40695C07DAAB349A_marshaled_pinvoke_define #define CustomStyleProperty_1_t8315EF5D1C5F5FB5F920B77E40695C07DAAB349A_marshaled_pinvoke_define struct CustomStyleProperty_1_t8315EF5D1C5F5FB5F920B77E40695C07DAAB349A_marshaled_pinvoke { char* ___U3CnameU3Ek__BackingField_0; }; #endif // Native definition for COM marshalling of UnityEngine.UIElements.CustomStyleProperty`1 #ifndef CustomStyleProperty_1_t8315EF5D1C5F5FB5F920B77E40695C07DAAB349A_marshaled_com_define #define CustomStyleProperty_1_t8315EF5D1C5F5FB5F920B77E40695C07DAAB349A_marshaled_com_define struct CustomStyleProperty_1_t8315EF5D1C5F5FB5F920B77E40695C07DAAB349A_marshaled_com { Il2CppChar* ___U3CnameU3Ek__BackingField_0; }; #endif // UnityEngine.UIElements.CustomStyleProperty`1 struct CustomStyleProperty_1_t697913D630F101B4E464B7E9EA06368015C9C266 { // System.String UnityEngine.UIElements.CustomStyleProperty`1::k__BackingField String_t* ___U3CnameU3Ek__BackingField_0; }; // Native definition for P/Invoke marshalling of UnityEngine.UIElements.CustomStyleProperty`1 #ifndef CustomStyleProperty_1_t8315EF5D1C5F5FB5F920B77E40695C07DAAB349A_marshaled_pinvoke_define #define CustomStyleProperty_1_t8315EF5D1C5F5FB5F920B77E40695C07DAAB349A_marshaled_pinvoke_define struct CustomStyleProperty_1_t8315EF5D1C5F5FB5F920B77E40695C07DAAB349A_marshaled_pinvoke { char* ___U3CnameU3Ek__BackingField_0; }; #endif // Native definition for COM marshalling of UnityEngine.UIElements.CustomStyleProperty`1 #ifndef CustomStyleProperty_1_t8315EF5D1C5F5FB5F920B77E40695C07DAAB349A_marshaled_com_define #define CustomStyleProperty_1_t8315EF5D1C5F5FB5F920B77E40695C07DAAB349A_marshaled_com_define struct CustomStyleProperty_1_t8315EF5D1C5F5FB5F920B77E40695C07DAAB349A_marshaled_com { Il2CppChar* ___U3CnameU3Ek__BackingField_0; }; #endif // UnityEngine.UIElements.CustomStyleProperty`1 struct CustomStyleProperty_1_t21332918528099194FD36C74FF0FA14696F39493 { // System.String UnityEngine.UIElements.CustomStyleProperty`1::k__BackingField String_t* ___U3CnameU3Ek__BackingField_0; }; // Native definition for P/Invoke marshalling of UnityEngine.UIElements.CustomStyleProperty`1 #ifndef CustomStyleProperty_1_t8315EF5D1C5F5FB5F920B77E40695C07DAAB349A_marshaled_pinvoke_define #define CustomStyleProperty_1_t8315EF5D1C5F5FB5F920B77E40695C07DAAB349A_marshaled_pinvoke_define struct CustomStyleProperty_1_t8315EF5D1C5F5FB5F920B77E40695C07DAAB349A_marshaled_pinvoke { char* ___U3CnameU3Ek__BackingField_0; }; #endif // Native definition for COM marshalling of UnityEngine.UIElements.CustomStyleProperty`1 #ifndef CustomStyleProperty_1_t8315EF5D1C5F5FB5F920B77E40695C07DAAB349A_marshaled_com_define #define CustomStyleProperty_1_t8315EF5D1C5F5FB5F920B77E40695C07DAAB349A_marshaled_com_define struct CustomStyleProperty_1_t8315EF5D1C5F5FB5F920B77E40695C07DAAB349A_marshaled_com { Il2CppChar* ___U3CnameU3Ek__BackingField_0; }; #endif // System.Collections.Generic.KeyValuePair`2 struct KeyValuePair_2_tDC26B09C26BA829DDE331BCB6AF7C508C763D7A3 { // TKey System.Collections.Generic.KeyValuePair`2::key int32_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value RuntimeObject* ___value_1; }; // System.Collections.Generic.KeyValuePair`2 struct KeyValuePair_2_t7E5E41B933054DBF6F52C6CDF0BC2CB4B1606423 { // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject* ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value bool ___value_1; }; // System.Collections.Generic.KeyValuePair`2 struct KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 { // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject* ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value RuntimeObject* ___value_1; }; // Unity.Collections.NativeArray`1 struct NativeArray_1_t7879B53B71098A407257E3AB6EF30AC53C41005E { // System.Void* Unity.Collections.NativeArray`1::m_Buffer void* ___m_Buffer_0; // System.Int32 Unity.Collections.NativeArray`1::m_Length int32_t ___m_Length_1; // Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel int32_t ___m_AllocatorLabel_2; }; // Unity.Collections.NativeArray`1 struct NativeArray_1_t275C00CC374DEA66C69B3BB3992116F315A8E934 { // System.Void* Unity.Collections.NativeArray`1::m_Buffer void* ___m_Buffer_0; // System.Int32 Unity.Collections.NativeArray`1::m_Length int32_t ___m_Length_1; // Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel int32_t ___m_AllocatorLabel_2; }; // Unity.Collections.NativeArray`1 struct NativeArray_1_tB60512C6E4578B7CC8EB79321680E495E69ABF81 { // System.Void* Unity.Collections.NativeArray`1::m_Buffer void* ___m_Buffer_0; // System.Int32 Unity.Collections.NativeArray`1::m_Length int32_t ___m_Length_1; // Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel int32_t ___m_AllocatorLabel_2; }; // Unity.Collections.NativeSlice`1 struct NativeSlice_1_t379B1F960D4300C8AF09D1DF600888266C633C14 { // System.Byte* Unity.Collections.NativeSlice`1::m_Buffer uint8_t* ___m_Buffer_0; // System.Int32 Unity.Collections.NativeSlice`1::m_Stride int32_t ___m_Stride_1; // System.Int32 Unity.Collections.NativeSlice`1::m_Length int32_t ___m_Length_2; }; // Unity.Collections.NativeSlice`1 struct NativeSlice_1_t8229A12E65C90A3900340F6E126089DB5696D370 { // System.Byte* Unity.Collections.NativeSlice`1::m_Buffer uint8_t* ___m_Buffer_0; // System.Int32 Unity.Collections.NativeSlice`1::m_Stride int32_t ___m_Stride_1; // System.Int32 Unity.Collections.NativeSlice`1::m_Length int32_t ___m_Length_2; }; // Unity.Collections.NativeSlice`1 struct NativeSlice_1_t0D1A1AB7A9C4768B84EB7420D04A90920533C78A { // System.Byte* Unity.Collections.NativeSlice`1::m_Buffer uint8_t* ___m_Buffer_0; // System.Int32 Unity.Collections.NativeSlice`1::m_Stride int32_t ___m_Stride_1; // System.Int32 Unity.Collections.NativeSlice`1::m_Length int32_t ___m_Length_2; }; // Unity.Collections.NativeSlice`1 struct NativeSlice_1_tA687F314957178F2A299D03D59B960DDC218680F { // System.Byte* Unity.Collections.NativeSlice`1::m_Buffer uint8_t* ___m_Buffer_0; // System.Int32 Unity.Collections.NativeSlice`1::m_Stride int32_t ___m_Stride_1; // System.Int32 Unity.Collections.NativeSlice`1::m_Length int32_t ___m_Length_2; }; // Unity.Collections.NativeSlice`1 struct NativeSlice_1_t66375568C4FF313931F4D2F646D64FE6A406BAD2 { // System.Byte* Unity.Collections.NativeSlice`1::m_Buffer uint8_t* ___m_Buffer_0; // System.Int32 Unity.Collections.NativeSlice`1::m_Stride int32_t ___m_Stride_1; // System.Int32 Unity.Collections.NativeSlice`1::m_Length int32_t ___m_Length_2; }; // System.Nullable`1 struct Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 { // System.Boolean System.Nullable`1::hasValue bool ___hasValue_0; // T System.Nullable`1::value bool ___value_1; }; // System.Nullable`1 struct Nullable_1_tD02042EDFC5A0B9C9196A6BB39550F063C38E1C2 { // System.Boolean System.Nullable`1::hasValue bool ___hasValue_0; // T System.Nullable`1::value int32_t ___value_1; }; // System.Nullable`1 struct Nullable_1_t5A616A16104FE04152CF57F9D2BEFC97823EEB1C { // System.Boolean System.Nullable`1::hasValue bool ___hasValue_0; // T System.Nullable`1::value int32_t ___value_1; }; // System.Nullable`1 struct Nullable_1_tFDF0DDE508D07E4FE8D4DF029E09B383E1A7194C { // System.Boolean System.Nullable`1::hasValue bool ___hasValue_0; // T System.Nullable`1::value int32_t ___value_1; }; // System.Nullable`1 struct Nullable_1_tD60535A1AFF8BC2B5223E33667DEED197B983014 { // System.Boolean System.Nullable`1::hasValue bool ___hasValue_0; // T System.Nullable`1::value int32_t ___value_1; }; // System.Nullable`1 struct Nullable_1_t6271350A1E87445EC3ECFDE5AC3E0A36D23DC7C8 { // System.Boolean System.Nullable`1::hasValue bool ___hasValue_0; // T System.Nullable`1::value int32_t ___value_1; }; // System.Nullable`1 struct Nullable_1_t7AF1DDC661B09832B6BF2A7684F36A3F48F19F9B { // System.Boolean System.Nullable`1::hasValue bool ___hasValue_0; // T System.Nullable`1::value int32_t ___value_1; }; // System.Nullable`1 struct Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 { // System.Boolean System.Nullable`1::hasValue bool ___hasValue_0; // T System.Nullable`1::value int32_t ___value_1; }; // System.Nullable`1 struct Nullable_1_tE6B561AD4C1DA4FF3513EAA98B99453254CC98EC { // System.Boolean System.Nullable`1::hasValue bool ___hasValue_0; // T System.Nullable`1::value int32_t ___value_1; }; // System.Collections.Generic.ObjectComparer`1 struct ObjectComparer_1_t1B5883803ACE1B2689A1B417EB4FCF0FED6A7667 : public Comparer_1_t8BF4D32ADB431AB730ACD5DB97EADCA2F0E17132 { }; // System.Collections.Generic.ObjectComparer`1 struct ObjectComparer_1_t6F2F2D20C5210E47D6D48267938478BA63A3BD44 : public Comparer_1_t01D0D35DA07FC84ED9D2F1F36BA10C77FC63589C { }; // System.Collections.Generic.ObjectComparer`1 struct ObjectComparer_1_t0083D2EA800FDB9D1E12AE9AA731BD9900B0D2AF : public Comparer_1_tD39CE7A8427C46E74A923BDBFA86E728BC6C59C2 { }; // System.Collections.Generic.ObjectComparer`1 struct ObjectComparer_1_t512C334490ECA9A9AA641F391C0A52E7ADBB7B4C : public Comparer_1_t01F4A3B9CE9BCD8190DF5C60B662F230A074DAD9 { }; // System.Collections.Generic.ObjectComparer`1 struct ObjectComparer_1_t02FA793A0B6A7B4F15F9991AC4F9D1327AEFDF58 : public Comparer_1_tBA6FFE9E1286DCF5C92ED128C9DCCA5E53D8C7B0 { }; // System.Collections.Generic.ObjectComparer`1 struct ObjectComparer_1_t5A7E32E6AE15D68AEEAF8FCD3D152FECDC7C2255 : public Comparer_1_tA9689DB6D41BF8CF24D9CB338D0A979B0333D254 { }; // System.Collections.Generic.ObjectComparer`1 struct ObjectComparer_1_t1F9C1634F4A504F40F8270F2C78745838FDFC91B : public Comparer_1_t2BCE85BA0C209F373051977D35D1BAB62611194A { }; // System.Collections.Generic.ObjectComparer`1 struct ObjectComparer_1_tCDAA499792CC821D7FF340B5234000E3C50DAD7A : public Comparer_1_t54046A0071F349E7F1D6EA6D46C3DA1DAAD64A99 { }; // System.Collections.Generic.ObjectComparer`1 struct ObjectComparer_1_t8FE36B57CA49B9C4C24E8E8D956F51DFED509A82 : public Comparer_1_tF6D449CECF505A134DA65FC83EDAA3EB70D7F1C8 { }; // System.Collections.Generic.ObjectComparer`1 struct ObjectComparer_1_t3FE942BBA506CA4AAB35D0400ACD9C59322A9CED : public Comparer_1_tDBA2459B2A7F6FE73078B1B8CF203E27A2BB8C8B { }; // System.Collections.Generic.ObjectComparer`1 struct ObjectComparer_1_t2C9A980EB7575A43B3D13ED45B9DDB6992DE3B2D : public Comparer_1_tCB3D33B877298F17367ADCFE1A026A4A4A2B5385 { }; // System.Collections.Generic.ObjectComparer`1 struct ObjectComparer_1_t827BE5B2F35E52FDA0416AAF18ADE9E132932771 : public Comparer_1_t2A5B4DEA38F68D1F1BBA6690C544910C4B6CD1F4 { }; // System.Collections.Generic.ObjectComparer`1 struct ObjectComparer_1_t91DE86DCAE0151BB6DBB54469F9C9B1BBD71F8F3 : public Comparer_1_tA15AE14FF305091BC51D5BDBFA373EC002DEDF7A { }; // System.Collections.Concurrent.ConcurrentQueue`1/Segment/Slot struct Slot_t36E7BD2C949C62077BDCD89A5CA092508944F177 { // T System.Collections.Concurrent.ConcurrentQueue`1/Segment/Slot::Item RuntimeObject* ___Item_0; // System.Int32 System.Collections.Concurrent.ConcurrentQueue`1/Segment/Slot::SequenceNumber int32_t ___SequenceNumber_1; }; // System.Threading.Tasks.Task`1 struct Task_1_t824317F4B958F7512E8F7300511752937A6C6043 : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572 { // TResult System.Threading.Tasks.Task`1::m_result bool ___m_result_38; }; // System.Threading.Tasks.Task`1 struct Task_1_t4C228DE57804012969575431CFF12D57C875552D : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572 { // TResult System.Threading.Tasks.Task`1::m_result int32_t ___m_result_38; }; // System.Threading.Tasks.Task`1 struct Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2 : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572 { // TResult System.Threading.Tasks.Task`1::m_result RuntimeObject* ___m_result_38; }; // System.ValueTuple`2 struct ValueTuple_2_t307FF872C9931F811F5573093B923498C2EFC798 { // T1 System.ValueTuple`2::Item1 bool ___Item1_0; // T2 System.ValueTuple`2::Item2 RuntimeObject* ___Item2_1; }; // System.ValueTuple`3 struct ValueTuple_3_tF2051B729BAC568E721EF95E4D0DDA41E7744C5F { // T1 System.ValueTuple`3::Item1 RuntimeObject* ___Item1_0; // T2 System.ValueTuple`3::Item2 RuntimeObject* ___Item2_1; // T3 System.ValueTuple`3::Item3 int32_t ___Item3_2; }; // System.ValueTuple`5 struct ValueTuple_5_t0ECA92C4CF82E53BCE5CFE578708475CBA45B999 { // T1 System.ValueTuple`5::Item1 RuntimeObject* ___Item1_0; // T2 System.ValueTuple`5::Item2 bool ___Item2_1; // T3 System.ValueTuple`5::Item3 bool ___Item3_2; // T4 System.ValueTuple`5::Item4 RuntimeObject* ___Item4_3; // T5 System.ValueTuple`5::Item5 RuntimeObject* ___Item5_4; }; // UnityEngine.UIElements.UIR.Alloc struct Alloc_t78312CFE58F38082281E80E297AE6176BD2BD8AE { // System.UInt32 UnityEngine.UIElements.UIR.Alloc::start uint32_t ___start_0; // System.UInt32 UnityEngine.UIElements.UIR.Alloc::size uint32_t ___size_1; // System.Object UnityEngine.UIElements.UIR.Alloc::handle RuntimeObject* ___handle_2; // System.Boolean UnityEngine.UIElements.UIR.Alloc::shortLived bool ___shortLived_3; }; // Native definition for P/Invoke marshalling of UnityEngine.UIElements.UIR.Alloc struct Alloc_t78312CFE58F38082281E80E297AE6176BD2BD8AE_marshaled_pinvoke { uint32_t ___start_0; uint32_t ___size_1; Il2CppIUnknown* ___handle_2; int32_t ___shortLived_3; }; // Native definition for COM marshalling of UnityEngine.UIElements.UIR.Alloc struct Alloc_t78312CFE58F38082281E80E297AE6176BD2BD8AE_marshaled_com { uint32_t ___start_0; uint32_t ___size_1; Il2CppIUnknown* ___handle_2; int32_t ___shortLived_3; }; // UnityEngine.UIElements.UIR.BMPAlloc struct BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 { // System.Int32 UnityEngine.UIElements.UIR.BMPAlloc::page int32_t ___page_1; // System.UInt16 UnityEngine.UIElements.UIR.BMPAlloc::pageLine uint16_t ___pageLine_2; // System.Byte UnityEngine.UIElements.UIR.BMPAlloc::bitIndex uint8_t ___bitIndex_3; // UnityEngine.UIElements.UIR.OwnedState UnityEngine.UIElements.UIR.BMPAlloc::ownedState uint8_t ___ownedState_4; }; // System.Boolean struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22 { // System.Boolean System.Boolean::m_value bool ___m_value_0; }; // System.Byte struct Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3 { // System.Byte System.Byte::m_value uint8_t ___m_value_0; }; // System.Collections.Concurrent.CDSCollectionETWBCLProvider struct CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999 : public EventSource_tA86759A1E6F272632C299AAC181C0A67E5C52F25 { }; // System.Threading.CancellationToken struct CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED { // System.Threading.CancellationTokenSource System.Threading.CancellationToken::_source CancellationTokenSource_tAAE1E0033BCFC233801F8CB4CED5C852B350CB7B* ____source_0; }; // Native definition for P/Invoke marshalling of System.Threading.CancellationToken struct CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED_marshaled_pinvoke { CancellationTokenSource_tAAE1E0033BCFC233801F8CB4CED5C852B350CB7B* ____source_0; }; // Native definition for COM marshalling of System.Threading.CancellationToken struct CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED_marshaled_com { CancellationTokenSource_tAAE1E0033BCFC233801F8CB4CED5C852B350CB7B* ____source_0; }; // System.Char struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17 { // System.Char System.Char::m_value Il2CppChar ___m_value_0; }; // UnityEngine.Color struct Color_tD001788D726C3A7F1379BEED0260B9591F440C1F { // System.Single UnityEngine.Color::r float ___r_0; // System.Single UnityEngine.Color::g float ___g_1; // System.Single UnityEngine.Color::b float ___b_2; // System.Single UnityEngine.Color::a float ___a_3; }; // UnityEngine.Color32 struct Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B { union { #pragma pack(push, tp, 1) struct { // System.Int32 UnityEngine.Color32::rgba int32_t ___rgba_0; }; #pragma pack(pop, tp) struct { int32_t ___rgba_0_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { // System.Byte UnityEngine.Color32::r uint8_t ___r_1; }; #pragma pack(pop, tp) struct { uint8_t ___r_1_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___g_2_OffsetPadding[1]; // System.Byte UnityEngine.Color32::g uint8_t ___g_2; }; #pragma pack(pop, tp) struct { char ___g_2_OffsetPadding_forAlignmentOnly[1]; uint8_t ___g_2_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___b_3_OffsetPadding[2]; // System.Byte UnityEngine.Color32::b uint8_t ___b_3; }; #pragma pack(pop, tp) struct { char ___b_3_OffsetPadding_forAlignmentOnly[2]; uint8_t ___b_3_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___a_4_OffsetPadding[3]; // System.Byte UnityEngine.Color32::a uint8_t ___a_4; }; #pragma pack(pop, tp) struct { char ___a_4_OffsetPadding_forAlignmentOnly[3]; uint8_t ___a_4_forAlignmentOnly; }; }; }; // UnityEngine.UIElements.ComputedTransitionProperty struct ComputedTransitionProperty_tD8E4D8EB5DD69E063944F27A48D9263F4F1354E1 { // UnityEngine.UIElements.StyleSheets.StylePropertyId UnityEngine.UIElements.ComputedTransitionProperty::id int32_t ___id_0; // System.Int32 UnityEngine.UIElements.ComputedTransitionProperty::durationMs int32_t ___durationMs_1; // System.Int32 UnityEngine.UIElements.ComputedTransitionProperty::delayMs int32_t ___delayMs_2; // System.Func`2 UnityEngine.UIElements.ComputedTransitionProperty::easingCurve Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* ___easingCurve_3; }; // Native definition for P/Invoke marshalling of UnityEngine.UIElements.ComputedTransitionProperty struct ComputedTransitionProperty_tD8E4D8EB5DD69E063944F27A48D9263F4F1354E1_marshaled_pinvoke { int32_t ___id_0; int32_t ___durationMs_1; int32_t ___delayMs_2; Il2CppMethodPointer ___easingCurve_3; }; // Native definition for COM marshalling of UnityEngine.UIElements.ComputedTransitionProperty struct ComputedTransitionProperty_tD8E4D8EB5DD69E063944F27A48D9263F4F1354E1_marshaled_com { int32_t ___id_0; int32_t ___durationMs_1; int32_t ___delayMs_2; Il2CppMethodPointer ___easingCurve_3; }; // System.DateTime struct DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D { // System.UInt64 System.DateTime::_dateData uint64_t ____dateData_46; }; // System.Decimal struct Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F { union { #pragma pack(push, tp, 1) struct { // System.Int32 System.Decimal::flags int32_t ___flags_8; }; #pragma pack(pop, tp) struct { int32_t ___flags_8_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___hi_9_OffsetPadding[4]; // System.Int32 System.Decimal::hi int32_t ___hi_9; }; #pragma pack(pop, tp) struct { char ___hi_9_OffsetPadding_forAlignmentOnly[4]; int32_t ___hi_9_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___lo_10_OffsetPadding[8]; // System.Int32 System.Decimal::lo int32_t ___lo_10; }; #pragma pack(pop, tp) struct { char ___lo_10_OffsetPadding_forAlignmentOnly[8]; int32_t ___lo_10_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___mid_11_OffsetPadding[12]; // System.Int32 System.Decimal::mid int32_t ___mid_11; }; #pragma pack(pop, tp) struct { char ___mid_11_OffsetPadding_forAlignmentOnly[12]; int32_t ___mid_11_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___ulomidLE_12_OffsetPadding[8]; // System.UInt64 System.Decimal::ulomidLE uint64_t ___ulomidLE_12; }; #pragma pack(pop, tp) struct { char ___ulomidLE_12_OffsetPadding_forAlignmentOnly[8]; uint64_t ___ulomidLE_12_forAlignmentOnly; }; }; }; // System.Collections.DictionaryEntry struct DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB { // System.Object System.Collections.DictionaryEntry::_key RuntimeObject* ____key_0; // System.Object System.Collections.DictionaryEntry::_value RuntimeObject* ____value_1; }; // Native definition for P/Invoke marshalling of System.Collections.DictionaryEntry struct DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_marshaled_pinvoke { Il2CppIUnknown* ____key_0; Il2CppIUnknown* ____value_1; }; // Native definition for COM marshalling of System.Collections.DictionaryEntry struct DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_marshaled_com { Il2CppIUnknown* ____key_0; Il2CppIUnknown* ____value_1; }; // System.Double struct Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F { // System.Double System.Double::m_value double ___m_value_0; }; // Vuforia.DriverCameraMode #pragma pack(push, tp, 1) struct DriverCameraMode_t987B41E6764485C11BD523B51898D0F8ED226C9A { // System.Int32 Vuforia.DriverCameraMode::Width int32_t ___Width_0; // System.Int32 Vuforia.DriverCameraMode::Height int32_t ___Height_1; // System.Int32 Vuforia.DriverCameraMode::Fps int32_t ___Fps_2; // Vuforia.DriverPixelFormat Vuforia.DriverCameraMode::Format int32_t ___Format_3; }; #pragma pack(pop, tp) // UnityEngine.UIElements.EasingFunction struct EasingFunction_t5197D3B06056326A8B5C96032CDEBD5D3BDCA7A4 { // UnityEngine.UIElements.EasingMode UnityEngine.UIElements.EasingFunction::m_Mode int32_t ___m_Mode_0; }; // System.Runtime.CompilerServices.Ephemeron struct Ephemeron_t74F279F5E7CF4A0CFC21C822431DD840572C6DA2 { // System.Object System.Runtime.CompilerServices.Ephemeron::key RuntimeObject* ___key_0; // System.Object System.Runtime.CompilerServices.Ephemeron::value RuntimeObject* ___value_1; }; // Native definition for P/Invoke marshalling of System.Runtime.CompilerServices.Ephemeron struct Ephemeron_t74F279F5E7CF4A0CFC21C822431DD840572C6DA2_marshaled_pinvoke { Il2CppIUnknown* ___key_0; Il2CppIUnknown* ___value_1; }; // Native definition for COM marshalling of System.Runtime.CompilerServices.Ephemeron struct Ephemeron_t74F279F5E7CF4A0CFC21C822431DD840572C6DA2_marshaled_com { Il2CppIUnknown* ___key_0; Il2CppIUnknown* ___value_1; }; // UnityEngine.TextCore.GlyphRect struct GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D { // System.Int32 UnityEngine.TextCore.GlyphRect::m_X int32_t ___m_X_0; // System.Int32 UnityEngine.TextCore.GlyphRect::m_Y int32_t ___m_Y_1; // System.Int32 UnityEngine.TextCore.GlyphRect::m_Width int32_t ___m_Width_2; // System.Int32 UnityEngine.TextCore.GlyphRect::m_Height int32_t ___m_Height_3; }; // UnityEngine.TextCore.LowLevel.GlyphValueRecord struct GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E { // System.Single UnityEngine.TextCore.LowLevel.GlyphValueRecord::m_XPlacement float ___m_XPlacement_0; // System.Single UnityEngine.TextCore.LowLevel.GlyphValueRecord::m_YPlacement float ___m_YPlacement_1; // System.Single UnityEngine.TextCore.LowLevel.GlyphValueRecord::m_XAdvance float ___m_XAdvance_2; // System.Single UnityEngine.TextCore.LowLevel.GlyphValueRecord::m_YAdvance float ___m_YAdvance_3; }; // System.Int16 struct Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175 { // System.Int16 System.Int16::m_value int16_t ___m_value_0; }; // System.Int32 struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C { // System.Int32 System.Int32::m_value int32_t ___m_value_0; }; // System.Int64 struct Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3 { // System.Int64 System.Int64::m_value int64_t ___m_value_0; }; // System.IntPtr struct IntPtr_t { // System.Void* System.IntPtr::m_value void* ___m_value_0; }; // System.Linq.Expressions.Interpreter.InterpretedFrameInfo struct InterpretedFrameInfo_tEF62B79D176B8D032C22953AA0D5B581C4076321 { // System.String System.Linq.Expressions.Interpreter.InterpretedFrameInfo::_methodName String_t* ____methodName_0; // System.Linq.Expressions.Interpreter.DebugInfo System.Linq.Expressions.Interpreter.InterpretedFrameInfo::_debugInfo DebugInfo_t03C716886CE7E99C1662D1C236CCC2CC6F18A167* ____debugInfo_1; }; // Native definition for P/Invoke marshalling of System.Linq.Expressions.Interpreter.InterpretedFrameInfo struct InterpretedFrameInfo_tEF62B79D176B8D032C22953AA0D5B581C4076321_marshaled_pinvoke { char* ____methodName_0; DebugInfo_t03C716886CE7E99C1662D1C236CCC2CC6F18A167* ____debugInfo_1; }; // Native definition for COM marshalling of System.Linq.Expressions.Interpreter.InterpretedFrameInfo struct InterpretedFrameInfo_tEF62B79D176B8D032C22953AA0D5B581C4076321_marshaled_com { Il2CppChar* ____methodName_0; DebugInfo_t03C716886CE7E99C1662D1C236CCC2CC6F18A167* ____debugInfo_1; }; // Vuforia.Newtonsoft.Json.JsonPosition struct JsonPosition_tA78E88A83CDF482A154F39054277D613031379DB { // Vuforia.Newtonsoft.Json.JsonContainerType Vuforia.Newtonsoft.Json.JsonPosition::Type int32_t ___Type_1; // System.Int32 Vuforia.Newtonsoft.Json.JsonPosition::Position int32_t ___Position_2; // System.String Vuforia.Newtonsoft.Json.JsonPosition::PropertyName String_t* ___PropertyName_3; // System.Boolean Vuforia.Newtonsoft.Json.JsonPosition::HasIndex bool ___HasIndex_4; }; // Native definition for P/Invoke marshalling of Vuforia.Newtonsoft.Json.JsonPosition struct JsonPosition_tA78E88A83CDF482A154F39054277D613031379DB_marshaled_pinvoke { int32_t ___Type_1; int32_t ___Position_2; char* ___PropertyName_3; int32_t ___HasIndex_4; }; // Native definition for COM marshalling of Vuforia.Newtonsoft.Json.JsonPosition struct JsonPosition_tA78E88A83CDF482A154F39054277D613031379DB_marshaled_com { int32_t ___Type_1; int32_t ___Position_2; Il2CppChar* ___PropertyName_3; int32_t ___HasIndex_4; }; // UnityEngine.UIElements.Length struct Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 { // System.Single UnityEngine.UIElements.Length::m_Value float ___m_Value_1; // UnityEngine.UIElements.Length/Unit UnityEngine.UIElements.Length::m_Unit int32_t ___m_Unit_2; }; // UnityEngine.UIElements.ManipulatorActivationFilter struct ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81 { // UnityEngine.UIElements.MouseButton UnityEngine.UIElements.ManipulatorActivationFilter::