#include "pch-cpp.hpp" #ifndef _MSC_VER # include #else # include #endif #include #include struct VirtualActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; template struct VirtualActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template struct VirtualActionInvoker3 { typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method); } }; template 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 VirtualFuncInvoker5 { typedef R (*Func)(void*, T1, T2, T3, T4, T5, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, invokeData.method); } }; 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 InterfaceActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template 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 InterfaceFuncInvoker3 { typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2, T3 p3) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method); } }; template struct InterfaceFuncInvoker4 { typedef R (*Func)(void*, T1, T2, T3, T4, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, 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); } }; // System.Action`1 struct Action_1_t792440BC2358C441BC16C0CD54E5534F61AF2E39; // System.Action`1 struct Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC; // System.Action`2 struct Action_2_tC16C2F6D18D21990D877F6B714883A40585C28C9; // System.Action`3 struct Action_3_t5C90A28BDAA9A129AFA58FD650137BBF1234A4AB; // System.Collections.Generic.Dictionary`2> struct Dictionary_2_tF15AAE882479CD2CDC37ED42D021B9745B61FFD9; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t8525C1D9F5FB98BBDD9FCEE0F794F993946465C4; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F; // System.Collections.Generic.Dictionary`2> struct Dictionary_2_t4474F57334E41AAA4ECBA32CAB32B51B695F0B22; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t42D8A0D75026C07577E81D6550297EA388E3CD45; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tC8BD5FF04F2E267079AB9F5B4F4E97EFA68613F8; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t552D4CF591135C5C2E84A9B47F4218E36925080C; // System.Collections.Generic.Dictionary`2> struct Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t340755D6C3625294F8C87E54F0CA95E023E5C656; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t88EEF5584BE1724959F1E96256757BBEE5D15F5B; // System.Collections.Generic.Dictionary`2> struct Dictionary_2_t39C090DB63033FF202F2C4C95E8261B4D5D67132; // System.Collections.Generic.Dictionary`2> struct Dictionary_2_t6632F9B7D29C6456BE397B4CC895D950BBB8072A; // System.Collections.Generic.Dictionary`2> struct Dictionary_2_t5F9DFA2CAB73C95A2A252732A4FB00714E5ACB80; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t3E57AD95AC968E6F62DEE19AB3170D1AC3A30DA2; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tBFA9C0296056907B6B0D09647F71CA1E4EA0880D; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t97A1181D986BCE5FC5CCE0D4E72B74125977DFF9; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tF9B9899EA776F69E6DCE288DC87C61D47E3D8A57; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tC9AA680F78F71344FE76A09B6C7008BF8EE73C98; // System.Func`2 struct Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C; // System.Func`2 struct Func_2_t060A650AB95DEF14D4F579FA5999ACEFEEE0FD82; // System.Func`3 struct Func_3_tCA813BC300893DEAD302DA936E723B3EC4CAE250; // System.Func`4 struct Func_4_t0EA5243FC4B656A18B7AC7B130FD78666AA9FE84; // System.Collections.Generic.IDictionary`2> struct IDictionary_2_t9761D347AC3B18ED56235F4DC19AAEABDBA24999; // System.Collections.Generic.IDictionary`2 struct IDictionary_2_t21C721738210C324CAAC744BABC6973F37937695; // System.Collections.Generic.IDictionary`2 struct IDictionary_2_t99C107346145E7116FEB5DE73BBCC65AD5D6B262; // System.Collections.Generic.IDictionary`2> struct IDictionary_2_tF27308BB3222A674775FAEEE05A80B858247C394; // System.Collections.Generic.IDictionary`2> struct IDictionary_2_tF18CA5AA122FDD12A1A3DEDDEC417CC451BE7354; // System.Collections.Generic.IDictionary`2> struct IDictionary_2_t16CDACDB46F2C22D302194A4E428A5CACCEB02F1; // System.Collections.Generic.IDictionary`2 struct IDictionary_2_t59EECA278A417E0FF1F940F199642DCC95B4933D; // System.Collections.Generic.IDictionary`2 struct IDictionary_2_t100B461C37F79E2F9CF3817F1BBEE5DC8495E0F5; // System.Collections.Generic.IDictionary`2 struct IDictionary_2_t4C0E889AA23D9590A60247E7F731BBA09868028B; // System.Collections.Generic.IEqualityComparer`1 struct IEqualityComparer_1_t62010156673DE1460AB1D1CEBE5DCD48665E1A38; // System.Collections.Generic.IEqualityComparer`1 struct IEqualityComparer_1_t1A386BEF1855064FD5CC71F340A68881A52B4932; // System.Collections.Generic.IEqualityComparer`1 struct IEqualityComparer_1_tE6A65C5E45E33FD7D9849FD0914DE3AD32B68050; // System.Collections.Generic.IEqualityComparer`1 struct IEqualityComparer_1_t7EEC9B4006D6D425748908D52AA799197F29A165; // System.Collections.Generic.IList`1> struct IList_1_t63E5DFB6AFE92FCEFD138071B0A284A224B7CA4C; // System.Collections.Generic.IList`1 struct IList_1_tD3536A2975D9B222DF233F7DCAE5672C2C818618; // System.Collections.Generic.Dictionary`2/KeyCollection> struct KeyCollection_t961F340F8ACCBED42AD893036649507AA35258E2; // System.Collections.Generic.Dictionary`2/KeyCollection struct KeyCollection_t5077047791109DBE7A0587AB82F2C95BE65B70F7; // System.Collections.Generic.Dictionary`2/KeyCollection struct KeyCollection_t34FBDA9B15DAB46CC4B4FE27DF587F959003EF55; // System.Collections.Generic.Dictionary`2/KeyCollection> struct KeyCollection_t908D04DC798B691692D5397EC947908E764C3BFB; // System.Collections.Generic.Dictionary`2/KeyCollection> struct KeyCollection_t844639E4AE2CDEA47B5D4BFE76EA4B2BB4A736CD; // System.Collections.Generic.Dictionary`2/KeyCollection> struct KeyCollection_t49ED82DF6B25DE2E2CE23888491CF3DF11A06156; // System.Collections.Generic.Dictionary`2/KeyCollection struct KeyCollection_tBA0E03EE298BC844382330A548F4B8A8F3D309D8; // System.Collections.Generic.Dictionary`2/KeyCollection struct KeyCollection_tDCAB7C4827C4C709F12241CEFF571A4DB2DE3C4C; // System.Collections.Generic.Dictionary`2/KeyCollection struct KeyCollection_t3F59232D75C9B787E130E3D77B9274F4F61D2D17; // System.Collections.Generic.Dictionary`2/KeyCollection struct KeyCollection_t20FA4E22645EF555216D19534E4CE04F93AD971D; // System.Collections.Generic.Dictionary`2/KeyCollection struct KeyCollection_t307D46B88D2B9D80E5720536FDAF84266E73C170; // System.Collections.Generic.List`1 struct List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE; // System.Collections.Generic.List`1 struct List_1_tF9D8E572A8599785D6C36AD7BDC592752B89E0A1; // System.Collections.Generic.List`1 struct List_1_t9C4606F69CB3833861EC4E41C2E8DA5647D07189; // System.Collections.Generic.List`1 struct List_1_tA4B5BEC690306B3DC7901CEA473C0A5BC3243F8B; // System.Collections.Generic.List`1 struct List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5; // System.Collections.Generic.List`1 struct List_1_t2AF104D60315227C623084E47EED6630D55BBB37; // System.Collections.Generic.List`1 struct List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3; // System.Collections.Generic.Stack`1 struct Stack_1_tC6C298385D16F10F391B84280D21FE059A45CC55; // System.Collections.Generic.Stack`1 struct Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981; // System.Collections.Generic.Stack`1 struct Stack_1_t7B63F93F3C5FA452C37D6EC4E51A4F56AF3D7B92; // System.Threading.Tasks.Task`1 struct Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725; // System.Collections.Generic.Dictionary`2/ValueCollection> struct ValueCollection_t9F3A6CE2D590F3B64841D5D4E02A4D128DF764CD; // System.Collections.Generic.Dictionary`2/ValueCollection struct ValueCollection_t741C0DBC2C72DD3AE5DB73E04049022DE427EACA; // System.Collections.Generic.Dictionary`2/ValueCollection struct ValueCollection_t3EAE71AC42F032C7A0A960949B9387278D5BFC3B; // System.Collections.Generic.Dictionary`2/ValueCollection> struct ValueCollection_t168E2DBC0BBB75FF59BC75953E6EEB05B9567D69; // System.Collections.Generic.Dictionary`2/ValueCollection> struct ValueCollection_tD51345F635B18AE3A9D92C563D8067D3323D83FB; // System.Collections.Generic.Dictionary`2/ValueCollection> struct ValueCollection_tBADE654B96E115B0DDA66EF90B490CDB1E81FE80; // System.Collections.Generic.Dictionary`2/ValueCollection struct ValueCollection_tEADC8E3AE97539E1111262F4224ACA7066D42FA0; // System.Collections.Generic.Dictionary`2/ValueCollection struct ValueCollection_tA850AD3F5B7A5630C3B506257D864E3ED0E8943F; // System.Collections.Generic.Dictionary`2/ValueCollection struct ValueCollection_tF50E3E4277A9E551EA0CFB3AE0E33A107972021F; // System.Collections.Generic.Dictionary`2/ValueCollection struct ValueCollection_t6A5808C77FFDFD520F7F8AAC8609449DB987D2DA; // System.Collections.Generic.Dictionary`2/ValueCollection struct ValueCollection_t43A08F228100B21215B8346CC5CA15A4406DE691; // System.Collections.Generic.Dictionary`2/Entry>[] struct EntryU5BU5D_tC05AA8F32DFF4C2C547ED680592E1D40011178A8; // System.Collections.Generic.Dictionary`2/Entry[] struct EntryU5BU5D_t4599023B1EC79584CD812F5998440BACF3085B58; // System.Collections.Generic.Dictionary`2/Entry[] struct EntryU5BU5D_t8D1129DFDADDEAD26265DADCDA3B2051F7684525; // System.Collections.Generic.Dictionary`2/Entry>[] struct EntryU5BU5D_t70C8FE243B93BC6EED394059EF75B9A2381F4073; // System.Collections.Generic.Dictionary`2/Entry>[] struct EntryU5BU5D_t1D80DD634B63313D73B2A60BE290DDF77E5A8A5D; // System.Collections.Generic.Dictionary`2/Entry>[] struct EntryU5BU5D_tE99439387B5B67D11EAF81278BFB70AB42B08CDF; // System.Collections.Generic.Dictionary`2/Entry[] struct EntryU5BU5D_t8A3C8FD70EFA9EE54A62F1EF6E717699988A6A41; // System.Collections.Generic.Dictionary`2/Entry[] struct EntryU5BU5D_t8F8EE00DC84DD550472EA92C30908E6C01F92AEA; // System.Collections.Generic.Dictionary`2/Entry[] struct EntryU5BU5D_t1719726D25241CA3948674143FA448D8AEB44F3F; // System.Collections.Generic.Dictionary`2/Entry[] struct EntryU5BU5D_tA7F86CAE2EF5AC767669ECEECFD034586476C930; // System.Collections.Generic.Dictionary`2/Entry[] struct EntryU5BU5D_tB152867DA30C074686DDFB0A0131BB27CC72E040; // System.Byte[][] struct ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D; // System.Int32[][] struct Int32U5BU5DU5BU5D_t104DBF1B996084AA19567FD32B02EDF88D044FAF; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable[] struct Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger[] struct BigIntegerU5BU5D_tE8B77B5B8A588D40881DE1C7EE373965BF9E33ED; // System.Boolean[] struct BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C; // System.Byte[] struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.CertifiedKeyPair[] struct CertifiedKeyPairU5BU5D_t76C6C5E8814508C5C8A2BBABEC665A85B29C15D3; // System.Char[] struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.CmpCertificate[] struct CmpCertificateU5BU5D_t61BB8616D2961D5EBE491ED080F0C7361D59CC00; // System.Delegate[] struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier[] struct DerObjectIdentifierU5BU5D_t801513A53C26B675A2EC1C7456321775EDCC225F; // System.Reflection.FieldInfo[] struct FieldInfoU5BU5D_tD84513FCA07C63AAFE671A5B39E3ADD6E903938E; // UnityEngine.GUILayoutOption[] struct GUILayoutOptionU5BU5D_tA0F031CC36F88BBBD25D6841ADD3913446E6EA2B; // BestHTTP.Extensions.HeaderValue[] struct HeaderValueU5BU5D_tB17E7E2A7576BB62B119BF7E73C8E14A2AC611B6; // System.Int16[] struct Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD; // System.Int32[] struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32; // System.IntPtr[] struct IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6; // BestHTTP.SignalRCore.Messages.Message[] struct MessageU5BU5D_t83B824D19824D00C54AD1A8A07021F9C1398901A; // System.Object[] struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE; // System.Reflection.PropertyInfo[] struct PropertyInfoU5BU5D_tE59E95F68533BDA98ABBBEACB6A99BF2C7A4A26A; // LitJson.PropertyMetadata[] struct PropertyMetadataU5BU5D_tE81512DB4B13AA5AF619B0AF2C85AC091A6C3CD4; // System.Diagnostics.StackTrace[] struct StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971; // System.String[] struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A; // System.Globalization.TokenHashValue[] struct TokenHashValueU5BU5D_t9A8634CBD651EB5F814E7CF9819D44963D8546D3; // System.Type[] struct TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755; // System.UInt32[] struct UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF; // System.UInt64[] struct UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2; // UnityEngine.WheelCollider[] struct WheelColliderU5BU5D_tD116627586657E2002728C2CACF8C5986C4A9CC6; // LitJson.WriterContext[] struct WriterContextU5BU5D_t357C0E5089D901180E0FCE38051D4F3B9CB228CE; // LitJson.Lexer/StateHandler[] struct StateHandlerU5BU5D_t55036B08F2F919EA20F0804A50ED9752ABD09F41; // System.Action struct Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6; // UnityStandardAssets.Vehicles.Aeroplane.AeroplaneController struct AeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier struct AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9; // UnityEngine.Animator struct Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149; // System.ArgumentException struct ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00; // System.ArgumentNullException struct ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB; // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable struct Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1EncodableVector struct Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Object struct Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString struct Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence struct Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Set struct Asn1Set_t9EBB628AB5FBF1FCC866DC7AEA45C59A72698F49; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1TaggedObject struct Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair struct AsymmetricCipherKeyPair_t975F15F5FD9FD35454E104A768061EAFB010D929; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter struct AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A; // System.AsyncCallback struct AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeCertificate struct AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31; // System.Threading.AutoResetEvent struct AutoResetEvent_t3B012223F0DE760BF0D282C5F7B9084C6D3AF53D; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Generators.BaseKdfBytesGenerator struct BaseKdfBytesGenerator_t9F8BAA4766A94011AFFDB7D7C52714FBFD3EB255; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.BasicConstraints struct BasicConstraints_t726ADB92F5098B7B4A50C44450B9A219DD48AA7C; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger struct BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9; // System.Reflection.Binder struct Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30; // BestHTTP.Extensions.BufferPoolMemoryStream struct BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B; // System.Globalization.Calendar struct Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.CertOrEncCert struct CertOrEncCert_t46D5B3CC01E21697A45ED1E8CE163196BEF34BA0; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.CertifiedKeyPair struct CertifiedKeyPair_t50EB833AED8814B77F5F26FD6F653B3C8A31B807; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.CmpCertificate struct CmpCertificate_t426B8158788ADFD4E28E4E8F169E1E1D7651F894; // BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsAttributeTableGenerator struct CmsAttributeTableGenerator_tC4D4B76820435A34F98C630ABFE66A3DAB36D4EF; // BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsEnvelopedHelper struct CmsEnvelopedHelper_t4C541C5858FDC5D5FEFBEF5BB39D1E55C9319BF0; // BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsException struct CmsException_tA459F99D1C6C93528CDEC8BBB289A932766EC3DE; // BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsSecureReadable struct CmsSecureReadable_t6AF44896AFA6F4D5858EE5F7118A13227842567C; // BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsTypedStream struct CmsTypedStream_t73EEA14F539B2D9626982E55116A232F30D73A21; // System.Globalization.CodePageDataItem struct CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E; // System.Globalization.CompareInfo struct CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9; // UnityEngine.Component struct Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684; // BestHTTP.Authentication.Credentials struct Credentials_tD6C60AC7DFFD64212481FBCB4AF02846196F5CE8; // System.Globalization.CultureData struct CultureData_t53CDF1C5F789A28897415891667799420D3C5529; // System.Globalization.CultureInfo struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.DataLengthException struct DataLengthException_t084143F55FB641046577C7BD1F58BC059B953180; // System.Globalization.DateTimeFormatInfo struct DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Date.DateTimeObject struct DateTimeObject_tD3D00CE2EC23DE07701C2169068B3D47BC4D5B54; // System.Text.DecoderFallback struct DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D; // System.DelegateData struct DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString struct DerBitString_t305465793A47445626D3541AB8CEDE347D874524; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerGeneralizedTime struct DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger struct DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier struct DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerOctetString struct DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerSequence struct DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerTaggedObject struct DerTaggedObject_t88BB573E2BED5C1D2971741E012BB29FB0EB0C5E; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ECDomainParameters struct ECDomainParameters_t497C366AFE7E3BFD490E52439C422AFDE91B12DC; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ECKeyGenerationParameters struct ECKeyGenerationParameters_t4937721DC10527ECC156FA98F13AE431AD00F565; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ECKeyParameters struct ECKeyParameters_tC564F57CB492506FC8DACDDD142BFEF68E9A3141; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint struct ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters struct ECPrivateKeyParameters_t4F22D9A57AC7E670B61E096835534ECE1D259029; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters struct ECPublicKeyParameters_tB75EB7F71DB6B346048D07C4EC9D4968988F92FB; // System.Text.EncoderFallback struct EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4; // System.Text.Encoding struct Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Crmf.EncryptedValue struct EncryptedValue_t2141D38B30370A8572D08139F2050710E69196A1; // System.Exception struct Exception_t; // LitJson.ExporterFunc struct ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773; // System.Reflection.FieldInfo struct FieldInfo_t; // LitJson.FsmContext struct FsmContext_tE104D61BAAFA7B6F000FCC1D1C281359A2D3C5B0; // UnityEngine.GUILayoutOption struct GUILayoutOption_t2D992ABCB62BEB24A6F4A826A5CBE7AE236071AB; // UnityEngine.GUIStyle struct GUIStyle_t29C59470ACD0A35C81EB0615653FD38C455A4726; // BestHTTP.Decompression.Zlib.GZipStream struct GZipStream_t99D1C296F7C62A7A6ED44277279DB835B13B37F1; // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.GeneralSecurityException struct GeneralSecurityException_tB77B003D334D962B16ED6BEB5AD4567AD5B618BA; // BestHTTP.Caching.HTTPCacheFileInfo struct HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA; // BestHTTP.Forms.HTTPFormBase struct HTTPFormBase_t62B2F52574B8465343CE4B246C6021BC42A45BF2; // BestHTTP.HTTPRequest struct HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42; // BestHTTP.HTTPResponse struct HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD; // System.Collections.Hashtable struct Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC; // BestHTTP.Extensions.HeaderParser struct HeaderParser_t90F5D0027B4A301EFD28FC225846CB32AB67AD5E; // BestHTTP.Extensions.HeaderValue struct HeaderValue_tB19EA8836300DA053E7A6E082DD196DA23BA7F77; // BestHTTP.SignalRCore.HubConnection struct HubConnection_tD0CD7A840685CA3DCC65913C32524F0C81F6C8D6; // BestHTTP.SignalRCore.HubOptions struct HubOptions_tC884B652B753EB22CF9664FAB679CEDF2DDAE855; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IAsymmetricCipherKeyPairGenerator struct IAsymmetricCipherKeyPairGenerator_t1DEC676954C1F8EB3B2D49B10CB17ACA35C2ED34; // System.IAsyncResult struct IAsyncResult_tC9F97BF36FCF122D29D3101D80642278297BF370; // BestHTTP.SignalRCore.IAuthenticationProvider struct IAuthenticationProvider_tAB49D31BB438477347C36AD760F5FA8DE89609D6; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBasicAgreement struct IBasicAgreement_t49A0A32749B5FDF1D2945D43D56CAF934A6D548C; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher struct IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA; // Org.BouncyCastle.Crypto.Tls2.ICertificateVerifyer struct ICertificateVerifyer_t7FF89D73580A6E6A7FF6E40E7670C1BF3E8F0CAB; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ICipherParameters struct ICipherParameters_t34CE1534DC151ED2EAE336C7381B86567D158F03; // Org.BouncyCastle.Crypto.Tls2.IClientCredentialsProvider struct IClientCredentialsProvider_tAA7262E853B0CACED4DFA19BA071BB2F2315DEEA; // System.Collections.ICollection struct ICollection_tC1E1DED86C0A66845675392606B302452210D5DA; // System.Collections.IDictionary struct IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A; // System.Collections.IDictionaryEnumerator struct IDictionaryEnumerator_t8A89A8564EADF5FFB8494092DFED7D7C063F1501; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IDigest struct IDigest_tB278FE56BD588CA024BB5476E2A7468F836C78C6; // BestHTTP.SignalRCore.IEncoder struct IEncoder_t24E72EE05B58DEC15E03A38641A9B0E2C95197A4; // System.Collections.IEnumerator struct IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105; // System.IFormatProvider struct IFormatProvider_tF2AECC4B14F41D36718920D67F930CED940412DF; // LitJson.IJsonWrapper struct IJsonWrapper_tB61715FD55AC86C87980FB4363433C0376095ADD; // System.Collections.IList struct IList_tB15A9D6625D09661D6E47976BB626C703EC81910; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.IMemoable struct IMemoable_tCAA06406EC7801BBF87BFBDB788638640A87D5BC; // BestHTTP.SignalRCore.IProtocol struct IProtocol_t9ABB480D033A8C546294D3E02CD4DA7AAD125304; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.IRandomGenerator struct IRandomGenerator_tA534F4AC93EEA5CDB578DDE58AE9A1E9C7B7487A; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections.ISet struct ISet_t5A23607F3EDC64EF08417F0C1A4212EB39469049; // BestHTTP.SignalRCore.ITransport struct ITransport_t2648CA39E8A9E3ABC0B346F8A085E288BB237C6F; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IWrapper struct IWrapper_t29A9E044AAEEECE9E2FA8A8A61F76B0F50347B39; // LitJson.ImporterFunc struct ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.InvalidCipherTextException struct InvalidCipherTextException_tCB4102F353576109DF6723BAD28806C82D61BC8D; // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.InvalidKeyException struct InvalidKeyException_t7F19EE8EB26000BAFDF50186FB1DD59F13A7FD8A; // System.InvalidOperationException struct InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber struct IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64; // LitJson.JsonData struct JsonData_tEC3547D1018CC4298487EC54DD677C16BE61D514; // LitJson.JsonException struct JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C; // LitJson.JsonMapper struct JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5; // LitJson.JsonMockWrapper struct JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24; // BestHTTP.SignalRCore.JsonProtocol struct JsonProtocol_tB82FEAFDEBC166F53B523853DA071388D57D79A4; // LitJson.JsonReader struct JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340; // LitJson.JsonWriter struct JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher struct KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCtrBlockCipher struct KCtrBlockCipher_t4B5FB1183B24BD5B518E83554A2F569A374B566B; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Generators.Kdf1BytesGenerator struct Kdf1BytesGenerator_t5644A5D35F7458CD81FEBB1EEE3675DCAC5A805F; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Generators.Kdf2BytesGenerator struct Kdf2BytesGenerator_t0B685D72F032C668FF02E742A08D06DB5F2DBDC9; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.KdfParameters struct KdfParameters_t56EBC3CEF1BEB144CDB7BF823CB774656D442189; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest struct KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C; // BestHTTP.KeepAliveHeader struct KeepAliveHeader_t93C1CC9FD7D51F432D9A50741F9BC0EF59166924; // BestHTTP.SignalR.Messages.KeepAliveMessage struct KeepAliveMessage_t44E67642111EEAB01A3E571061DA466BFA2136DF; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekIdentifier struct KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekRecipientInfo struct KekRecipientInfo_t49DC4E62062A5E6E070BCBE2704D5AE43A4A7A25; // BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KekRecipientInfoGenerator struct KekRecipientInfoGenerator_t1EADCDF1D7A6EA36646F881F5090E1AF7340FDE2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KekRecipientInformation struct KekRecipientInformation_t7580B68697441E129CA62DCCBBC56046D11C5320; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientIdentifier struct KeyAgreeRecipientIdentifier_tBA5E98B2A6C72F3799020F0A9D1C465116A7A28A; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo struct KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC; // BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyAgreeRecipientInfoGenerator struct KeyAgreeRecipientInfoGenerator_t24C54423315127CBA3D467B929DD226A00232F34; // BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyAgreeRecipientInformation struct KeyAgreeRecipientInformation_t428C88783EA962AE6460155DB641A5385BA20929; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.KeyDerivationFunc struct KeyDerivationFunc_t77081A2881F6F03B2B805E840C798E3AC7ACA213; // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.KeyException struct KeyException_t145BB2019F3A9E314C4C8FF15DDDFCD63E89AE62; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.KeyExchangeAlgorithm struct KeyExchangeAlgorithm_tD9953762C6B6DEC6461B08F3F642B058C12CF513; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.KeyGenerationParameters struct KeyGenerationParameters_t1B3393E8D9D0068ABF593DC15AA436FCA158BF39; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.KeyParameter struct KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.KeyPurposeID struct KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.KeyRecRepContent struct KeyRecRepContent_t22F4C88ECE39C1F57BE1F388B10F38BE3CC44E01; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.KeySpecificInfo struct KeySpecificInfo_t6C8A5DBFEF691A3EA6772568ED94CF80A142B476; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyTransRecipientInfo struct KeyTransRecipientInfo_t5560A4301685119C4400C494D4B8D2D5BCF538A0; // BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyTransRecipientInfoGenerator struct KeyTransRecipientInfoGenerator_t4D19EF837407B9F0CE3140C25A30074F5D7F9DF1; // BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyTransRecipientInformation struct KeyTransRecipientInformation_t5A77B5723E83662291A1744A96270F6A153A0830; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.KeyUsage struct KeyUsage_tF5D1BD25AB89302E6BE5EF210FF50F4055A77145; // BestHTTP.Extensions.KeyValuePairList struct KeyValuePairList_tFB05264C65689BEB0A93912EE115844C33E3FF0F; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Kisa.KisaObjectIdentifiers struct KisaObjectIdentifiers_t898950CC3EDDC3A29B3AE5ADE24CBD51FF226455; // UnityStandardAssets.Vehicles.Aeroplane.LandingGear struct LandingGear_t58C1D02658AD943B7668F9B26376917773B9E1AC; // LanguageDefault struct LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783; // LanguageEnglish struct LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249; // LanguageFontSize struct LanguageFontSize_t1D69214E22205065DF39D269CA0648625ACB9029; // LanguageImage struct LanguageImage_tBABF4FB868D32CD241E7167C49AC822E5FF3A2E2; // BestHTTP.Examples.LargeFileDownloadSample struct LargeFileDownloadSample_t622D5BD7D084CA47719D9B6BFDAB75C369BD2A42; // LitJson.Lexer struct Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.Ecc.MQVuserKeyingMaterial struct MQVuserKeyingMaterial_t0321EDE63C88A779858E39E0D66B18497BCF6A42; // System.Runtime.InteropServices.MarshalAsAttribute struct MarshalAsAttribute_t1689F84A11C34D0F35491C8F0DA4421467B6EFE6; // System.Reflection.MemberFilter struct MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81; // System.Reflection.MemberInfo struct MemberInfo_t; // System.IO.MemoryStream struct MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C; // System.Reflection.MethodBase struct MethodBase_t; // System.Reflection.MethodInfo struct MethodInfo_t; // UnityEngine.MonoBehaviour struct MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.MqvPrivateParameters struct MqvPrivateParameters_t5FC169BF7E9130DEB59D0A3E198847975BE0DE87; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.MqvPublicParameters struct MqvPublicParameters_t45CD88AB7EC58154D669C5D5D68FC11F9BEE6680; // BestHTTP.SignalRCore.Messages.NegotiationResult struct NegotiationResult_tB890A884403AA934CA0E2148E53D19DC196D3D85; // System.Globalization.NumberFormatInfo struct NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D; // BestHTTP.OnBeforeHeaderSendDelegate struct OnBeforeHeaderSendDelegate_t14E6C0AF9AE042EBCE08E9B5911D7327A37DE05F; // BestHTTP.OnBeforeRedirectionDelegate struct OnBeforeRedirectionDelegate_t81B75D27201DA4FD218ADB97B6FCF92A176AE238; // BestHTTP.OnDownloadProgressDelegate struct OnDownloadProgressDelegate_t648A73937F176382A3E8E1252C79989D5EBC4F69; // BestHTTP.OnRequestFinishedDelegate struct OnRequestFinishedDelegate_t4E35BB5277ED27A8B43D1987DE7F3B47772018B4; // BestHTTP.OnUploadProgressDelegate struct OnUploadProgressDelegate_tA62D192773A1C4C68D3049C26CC8CD42AF64843D; // BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.OriginatorID struct OriginatorID_tE315A79325108441760EEF76B4FC3A8E13B422B0; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.OriginatorIdentifierOrKey struct OriginatorIdentifierOrKey_t391EC78D0FD29ED45DCF5BFF9AC5BABA8A005603; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.OriginatorPublicKey struct OriginatorPublicKey_tCFBC1D4932A0818726AED8E4B91FFD9AE1C029F5; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.OtherKeyAttribute struct OtherKeyAttribute_tABF4FB6A6D942EF9F90E7BC0C092BFB0E154ABBB; // System.Reflection.ParameterInfo struct ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ParametersWithIV struct ParametersWithIV_tD5AFAE97C3F7DA4A08BC278F9AC969DA957E87A0; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ParametersWithRandom struct ParametersWithRandom_t557A9B373F5F2998BE6C0461812FBE4EB73425AC; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.PkiFreeText struct PkiFreeText_tD9C534FF15BDF5CB7B46DADD7DDC6A443045DF74; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Crmf.PkiPublicationInfo struct PkiPublicationInfo_t6895A4B735CC2E8886D91C57BBF896ADF0A83DEC; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo struct PkiStatusInfo_t599558AC728FCD067FBBCD19778BE6228EBA3A17; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo struct PrivateKeyInfo_t2C1C0514E07F6048B5892B9D988A1CEFE90975AA; // System.Reflection.PropertyInfo struct PropertyInfo_t; // BestHTTP.Proxy struct Proxy_t84F0DDAE5A37016479C7094FFB8F78835B8BD4F6; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.RecipientEncryptedKey struct RecipientEncryptedKey_tED14E5C321F7687BA4201D41E15DE457A7D56BE2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.RecipientID struct RecipientID_t744700C1480DE017B5D0AB81C6A1044A8C400125; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.RecipientIdentifier struct RecipientIdentifier_tBC500D2CDE60B57F8CB815C4599D2EE019A2E5C1; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.RecipientInfo struct RecipientInfo_tAD4CBFD604399F45BD0D23A4C028E0FC88C19829; // BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.RecipientInformation struct RecipientInformation_tB02D0534E5C0851FB482467BA26A52FAD2F853AB; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.RecipientKeyIdentifier struct RecipientKeyIdentifier_tCDD2B03857B94474CBA49C1E4FDC30DA4C26F492; // UnityEngine.Rigidbody struct Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A; // System.Runtime.Serialization.SafeSerializationManager struct SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F; // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom struct SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28; // System.Threading.SemaphoreSlim struct SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385; // UnityEngine.Sprite struct Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9; // System.IO.Stream struct Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB; // System.String struct String_t; // System.Text.StringBuilder struct StringBuilder_t; // System.StringComparer struct StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6; // System.IO.StringReader struct StringReader_t74E352C280EAC22C878867444978741F19E1F895; // System.IO.StringWriter struct StringWriter_t7BEF6B06B35BC25817D8BE28593FB52F0525B839; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.SubjectKeyIdentifier struct SubjectKeyIdentifier_t572BF9E7277584519251C3E26F9015A145A7FF62; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo struct SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateStructure struct TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3; // System.IO.TextReader struct TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F; // System.IO.TextWriter struct TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643; // UnityEngine.Texture2D struct Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.Time struct Time_tD684B1785E755395701D46F89A97609911CD6DDE; // System.Type struct Type_t; // System.Text.UnicodeEncoding struct UnicodeEncoding_tBB60B97AFC49D6246F28BF16D3E09822FCCACC68; // System.Uri struct Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612; // System.UriParser struct UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A; // System.Void struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5; // LitJson.WrapperFactory struct WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C; // LitJson.WriterContext struct WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Store.X509CertStoreSelector struct X509CertStoreSelector_tDC9D1189AE7E9E64F71CF541A2D316686E4E2996; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Certificate struct X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509CertificateStructure struct X509CertificateStructure_tD48237F907D1001604C98590613EFD6D720BEDE1; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extension struct X509Extension_t977D8DEE7C59707768F9038FE1B97F2E243B80AB; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions struct X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name struct X509Name_t201376CBB74D033CD213122565CA7469C5FC8630; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509NameEntryConverter struct X509NameEntryConverter_tB7E7BD9119CAFF57159A4641EEF350B6A5111351; // System.IO.Stream/ReadWriteTask struct ReadWriteTask_t32CD2C230786712954C1DB518DBE420A1F4C7974; // System.Uri/UriInfo struct UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45; IL2CPP_EXTERN_C RuntimeClass* Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* AeadParameters_t6C6A2620BFEC0ADD723500AA9021B04CE1956B64_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* AgreementUtilities_t23710947071723616410B78FA9B7467C0E9004AF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Arrays_t7CFD09DA7425047721E193958DAC5AB0FCFF67BF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CertifiedKeyPairU5BU5D_t76C6C5E8814508C5C8A2BBABEC665A85B29C15D3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CmpCertificateU5BU5D_t61BB8616D2961D5EBE491ED080F0C7361D59CC00_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CmsEnvelopedGenerator_t48A8897F962E710CD0966567A63BD57B50B30614_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CmsEnvelopedHelper_t4C541C5858FDC5D5FEFBEF5BB39D1E55C9319BF0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CmsException_tA459F99D1C6C93528CDEC8BBB289A932766EC3DE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DataLengthException_t084143F55FB641046577C7BD1F58BC059B953180_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DerBitString_t305465793A47445626D3541AB8CEDE347D874524_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DerNull_t020168AF07318033108544C00C803CD7AEB97239_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DerTaggedObject_t88BB573E2BED5C1D2971741E012BB29FB0EB0C5E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t340755D6C3625294F8C87E54F0CA95E023E5C656_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t39C090DB63033FF202F2C4C95E8261B4D5D67132_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t3E57AD95AC968E6F62DEE19AB3170D1AC3A30DA2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t5F9DFA2CAB73C95A2A252732A4FB00714E5ACB80_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t6632F9B7D29C6456BE397B4CC895D950BBB8072A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t8525C1D9F5FB98BBDD9FCEE0F794F993946465C4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t97A1181D986BCE5FC5CCE0D4E72B74125977DFF9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tBFA9C0296056907B6B0D09647F71CA1E4EA0880D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tC9AA680F78F71344FE76A09B6C7008BF8EE73C98_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tF15AAE882479CD2CDC37ED42D021B9745B61FFD9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tF9B9899EA776F69E6DCE288DC87C61D47E3D8A57_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ECPrivateKeyParameters_t4F22D9A57AC7E670B61E096835534ECE1D259029_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ECPublicKeyParameters_tB75EB7F71DB6B346048D07C4EC9D4968988F92FB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Enum_t23B90B40F60E677A8025267341651C94AE079CDA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* FieldInfo_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* GUIHelper_t2BF60F03A2A8EEA467A93FE5910AE1C5F1217F7F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* GeneratorUtilities_t67ACB79DC6E18815C42C195F8D953A5F17210A19_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HeaderParser_t90F5D0027B4A301EFD28FC225846CB32AB67AD5E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IAsymmetricCipherKeyPairGenerator_t1DEC676954C1F8EB3B2D49B10CB17ACA35C2ED34_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IBasicAgreement_t49A0A32749B5FDF1D2945D43D56CAF934A6D548C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ICollection_1_tAD4208B4A8FADCE4C52B4DBDD2845C84C2BC3445_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ICollection_1_tB1D7EB08AB25512108A69980F1B665280DB9F197_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ICollection_1_tC10574690E5689A8AF8F6E2F0674E0CEE77C04BE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ICollection_tC1E1DED86C0A66845675392606B302452210D5DA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDictionary_2_t100B461C37F79E2F9CF3817F1BBEE5DC8495E0F5_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDictionary_2_t15C4AE6FA28CC96AF7D1E9949947C8A7AA64B92C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDictionary_2_t16CDACDB46F2C22D302194A4E428A5CACCEB02F1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDictionary_2_t1A4BDA70AEEDCCFB8771B529481FAF6F64C8D648_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDictionary_2_t4C0E889AA23D9590A60247E7F731BBA09868028B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDictionary_2_t59EECA278A417E0FF1F940F199642DCC95B4933D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDictionary_2_t9761D347AC3B18ED56235F4DC19AAEABDBA24999_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDictionary_2_t99C107346145E7116FEB5DE73BBCC65AD5D6B262_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDictionary_2_tD1343974D8E73F191FA522E7396756FE56054410_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDictionary_2_tF18CA5AA122FDD12A1A3DEDDEC417CC451BE7354_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDictionary_2_tF27308BB3222A674775FAEEE05A80B858247C394_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEncoder_t24E72EE05B58DEC15E03A38641A9B0E2C95197A4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEnumerable_1_tFC51C807276A02FCAAC439CA512B1831AC5FD6AA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEnumerable_t47A618747A1BB2A868710316F7372094849163A2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_tC7CF758C4E4735FD13952A84823441F9BCD3C064_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IJsonWrapper_tB61715FD55AC86C87980FB4363433C0376095ADD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IList_tB15A9D6625D09661D6E47976BB626C703EC81910_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IWrapper_t29A9E044AAEEECE9E2FA8A8A61F76B0F50347B39_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InvalidCipherTextException_tCB4102F353576109DF6723BAD28806C82D61BC8D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InvalidKeyException_t7F19EE8EB26000BAFDF50186FB1DD59F13A7FD8A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* JsonData_tEC3547D1018CC4298487EC54DD677C16BE61D514_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* KekRecipientInfoGenerator_t1EADCDF1D7A6EA36646F881F5090E1AF7340FDE2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* KekRecipientInfo_t49DC4E62062A5E6E070BCBE2704D5AE43A4A7A25_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* KeyAgreeRecipientIdentifier_tBA5E98B2A6C72F3799020F0A9D1C465116A7A28A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* KeyAgreeRecipientInfoGenerator_t24C54423315127CBA3D467B929DD226A00232F34_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* KeyAgreeRecipientInformation_t428C88783EA962AE6460155DB641A5385BA20929_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* KeyNotFoundException_t0A3BE653F7FA27DEA1C91C2FB3DAA6C8D0CBB952_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* KeyRecRepContent_t22F4C88ECE39C1F57BE1F388B10F38BE3CC44E01_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* KeyTransRecipientInfoGenerator_t4D19EF837407B9F0CE3140C25A30074F5D7F9DF1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* KeyTransRecipientInfo_t5560A4301685119C4400C494D4B8D2D5BCF538A0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* KeyUsage_tF5D1BD25AB89302E6BE5EF210FF50F4055A77145_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* KisaObjectIdentifiers_t898950CC3EDDC3A29B3AE5ADE24CBD51FF226455_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_t2AF104D60315227C623084E47EED6630D55BBB37_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* MQVuserKeyingMaterial_t0321EDE63C88A779858E39E0D66B18497BCF6A42_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Math_tA269614262430118C9FC5C4D9EF4F61C812568F0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* MqvPrivateParameters_t5FC169BF7E9130DEB59D0A3E198847975BE0DE87_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* MqvPublicParameters_t45CD88AB7EC58154D669C5D5D68FC11F9BEE6680_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NttObjectIdentifiers_tC71ED857CCE3FB6613DDC764A2350C3561807317_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OnRequestFinishedDelegate_t4E35BB5277ED27A8B43D1987DE7F3B47772018B4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OriginatorID_tE315A79325108441760EEF76B4FC3A8E13B422B0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OriginatorIdentifierOrKey_t391EC78D0FD29ED45DCF5BFF9AC5BABA8A005603_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OriginatorPublicKey_tCFBC1D4932A0818726AED8E4B91FFD9AE1C029F5_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ParameterUtilities_t234D0F218EFEF9117357F420840DDED9D44E2FD8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ParametersWithIV_tD5AFAE97C3F7DA4A08BC278F9AC969DA957E87A0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ParametersWithRandom_t557A9B373F5F2998BE6C0461812FBE4EB73425AC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ParserToken_t51882FFA0865E4E504DFF9B3C42D6EC451D0B6A5_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PropertyInfo_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RecipientEncryptedKey_tED14E5C321F7687BA4201D41E15DE457A7D56BE2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RecipientID_t744700C1480DE017B5D0AB81C6A1044A8C400125_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RecipientIdentifier_tBC500D2CDE60B57F8CB815C4599D2EE019A2E5C1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RecipientInfo_tAD4CBFD604399F45BD0D23A4C028E0FC88C19829_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RuntimeArray_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SecurityUtilityException_t302EB7051FEB04E7829C028B4BC072B6664255CA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Stack_1_t7B63F93F3C5FA452C37D6EC4E51A4F56AF3D7B92_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Stack_1_tC6C298385D16F10F391B84280D21FE059A45CC55_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StringReader_t74E352C280EAC22C878867444978741F19E1F895_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StringWriter_t7BEF6B06B35BC25817D8BE28593FB52F0525B839_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* WrapperUtilities_tA8773B79845F802BD564227F81CD5EF74C553416_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* X509Extension_t977D8DEE7C59707768F9038FE1B97F2E243B80AB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____59B7E757844D3BF9299877BD1C17451611BFBAB493374D6B18D973FDE534151A_102_FieldInfo_var; IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____5B979F69B96A61586A09DD4ED26F20534C629B08732AE32FA34B6F8A0049ACDD_104_FieldInfo_var; IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____7FCA397EF25DB53B2C58A05F9BBFA4E8E0685FDBC8AAF39536123447056895C0_147_FieldInfo_var; IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____B257E85A5D3CAB5E738D5A0FD1A7AE96624BFE92CB7915726CBBE1518C3225CF_213_FieldInfo_var; IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____B7A918F6F138CA8137025633559198B529D28CCEC5A51B005376CC69A5B83D85_224_FieldInfo_var; IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____F8E6964ADFFC257265537256D21E93496A17B9271DC5D64F40869EEEAAFF6FBB_299_FieldInfo_var; IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____FC03ECB1D62767A5B31230F548FA4D4C02F01E3DA8CA1FC66C7C332EA16BF206_308_FieldInfo_var; IL2CPP_EXTERN_C String_t* _stringLiteral003AEB0DCADDDD90442C6808CB62FEEB8AC1A005; IL2CPP_EXTERN_C String_t* _stringLiteral00B28FF06B788B9B67C6B259800F404F9F3761FD; IL2CPP_EXTERN_C String_t* _stringLiteral01E187759622701239321907D0B46741BA9B86F5; IL2CPP_EXTERN_C String_t* _stringLiteral01F92A55E0C4F71D4AC7BF5ADA2134AD7132F1AC; IL2CPP_EXTERN_C String_t* _stringLiteral02436DCFA899EF85289BA35711C248905AB26619; IL2CPP_EXTERN_C String_t* _stringLiteral02EA6340B56179367452A225FC70D5F115F6983B; IL2CPP_EXTERN_C String_t* _stringLiteral0312BE355D8116C0CA0DE25DC0B0491D17457E8A; IL2CPP_EXTERN_C String_t* _stringLiteral03B62EA5928F6650FBFDAB355634433C1C7604AD; IL2CPP_EXTERN_C String_t* _stringLiteral043BD722884266576F7243365839D3FDA49BAB59; IL2CPP_EXTERN_C String_t* _stringLiteral04C78427BE06B53DB9F1CEE9343A2F1FCCEF1241; IL2CPP_EXTERN_C String_t* _stringLiteral057118C49B28F31FA4955B194753088DDCD94999; IL2CPP_EXTERN_C String_t* _stringLiteral0784DB0720998870ED7E71FB9CFF67050515CB67; IL2CPP_EXTERN_C String_t* _stringLiteral079998E3393B6BDC1FAFFA63A54F724488AE5306; IL2CPP_EXTERN_C String_t* _stringLiteral09694282135BA555A67ACF4F4E9A95F96793ED43; IL2CPP_EXTERN_C String_t* _stringLiteral09B8CDE697E612C12788519A26652CF773708DB8; IL2CPP_EXTERN_C String_t* _stringLiteral0A9FF7305BE338C269E316B0BEE476D3027E8B6E; IL2CPP_EXTERN_C String_t* _stringLiteral0AE8B554E31D21D568B4D136545FE92AECD5BACE; IL2CPP_EXTERN_C String_t* _stringLiteral0B11E80AAA17A0F5C086D6F8F9F39074E9CDF614; IL2CPP_EXTERN_C String_t* _stringLiteral0B3BA6E3E4E34967768E52D574A704BEFB366D84; IL2CPP_EXTERN_C String_t* _stringLiteral0B4852B6F2412388B50C99BF806BFE926E4FFEA5; IL2CPP_EXTERN_C String_t* _stringLiteral0BD16095F7E84798C71C79333951136D44D13F78; IL2CPP_EXTERN_C String_t* _stringLiteral0C3C6829C3CCF8020C6AC45B87963ADC095CD44A; IL2CPP_EXTERN_C String_t* _stringLiteral0C5A4B9A44FFF25734984654FFE331804A3F0D4F; IL2CPP_EXTERN_C String_t* _stringLiteral0DF0E7472AB631EF7CA09FF5A07637D92B89E437; IL2CPP_EXTERN_C String_t* _stringLiteral0E9E34245923A0BB21FDAA5FE52670E5EAD09AF1; IL2CPP_EXTERN_C String_t* _stringLiteral0F08CBAF9B2A8EAE68F97D621C626A832F3DE66C; IL2CPP_EXTERN_C String_t* _stringLiteral105762E0634A62C61DC198CF5C5379A13BED338F; IL2CPP_EXTERN_C String_t* _stringLiteral11191BF1C6F1CD57E82D5B9DAFA538F74E112CA9; IL2CPP_EXTERN_C String_t* _stringLiteral1168E92C164109D6220480DEDA987085B2A21155; IL2CPP_EXTERN_C String_t* _stringLiteral116DF234322BBB75C0C8B4EB16718F5707626B59; IL2CPP_EXTERN_C String_t* _stringLiteral11AB4E9415AA9463409964D83190AADCCACA3814; IL2CPP_EXTERN_C String_t* _stringLiteral120478EB9873DCCCC17823A98582639365FE652D; IL2CPP_EXTERN_C String_t* _stringLiteral1273DAEC0D9F05DD31B2043C3024171924D10A51; IL2CPP_EXTERN_C String_t* _stringLiteral12A834EBCA2FBD42304DF3744C6604E27718C5C4; IL2CPP_EXTERN_C String_t* _stringLiteral144E50D9EC5B617A0C0918C140126CFD4E1B4EB8; IL2CPP_EXTERN_C String_t* _stringLiteral149F8C9E859E00B7809E27CDD4794CFC23DDB09F; IL2CPP_EXTERN_C String_t* _stringLiteral14AAD8F28F6AA9300E34EEF8385683F3EF6ECD62; IL2CPP_EXTERN_C String_t* _stringLiteral14BD9DC42A10E81B2E64E664E1188DAF7A9613BB; IL2CPP_EXTERN_C String_t* _stringLiteral15DF3AF4E02129EC302CAE7F8EB33DCAF79C988B; IL2CPP_EXTERN_C String_t* _stringLiteral15F30E0AC0217F04C47A90E499E8480B94E2CD1B; IL2CPP_EXTERN_C String_t* _stringLiteral16041F4A34A616AEA555F6041D7EEE9C28DDF5DB; IL2CPP_EXTERN_C String_t* _stringLiteral1650CDB5C082E30D270ECE461A17AE28379B8FB6; IL2CPP_EXTERN_C String_t* _stringLiteral17708B72EC859E0A7BA6DAFBB240D1B447C87E65; IL2CPP_EXTERN_C String_t* _stringLiteral1824392B13412C883B5D8074E887EFF0D9D0ECDB; IL2CPP_EXTERN_C String_t* _stringLiteral1837347544DBE68F8AF9C22DE2AF15FE56FD5FC2; IL2CPP_EXTERN_C String_t* _stringLiteral18B74F30D80838D0CDF4092D72E6A4A0FE098B62; IL2CPP_EXTERN_C String_t* _stringLiteral18F8830E15119D35D0B3DA27420B82B3705D0EAB; IL2CPP_EXTERN_C String_t* _stringLiteral19E6F54B915CB01A74B7174DFEF8AC62E0C2BB5F; IL2CPP_EXTERN_C String_t* _stringLiteral1ABFEC96E90FCC8592FD051B17979FCF464ED052; IL2CPP_EXTERN_C String_t* _stringLiteral1AE116127FE7A6754AFB8D088FFA9091306B2E91; IL2CPP_EXTERN_C String_t* _stringLiteral1BCFCCB71FDCBD6F9BAFA41014A2E7E8E40C7CCC; IL2CPP_EXTERN_C String_t* _stringLiteral1D59E6177FAE880C9EF94663465FEEDCD97D999F; IL2CPP_EXTERN_C String_t* _stringLiteral1E799DA280FA1125BC8142705178BD801FBFAED4; IL2CPP_EXTERN_C String_t* _stringLiteral1E84DCC432150082284CA4D4DEB2A0DDFC5B8365; IL2CPP_EXTERN_C String_t* _stringLiteral1F3D130E6B912DD675B6830139E7D974C51A68B3; IL2CPP_EXTERN_C String_t* _stringLiteral208FB3837B215C39A2EF71DECFFC19C9FDB72F27; IL2CPP_EXTERN_C String_t* _stringLiteral222C14F66AB014CC03B486A88E1EA70EB5047392; IL2CPP_EXTERN_C String_t* _stringLiteral23163990D038E20F9272B8569811E9D9CC45CC16; IL2CPP_EXTERN_C String_t* _stringLiteral2367BCDD7B214D5EEC78058C7E0F28C2DB18486F; IL2CPP_EXTERN_C String_t* _stringLiteral236CFD811E0BFF5899745F44BBE267D9A4A79BC4; IL2CPP_EXTERN_C String_t* _stringLiteral24158C6C79FE57BE153164B9D7ADCB302F5DF09A; IL2CPP_EXTERN_C String_t* _stringLiteral24BAA34060BB79D4D92A7C0500748E1016F9FB28; IL2CPP_EXTERN_C String_t* _stringLiteral24C049E512CD1B48036BD162FF63700A57CA3469; IL2CPP_EXTERN_C String_t* _stringLiteral24F6E17C703A111CEDBAF2DD7D4FDBE632072195; IL2CPP_EXTERN_C String_t* _stringLiteral250AFEECD2B40C963C8D4B4A34FC18CD10B820F9; IL2CPP_EXTERN_C String_t* _stringLiteral259B44A894E2A674689AA1932B1F668F24722622; IL2CPP_EXTERN_C String_t* _stringLiteral25C4A4D511D9ADD68EFAE37AB3D40CC578F048E7; IL2CPP_EXTERN_C String_t* _stringLiteral25E52E46C5BA07731EDE7FD2861848FDE45DEC46; IL2CPP_EXTERN_C String_t* _stringLiteral27315CFD49467CE600FB7B6EE06DB59D56685EE2; IL2CPP_EXTERN_C String_t* _stringLiteral27441E3C2148FF82FB0C194DAA6A206190BD62D5; IL2CPP_EXTERN_C String_t* _stringLiteral2780AD3C1740DDD8AB0C06BB7B2A18D1F4B90119; IL2CPP_EXTERN_C String_t* _stringLiteral27B1240786558BB01BAF8EA86CF65C4996DEF092; IL2CPP_EXTERN_C String_t* _stringLiteral2AEE75FD319B3EC8521E6C769467B49C1888A5D6; IL2CPP_EXTERN_C String_t* _stringLiteral2B3AD6333F669606E87648FD08F4CF7B98B051B5; IL2CPP_EXTERN_C String_t* _stringLiteral2C722119B0F48B84A9CE79A42D8A10E8175A96AB; IL2CPP_EXTERN_C String_t* _stringLiteral2D8094826FE3A8FA2C7F771E946D9A34C4451B7E; IL2CPP_EXTERN_C String_t* _stringLiteral2DA3DB24E5BE0F3E7A062B02D192768D2607A77B; IL2CPP_EXTERN_C String_t* _stringLiteral2DF4F6C8773C4ADA8D0C09430BB1A6640ECCA94D; IL2CPP_EXTERN_C String_t* _stringLiteral2ED12E7D2E4A6A69923CC4A50186715C32FC8B0B; IL2CPP_EXTERN_C String_t* _stringLiteral2F851A80AFDF46DB1A689F30C8AD9B5960FA47F2; IL2CPP_EXTERN_C String_t* _stringLiteral30012AA97E150C6A81FC539125743F8C854966AF; IL2CPP_EXTERN_C String_t* _stringLiteral30E82465F70655DCADD08FF2109A52B4E249F732; IL2CPP_EXTERN_C String_t* _stringLiteral315818C03CCC2B10070DF2D4EBD09EB6C4C66E58; IL2CPP_EXTERN_C String_t* _stringLiteral31886238D716151850EA1F31099F2FAEEB1376D2; IL2CPP_EXTERN_C String_t* _stringLiteral31D662523F3F3963669539E05B87AF9097F3AC29; IL2CPP_EXTERN_C String_t* _stringLiteral32AD7C42537BC83D17ED81607E9208D784DC1B19; IL2CPP_EXTERN_C String_t* _stringLiteral3562C79A9DE498C1C4F3CF34718882FA659BCF10; IL2CPP_EXTERN_C String_t* _stringLiteral3898E7D2C1147692B865B70C530E4BB2264D9234; IL2CPP_EXTERN_C String_t* _stringLiteral38BBA8C412B96991FBAF9AF6289D9D03C77CF6BF; IL2CPP_EXTERN_C String_t* _stringLiteral38D09B1907F51A21FA890AD1B24D91155B49D4DB; IL2CPP_EXTERN_C String_t* _stringLiteral3A2CD30BF4F578EB33A7BC2E197540229E5DC826; IL2CPP_EXTERN_C String_t* _stringLiteral3B41739C2A8691E67E76BC70505CCCCC742C3F69; IL2CPP_EXTERN_C String_t* _stringLiteral3B588742BC3D1A0ECD11CC1D392339D9E7010939; IL2CPP_EXTERN_C String_t* _stringLiteral3BB3E2F2AD08E30AFD107A43154CE53662C8614D; IL2CPP_EXTERN_C String_t* _stringLiteral3C9E24E07B616013A928E3D71361B4CD88571F2D; IL2CPP_EXTERN_C String_t* _stringLiteral3D03EE68825561C85461F61FCFCFA2EC266E7DD8; IL2CPP_EXTERN_C String_t* _stringLiteral3D0882E2AB5A41A518602D945E1E7EDE9B7714F6; IL2CPP_EXTERN_C String_t* _stringLiteral3D4DB32D30EAABD9002C0DAC3C1383B1B22192B6; IL2CPP_EXTERN_C String_t* _stringLiteral3DA3B3F9419DEFA543527EDEF953E71B0C03948A; IL2CPP_EXTERN_C String_t* _stringLiteral3E2AC8CE24E047081E4681D3BCDCB9DF121FFD4C; IL2CPP_EXTERN_C String_t* _stringLiteral3EA7BCFD55C2E376307BCCBB30F31A7E982AF88F; IL2CPP_EXTERN_C String_t* _stringLiteral3ED0BD2AA56403B91A2CC22F11E361CBD43E429D; IL2CPP_EXTERN_C String_t* _stringLiteral3F9E709FAD00D54303289A1B1D916C86F335C5C3; IL2CPP_EXTERN_C String_t* _stringLiteral4036CB682368F57A752F1AE948975DAB7499EACE; IL2CPP_EXTERN_C String_t* _stringLiteral4044F71E1BE65840634E2AF1C09536F10DBF2AF5; IL2CPP_EXTERN_C String_t* _stringLiteral40F5431A5203B1B661E92C45EF446F7D326E2C50; IL2CPP_EXTERN_C String_t* _stringLiteral410FC4E1DDB5FBB0F905E92CEBD6EB2AB954C222; IL2CPP_EXTERN_C String_t* _stringLiteral423ACA01AC170A50869ECDEF572CD96995576718; IL2CPP_EXTERN_C String_t* _stringLiteral4282F0EC210266935AD8C4F278FE8699B66C189E; IL2CPP_EXTERN_C String_t* _stringLiteral42A0E7472B3F7A0E11C675967D1474D751D60460; IL2CPP_EXTERN_C String_t* _stringLiteral43187C90BBB5DFB063A95733C9BD65ECD25A2E84; IL2CPP_EXTERN_C String_t* _stringLiteral437906DA6527EA9BAA9A971EC5171183BEB85B59; IL2CPP_EXTERN_C String_t* _stringLiteral4421A706BA6795BFF237819026CD22ECB3D542E1; IL2CPP_EXTERN_C String_t* _stringLiteral44582662BBAAC3A46B740C1A41325322EA9F35CC; IL2CPP_EXTERN_C String_t* _stringLiteral447779287A1AF6F92462F26C04D7940A9F77EABA; IL2CPP_EXTERN_C String_t* _stringLiteral4538E1E102112A1F7389A80F5A408F04D49E22A4; IL2CPP_EXTERN_C String_t* _stringLiteral456BA6DFA4ECDFAAD0D654A1EC48EE0C8CB90B18; IL2CPP_EXTERN_C String_t* _stringLiteral45B0A933FA7A6EB5CC5B62AB96698919793F26F0; IL2CPP_EXTERN_C String_t* _stringLiteral465B6800EF3651F28B553739CAF2F3A32A1E2105; IL2CPP_EXTERN_C String_t* _stringLiteral466667AF5777ED73F7BD31038D82A39CA99DD782; IL2CPP_EXTERN_C String_t* _stringLiteral4684A5E737B3007805909778461B3450C84C9C61; IL2CPP_EXTERN_C String_t* _stringLiteral472FE52EE1F9F809D3DD2226C727C2E284F9E0AD; IL2CPP_EXTERN_C String_t* _stringLiteral481BF531F6894754468B6C0F720AA094B41A1971; IL2CPP_EXTERN_C String_t* _stringLiteral48A54DE329BF294FDB29E562C0459FBF1F84BD37; IL2CPP_EXTERN_C String_t* _stringLiteral499284EE1D3CD7FE549A05AE5F4E78D079B96018; IL2CPP_EXTERN_C String_t* _stringLiteral49DF44512FCC9CA23AEBB97BA329E199E7053B80; IL2CPP_EXTERN_C String_t* _stringLiteral4A1F452C1A2F394ACA54C38CCEB4EFBFE9541953; IL2CPP_EXTERN_C String_t* _stringLiteral4A261EB7E7319776625F5A015EA18053797E6890; IL2CPP_EXTERN_C String_t* _stringLiteral4A8398B267DBE41D932C3F3186724F2B37F98030; IL2CPP_EXTERN_C String_t* _stringLiteral4AAE06FCC2653520704C0099B595C3918487D50F; IL2CPP_EXTERN_C String_t* _stringLiteral4B9ED093C8B83343B2C50216F336DA5A315FB725; IL2CPP_EXTERN_C String_t* _stringLiteral4BF2CE86BA69492C7DE55AB9B517CC2DAC4FB810; IL2CPP_EXTERN_C String_t* _stringLiteral4D6B45838638C5E81748063BC98DE32B3C19F814; IL2CPP_EXTERN_C String_t* _stringLiteral4D8D9C94AC5DA5FCED2EC8A64E10E714A2515C30; IL2CPP_EXTERN_C String_t* _stringLiteral4DE58F5719F293D114AA635145F1B1B7DB3AA51B; IL2CPP_EXTERN_C String_t* _stringLiteral4DFD42FBEB2EEBDCC6AAD796584699ED2CF11A7F; IL2CPP_EXTERN_C String_t* _stringLiteral4F539D3E438AC9532A3E056E50A61F6CCD62392B; IL2CPP_EXTERN_C String_t* _stringLiteral4FB2B034CFC4D83D3A4EE1141F15F37641E29103; IL2CPP_EXTERN_C String_t* _stringLiteral50863FA6986F7E76E712DFF2F2A2AD0E3E7AE14D; IL2CPP_EXTERN_C String_t* _stringLiteral508FADA7965A5CC9B9F3F205B9D7F61B002F4352; IL2CPP_EXTERN_C String_t* _stringLiteral50E585819C0D7FC66C0CA531CB3FC14C49D773AE; IL2CPP_EXTERN_C String_t* _stringLiteral519AD94D394A6134ECB549B69966123B5B8A8356; IL2CPP_EXTERN_C String_t* _stringLiteral5297FF82DC6A9C349ECA94FD70CDF59E3E2D246E; IL2CPP_EXTERN_C String_t* _stringLiteral52E038B4860FAC9F3B78139F3A227E95D368917F; IL2CPP_EXTERN_C String_t* _stringLiteral534D3A6D5CD6D7E8EDDBBF86A13158CBD377292C; IL2CPP_EXTERN_C String_t* _stringLiteral53CE3854A381FE03C65D949A33C2E1D7DBA02CB4; IL2CPP_EXTERN_C String_t* _stringLiteral547533E6BFB683D7A8B040C2B377CC4E1CE9E7C7; IL2CPP_EXTERN_C String_t* _stringLiteral54793609F88E1BD1C262633A62D194BF2699F40A; IL2CPP_EXTERN_C String_t* _stringLiteral5516BCCACB7482CB8404E6ABBECCAC6C76D81B03; IL2CPP_EXTERN_C String_t* _stringLiteral551783E77CB9FCB5ED401273B723D4051E6D0A6E; IL2CPP_EXTERN_C String_t* _stringLiteral5586076C6C40BC02C91BE914F4082D4F70EE50A5; IL2CPP_EXTERN_C String_t* _stringLiteral5745B045CAF8BADC5A3B1C82DF5478ACB7B945D5; IL2CPP_EXTERN_C String_t* _stringLiteral580610F5FB66480F48933368044BBD89E4E608DE; IL2CPP_EXTERN_C String_t* _stringLiteral5829FC8E7A0F8B4C9AD4ADB6206D273CFF726B47; IL2CPP_EXTERN_C String_t* _stringLiteral58B1F539A82AC072CB88DB9A4F90E8968D63C502; IL2CPP_EXTERN_C String_t* _stringLiteral591717969A5E5E3B077255142EBD573FD6015D85; IL2CPP_EXTERN_C String_t* _stringLiteral593CBFE95E3FA15438E893EF8E8CBD31F861CDE1; IL2CPP_EXTERN_C String_t* _stringLiteral594DD0BF272B5892AA7F91E62C66BCD2666E72BB; IL2CPP_EXTERN_C String_t* _stringLiteral5962E944D7340CE47999BF097B4AFD70C1501FB9; IL2CPP_EXTERN_C String_t* _stringLiteral5A1278AB54EFEBBD1E0E03AB2677F22D39311C27; IL2CPP_EXTERN_C String_t* _stringLiteral5A326301BAA0094E59A01F57B24D421A47031006; IL2CPP_EXTERN_C String_t* _stringLiteral5ACC87E6B2B548D708984D8A5ABA764C905ACDF4; IL2CPP_EXTERN_C String_t* _stringLiteral5BEFD8CC60A79699B5BB00E37BAC5B62D371E174; IL2CPP_EXTERN_C String_t* _stringLiteral5C45EBE53E9E2E39389BD2C2787A688C6B242A89; IL2CPP_EXTERN_C String_t* _stringLiteral5C7F4692AC7771BC2CFA46AE943EFEC925C43009; IL2CPP_EXTERN_C String_t* _stringLiteral5D8680035BE790925076A087AB73E9FB073A0772; IL2CPP_EXTERN_C String_t* _stringLiteral5DF3D13924D4A9B57C580A3E9F74E4A8F575BDBD; IL2CPP_EXTERN_C String_t* _stringLiteral5E911BB12F7CD2F8BA182802B74FB3A6E1ED9DE5; IL2CPP_EXTERN_C String_t* _stringLiteral5F6959A93B3B778E88467371222562086ADE5DA6; IL2CPP_EXTERN_C String_t* _stringLiteral60D5A059B04E15DA6E5EF0862DCCD6CB64AA99B9; IL2CPP_EXTERN_C String_t* _stringLiteral6133C2BE2821ACAAF92A79DE2B042290474302F8; IL2CPP_EXTERN_C String_t* _stringLiteral616097E2A4064778CDA7814FBF26DEF8EBCBC760; IL2CPP_EXTERN_C String_t* _stringLiteral61850AA9E002C5E395225F91BB4F993737AE9A26; IL2CPP_EXTERN_C String_t* _stringLiteral61CAC7CAE185918B2AC3B2F978E0EE9FAD61461F; IL2CPP_EXTERN_C String_t* _stringLiteral623CBDCC47C6DB996D3C60509009A4E557A3E1EF; IL2CPP_EXTERN_C String_t* _stringLiteral629D443B467C322F001488EE08CCCD8AEEEA63B4; IL2CPP_EXTERN_C String_t* _stringLiteral63122F6BC8B6312359A21037BB6FBE3038B29AB9; IL2CPP_EXTERN_C String_t* _stringLiteral6348AE9AC0D51DA91EE3554B61F63EF74190CB52; IL2CPP_EXTERN_C String_t* _stringLiteral638C5441E8427B2B9D2C941DDBF958579B5FE3F0; IL2CPP_EXTERN_C String_t* _stringLiteral6673B295DB1AD68A69116F9F78378A56B7E67245; IL2CPP_EXTERN_C String_t* _stringLiteral671C998D0CEEC195C4ED2BF0AC06E8EB3297A1A1; IL2CPP_EXTERN_C String_t* _stringLiteral6790F5A313E4F3D7D9EE743046C665DE8D5FE0F2; IL2CPP_EXTERN_C String_t* _stringLiteral68109824E2F5B7EE073DBF1D5EDE1B33C05B35C9; IL2CPP_EXTERN_C String_t* _stringLiteral68B2E674108C4BB827E60A114CE45F7BC57DC4DA; IL2CPP_EXTERN_C String_t* _stringLiteral690BF02630AC0BD6AA6BD08D2C36A28E1FC54F3E; IL2CPP_EXTERN_C String_t* _stringLiteral6927B8153CCC263D7BB57FFF824CC1DCDAEF2068; IL2CPP_EXTERN_C String_t* _stringLiteral6A217FCB93B9546B68C2A30F73B69EF5150994F2; IL2CPP_EXTERN_C String_t* _stringLiteral6ACD7627D1812D17F371FBBC61ED2BBA7633C249; IL2CPP_EXTERN_C String_t* _stringLiteral6C77FF5301F68E4B5B05720EBE766D0DCA74B3A1; IL2CPP_EXTERN_C String_t* _stringLiteral6CE02DBF10772951A436ED08602B6C21AF7A06F2; IL2CPP_EXTERN_C String_t* _stringLiteral6D272643386259B5BD33C7E88283656158F2E750; IL2CPP_EXTERN_C String_t* _stringLiteral6D95405FA7A0F595438CD7B9C671CA03426B831E; IL2CPP_EXTERN_C String_t* _stringLiteral6E9AE149AF6FE253DA34CB099646365444CE6AF5; IL2CPP_EXTERN_C String_t* _stringLiteral6EC6B6D1A9B46F9D0F6DE00D3D99A6E851B9E0C6; IL2CPP_EXTERN_C String_t* _stringLiteral6F436E58B96618C16285FE121D22EB2019A668E1; IL2CPP_EXTERN_C String_t* _stringLiteral6FFB662544B7CC75E90E30E825D1C3A41E593CBC; IL2CPP_EXTERN_C String_t* _stringLiteral70209D100585F41DCF819AD4AD7C110527232456; IL2CPP_EXTERN_C String_t* _stringLiteral702401AF8C11794F79CA29BDC7101A8022A65261; IL2CPP_EXTERN_C String_t* _stringLiteral713F506A3B28BDFF287E8D0C67076F829CBC441A; IL2CPP_EXTERN_C String_t* _stringLiteral7254212DCCA27CDD7847EA60551444D043EBE741; IL2CPP_EXTERN_C String_t* _stringLiteral73A13F61B7FD5E9756396E183657AC0B0B7C757F; IL2CPP_EXTERN_C String_t* _stringLiteral7453B8C50E69FD65D59A580E54E805F1AC8B58CF; IL2CPP_EXTERN_C String_t* _stringLiteral74654D5D3F9E9C69AFB772D03553C20793E0540B; IL2CPP_EXTERN_C String_t* _stringLiteral7479A72B853B4FDBFCA88205F6F2D9437EE4ED7F; IL2CPP_EXTERN_C String_t* _stringLiteral74B83A50A58269C4EECA165C2ABB62B80AAFC9D0; IL2CPP_EXTERN_C String_t* _stringLiteral76503D9253B72682A620EEAA6520F0FD44B20267; IL2CPP_EXTERN_C String_t* _stringLiteral770093ACE938393E8EA6EF11BE76BF5B223BAD3F; IL2CPP_EXTERN_C String_t* _stringLiteral772A092EC6FE21BB42DC531C04598014C47B1B45; IL2CPP_EXTERN_C String_t* _stringLiteral77B61DEA5A6B81422E87E6ACFCF200C568C6B9E3; IL2CPP_EXTERN_C String_t* _stringLiteral77D38C0623F92B292B925F6E72CF5CF99A20D4EB; IL2CPP_EXTERN_C String_t* _stringLiteral78042B833812F6B193D3E3077C580BC1C4C26AA5; IL2CPP_EXTERN_C String_t* _stringLiteral785F17F45C331C415D0A7458E6AAC36966399C51; IL2CPP_EXTERN_C String_t* _stringLiteral7945FC7C023D301D28C2D6E2D57C54627A1FF915; IL2CPP_EXTERN_C String_t* _stringLiteral7B6EE056E549534162451A09C7F0AFAC372DBD06; IL2CPP_EXTERN_C String_t* _stringLiteral7C5A9B11BC0D7A18E88B52DFAB70A388DAECDEAF; IL2CPP_EXTERN_C String_t* _stringLiteral7E37EE8FC8421E74B37EF5071971F6C330B35366; IL2CPP_EXTERN_C String_t* _stringLiteral7EDDB357174D241BAF5DD9EBD040E7B2908391B1; IL2CPP_EXTERN_C String_t* _stringLiteral7F3238CD8C342B06FB9AB185C610175C84625462; IL2CPP_EXTERN_C String_t* _stringLiteral800C762D9EF92B399EC87C776239043ACEEC0717; IL2CPP_EXTERN_C String_t* _stringLiteral801418BADD4326649768A14271F1E51255372E76; IL2CPP_EXTERN_C String_t* _stringLiteral814BE16AF757E2D44EF0D15E6D76E5B1B4F9AE1A; IL2CPP_EXTERN_C String_t* _stringLiteral8161E3F6A0D6B886F63371E65DD485482CFADE19; IL2CPP_EXTERN_C String_t* _stringLiteral8243A16D425F93AF62CAAB2BFAE01A2D6246A5FE; IL2CPP_EXTERN_C String_t* _stringLiteral82596D39B8C63D239E6F05DD5225F859758334CE; IL2CPP_EXTERN_C String_t* _stringLiteral83204952B6970480CF6B84EC6C9B649B98DD95E6; IL2CPP_EXTERN_C String_t* _stringLiteral8322F9DB7563E8AED558DBEAB872C883FD6B8556; IL2CPP_EXTERN_C String_t* _stringLiteral83374AA2BFCBA84004670EF3ABFBBECF5C901268; IL2CPP_EXTERN_C String_t* _stringLiteral8400A3C0D1ADD6CDA24DA8EF0E1D2E5D41C239B7; IL2CPP_EXTERN_C String_t* _stringLiteral8407CB04F02745686F8825EB812A949EFE387B51; IL2CPP_EXTERN_C String_t* _stringLiteral846E8FFE581A3899702D65CD864D8C08317D9011; IL2CPP_EXTERN_C String_t* _stringLiteral84BE6DF7F5E86A94476E7ED44C8A9ACA10E6236A; IL2CPP_EXTERN_C String_t* _stringLiteral8501DD252D298AC4178460630F6E6EAB74A6B5DE; IL2CPP_EXTERN_C String_t* _stringLiteral8515553A5B3BDCBB0920E96A5FD0FC34F11C2713; IL2CPP_EXTERN_C String_t* _stringLiteral86676EF5625B07BB6A212B0248104BFAD8CDFD5C; IL2CPP_EXTERN_C String_t* _stringLiteral8668E04D271F5542C5CC6AF53F7BF24BEB1C7CC9; IL2CPP_EXTERN_C String_t* _stringLiteral86C1C16CB2BA4E014A7DA34A83EB6995CDFBA040; IL2CPP_EXTERN_C String_t* _stringLiteral86F532611218781975D4AD96E50DDF38DB94FBC1; IL2CPP_EXTERN_C String_t* _stringLiteral8746FD182DCA32C6B26096E588A9071801FFFDA3; IL2CPP_EXTERN_C String_t* _stringLiteral8803A42C3EBF3DF0EEAC9E7B9A1F9E505646AF8D; IL2CPP_EXTERN_C String_t* _stringLiteral8804A3D0362E1679758AA4E40EB1C2BE16C1C43F; IL2CPP_EXTERN_C String_t* _stringLiteral8831AB81FBD8CBAE14DC71B0E694591CA4B24450; IL2CPP_EXTERN_C String_t* _stringLiteral885C1F522AFB0B733EF983628BB641707475502A; IL2CPP_EXTERN_C String_t* _stringLiteral88ABBDEE731F56D989C298F52912B7B0D27D0D84; IL2CPP_EXTERN_C String_t* _stringLiteral88E6527BC40313AF8F64B2BDC32E69C11591CC2C; IL2CPP_EXTERN_C String_t* _stringLiteral8947154D3CBACC0B04352B32241D8978345169E6; IL2CPP_EXTERN_C String_t* _stringLiteral8980A95220B779E75A86358E8742A7FF3C9DB27A; IL2CPP_EXTERN_C String_t* _stringLiteral8A2FA226E0BD2F452D9FB468B577991FF60938CD; IL2CPP_EXTERN_C String_t* _stringLiteral8A7ADA321662F03FBB59ED5284BDC97D18CC0EE8; IL2CPP_EXTERN_C String_t* _stringLiteral8A958FB6897A690303DAC8D56CC4BAD030B70BBC; IL2CPP_EXTERN_C String_t* _stringLiteral8C75FBB37FEAE26394302A142DCCC33CBA27B413; IL2CPP_EXTERN_C String_t* _stringLiteral8C7EAF89A55524ED26DF7B3B8BB49206013125ED; IL2CPP_EXTERN_C String_t* _stringLiteral8CAF9838DB27F09D981F0AC49F95EBEF834A9873; IL2CPP_EXTERN_C String_t* _stringLiteral8E284AA45C643AAA8D3553AA7AB6A1C3BC3E32D1; IL2CPP_EXTERN_C String_t* _stringLiteral8ECE837BA7230B14B050EF37843797187D4C7113; IL2CPP_EXTERN_C String_t* _stringLiteral8F9B7501515E2A09F052F2F28B58523841134766; IL2CPP_EXTERN_C String_t* _stringLiteral8FAF85F7623BFD44FCE35A5FC39DA8E56599027E; IL2CPP_EXTERN_C String_t* _stringLiteral8FE94193A3EF39943F898714AC9062F7EBD96279; IL2CPP_EXTERN_C String_t* _stringLiteral9037918EF368FDB9869069C353AC1D0AA985BD83; IL2CPP_EXTERN_C String_t* _stringLiteral908E865567AA1C41537CA9ED31282C445994DD4B; IL2CPP_EXTERN_C String_t* _stringLiteral909F3D6787D061F47CA575DBA54915DEDA85F119; IL2CPP_EXTERN_C String_t* _stringLiteral91255E900FD832BE20D9327520ED35244A945574; IL2CPP_EXTERN_C String_t* _stringLiteral91D927507F28A9603EDE93DD58C82DB5A90A24D3; IL2CPP_EXTERN_C String_t* _stringLiteral9216BDEF5172F1DBAACFFF605E8C99BD4A930973; IL2CPP_EXTERN_C String_t* _stringLiteral9289E5000354074BD5AACC679D9D0F7C5AE1D727; IL2CPP_EXTERN_C String_t* _stringLiteral92CDC213CD9BF6DDDE9D749D9CB7FA2D63A961D7; IL2CPP_EXTERN_C String_t* _stringLiteral92DF713CD0B096E2A53BD8F4045E4587AB222F88; IL2CPP_EXTERN_C String_t* _stringLiteral93087E87481BBE023485F02F3C876019927EB4AE; IL2CPP_EXTERN_C String_t* _stringLiteral932DB59E166DB72B95897A31FD9731B6C768211C; IL2CPP_EXTERN_C String_t* _stringLiteral936D0603E2FF3786F4BAFAFF9F8763CB52EAE9BB; IL2CPP_EXTERN_C String_t* _stringLiteral93717CD8FCD45BAB4F15D3BACC989A6A93BA2674; IL2CPP_EXTERN_C String_t* _stringLiteral93D9C7398B56588CA42C0B0EAFB9E90E5D9E7F07; IL2CPP_EXTERN_C String_t* _stringLiteral940504934E29D0857302B5D7BE2CA055B2A49D0F; IL2CPP_EXTERN_C String_t* _stringLiteral94152201B24834B0EF60CA96399C126BAED45FB6; IL2CPP_EXTERN_C String_t* _stringLiteral95000FA289D79FAB3A572B333C8E225E6BCB160D; IL2CPP_EXTERN_C String_t* _stringLiteral953AE0F56469F3DF4973E767A9C79D6676E3063B; IL2CPP_EXTERN_C String_t* _stringLiteral95AD45B2189AB613D276310BCC6809D2DA9438A7; IL2CPP_EXTERN_C String_t* _stringLiteral97A7608AC0E41B025274674683D580C13568B50F; IL2CPP_EXTERN_C String_t* _stringLiteral987B129DC592802C5E950BD06BA0ED8F1C12AADE; IL2CPP_EXTERN_C String_t* _stringLiteral987DAAC6A74B65BED6AD16AE02B6596FD14A96C4; IL2CPP_EXTERN_C String_t* _stringLiteral9977E59D6029C67FCFACEBEC6E72FAEC32CF1D15; IL2CPP_EXTERN_C String_t* _stringLiteral9ADC43608414D00FD8569E1D15773E64F6A8B05A; IL2CPP_EXTERN_C String_t* _stringLiteral9C66112461B9A8D2A9A497560D96DF33ACF276C5; IL2CPP_EXTERN_C String_t* _stringLiteral9D0FC7192C1BC49D9C9F14A232794521DA714D9B; IL2CPP_EXTERN_C String_t* _stringLiteral9D1DA43CE9CBA725ACEA10D07C46BA50963C8C53; IL2CPP_EXTERN_C String_t* _stringLiteral9D40F1B51AA0CEAA15B307E54B4E8CBB55AA5F41; IL2CPP_EXTERN_C String_t* _stringLiteral9EC87753978C124DCAA8AEC7F86EB8017F6C3A09; IL2CPP_EXTERN_C String_t* _stringLiteral9F189DCA55E8A13E16217FBC01F49E80FF2C2799; IL2CPP_EXTERN_C String_t* _stringLiteralA08A76049D93CFB9F937EFBA7C64FD31822CC8DC; IL2CPP_EXTERN_C String_t* _stringLiteralA1C52417691AB77498FAE6F9B43394EBC36F5466; IL2CPP_EXTERN_C String_t* _stringLiteralA220A22C5FAAB625E013DB9D2FE393F2A347F292; IL2CPP_EXTERN_C String_t* _stringLiteralA394227B1EAAB8CB39747A4DBF6CFADB88BF7BD4; IL2CPP_EXTERN_C String_t* _stringLiteralA3A6C2C14F2E8B8C0805954E566C209EA57E55A4; IL2CPP_EXTERN_C String_t* _stringLiteralA3AA82753EDD37B4C0FDF7DF23255467A179DF42; IL2CPP_EXTERN_C String_t* _stringLiteralA40EBFDEF859703C16F78E49909ECE79C751CC92; IL2CPP_EXTERN_C String_t* _stringLiteralA51B0EF6AC9954338624D239094263CC8C9D43FA; IL2CPP_EXTERN_C String_t* _stringLiteralA5D5402405EA46FA1359EF38E2451145DB09D1C5; IL2CPP_EXTERN_C String_t* _stringLiteralA5D6D050A2B6C34B0B5FAA350E56ED662A0DA4E8; IL2CPP_EXTERN_C String_t* _stringLiteralA5DE9AF9DC2891B622DEE8B16FD9760B74C80E9E; IL2CPP_EXTERN_C String_t* _stringLiteralA5EAF3BF1804594F0F4E627ADE58347CE3657B51; IL2CPP_EXTERN_C String_t* _stringLiteralA7C3FCA8C63E127B542B38A5CA5E3FEEDDD1B122; IL2CPP_EXTERN_C String_t* _stringLiteralA8E3A14BFED9F7D70EFB2C59F8DBAC2A52180062; IL2CPP_EXTERN_C String_t* _stringLiteralA8EA98C7E235C2444F0F9DED58ACB2C5200C7220; IL2CPP_EXTERN_C String_t* _stringLiteralA91F812B4E9ACBE9AA316EF0B8EAB265F5D286CE; IL2CPP_EXTERN_C String_t* _stringLiteralA93413BFB1B213BA9C49EEC7909A02015AE02DA9; IL2CPP_EXTERN_C String_t* _stringLiteralA958A954074FF9484F15385EEEC73469849170AA; IL2CPP_EXTERN_C String_t* _stringLiteralAAF4CFCFD1959185EC7FBAEBFB19DD28193E68AC; IL2CPP_EXTERN_C String_t* _stringLiteralAB126DD930EE3F620A8A213379D5A6699A8A3DCD; IL2CPP_EXTERN_C String_t* _stringLiteralAB49D9E4A3D98FBECE9A0AA5AD8332DE927850B6; IL2CPP_EXTERN_C String_t* _stringLiteralAB6C8671E518A0307303A71FB3EDD8435F076403; IL2CPP_EXTERN_C String_t* _stringLiteralAB6E8D33884A8AB4625102A8EEE80D34FD589540; IL2CPP_EXTERN_C String_t* _stringLiteralABD1A5066AD876BBA7B4C0BF57BA82BAB5878D3B; IL2CPP_EXTERN_C String_t* _stringLiteralAD0EAD579F4BA2AF0880E986F927DEA09057BEB6; IL2CPP_EXTERN_C String_t* _stringLiteralAEA77D5EF63F278131D936B44C26AFA3FE3CCF9E; IL2CPP_EXTERN_C String_t* _stringLiteralAEAC30D8C28806B51680D5DC521FC3C410F2D5B5; IL2CPP_EXTERN_C String_t* _stringLiteralAEF56E4786DAF8E6B8D0AD71460A39EFD24FB591; IL2CPP_EXTERN_C String_t* _stringLiteralAFFC6F6F0E65082B10893D65E7D185AE0259C8A6; IL2CPP_EXTERN_C String_t* _stringLiteralB10E18314EAB53D5C8CADF7FF0B428566F2EB7D0; IL2CPP_EXTERN_C String_t* _stringLiteralB29841741B0ED5994BCC9FFA37F8DF85DD7675DE; IL2CPP_EXTERN_C String_t* _stringLiteralB2D62E3F75706996C1B47FC533FBBFDE9C3C5173; IL2CPP_EXTERN_C String_t* _stringLiteralB2F5D01615E64DEDD39E4B00E0761902DB4300FD; IL2CPP_EXTERN_C String_t* _stringLiteralB375043E052374D35DBFC775461DCF09C38D86A3; IL2CPP_EXTERN_C String_t* _stringLiteralB3C34217CBB8F650ED8F6E70B410A604371E2EF1; IL2CPP_EXTERN_C String_t* _stringLiteralB4B7C0DD1031D01D1D525A2AFE11B0C544BA74ED; IL2CPP_EXTERN_C String_t* _stringLiteralB6715D1393DD3C6199F733E1E8211654C1DDBA4E; IL2CPP_EXTERN_C String_t* _stringLiteralB6D605A9087410128B41F667A579D1A26C21F6F6; IL2CPP_EXTERN_C String_t* _stringLiteralB6F02FE6CD732AB22BD11BE4254D9546F3BEEE58; IL2CPP_EXTERN_C String_t* _stringLiteralB78F235D4291950A7D101307609C259F3E1F033F; IL2CPP_EXTERN_C String_t* _stringLiteralB78F57C917CAEBCD2158A0F79956F6090BF4B876; IL2CPP_EXTERN_C String_t* _stringLiteralB7940066A5E7B1C2BCE401B210078B4881CD0FDF; IL2CPP_EXTERN_C String_t* _stringLiteralB7C45DD316C68ABF3429C20058C2981C652192F2; IL2CPP_EXTERN_C String_t* _stringLiteralB889DA3842BBC00408ACCA715986B232FC2C0286; IL2CPP_EXTERN_C String_t* _stringLiteralB9D0D87F8D8058F2763F8C5F3C1D8B09D0958F8F; IL2CPP_EXTERN_C String_t* _stringLiteralBB6491FC4858E688C9DDDB1DB5FD836F70300267; IL2CPP_EXTERN_C String_t* _stringLiteralBCE387482DF0CE7D0EE281D19A59E84F4C99C539; IL2CPP_EXTERN_C String_t* _stringLiteralBCF60969B22E7B4A069AFAAC56A0343C17FCB547; IL2CPP_EXTERN_C String_t* _stringLiteralBD2B2AC85C150A80EC9300F74572E9F25387DCEF; IL2CPP_EXTERN_C String_t* _stringLiteralBE14179E6E19E4DB370B1B1D340FEF075787D84A; IL2CPP_EXTERN_C String_t* _stringLiteralBE27790FE5F9592709AE1519C66D48EF4947F953; IL2CPP_EXTERN_C String_t* _stringLiteralBE355E1D370E314EF9087ADEB4BA1C2B6A42782D; IL2CPP_EXTERN_C String_t* _stringLiteralC1247379A9C42BAF4DAD87F9ABE2F0CB38AF22A2; IL2CPP_EXTERN_C String_t* _stringLiteralC15286923E3E7294E5A3DFA193D2C9E83E1A73AF; IL2CPP_EXTERN_C String_t* _stringLiteralC17E8DF418A83A3A6C6F8D270D4F25171623D385; IL2CPP_EXTERN_C String_t* _stringLiteralC19A67243F4A3B2010D2D94EAB2C299DEFFBC32F; IL2CPP_EXTERN_C String_t* _stringLiteralC2824374C33DED498B8B13E8DD349EF610C8DB93; IL2CPP_EXTERN_C String_t* _stringLiteralC2B624A34AE5F3AF1DE39F5AA12C5DBF59299E28; IL2CPP_EXTERN_C String_t* _stringLiteralC31E66F919D06AD2730738EF7F884271E99BB7DA; IL2CPP_EXTERN_C String_t* _stringLiteralC33931DE0021A139A7D7E6F12EB5D5C9D715EB7F; IL2CPP_EXTERN_C String_t* _stringLiteralC373408F71B6A085BE6E6EC41792D1D1C851ED76; IL2CPP_EXTERN_C String_t* _stringLiteralC436C09C1CCC8596709DF698C17C6EC182A38FC9; IL2CPP_EXTERN_C String_t* _stringLiteralC547F47A60B1EE365F1225D6A359C72F39CF4E84; IL2CPP_EXTERN_C String_t* _stringLiteralC63496F78F80F09E4841EF5CD0DA8DAF7028FB4B; IL2CPP_EXTERN_C String_t* _stringLiteralC6753E6A408C8CADF84906DD27E247CA73E2BA1C; IL2CPP_EXTERN_C String_t* _stringLiteralC690C3E3484DF59A062AC0913B3AA0F9E608C757; IL2CPP_EXTERN_C String_t* _stringLiteralC7127321B48A6D941AD316178D443101703FA4CD; IL2CPP_EXTERN_C String_t* _stringLiteralC73995D1603E83396B3B11A3781474865F7B5F12; IL2CPP_EXTERN_C String_t* _stringLiteralC77703C85D26BD8ACE24CD7C1F39C6792D57FF8E; IL2CPP_EXTERN_C String_t* _stringLiteralC7D0C10085889407FF02A27834F174B0C4C87339; IL2CPP_EXTERN_C String_t* _stringLiteralC81B61D4AD7D670A8501CF02F2A0F147248CAB6E; IL2CPP_EXTERN_C String_t* _stringLiteralC81FACA20686EB8F4A61978D7596BC2DFB59EA3D; IL2CPP_EXTERN_C String_t* _stringLiteralC8395859B32B7B887C6F2ED68A0C1A5C2784CD17; IL2CPP_EXTERN_C String_t* _stringLiteralC873884E5FA6DC20126ADC482CE886EE4A500F53; IL2CPP_EXTERN_C String_t* _stringLiteralC8915D600506CC1C83580BE87AA6B7F5CFC515F6; IL2CPP_EXTERN_C String_t* _stringLiteralC89ED497F53BA772E57D7FCD59C0427043971866; IL2CPP_EXTERN_C String_t* _stringLiteralC8C8BA6638F9249D92E658C100C02CB474E7CF9C; IL2CPP_EXTERN_C String_t* _stringLiteralC9CF81A157AC9C24DAF2749606D1CD420E644287; IL2CPP_EXTERN_C String_t* _stringLiteralCA20421A7FA0F75C232275A96E3BA4DE2E2DAC13; IL2CPP_EXTERN_C String_t* _stringLiteralCAF8804297181FF007CA835529DD4477CFD94A70; IL2CPP_EXTERN_C String_t* _stringLiteralCB614311DED0B32833D22F99CC231AA94F8F7ED8; IL2CPP_EXTERN_C String_t* _stringLiteralCBCEF81934805CF0E25D96CDBBCC074D028DF8DC; IL2CPP_EXTERN_C String_t* _stringLiteralCC3D91506BA6CACBADB94459BC4247D0A1F068CB; IL2CPP_EXTERN_C String_t* _stringLiteralCC78FBA346DD9CACC26E52811943307C663B4A4A; IL2CPP_EXTERN_C String_t* _stringLiteralCCB5844E0B16E1C73510EF0205A34055AA361C83; IL2CPP_EXTERN_C String_t* _stringLiteralCD3058370E4201A13BEF316F3A0D0F83E5C3CE73; IL2CPP_EXTERN_C String_t* _stringLiteralCDA723AA4DBB226A906416AA9BF1C2D4CEC53C89; IL2CPP_EXTERN_C String_t* _stringLiteralCDC4D6F5FE003765FA62102F7D8C521C2A31314D; IL2CPP_EXTERN_C String_t* _stringLiteralCE1A9F8343B34A53BE31CCF513304610D6D06117; IL2CPP_EXTERN_C String_t* _stringLiteralCE863626383155D02291456632E72C0FBEC22C3C; IL2CPP_EXTERN_C String_t* _stringLiteralCEE7535349ADB76DD55B08451D311FC3CF06A19C; IL2CPP_EXTERN_C String_t* _stringLiteralCEFEBE181DB96E3DB1CFEEFD8512FFB5E6C8AB4B; IL2CPP_EXTERN_C String_t* _stringLiteralCF35AAB75ADEAB2A6BEA36DDCA64F7D95AC01589; IL2CPP_EXTERN_C String_t* _stringLiteralD00025F302F3E9FF4CD9C49F35CCF5D2826551CA; IL2CPP_EXTERN_C String_t* _stringLiteralD039C76F6BA3380896DFB0DA8F26D45B1448F44F; IL2CPP_EXTERN_C String_t* _stringLiteralD09AB05F408869F6B19507FD0D3835F035CB3190; IL2CPP_EXTERN_C String_t* _stringLiteralD0B955404E183709B5C731BFCF31085857DE0EC3; IL2CPP_EXTERN_C String_t* _stringLiteralD107B7944AC86781056FB3D3536AAB21B091DDFD; IL2CPP_EXTERN_C String_t* _stringLiteralD11C38A48D751BD0D05A0BAC3C39A9C9298A7CCD; IL2CPP_EXTERN_C String_t* _stringLiteralD25701B6D836EFB7F6AE0235DA533204D711C583; IL2CPP_EXTERN_C String_t* _stringLiteralD26E0068C34FF3F6EED5D38A32E1754073AEF519; IL2CPP_EXTERN_C String_t* _stringLiteralD3711B27B3556EA6DF4CFA2B6169969660CBB7AC; IL2CPP_EXTERN_C String_t* _stringLiteralD4A9710F10742BFE9608353920D3FD826C57E612; IL2CPP_EXTERN_C String_t* _stringLiteralD501BB17BD3BE433E8A86590D1D69E40C1CBEEE9; IL2CPP_EXTERN_C String_t* _stringLiteralD52D86EFAA62C1731796153170E0F380C6F84A0A; IL2CPP_EXTERN_C String_t* _stringLiteralD5D2875F228D651E1289522AEAAB8C492001C1BE; IL2CPP_EXTERN_C String_t* _stringLiteralD5DF53EB5CC9A30D6CA4EECD8F9C4882ABF00BB6; IL2CPP_EXTERN_C String_t* _stringLiteralD60E67E20F0B2BFD833682C203F47054BEBC226E; IL2CPP_EXTERN_C String_t* _stringLiteralD7B32C571DCDB4565F921142375AEB23479EB7C0; IL2CPP_EXTERN_C String_t* _stringLiteralD88E3BC07BE4A4A0D719CE356CB44CCD6AF1AB3F; IL2CPP_EXTERN_C String_t* _stringLiteralD89BC5903AE40F439EA6F2CC5626C81DE7ED601A; IL2CPP_EXTERN_C String_t* _stringLiteralD8BBD3B9A2DE44452BA3DFDD4EAEB8EA9FB67C31; IL2CPP_EXTERN_C String_t* _stringLiteralD949A21957CD7284B07087EFF80761F44C6E8C8D; IL2CPP_EXTERN_C String_t* _stringLiteralD9691C4FD8A1F6B09DB1147CA32B442772FB46A1; IL2CPP_EXTERN_C String_t* _stringLiteralD98568A6B37648B3107D237D2964EE83A5F92BDF; IL2CPP_EXTERN_C String_t* _stringLiteralD9CC1C8E4F10B24F3111EEBF8581C75297DDA480; IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709; IL2CPP_EXTERN_C String_t* _stringLiteralDA666908BB15F4E1D2649752EC5DCBD0D5C64699; IL2CPP_EXTERN_C String_t* _stringLiteralDB4F2B309DADE9A8ABCB4CD75A2A469548BB6D5F; IL2CPP_EXTERN_C String_t* _stringLiteralDB964C74040C27BE2F8C717E9B6ACF497F69CD15; IL2CPP_EXTERN_C String_t* _stringLiteralDC4E8D00D3572226F65A7F8F173531F44D39674E; IL2CPP_EXTERN_C String_t* _stringLiteralDC7A2B79A47430126A902161391ABA8C481B5F0E; IL2CPP_EXTERN_C String_t* _stringLiteralDCCF22B1EB35EC58FFEB04A8C396594903C38127; IL2CPP_EXTERN_C String_t* _stringLiteralDD56D062FCC763C2BFE432F77EFF13CC9E01BE5A; IL2CPP_EXTERN_C String_t* _stringLiteralDDD194C344A36DEA4CE6E312E15EB63C9A77A1D2; IL2CPP_EXTERN_C String_t* _stringLiteralDE4C398DD65524A08F3458DBBE587F3A08FAFCB1; IL2CPP_EXTERN_C String_t* _stringLiteralDEFDD99707701302B4F3A4CE68BC9EB2926D7283; IL2CPP_EXTERN_C String_t* _stringLiteralE05C757FDAAC3550D37DFD5446ECC4CBD06F30C6; IL2CPP_EXTERN_C String_t* _stringLiteralE10172354BC005BB1643F50F00F3B17438E35399; IL2CPP_EXTERN_C String_t* _stringLiteralE134CE3B47F0CA2291ABAA4D77503AC1B87A4F4B; IL2CPP_EXTERN_C String_t* _stringLiteralE138E6068EDC88CB3F5762A05F24B67A9484CF0B; IL2CPP_EXTERN_C String_t* _stringLiteralE166C9564FBDE461738077E3B1B506525EB6ACCC; IL2CPP_EXTERN_C String_t* _stringLiteralE1A8B7ACF9F6A6C8DA34C480CF0726A9E97A6044; IL2CPP_EXTERN_C String_t* _stringLiteralE24F3FD2940E9484DCB08238A664AFADF683B36A; IL2CPP_EXTERN_C String_t* _stringLiteralE25DB41AE94668E3BE7821713A2025E666563864; IL2CPP_EXTERN_C String_t* _stringLiteralE320A9D44FCB2BAE27A21C6114E4A8014023E000; IL2CPP_EXTERN_C String_t* _stringLiteralE32843613CB1773FC18270F1717753DCF3F79A26; IL2CPP_EXTERN_C String_t* _stringLiteralE3577C2D5B36A10E4CFD76E58010316ACDBA11CA; IL2CPP_EXTERN_C String_t* _stringLiteralE3667A4D276FAA0FFE19E1208BBCB7F66ED6F3D2; IL2CPP_EXTERN_C String_t* _stringLiteralE410A3B16603875FAA958558C85F3960DC53199E; IL2CPP_EXTERN_C String_t* _stringLiteralE586D26F2F2D2462A182B41FF7B0C66457161A10; IL2CPP_EXTERN_C String_t* _stringLiteralE6768086EB88FAC17C0048218899A756FEBACC65; IL2CPP_EXTERN_C String_t* _stringLiteralE69EC0323C81C640F0E1B55F6FED870705708B48; IL2CPP_EXTERN_C String_t* _stringLiteralE6FD5BD6471511A9222FE48364213053262F747F; IL2CPP_EXTERN_C String_t* _stringLiteralE783135310BC70D6FDF5F5AAF0B679F770F0159E; IL2CPP_EXTERN_C String_t* _stringLiteralE7C7449D840A91B3AF035F43E6106A0BC8372CC6; IL2CPP_EXTERN_C String_t* _stringLiteralE7D028CCE3B6E7B61AE2C752D7AE970DA04AB7C6; IL2CPP_EXTERN_C String_t* _stringLiteralE8904C5915B16CF72B7EDF4E46529AE302286E51; IL2CPP_EXTERN_C String_t* _stringLiteralE8B77FFA6B004EBE6AD02387BCBFBFA47562B049; IL2CPP_EXTERN_C String_t* _stringLiteralE8C656A74E1A1C6190D3E7CA3E470340F8A627F7; IL2CPP_EXTERN_C String_t* _stringLiteralE91FE173F59B063D620A934CE1A010F2B114C1F3; IL2CPP_EXTERN_C String_t* _stringLiteralE93A97DF27EB7745C95B0883E4909290D835DB52; IL2CPP_EXTERN_C String_t* _stringLiteralE9C9F4196455AAE9F6C91ADF558F7A30C0C257F3; IL2CPP_EXTERN_C String_t* _stringLiteralE9CE8D268E495F5BD09CB81F40650B2DDFB2B27E; IL2CPP_EXTERN_C String_t* _stringLiteralEA21DB17BCE45901F779B0D63F761FBC9EBD7B0F; IL2CPP_EXTERN_C String_t* _stringLiteralEA5282D98CA7DFA406615C0800B36CE089113D57; IL2CPP_EXTERN_C String_t* _stringLiteralEADFB26121515D4448D4C6E8BAD05B7968E6C874; IL2CPP_EXTERN_C String_t* _stringLiteralEB1326B0538B470465324EB7C3993F32A6CE9D5E; IL2CPP_EXTERN_C String_t* _stringLiteralEB41A15A26E41D0B73F532042278C353F6BFC1F4; IL2CPP_EXTERN_C String_t* _stringLiteralEC07CDF9A253157A6C3AA8635DD11934A3FFD749; IL2CPP_EXTERN_C String_t* _stringLiteralEC9D16246A5039341712451C8CD097B5E32AFDD3; IL2CPP_EXTERN_C String_t* _stringLiteralECAC83771A00C701043A940F621CC1C765D30D31; IL2CPP_EXTERN_C String_t* _stringLiteralEDE684886DA2E28B5693BD98ADADE77C0E010223; IL2CPP_EXTERN_C String_t* _stringLiteralEE45A9B1B4D469B39CFD49BA09C05F22C2143DD7; IL2CPP_EXTERN_C String_t* _stringLiteralEE5A9496BF3A09F757E830172FB334F6845BCE01; IL2CPP_EXTERN_C String_t* _stringLiteralEE9CDDD8B1181A0CB43151D4FF76A5DF7386E75C; IL2CPP_EXTERN_C String_t* _stringLiteralEF15C15221814987C7E61C7213C6BB9A8D55EE2F; IL2CPP_EXTERN_C String_t* _stringLiteralEF65109317E1DF79845D5868309B0E9BFB10384B; IL2CPP_EXTERN_C String_t* _stringLiteralF1BD7B34E90741DCE9D6EC5D1A587586598F4D23; IL2CPP_EXTERN_C String_t* _stringLiteralF1E83CBC9FD7DEA43BF5E293DFE062D68A62A8DE; IL2CPP_EXTERN_C String_t* _stringLiteralF29421934EEEA6A2F46B56CCE672DE2E76D5850C; IL2CPP_EXTERN_C String_t* _stringLiteralF2DCEBDC0E489573EF91725019BDC803EC347578; IL2CPP_EXTERN_C String_t* _stringLiteralF363F0EBA56CED452CE3E80AC25A0C74EEFBDF75; IL2CPP_EXTERN_C String_t* _stringLiteralF366CA157E0CC6467953E26574436949B670AC15; IL2CPP_EXTERN_C String_t* _stringLiteralF403FDAB7311C5E2F1FD551A7E0382DD660A4265; IL2CPP_EXTERN_C String_t* _stringLiteralF44A2E5B3F16B7CA22AC2013BDFD6005712C7DC9; IL2CPP_EXTERN_C String_t* _stringLiteralF67FF52BAD5C543F3623D3051EA5B4ED8BCD0DEB; IL2CPP_EXTERN_C String_t* _stringLiteralF69479A5A4CED3797AEE987A76B561412AA9E1A0; IL2CPP_EXTERN_C String_t* _stringLiteralF7E5EFDC670ACA0D3155DEFB95477AD16E9744EB; IL2CPP_EXTERN_C String_t* _stringLiteralF903ABCF81417315694F4593925EE527D6C1258B; IL2CPP_EXTERN_C String_t* _stringLiteralF944DCD635F9801F7AC90A407FBC479964DEC024; IL2CPP_EXTERN_C String_t* _stringLiteralFA4E53104C4A0E65F23F7323FD862A1A8C072AC3; IL2CPP_EXTERN_C String_t* _stringLiteralFAB26B76C5BC4AB82BD5FDE8AA07D8BD73DC951B; IL2CPP_EXTERN_C String_t* _stringLiteralFB8318AD7B9BBFCC1A86C5A805D80A1823243707; IL2CPP_EXTERN_C String_t* _stringLiteralFC43B3DF09F936A0E33F84F9575A87274E833018; IL2CPP_EXTERN_C String_t* _stringLiteralFC753E9D296FF07E771DCDF43A1D5E5DAFD6B045; IL2CPP_EXTERN_C String_t* _stringLiteralFE0B1BB928B058DE0C421F4CC78A66B77C67F6D5; IL2CPP_EXTERN_C String_t* _stringLiteralFED9A785A158D83955E039A71A99AE876F121C4C; IL2CPP_EXTERN_C String_t* _stringLiteralFF4E3FA3AAE48BF4B222F51C8406C3BA5B9BDEAC; IL2CPP_EXTERN_C const RuntimeMethod* Array_Empty_TisAsn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC_m6133560D3294995A1E65C8837F69C407350CD6DB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_Empty_TisGUILayoutOption_t2D992ABCB62BEB24A6F4A826A5CBE7AE236071AB_mA07E9D2B1A778365E5A956C5674C590821EEC9B4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponent_TisAeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103_mD88E3A73D39CF612AB9E30CE2D5E83FCB1465116_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponent_TisAnimator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149_mF86B79BED8570481BDFC54EAEF1F692E0508BA38_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponent_TisRigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A_mB4A92A619135F9258670FB93AE08F229A41D0980_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m0042AB3E1A64BB363620361BBE7585680D722E16_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m2EBF1ECBC92F80383944B79DCCDA176099E0BF78_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m43AFD259B50B0DDD526C80278006754D9A780E21_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m675228F70E08EC3116872AA2674282716C1E68ED_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m766165101D17DE264F976EF116EF0DCC521D4CB5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m92A0844248BB5C63C796AFA2D5E2BF2D9AED62C5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mD0A87522FCC0B6A0E1B8084B4BD8628ED724177A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mD909E0A139978659E700B0CE49424A936C710762_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mDA11F9C0AC023D35E8894E3DB7A7EE64EC772754_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mDE4AC0E4230C140CC8D9194574091FABDBA80144_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mF8C3EB0D95A9289CAB90A5ED632A08F2917267FD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* IEncoder_DecodeAs_TisMessage_t7A5AEEC23C8151DAE56A0BF20600B63ED4BEB6D3_m48192623E7743070C3F3A151EEB1E9756F2894BC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* IEncoder_EncodeAsText_TisCancelInvocationMessage_t11BB5BF6A7125A5CFD91D367AB77D627B9C6394D_mB2086879E399DB420DAB295936D9AE17EA967522_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* IEncoder_EncodeAsText_TisInvocationMessage_t00C6F237BBABEFF9A81BCC9BD79AEB1CD9FF5C89_m5B697F005F63F49F113316DE0B81C240384CF3BA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* IEncoder_EncodeAsText_TisPingMessage_t05D03F8804B9C5668F98CFEB5761D5AE95CD63AA_m9E0737D492D1E77FE905A8BB15B09A88DA5F01B7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* JsonMapper_ReadValue_mAFB51230BD1563167F207F1BE32BEA869ED3368B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* JsonMapper_WriteValue_m82EFBCF4FCE3898C9C97D6646E14A64D4A690E63_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* JsonProtocol_GetRealArguments_m2E5EE9FA6894C6C1B3E13CFF94DE1A42E3F868E9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* JsonProtocol_ParseMessages_m1281E9FDA7EC765308D5551A8F9F1708DD4A16B3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* JsonProtocol__ctor_m3704CA0FF00FEDBA16CE9315BF0BFE2B9A38C436_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* JsonReader_Read_m47DD03DE2A2127A1A723BD6D564D97D07BE1E610_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* JsonReader__ctor_mE57B0D768E7062A6AE1675293C00E149D78BB0F3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* JsonWriter_DoValidation_m671A92C47238ABA1DE030342F20B390A5CD21C71_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* JsonWriter__ctor_mCAF0A04C68754E9A06279E46A77239F9936B15F1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KCcmBlockCipher_Init_m948E536824D40F97177D805E93A5A2B436569FEC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KCcmBlockCipher_ProcessAAD_mCA5131BB5A12AAE39B0DD84B73BCB4912D910B7B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KCcmBlockCipher_ProcessPacket_m728128BCCFDBF1BBEDCA5944CA05087D5AF0B9A9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KCcmBlockCipher_setNb_m7CC9AA8BC720AC09945941BB2342D909E720863D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KCtrBlockCipher_Init_mB20F77FC702A5861625BB9E4F1497FD92339A821_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KCtrBlockCipher_ProcessBlock_m7F6193B655DD4B47D7F0FDD8BDA5D7FFC80966C6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KCtrBlockCipher_ProcessBytes_m11E0A007F38C4667FE74EC4B9DF69847EEABCCF3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeccakDigest_AbsorbBits_mD00DC7B3FB87AB80751A832D3986FFC2867D4CA3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeccakDigest_Absorb_mFC54D89DEC1A52C0B88CB50741B7DEDAD7FE085D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeccakDigest_InitSponge_m6A2C21DAF849B8B910782F6AFBE32E4BEAFA797A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeccakDigest_Init_m3A43B69C1959DE508F606DCAA8E91CBAF16EACE9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeccakDigest_Squeeze_mFE4DA231466C9D5B9F1F4F151C00B48779FCF152_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KekIdentifier_GetInstance_mDD0FFFD3AA826C2D4A9E832EA2FD99463DED15D7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KekIdentifier__ctor_mA4CD7D3DB0EECDAC3489F8150EEF30ECC96CD2ED_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KekRecipientInfoGenerator_DetermineKeyEncAlg_m63A85C821965803C1EFBF641392B2A329AD74842_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KekRecipientInfo_GetInstance_m248C7EC4D6807103ABBC5C24359ECF8DD2F7A819_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KekRecipientInformation_GetContentStream_m1F44536048334A83B0D96FBC1CE6AD170DBE2443_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyAgreeRecipientIdentifier_GetInstance_m44055CD839221933702BE316BDF3593DFA5457EB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyAgreeRecipientInfoGenerator_Generate_mBEDE8A0979E9D37D885522DB7360706D573AF013_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyAgreeRecipientInfo_GetInstance_mCE18116F2686F0464E25B968F0963C73CE357233_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyAgreeRecipientInformation_GetContentStream_mC0FE2B90652F5E13DEDF2EF880BC8012449EC2E4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyAgreeRecipientInformation_GetPublicKeyFromOriginatorID_m46FF169A61CABBFB8AA2B29C845E14DA8F73442F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyAgreeRecipientInformation_GetSessionKey_m7792498485DE277C29E2019BA4ABDE7497BAC00E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyAgreeRecipientInformation_ReadRecipientInfo_m503FAA9272512FD7F3E83F7DA8702FC7C10DAC8F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyGenerationParameters__ctor_m57645A39098F4DEA2AEFB8676E1EDCB298FC65C2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyParameter__ctor_m96EBA1A3EB3F4981F3C14E96086C7083DDE16E67_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyParameter__ctor_mA7E94BCEFAFE6F84602F24F9752CB2117CA7B8BF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyRecRepContent_GetInstance_m2BBAC3C9C7CFE7012782FD2C19ADAE4DE0363047_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyRecRepContent__ctor_m595F019873FF3BFBC0E8AB8BB8FECCCECEE88757_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyTransRecipientInfoGenerator_set_RecipientPublicKey_m0E6CDEBBE48E79B62C28548394126BBEA45EE4C5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyTransRecipientInfo_GetInstance_mA0F3ED0F062B51BA7C87BAB3B4DF4DD278798C39_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyTransRecipientInformation_UnwrapKey_m4A171F3D0EA19AD2C09547A8067457EF5AC298C8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyTransRecipientInformation__ctor_m2DB1D41BFCD56E22A4EDEBEA37B1ADD56737CB71_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* LargeFileDownloadSample_U3COnGUIU3Eb__7_0_m01670B7C5192ABB7BC1D67328091A5C43EDD41AF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* LargeFileDownloadSample_U3CStreamLargeFileTestU3Eb__8_0_m72FEE13D86362802ADA9C9511D7A319D2179C7BC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m5661E32F6048E09663B9FA80AB5DE3865851BD08_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m74E87756C362C1D9275E1B4F30C360439D4C2676_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m14830FB8CB94C5F517EE78FFFC8F01F8C07D14E9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mCEBCF66B19764A2EFF9F5F81C78323729EC10F60_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m22277597AF3CBF965433E8285B3F3FEE770EC852_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m3F624A80E7853289E4759DE8F16CF23B0958365B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mA904D48DE837FC82817A13F3F59776C3499098BB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Clear_m65385AD770CB3137B6B0638B1C8B3F135A5E277D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Clear_mCDD49B62DA8E550FE85E16D09EEE152AEE4828CD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Peek_mF3C8F14E215502D1EA5ADF268B0614E8F29675F4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Peek_mFB80BE4B86D09007389E5EA0BC46F36DE54C1BCC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Pop_m2F2EC2CE517CA10A558A43B00D072E570AB63437_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Pop_m7183B4824686C3DC16EB5A9DEACAA2CFE2C867ED_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Push_m3E6C815B71F17B20A42B72193A29D0FB92F576E4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Push_mB2E1D58D6814C632B1C0B7A71D32F2A275923315_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Stack_1__ctor_m41EBD1EDB9A3AC64B4EE3B6AAC08868FF28DA954_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Stack_1__ctor_mCB755FF2E83784C3E72212BFD18F5EFB3F7824CA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_get_Count_m1FEFAE251314DE96805F70C00B59DAA9EA7B2203_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CReadSkipU3Eb__25_0_m6FEB7F0D965965A9F14FB7FAB05D0A74698DF9F3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterBaseExportersU3Eb__26_0_m65DBB1C78BFDBEEA0F5B18812EBA5136DC6CFE23_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterBaseExportersU3Eb__26_1_mA6AF7F05D38115C68CB69B6CCF002D9913B80EC8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterBaseExportersU3Eb__26_2_m36FAD15F97256C344EA9D44945E53BCCB3D840FF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterBaseExportersU3Eb__26_3_mA76CF5C67B4BAF51D76D787EE0E21EB2F2A0EC69_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterBaseExportersU3Eb__26_4_mB12F5BE85941DFB6ABACC85896A07544BB48503E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterBaseExportersU3Eb__26_5_m56A41556B27F1F72A8B9B670880703A56C133EDF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterBaseExportersU3Eb__26_6_m3C10C7A82FFC3E4625A54905631D86A6EBA8D720_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterBaseExportersU3Eb__26_7_mB30D9177D4121E5A19915E7F08AFF98B7DEAC09B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterBaseExportersU3Eb__26_8_mB48444FB56F525049BEB057EDC490F13708C654C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterBaseImportersU3Eb__27_0_m1B52B0C2FED88A3CE73B78FB974A13BCAF60A5D2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterBaseImportersU3Eb__27_10_m7ABF9F0DDC9F134F02FD5B4230DDFAEE969EB56A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterBaseImportersU3Eb__27_11_mA4A035F3FB771CAB37BB98CB6DDE696E18271657_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterBaseImportersU3Eb__27_1_m6EE22BD7E8A6A30727EF1651DB2818AAF7322E95_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterBaseImportersU3Eb__27_2_mD94D45CC4C45C946AB061A716ECE9DD0361266D2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterBaseImportersU3Eb__27_3_m2F83441405759C02980B61D4421858D92FC9973C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterBaseImportersU3Eb__27_4_mF06A035412AC1A1159EB6AC7F97EB90F605E3B35_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterBaseImportersU3Eb__27_5_m15E2C2163125791CC47190E283CF8093B3E43A79_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterBaseImportersU3Eb__27_6_m36AE8C041B7A472ADADD2252BE2A30EC98D540CC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterBaseImportersU3Eb__27_7_mAC9BFC51C25E1729DC1EE1C34D409BD6BF7F4AE6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterBaseImportersU3Eb__27_8_m14BBCF6705ED098BFF3CFABAE0FAA1A51DD2DBAC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterBaseImportersU3Eb__27_9_m1AD16760D3E691E402A0D525FD7CAC1B0E2FFF79_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CToObjectU3Eb__32_0_m8C7E637DCAE84FB49AF7F853742294401C46BAE2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CToObjectU3Eb__33_0_mEE93C599633DAA7F99DDB30BFEF7BFAFA5F1C5A5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CToObjectU3Eb__34_0_m043C3A7D95BD6CE729E9A7ED0F92ABF346CBEF0E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeType* Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Dictionary_2_t692011309BA94F599C6042A381FC9F8B3CB08399_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Int16_tD0F031114106263BB459DA1F099FF9F42691295A_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* RuntimeObject_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* SByte_t928712DD662DC29BA4FAAE8CE2230AFB23447F0B_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* String_t_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* UInt32_tE60352A06233E4E69DD198BCC67142159F686B15_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281_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 Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE; struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726; struct CertifiedKeyPairU5BU5D_t76C6C5E8814508C5C8A2BBABEC665A85B29C15D3; struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34; struct CmpCertificateU5BU5D_t61BB8616D2961D5EBE491ED080F0C7361D59CC00; struct FieldInfoU5BU5D_tD84513FCA07C63AAFE671A5B39E3ADD6E903938E; struct GUILayoutOptionU5BU5D_tA0F031CC36F88BBBD25D6841ADD3913446E6EA2B; struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32; struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE; struct ParameterInfoU5BU5D_tB1B367487BAA9E1B2DA7EAA95B443D0B183AF80B; struct PropertyInfoU5BU5D_tE59E95F68533BDA98ABBBEACB6A99BF2C7A4A26A; struct TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755; struct UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2; IL2CPP_EXTERN_C_BEGIN IL2CPP_EXTERN_C_END #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Object // System.Collections.Generic.Dictionary`2> struct Dictionary_2_tF15AAE882479CD2CDC37ED42D021B9745B61FFD9 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tC05AA8F32DFF4C2C547ED680592E1D40011178A8* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1 System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection System.Collections.Generic.Dictionary`2::keys KeyCollection_t961F340F8ACCBED42AD893036649507AA35258E2 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::values ValueCollection_t9F3A6CE2D590F3B64841D5D4E02A4D128DF764CD * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast(offsetof(Dictionary_2_tF15AAE882479CD2CDC37ED42D021B9745B61FFD9, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast(offsetof(Dictionary_2_tF15AAE882479CD2CDC37ED42D021B9745B61FFD9, ___entries_1)); } inline EntryU5BU5D_tC05AA8F32DFF4C2C547ED680592E1D40011178A8* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tC05AA8F32DFF4C2C547ED680592E1D40011178A8** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tC05AA8F32DFF4C2C547ED680592E1D40011178A8* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast(offsetof(Dictionary_2_tF15AAE882479CD2CDC37ED42D021B9745B61FFD9, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast(offsetof(Dictionary_2_tF15AAE882479CD2CDC37ED42D021B9745B61FFD9, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast(offsetof(Dictionary_2_tF15AAE882479CD2CDC37ED42D021B9745B61FFD9, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast(offsetof(Dictionary_2_tF15AAE882479CD2CDC37ED42D021B9745B61FFD9, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast(offsetof(Dictionary_2_tF15AAE882479CD2CDC37ED42D021B9745B61FFD9, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast(offsetof(Dictionary_2_tF15AAE882479CD2CDC37ED42D021B9745B61FFD9, ___keys_7)); } inline KeyCollection_t961F340F8ACCBED42AD893036649507AA35258E2 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t961F340F8ACCBED42AD893036649507AA35258E2 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t961F340F8ACCBED42AD893036649507AA35258E2 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast(offsetof(Dictionary_2_tF15AAE882479CD2CDC37ED42D021B9745B61FFD9, ___values_8)); } inline ValueCollection_t9F3A6CE2D590F3B64841D5D4E02A4D128DF764CD * get_values_8() const { return ___values_8; } inline ValueCollection_t9F3A6CE2D590F3B64841D5D4E02A4D128DF764CD ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t9F3A6CE2D590F3B64841D5D4E02A4D128DF764CD * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast(offsetof(Dictionary_2_tF15AAE882479CD2CDC37ED42D021B9745B61FFD9, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t8525C1D9F5FB98BBDD9FCEE0F794F993946465C4 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t4599023B1EC79584CD812F5998440BACF3085B58* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1 System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection System.Collections.Generic.Dictionary`2::keys KeyCollection_t5077047791109DBE7A0587AB82F2C95BE65B70F7 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::values ValueCollection_t741C0DBC2C72DD3AE5DB73E04049022DE427EACA * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast(offsetof(Dictionary_2_t8525C1D9F5FB98BBDD9FCEE0F794F993946465C4, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast(offsetof(Dictionary_2_t8525C1D9F5FB98BBDD9FCEE0F794F993946465C4, ___entries_1)); } inline EntryU5BU5D_t4599023B1EC79584CD812F5998440BACF3085B58* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t4599023B1EC79584CD812F5998440BACF3085B58** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t4599023B1EC79584CD812F5998440BACF3085B58* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast(offsetof(Dictionary_2_t8525C1D9F5FB98BBDD9FCEE0F794F993946465C4, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast(offsetof(Dictionary_2_t8525C1D9F5FB98BBDD9FCEE0F794F993946465C4, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast(offsetof(Dictionary_2_t8525C1D9F5FB98BBDD9FCEE0F794F993946465C4, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast(offsetof(Dictionary_2_t8525C1D9F5FB98BBDD9FCEE0F794F993946465C4, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast(offsetof(Dictionary_2_t8525C1D9F5FB98BBDD9FCEE0F794F993946465C4, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast(offsetof(Dictionary_2_t8525C1D9F5FB98BBDD9FCEE0F794F993946465C4, ___keys_7)); } inline KeyCollection_t5077047791109DBE7A0587AB82F2C95BE65B70F7 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t5077047791109DBE7A0587AB82F2C95BE65B70F7 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t5077047791109DBE7A0587AB82F2C95BE65B70F7 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast(offsetof(Dictionary_2_t8525C1D9F5FB98BBDD9FCEE0F794F993946465C4, ___values_8)); } inline ValueCollection_t741C0DBC2C72DD3AE5DB73E04049022DE427EACA * get_values_8() const { return ___values_8; } inline ValueCollection_t741C0DBC2C72DD3AE5DB73E04049022DE427EACA ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t741C0DBC2C72DD3AE5DB73E04049022DE427EACA * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast(offsetof(Dictionary_2_t8525C1D9F5FB98BBDD9FCEE0F794F993946465C4, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t340755D6C3625294F8C87E54F0CA95E023E5C656 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t8D1129DFDADDEAD26265DADCDA3B2051F7684525* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1 System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection System.Collections.Generic.Dictionary`2::keys KeyCollection_t34FBDA9B15DAB46CC4B4FE27DF587F959003EF55 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::values ValueCollection_t3EAE71AC42F032C7A0A960949B9387278D5BFC3B * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast(offsetof(Dictionary_2_t340755D6C3625294F8C87E54F0CA95E023E5C656, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast(offsetof(Dictionary_2_t340755D6C3625294F8C87E54F0CA95E023E5C656, ___entries_1)); } inline EntryU5BU5D_t8D1129DFDADDEAD26265DADCDA3B2051F7684525* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t8D1129DFDADDEAD26265DADCDA3B2051F7684525** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t8D1129DFDADDEAD26265DADCDA3B2051F7684525* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast(offsetof(Dictionary_2_t340755D6C3625294F8C87E54F0CA95E023E5C656, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast(offsetof(Dictionary_2_t340755D6C3625294F8C87E54F0CA95E023E5C656, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast(offsetof(Dictionary_2_t340755D6C3625294F8C87E54F0CA95E023E5C656, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast(offsetof(Dictionary_2_t340755D6C3625294F8C87E54F0CA95E023E5C656, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast(offsetof(Dictionary_2_t340755D6C3625294F8C87E54F0CA95E023E5C656, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast(offsetof(Dictionary_2_t340755D6C3625294F8C87E54F0CA95E023E5C656, ___keys_7)); } inline KeyCollection_t34FBDA9B15DAB46CC4B4FE27DF587F959003EF55 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t34FBDA9B15DAB46CC4B4FE27DF587F959003EF55 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t34FBDA9B15DAB46CC4B4FE27DF587F959003EF55 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast(offsetof(Dictionary_2_t340755D6C3625294F8C87E54F0CA95E023E5C656, ___values_8)); } inline ValueCollection_t3EAE71AC42F032C7A0A960949B9387278D5BFC3B * get_values_8() const { return ___values_8; } inline ValueCollection_t3EAE71AC42F032C7A0A960949B9387278D5BFC3B ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t3EAE71AC42F032C7A0A960949B9387278D5BFC3B * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast(offsetof(Dictionary_2_t340755D6C3625294F8C87E54F0CA95E023E5C656, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2> struct Dictionary_2_t39C090DB63033FF202F2C4C95E8261B4D5D67132 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t70C8FE243B93BC6EED394059EF75B9A2381F4073* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1 System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection System.Collections.Generic.Dictionary`2::keys KeyCollection_t908D04DC798B691692D5397EC947908E764C3BFB * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::values ValueCollection_t168E2DBC0BBB75FF59BC75953E6EEB05B9567D69 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast(offsetof(Dictionary_2_t39C090DB63033FF202F2C4C95E8261B4D5D67132, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast(offsetof(Dictionary_2_t39C090DB63033FF202F2C4C95E8261B4D5D67132, ___entries_1)); } inline EntryU5BU5D_t70C8FE243B93BC6EED394059EF75B9A2381F4073* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t70C8FE243B93BC6EED394059EF75B9A2381F4073** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t70C8FE243B93BC6EED394059EF75B9A2381F4073* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast(offsetof(Dictionary_2_t39C090DB63033FF202F2C4C95E8261B4D5D67132, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast(offsetof(Dictionary_2_t39C090DB63033FF202F2C4C95E8261B4D5D67132, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast(offsetof(Dictionary_2_t39C090DB63033FF202F2C4C95E8261B4D5D67132, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast(offsetof(Dictionary_2_t39C090DB63033FF202F2C4C95E8261B4D5D67132, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast(offsetof(Dictionary_2_t39C090DB63033FF202F2C4C95E8261B4D5D67132, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast(offsetof(Dictionary_2_t39C090DB63033FF202F2C4C95E8261B4D5D67132, ___keys_7)); } inline KeyCollection_t908D04DC798B691692D5397EC947908E764C3BFB * get_keys_7() const { return ___keys_7; } inline KeyCollection_t908D04DC798B691692D5397EC947908E764C3BFB ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t908D04DC798B691692D5397EC947908E764C3BFB * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast(offsetof(Dictionary_2_t39C090DB63033FF202F2C4C95E8261B4D5D67132, ___values_8)); } inline ValueCollection_t168E2DBC0BBB75FF59BC75953E6EEB05B9567D69 * get_values_8() const { return ___values_8; } inline ValueCollection_t168E2DBC0BBB75FF59BC75953E6EEB05B9567D69 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t168E2DBC0BBB75FF59BC75953E6EEB05B9567D69 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast(offsetof(Dictionary_2_t39C090DB63033FF202F2C4C95E8261B4D5D67132, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2> struct Dictionary_2_t6632F9B7D29C6456BE397B4CC895D950BBB8072A : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t1D80DD634B63313D73B2A60BE290DDF77E5A8A5D* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1 System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection System.Collections.Generic.Dictionary`2::keys KeyCollection_t844639E4AE2CDEA47B5D4BFE76EA4B2BB4A736CD * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::values ValueCollection_tD51345F635B18AE3A9D92C563D8067D3323D83FB * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast(offsetof(Dictionary_2_t6632F9B7D29C6456BE397B4CC895D950BBB8072A, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast(offsetof(Dictionary_2_t6632F9B7D29C6456BE397B4CC895D950BBB8072A, ___entries_1)); } inline EntryU5BU5D_t1D80DD634B63313D73B2A60BE290DDF77E5A8A5D* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t1D80DD634B63313D73B2A60BE290DDF77E5A8A5D** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t1D80DD634B63313D73B2A60BE290DDF77E5A8A5D* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast(offsetof(Dictionary_2_t6632F9B7D29C6456BE397B4CC895D950BBB8072A, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast(offsetof(Dictionary_2_t6632F9B7D29C6456BE397B4CC895D950BBB8072A, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast(offsetof(Dictionary_2_t6632F9B7D29C6456BE397B4CC895D950BBB8072A, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast(offsetof(Dictionary_2_t6632F9B7D29C6456BE397B4CC895D950BBB8072A, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast(offsetof(Dictionary_2_t6632F9B7D29C6456BE397B4CC895D950BBB8072A, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast(offsetof(Dictionary_2_t6632F9B7D29C6456BE397B4CC895D950BBB8072A, ___keys_7)); } inline KeyCollection_t844639E4AE2CDEA47B5D4BFE76EA4B2BB4A736CD * get_keys_7() const { return ___keys_7; } inline KeyCollection_t844639E4AE2CDEA47B5D4BFE76EA4B2BB4A736CD ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t844639E4AE2CDEA47B5D4BFE76EA4B2BB4A736CD * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast(offsetof(Dictionary_2_t6632F9B7D29C6456BE397B4CC895D950BBB8072A, ___values_8)); } inline ValueCollection_tD51345F635B18AE3A9D92C563D8067D3323D83FB * get_values_8() const { return ___values_8; } inline ValueCollection_tD51345F635B18AE3A9D92C563D8067D3323D83FB ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tD51345F635B18AE3A9D92C563D8067D3323D83FB * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast(offsetof(Dictionary_2_t6632F9B7D29C6456BE397B4CC895D950BBB8072A, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2> struct Dictionary_2_t5F9DFA2CAB73C95A2A252732A4FB00714E5ACB80 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tE99439387B5B67D11EAF81278BFB70AB42B08CDF* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1 System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection System.Collections.Generic.Dictionary`2::keys KeyCollection_t49ED82DF6B25DE2E2CE23888491CF3DF11A06156 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::values ValueCollection_tBADE654B96E115B0DDA66EF90B490CDB1E81FE80 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast(offsetof(Dictionary_2_t5F9DFA2CAB73C95A2A252732A4FB00714E5ACB80, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast(offsetof(Dictionary_2_t5F9DFA2CAB73C95A2A252732A4FB00714E5ACB80, ___entries_1)); } inline EntryU5BU5D_tE99439387B5B67D11EAF81278BFB70AB42B08CDF* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tE99439387B5B67D11EAF81278BFB70AB42B08CDF** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tE99439387B5B67D11EAF81278BFB70AB42B08CDF* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast(offsetof(Dictionary_2_t5F9DFA2CAB73C95A2A252732A4FB00714E5ACB80, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast(offsetof(Dictionary_2_t5F9DFA2CAB73C95A2A252732A4FB00714E5ACB80, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast(offsetof(Dictionary_2_t5F9DFA2CAB73C95A2A252732A4FB00714E5ACB80, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast(offsetof(Dictionary_2_t5F9DFA2CAB73C95A2A252732A4FB00714E5ACB80, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast(offsetof(Dictionary_2_t5F9DFA2CAB73C95A2A252732A4FB00714E5ACB80, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast(offsetof(Dictionary_2_t5F9DFA2CAB73C95A2A252732A4FB00714E5ACB80, ___keys_7)); } inline KeyCollection_t49ED82DF6B25DE2E2CE23888491CF3DF11A06156 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t49ED82DF6B25DE2E2CE23888491CF3DF11A06156 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t49ED82DF6B25DE2E2CE23888491CF3DF11A06156 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast(offsetof(Dictionary_2_t5F9DFA2CAB73C95A2A252732A4FB00714E5ACB80, ___values_8)); } inline ValueCollection_tBADE654B96E115B0DDA66EF90B490CDB1E81FE80 * get_values_8() const { return ___values_8; } inline ValueCollection_tBADE654B96E115B0DDA66EF90B490CDB1E81FE80 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tBADE654B96E115B0DDA66EF90B490CDB1E81FE80 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast(offsetof(Dictionary_2_t5F9DFA2CAB73C95A2A252732A4FB00714E5ACB80, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t3E57AD95AC968E6F62DEE19AB3170D1AC3A30DA2 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t8A3C8FD70EFA9EE54A62F1EF6E717699988A6A41* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1 System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection System.Collections.Generic.Dictionary`2::keys KeyCollection_tBA0E03EE298BC844382330A548F4B8A8F3D309D8 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::values ValueCollection_tEADC8E3AE97539E1111262F4224ACA7066D42FA0 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast(offsetof(Dictionary_2_t3E57AD95AC968E6F62DEE19AB3170D1AC3A30DA2, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast(offsetof(Dictionary_2_t3E57AD95AC968E6F62DEE19AB3170D1AC3A30DA2, ___entries_1)); } inline EntryU5BU5D_t8A3C8FD70EFA9EE54A62F1EF6E717699988A6A41* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t8A3C8FD70EFA9EE54A62F1EF6E717699988A6A41** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t8A3C8FD70EFA9EE54A62F1EF6E717699988A6A41* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast(offsetof(Dictionary_2_t3E57AD95AC968E6F62DEE19AB3170D1AC3A30DA2, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast(offsetof(Dictionary_2_t3E57AD95AC968E6F62DEE19AB3170D1AC3A30DA2, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast(offsetof(Dictionary_2_t3E57AD95AC968E6F62DEE19AB3170D1AC3A30DA2, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast(offsetof(Dictionary_2_t3E57AD95AC968E6F62DEE19AB3170D1AC3A30DA2, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast(offsetof(Dictionary_2_t3E57AD95AC968E6F62DEE19AB3170D1AC3A30DA2, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast(offsetof(Dictionary_2_t3E57AD95AC968E6F62DEE19AB3170D1AC3A30DA2, ___keys_7)); } inline KeyCollection_tBA0E03EE298BC844382330A548F4B8A8F3D309D8 * get_keys_7() const { return ___keys_7; } inline KeyCollection_tBA0E03EE298BC844382330A548F4B8A8F3D309D8 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tBA0E03EE298BC844382330A548F4B8A8F3D309D8 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast(offsetof(Dictionary_2_t3E57AD95AC968E6F62DEE19AB3170D1AC3A30DA2, ___values_8)); } inline ValueCollection_tEADC8E3AE97539E1111262F4224ACA7066D42FA0 * get_values_8() const { return ___values_8; } inline ValueCollection_tEADC8E3AE97539E1111262F4224ACA7066D42FA0 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tEADC8E3AE97539E1111262F4224ACA7066D42FA0 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast(offsetof(Dictionary_2_t3E57AD95AC968E6F62DEE19AB3170D1AC3A30DA2, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tBFA9C0296056907B6B0D09647F71CA1E4EA0880D : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t8F8EE00DC84DD550472EA92C30908E6C01F92AEA* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1 System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection System.Collections.Generic.Dictionary`2::keys KeyCollection_tDCAB7C4827C4C709F12241CEFF571A4DB2DE3C4C * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::values ValueCollection_tA850AD3F5B7A5630C3B506257D864E3ED0E8943F * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast(offsetof(Dictionary_2_tBFA9C0296056907B6B0D09647F71CA1E4EA0880D, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast(offsetof(Dictionary_2_tBFA9C0296056907B6B0D09647F71CA1E4EA0880D, ___entries_1)); } inline EntryU5BU5D_t8F8EE00DC84DD550472EA92C30908E6C01F92AEA* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t8F8EE00DC84DD550472EA92C30908E6C01F92AEA** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t8F8EE00DC84DD550472EA92C30908E6C01F92AEA* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast(offsetof(Dictionary_2_tBFA9C0296056907B6B0D09647F71CA1E4EA0880D, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast(offsetof(Dictionary_2_tBFA9C0296056907B6B0D09647F71CA1E4EA0880D, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast(offsetof(Dictionary_2_tBFA9C0296056907B6B0D09647F71CA1E4EA0880D, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast(offsetof(Dictionary_2_tBFA9C0296056907B6B0D09647F71CA1E4EA0880D, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast(offsetof(Dictionary_2_tBFA9C0296056907B6B0D09647F71CA1E4EA0880D, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast(offsetof(Dictionary_2_tBFA9C0296056907B6B0D09647F71CA1E4EA0880D, ___keys_7)); } inline KeyCollection_tDCAB7C4827C4C709F12241CEFF571A4DB2DE3C4C * get_keys_7() const { return ___keys_7; } inline KeyCollection_tDCAB7C4827C4C709F12241CEFF571A4DB2DE3C4C ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tDCAB7C4827C4C709F12241CEFF571A4DB2DE3C4C * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast(offsetof(Dictionary_2_tBFA9C0296056907B6B0D09647F71CA1E4EA0880D, ___values_8)); } inline ValueCollection_tA850AD3F5B7A5630C3B506257D864E3ED0E8943F * get_values_8() const { return ___values_8; } inline ValueCollection_tA850AD3F5B7A5630C3B506257D864E3ED0E8943F ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tA850AD3F5B7A5630C3B506257D864E3ED0E8943F * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast(offsetof(Dictionary_2_tBFA9C0296056907B6B0D09647F71CA1E4EA0880D, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t97A1181D986BCE5FC5CCE0D4E72B74125977DFF9 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t1719726D25241CA3948674143FA448D8AEB44F3F* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1 System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection System.Collections.Generic.Dictionary`2::keys KeyCollection_t3F59232D75C9B787E130E3D77B9274F4F61D2D17 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::values ValueCollection_tF50E3E4277A9E551EA0CFB3AE0E33A107972021F * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast(offsetof(Dictionary_2_t97A1181D986BCE5FC5CCE0D4E72B74125977DFF9, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast(offsetof(Dictionary_2_t97A1181D986BCE5FC5CCE0D4E72B74125977DFF9, ___entries_1)); } inline EntryU5BU5D_t1719726D25241CA3948674143FA448D8AEB44F3F* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t1719726D25241CA3948674143FA448D8AEB44F3F** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t1719726D25241CA3948674143FA448D8AEB44F3F* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast(offsetof(Dictionary_2_t97A1181D986BCE5FC5CCE0D4E72B74125977DFF9, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast(offsetof(Dictionary_2_t97A1181D986BCE5FC5CCE0D4E72B74125977DFF9, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast(offsetof(Dictionary_2_t97A1181D986BCE5FC5CCE0D4E72B74125977DFF9, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast(offsetof(Dictionary_2_t97A1181D986BCE5FC5CCE0D4E72B74125977DFF9, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast(offsetof(Dictionary_2_t97A1181D986BCE5FC5CCE0D4E72B74125977DFF9, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast(offsetof(Dictionary_2_t97A1181D986BCE5FC5CCE0D4E72B74125977DFF9, ___keys_7)); } inline KeyCollection_t3F59232D75C9B787E130E3D77B9274F4F61D2D17 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t3F59232D75C9B787E130E3D77B9274F4F61D2D17 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t3F59232D75C9B787E130E3D77B9274F4F61D2D17 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast(offsetof(Dictionary_2_t97A1181D986BCE5FC5CCE0D4E72B74125977DFF9, ___values_8)); } inline ValueCollection_tF50E3E4277A9E551EA0CFB3AE0E33A107972021F * get_values_8() const { return ___values_8; } inline ValueCollection_tF50E3E4277A9E551EA0CFB3AE0E33A107972021F ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tF50E3E4277A9E551EA0CFB3AE0E33A107972021F * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast(offsetof(Dictionary_2_t97A1181D986BCE5FC5CCE0D4E72B74125977DFF9, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tF9B9899EA776F69E6DCE288DC87C61D47E3D8A57 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tA7F86CAE2EF5AC767669ECEECFD034586476C930* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1 System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection System.Collections.Generic.Dictionary`2::keys KeyCollection_t20FA4E22645EF555216D19534E4CE04F93AD971D * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::values ValueCollection_t6A5808C77FFDFD520F7F8AAC8609449DB987D2DA * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast(offsetof(Dictionary_2_tF9B9899EA776F69E6DCE288DC87C61D47E3D8A57, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast(offsetof(Dictionary_2_tF9B9899EA776F69E6DCE288DC87C61D47E3D8A57, ___entries_1)); } inline EntryU5BU5D_tA7F86CAE2EF5AC767669ECEECFD034586476C930* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tA7F86CAE2EF5AC767669ECEECFD034586476C930** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tA7F86CAE2EF5AC767669ECEECFD034586476C930* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast(offsetof(Dictionary_2_tF9B9899EA776F69E6DCE288DC87C61D47E3D8A57, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast(offsetof(Dictionary_2_tF9B9899EA776F69E6DCE288DC87C61D47E3D8A57, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast(offsetof(Dictionary_2_tF9B9899EA776F69E6DCE288DC87C61D47E3D8A57, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast(offsetof(Dictionary_2_tF9B9899EA776F69E6DCE288DC87C61D47E3D8A57, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast(offsetof(Dictionary_2_tF9B9899EA776F69E6DCE288DC87C61D47E3D8A57, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast(offsetof(Dictionary_2_tF9B9899EA776F69E6DCE288DC87C61D47E3D8A57, ___keys_7)); } inline KeyCollection_t20FA4E22645EF555216D19534E4CE04F93AD971D * get_keys_7() const { return ___keys_7; } inline KeyCollection_t20FA4E22645EF555216D19534E4CE04F93AD971D ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t20FA4E22645EF555216D19534E4CE04F93AD971D * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast(offsetof(Dictionary_2_tF9B9899EA776F69E6DCE288DC87C61D47E3D8A57, ___values_8)); } inline ValueCollection_t6A5808C77FFDFD520F7F8AAC8609449DB987D2DA * get_values_8() const { return ___values_8; } inline ValueCollection_t6A5808C77FFDFD520F7F8AAC8609449DB987D2DA ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t6A5808C77FFDFD520F7F8AAC8609449DB987D2DA * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast(offsetof(Dictionary_2_tF9B9899EA776F69E6DCE288DC87C61D47E3D8A57, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tC9AA680F78F71344FE76A09B6C7008BF8EE73C98 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tB152867DA30C074686DDFB0A0131BB27CC72E040* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1 System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection System.Collections.Generic.Dictionary`2::keys KeyCollection_t307D46B88D2B9D80E5720536FDAF84266E73C170 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::values ValueCollection_t43A08F228100B21215B8346CC5CA15A4406DE691 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast(offsetof(Dictionary_2_tC9AA680F78F71344FE76A09B6C7008BF8EE73C98, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast(offsetof(Dictionary_2_tC9AA680F78F71344FE76A09B6C7008BF8EE73C98, ___entries_1)); } inline EntryU5BU5D_tB152867DA30C074686DDFB0A0131BB27CC72E040* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tB152867DA30C074686DDFB0A0131BB27CC72E040** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tB152867DA30C074686DDFB0A0131BB27CC72E040* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast(offsetof(Dictionary_2_tC9AA680F78F71344FE76A09B6C7008BF8EE73C98, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast(offsetof(Dictionary_2_tC9AA680F78F71344FE76A09B6C7008BF8EE73C98, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast(offsetof(Dictionary_2_tC9AA680F78F71344FE76A09B6C7008BF8EE73C98, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast(offsetof(Dictionary_2_tC9AA680F78F71344FE76A09B6C7008BF8EE73C98, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast(offsetof(Dictionary_2_tC9AA680F78F71344FE76A09B6C7008BF8EE73C98, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast(offsetof(Dictionary_2_tC9AA680F78F71344FE76A09B6C7008BF8EE73C98, ___keys_7)); } inline KeyCollection_t307D46B88D2B9D80E5720536FDAF84266E73C170 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t307D46B88D2B9D80E5720536FDAF84266E73C170 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t307D46B88D2B9D80E5720536FDAF84266E73C170 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast(offsetof(Dictionary_2_tC9AA680F78F71344FE76A09B6C7008BF8EE73C98, ___values_8)); } inline ValueCollection_t43A08F228100B21215B8346CC5CA15A4406DE691 * get_values_8() const { return ___values_8; } inline ValueCollection_t43A08F228100B21215B8346CC5CA15A4406DE691 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t43A08F228100B21215B8346CC5CA15A4406DE691 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast(offsetof(Dictionary_2_tC9AA680F78F71344FE76A09B6C7008BF8EE73C98, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.EmptyArray`1 struct EmptyArray_1_tBF73225DFA890366D579424FE8F40073BF9FBAD4 : public RuntimeObject { public: public: }; struct EmptyArray_1_tBF73225DFA890366D579424FE8F40073BF9FBAD4_StaticFields { public: // T[] System.EmptyArray`1::Value ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast(offsetof(EmptyArray_1_tBF73225DFA890366D579424FE8F40073BF9FBAD4_StaticFields, ___Value_0)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_Value_0() const { return ___Value_0; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value); } }; // System.Collections.Generic.List`1 struct List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast(offsetof(List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE, ____items_1)); } inline ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D* get__items_1() const { return ____items_1; } inline ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D** get_address_of__items_1() { return &____items_1; } inline void set__items_1(ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast(offsetof(List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast(offsetof(List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast(offsetof(List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast(offsetof(List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE_StaticFields, ____emptyArray_5)); } inline ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D* get__emptyArray_5() const { return ____emptyArray_5; } inline ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1 struct List_1_t9C4606F69CB3833861EC4E41C2E8DA5647D07189 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items HeaderValueU5BU5D_tB17E7E2A7576BB62B119BF7E73C8E14A2AC611B6* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast(offsetof(List_1_t9C4606F69CB3833861EC4E41C2E8DA5647D07189, ____items_1)); } inline HeaderValueU5BU5D_tB17E7E2A7576BB62B119BF7E73C8E14A2AC611B6* get__items_1() const { return ____items_1; } inline HeaderValueU5BU5D_tB17E7E2A7576BB62B119BF7E73C8E14A2AC611B6** get_address_of__items_1() { return &____items_1; } inline void set__items_1(HeaderValueU5BU5D_tB17E7E2A7576BB62B119BF7E73C8E14A2AC611B6* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast(offsetof(List_1_t9C4606F69CB3833861EC4E41C2E8DA5647D07189, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast(offsetof(List_1_t9C4606F69CB3833861EC4E41C2E8DA5647D07189, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast(offsetof(List_1_t9C4606F69CB3833861EC4E41C2E8DA5647D07189, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_t9C4606F69CB3833861EC4E41C2E8DA5647D07189_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray HeaderValueU5BU5D_tB17E7E2A7576BB62B119BF7E73C8E14A2AC611B6* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast(offsetof(List_1_t9C4606F69CB3833861EC4E41C2E8DA5647D07189_StaticFields, ____emptyArray_5)); } inline HeaderValueU5BU5D_tB17E7E2A7576BB62B119BF7E73C8E14A2AC611B6* get__emptyArray_5() const { return ____emptyArray_5; } inline HeaderValueU5BU5D_tB17E7E2A7576BB62B119BF7E73C8E14A2AC611B6** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(HeaderValueU5BU5D_tB17E7E2A7576BB62B119BF7E73C8E14A2AC611B6* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1 struct List_1_tA4B5BEC690306B3DC7901CEA473C0A5BC3243F8B : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items MessageU5BU5D_t83B824D19824D00C54AD1A8A07021F9C1398901A* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast(offsetof(List_1_tA4B5BEC690306B3DC7901CEA473C0A5BC3243F8B, ____items_1)); } inline MessageU5BU5D_t83B824D19824D00C54AD1A8A07021F9C1398901A* get__items_1() const { return ____items_1; } inline MessageU5BU5D_t83B824D19824D00C54AD1A8A07021F9C1398901A** get_address_of__items_1() { return &____items_1; } inline void set__items_1(MessageU5BU5D_t83B824D19824D00C54AD1A8A07021F9C1398901A* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast(offsetof(List_1_tA4B5BEC690306B3DC7901CEA473C0A5BC3243F8B, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast(offsetof(List_1_tA4B5BEC690306B3DC7901CEA473C0A5BC3243F8B, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast(offsetof(List_1_tA4B5BEC690306B3DC7901CEA473C0A5BC3243F8B, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_tA4B5BEC690306B3DC7901CEA473C0A5BC3243F8B_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray MessageU5BU5D_t83B824D19824D00C54AD1A8A07021F9C1398901A* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast(offsetof(List_1_tA4B5BEC690306B3DC7901CEA473C0A5BC3243F8B_StaticFields, ____emptyArray_5)); } inline MessageU5BU5D_t83B824D19824D00C54AD1A8A07021F9C1398901A* get__emptyArray_5() const { return ____emptyArray_5; } inline MessageU5BU5D_t83B824D19824D00C54AD1A8A07021F9C1398901A** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(MessageU5BU5D_t83B824D19824D00C54AD1A8A07021F9C1398901A* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1 struct List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____items_1)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__items_1() const { return ____items_1; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__items_1() { return &____items_1; } inline void set__items_1(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5_StaticFields, ____emptyArray_5)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__emptyArray_5() const { return ____emptyArray_5; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1 struct List_1_t2AF104D60315227C623084E47EED6630D55BBB37 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items PropertyMetadataU5BU5D_tE81512DB4B13AA5AF619B0AF2C85AC091A6C3CD4* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast(offsetof(List_1_t2AF104D60315227C623084E47EED6630D55BBB37, ____items_1)); } inline PropertyMetadataU5BU5D_tE81512DB4B13AA5AF619B0AF2C85AC091A6C3CD4* get__items_1() const { return ____items_1; } inline PropertyMetadataU5BU5D_tE81512DB4B13AA5AF619B0AF2C85AC091A6C3CD4** get_address_of__items_1() { return &____items_1; } inline void set__items_1(PropertyMetadataU5BU5D_tE81512DB4B13AA5AF619B0AF2C85AC091A6C3CD4* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast(offsetof(List_1_t2AF104D60315227C623084E47EED6630D55BBB37, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast(offsetof(List_1_t2AF104D60315227C623084E47EED6630D55BBB37, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast(offsetof(List_1_t2AF104D60315227C623084E47EED6630D55BBB37, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_t2AF104D60315227C623084E47EED6630D55BBB37_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray PropertyMetadataU5BU5D_tE81512DB4B13AA5AF619B0AF2C85AC091A6C3CD4* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast(offsetof(List_1_t2AF104D60315227C623084E47EED6630D55BBB37_StaticFields, ____emptyArray_5)); } inline PropertyMetadataU5BU5D_tE81512DB4B13AA5AF619B0AF2C85AC091A6C3CD4* get__emptyArray_5() const { return ____emptyArray_5; } inline PropertyMetadataU5BU5D_tE81512DB4B13AA5AF619B0AF2C85AC091A6C3CD4** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(PropertyMetadataU5BU5D_tE81512DB4B13AA5AF619B0AF2C85AC091A6C3CD4* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1 struct List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast(offsetof(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3, ____items_1)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get__items_1() const { return ____items_1; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of__items_1() { return &____items_1; } inline void set__items_1(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast(offsetof(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast(offsetof(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast(offsetof(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast(offsetof(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3_StaticFields, ____emptyArray_5)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get__emptyArray_5() const { return ____emptyArray_5; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.Stack`1 struct Stack_1_tC6C298385D16F10F391B84280D21FE059A45CC55 : public RuntimeObject { public: // T[] System.Collections.Generic.Stack`1::_array Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ____array_0; // System.Int32 System.Collections.Generic.Stack`1::_size int32_t ____size_1; // System.Int32 System.Collections.Generic.Stack`1::_version int32_t ____version_2; // System.Object System.Collections.Generic.Stack`1::_syncRoot RuntimeObject * ____syncRoot_3; public: inline static int32_t get_offset_of__array_0() { return static_cast(offsetof(Stack_1_tC6C298385D16F10F391B84280D21FE059A45CC55, ____array_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get__array_0() const { return ____array_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of__array_0() { return &____array_0; } inline void set__array_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ____array_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____array_0), (void*)value); } inline static int32_t get_offset_of__size_1() { return static_cast(offsetof(Stack_1_tC6C298385D16F10F391B84280D21FE059A45CC55, ____size_1)); } inline int32_t get__size_1() const { return ____size_1; } inline int32_t* get_address_of__size_1() { return &____size_1; } inline void set__size_1(int32_t value) { ____size_1 = value; } inline static int32_t get_offset_of__version_2() { return static_cast(offsetof(Stack_1_tC6C298385D16F10F391B84280D21FE059A45CC55, ____version_2)); } inline int32_t get__version_2() const { return ____version_2; } inline int32_t* get_address_of__version_2() { return &____version_2; } inline void set__version_2(int32_t value) { ____version_2 = value; } inline static int32_t get_offset_of__syncRoot_3() { return static_cast(offsetof(Stack_1_tC6C298385D16F10F391B84280D21FE059A45CC55, ____syncRoot_3)); } inline RuntimeObject * get__syncRoot_3() const { return ____syncRoot_3; } inline RuntimeObject ** get_address_of__syncRoot_3() { return &____syncRoot_3; } inline void set__syncRoot_3(RuntimeObject * value) { ____syncRoot_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_3), (void*)value); } }; // System.Collections.Generic.Stack`1 struct Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 : public RuntimeObject { public: // T[] System.Collections.Generic.Stack`1::_array ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____array_0; // System.Int32 System.Collections.Generic.Stack`1::_size int32_t ____size_1; // System.Int32 System.Collections.Generic.Stack`1::_version int32_t ____version_2; // System.Object System.Collections.Generic.Stack`1::_syncRoot RuntimeObject * ____syncRoot_3; public: inline static int32_t get_offset_of__array_0() { return static_cast(offsetof(Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981, ____array_0)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__array_0() const { return ____array_0; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__array_0() { return &____array_0; } inline void set__array_0(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ____array_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____array_0), (void*)value); } inline static int32_t get_offset_of__size_1() { return static_cast(offsetof(Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981, ____size_1)); } inline int32_t get__size_1() const { return ____size_1; } inline int32_t* get_address_of__size_1() { return &____size_1; } inline void set__size_1(int32_t value) { ____size_1 = value; } inline static int32_t get_offset_of__version_2() { return static_cast(offsetof(Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981, ____version_2)); } inline int32_t get__version_2() const { return ____version_2; } inline int32_t* get_address_of__version_2() { return &____version_2; } inline void set__version_2(int32_t value) { ____version_2 = value; } inline static int32_t get_offset_of__syncRoot_3() { return static_cast(offsetof(Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981, ____syncRoot_3)); } inline RuntimeObject * get__syncRoot_3() const { return ____syncRoot_3; } inline RuntimeObject ** get_address_of__syncRoot_3() { return &____syncRoot_3; } inline void set__syncRoot_3(RuntimeObject * value) { ____syncRoot_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_3), (void*)value); } }; // System.Collections.Generic.Stack`1 struct Stack_1_t7B63F93F3C5FA452C37D6EC4E51A4F56AF3D7B92 : public RuntimeObject { public: // T[] System.Collections.Generic.Stack`1::_array WriterContextU5BU5D_t357C0E5089D901180E0FCE38051D4F3B9CB228CE* ____array_0; // System.Int32 System.Collections.Generic.Stack`1::_size int32_t ____size_1; // System.Int32 System.Collections.Generic.Stack`1::_version int32_t ____version_2; // System.Object System.Collections.Generic.Stack`1::_syncRoot RuntimeObject * ____syncRoot_3; public: inline static int32_t get_offset_of__array_0() { return static_cast(offsetof(Stack_1_t7B63F93F3C5FA452C37D6EC4E51A4F56AF3D7B92, ____array_0)); } inline WriterContextU5BU5D_t357C0E5089D901180E0FCE38051D4F3B9CB228CE* get__array_0() const { return ____array_0; } inline WriterContextU5BU5D_t357C0E5089D901180E0FCE38051D4F3B9CB228CE** get_address_of__array_0() { return &____array_0; } inline void set__array_0(WriterContextU5BU5D_t357C0E5089D901180E0FCE38051D4F3B9CB228CE* value) { ____array_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____array_0), (void*)value); } inline static int32_t get_offset_of__size_1() { return static_cast(offsetof(Stack_1_t7B63F93F3C5FA452C37D6EC4E51A4F56AF3D7B92, ____size_1)); } inline int32_t get__size_1() const { return ____size_1; } inline int32_t* get_address_of__size_1() { return &____size_1; } inline void set__size_1(int32_t value) { ____size_1 = value; } inline static int32_t get_offset_of__version_2() { return static_cast(offsetof(Stack_1_t7B63F93F3C5FA452C37D6EC4E51A4F56AF3D7B92, ____version_2)); } inline int32_t get__version_2() const { return ____version_2; } inline int32_t* get_address_of__version_2() { return &____version_2; } inline void set__version_2(int32_t value) { ____version_2 = value; } inline static int32_t get_offset_of__syncRoot_3() { return static_cast(offsetof(Stack_1_t7B63F93F3C5FA452C37D6EC4E51A4F56AF3D7B92, ____syncRoot_3)); } inline RuntimeObject * get__syncRoot_3() const { return ____syncRoot_3; } inline RuntimeObject ** get_address_of__syncRoot_3() { return &____syncRoot_3; } inline void set__syncRoot_3(RuntimeObject * value) { ____syncRoot_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_3), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.AeadParameters struct AeadParameters_t6C6A2620BFEC0ADD723500AA9021B04CE1956B64 : public RuntimeObject { public: // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.AeadParameters::associatedText ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___associatedText_0; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.AeadParameters::nonce ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___nonce_1; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.KeyParameter BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.AeadParameters::key KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * ___key_2; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.AeadParameters::macSize int32_t ___macSize_3; public: inline static int32_t get_offset_of_associatedText_0() { return static_cast(offsetof(AeadParameters_t6C6A2620BFEC0ADD723500AA9021B04CE1956B64, ___associatedText_0)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_associatedText_0() const { return ___associatedText_0; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_associatedText_0() { return &___associatedText_0; } inline void set_associatedText_0(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___associatedText_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___associatedText_0), (void*)value); } inline static int32_t get_offset_of_nonce_1() { return static_cast(offsetof(AeadParameters_t6C6A2620BFEC0ADD723500AA9021B04CE1956B64, ___nonce_1)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_nonce_1() const { return ___nonce_1; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_nonce_1() { return &___nonce_1; } inline void set_nonce_1(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___nonce_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___nonce_1), (void*)value); } inline static int32_t get_offset_of_key_2() { return static_cast(offsetof(AeadParameters_t6C6A2620BFEC0ADD723500AA9021B04CE1956B64, ___key_2)); } inline KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * get_key_2() const { return ___key_2; } inline KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC ** get_address_of_key_2() { return &___key_2; } inline void set_key_2(KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value); } inline static int32_t get_offset_of_macSize_3() { return static_cast(offsetof(AeadParameters_t6C6A2620BFEC0ADD723500AA9021B04CE1956B64, ___macSize_3)); } inline int32_t get_macSize_3() const { return ___macSize_3; } inline int32_t* get_address_of_macSize_3() { return &___macSize_3; } inline void set_macSize_3(int32_t value) { ___macSize_3 = value; } }; struct Il2CppArrayBounds; // System.Array // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable struct Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC : public RuntimeObject { public: public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1EncodableVector struct Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 : public RuntimeObject { public: // System.Collections.IList BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1EncodableVector::v RuntimeObject* ___v_0; public: inline static int32_t get_offset_of_v_0() { return static_cast(offsetof(Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3, ___v_0)); } inline RuntimeObject* get_v_0() const { return ___v_0; } inline RuntimeObject** get_address_of_v_0() { return &___v_0; } inline void set_v_0(RuntimeObject* value) { ___v_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___v_0), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair struct AsymmetricCipherKeyPair_t975F15F5FD9FD35454E104A768061EAFB010D929 : public RuntimeObject { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair::publicParameter AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * ___publicParameter_0; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair::privateParameter AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * ___privateParameter_1; public: inline static int32_t get_offset_of_publicParameter_0() { return static_cast(offsetof(AsymmetricCipherKeyPair_t975F15F5FD9FD35454E104A768061EAFB010D929, ___publicParameter_0)); } inline AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * get_publicParameter_0() const { return ___publicParameter_0; } inline AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A ** get_address_of_publicParameter_0() { return &___publicParameter_0; } inline void set_publicParameter_0(AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * value) { ___publicParameter_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___publicParameter_0), (void*)value); } inline static int32_t get_offset_of_privateParameter_1() { return static_cast(offsetof(AsymmetricCipherKeyPair_t975F15F5FD9FD35454E104A768061EAFB010D929, ___privateParameter_1)); } inline AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * get_privateParameter_1() const { return ___privateParameter_1; } inline AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A ** get_address_of_privateParameter_1() { return &___privateParameter_1; } inline void set_privateParameter_1(AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * value) { ___privateParameter_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___privateParameter_1), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter struct AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A : public RuntimeObject { public: // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter::privateKey bool ___privateKey_0; public: inline static int32_t get_offset_of_privateKey_0() { return static_cast(offsetof(AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A, ___privateKey_0)); } inline bool get_privateKey_0() const { return ___privateKey_0; } inline bool* get_address_of_privateKey_0() { return &___privateKey_0; } inline void set_privateKey_0(bool value) { ___privateKey_0 = value; } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Generators.BaseKdfBytesGenerator struct BaseKdfBytesGenerator_t9F8BAA4766A94011AFFDB7D7C52714FBFD3EB255 : public RuntimeObject { public: // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Generators.BaseKdfBytesGenerator::counterStart int32_t ___counterStart_0; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IDigest BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Generators.BaseKdfBytesGenerator::digest RuntimeObject* ___digest_1; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Generators.BaseKdfBytesGenerator::shared ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___shared_2; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Generators.BaseKdfBytesGenerator::iv ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___iv_3; public: inline static int32_t get_offset_of_counterStart_0() { return static_cast(offsetof(BaseKdfBytesGenerator_t9F8BAA4766A94011AFFDB7D7C52714FBFD3EB255, ___counterStart_0)); } inline int32_t get_counterStart_0() const { return ___counterStart_0; } inline int32_t* get_address_of_counterStart_0() { return &___counterStart_0; } inline void set_counterStart_0(int32_t value) { ___counterStart_0 = value; } inline static int32_t get_offset_of_digest_1() { return static_cast(offsetof(BaseKdfBytesGenerator_t9F8BAA4766A94011AFFDB7D7C52714FBFD3EB255, ___digest_1)); } inline RuntimeObject* get_digest_1() const { return ___digest_1; } inline RuntimeObject** get_address_of_digest_1() { return &___digest_1; } inline void set_digest_1(RuntimeObject* value) { ___digest_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___digest_1), (void*)value); } inline static int32_t get_offset_of_shared_2() { return static_cast(offsetof(BaseKdfBytesGenerator_t9F8BAA4766A94011AFFDB7D7C52714FBFD3EB255, ___shared_2)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_shared_2() const { return ___shared_2; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_shared_2() { return &___shared_2; } inline void set_shared_2(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___shared_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___shared_2), (void*)value); } inline static int32_t get_offset_of_iv_3() { return static_cast(offsetof(BaseKdfBytesGenerator_t9F8BAA4766A94011AFFDB7D7C52714FBFD3EB255, ___iv_3)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_iv_3() const { return ___iv_3; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_iv_3() { return &___iv_3; } inline void set_iv_3(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___iv_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___iv_3), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger struct BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 : public RuntimeObject { public: // System.Int32[] BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::magnitude Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___magnitude_30; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::sign int32_t ___sign_31; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::nBits int32_t ___nBits_32; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::nBitLength int32_t ___nBitLength_33; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::mQuote int32_t ___mQuote_34; public: inline static int32_t get_offset_of_magnitude_30() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9, ___magnitude_30)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_magnitude_30() const { return ___magnitude_30; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_magnitude_30() { return &___magnitude_30; } inline void set_magnitude_30(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___magnitude_30 = value; Il2CppCodeGenWriteBarrier((void**)(&___magnitude_30), (void*)value); } inline static int32_t get_offset_of_sign_31() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9, ___sign_31)); } inline int32_t get_sign_31() const { return ___sign_31; } inline int32_t* get_address_of_sign_31() { return &___sign_31; } inline void set_sign_31(int32_t value) { ___sign_31 = value; } inline static int32_t get_offset_of_nBits_32() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9, ___nBits_32)); } inline int32_t get_nBits_32() const { return ___nBits_32; } inline int32_t* get_address_of_nBits_32() { return &___nBits_32; } inline void set_nBits_32(int32_t value) { ___nBits_32 = value; } inline static int32_t get_offset_of_nBitLength_33() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9, ___nBitLength_33)); } inline int32_t get_nBitLength_33() const { return ___nBitLength_33; } inline int32_t* get_address_of_nBitLength_33() { return &___nBitLength_33; } inline void set_nBitLength_33(int32_t value) { ___nBitLength_33 = value; } inline static int32_t get_offset_of_mQuote_34() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9, ___mQuote_34)); } inline int32_t get_mQuote_34() const { return ___mQuote_34; } inline int32_t* get_address_of_mQuote_34() { return &___mQuote_34; } inline void set_mQuote_34(int32_t value) { ___mQuote_34 = value; } }; struct BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_StaticFields { public: // System.Int32[][] BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::primeLists Int32U5BU5DU5BU5D_t104DBF1B996084AA19567FD32B02EDF88D044FAF* ___primeLists_0; // System.Int32[] BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::primeProducts Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___primeProducts_1; // System.Int32[] BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::ZeroMagnitude Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___ZeroMagnitude_4; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::ZeroEncoding ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___ZeroEncoding_5; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger[] BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::SMALL_CONSTANTS BigIntegerU5BU5D_tE8B77B5B8A588D40881DE1C7EE373965BF9E33ED* ___SMALL_CONSTANTS_6; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::Zero BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___Zero_7; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::One BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___One_8; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::Two BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___Two_9; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::Three BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___Three_10; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::Ten BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___Ten_11; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::BitLengthTable ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___BitLengthTable_12; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::radix2 BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___radix2_17; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::radix2E BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___radix2E_18; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::radix8 BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___radix8_19; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::radix8E BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___radix8E_20; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::radix10 BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___radix10_21; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::radix10E BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___radix10E_22; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::radix16 BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___radix16_23; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::radix16E BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___radix16E_24; // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::RandomSource SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * ___RandomSource_25; // System.Int32[] BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::ExpWindowThresholds Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___ExpWindowThresholds_26; public: inline static int32_t get_offset_of_primeLists_0() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_StaticFields, ___primeLists_0)); } inline Int32U5BU5DU5BU5D_t104DBF1B996084AA19567FD32B02EDF88D044FAF* get_primeLists_0() const { return ___primeLists_0; } inline Int32U5BU5DU5BU5D_t104DBF1B996084AA19567FD32B02EDF88D044FAF** get_address_of_primeLists_0() { return &___primeLists_0; } inline void set_primeLists_0(Int32U5BU5DU5BU5D_t104DBF1B996084AA19567FD32B02EDF88D044FAF* value) { ___primeLists_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___primeLists_0), (void*)value); } inline static int32_t get_offset_of_primeProducts_1() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_StaticFields, ___primeProducts_1)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_primeProducts_1() const { return ___primeProducts_1; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_primeProducts_1() { return &___primeProducts_1; } inline void set_primeProducts_1(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___primeProducts_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___primeProducts_1), (void*)value); } inline static int32_t get_offset_of_ZeroMagnitude_4() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_StaticFields, ___ZeroMagnitude_4)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_ZeroMagnitude_4() const { return ___ZeroMagnitude_4; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_ZeroMagnitude_4() { return &___ZeroMagnitude_4; } inline void set_ZeroMagnitude_4(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___ZeroMagnitude_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___ZeroMagnitude_4), (void*)value); } inline static int32_t get_offset_of_ZeroEncoding_5() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_StaticFields, ___ZeroEncoding_5)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_ZeroEncoding_5() const { return ___ZeroEncoding_5; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_ZeroEncoding_5() { return &___ZeroEncoding_5; } inline void set_ZeroEncoding_5(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___ZeroEncoding_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___ZeroEncoding_5), (void*)value); } inline static int32_t get_offset_of_SMALL_CONSTANTS_6() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_StaticFields, ___SMALL_CONSTANTS_6)); } inline BigIntegerU5BU5D_tE8B77B5B8A588D40881DE1C7EE373965BF9E33ED* get_SMALL_CONSTANTS_6() const { return ___SMALL_CONSTANTS_6; } inline BigIntegerU5BU5D_tE8B77B5B8A588D40881DE1C7EE373965BF9E33ED** get_address_of_SMALL_CONSTANTS_6() { return &___SMALL_CONSTANTS_6; } inline void set_SMALL_CONSTANTS_6(BigIntegerU5BU5D_tE8B77B5B8A588D40881DE1C7EE373965BF9E33ED* value) { ___SMALL_CONSTANTS_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___SMALL_CONSTANTS_6), (void*)value); } inline static int32_t get_offset_of_Zero_7() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_StaticFields, ___Zero_7)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_Zero_7() const { return ___Zero_7; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_Zero_7() { return &___Zero_7; } inline void set_Zero_7(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___Zero_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___Zero_7), (void*)value); } inline static int32_t get_offset_of_One_8() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_StaticFields, ___One_8)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_One_8() const { return ___One_8; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_One_8() { return &___One_8; } inline void set_One_8(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___One_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___One_8), (void*)value); } inline static int32_t get_offset_of_Two_9() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_StaticFields, ___Two_9)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_Two_9() const { return ___Two_9; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_Two_9() { return &___Two_9; } inline void set_Two_9(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___Two_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___Two_9), (void*)value); } inline static int32_t get_offset_of_Three_10() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_StaticFields, ___Three_10)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_Three_10() const { return ___Three_10; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_Three_10() { return &___Three_10; } inline void set_Three_10(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___Three_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___Three_10), (void*)value); } inline static int32_t get_offset_of_Ten_11() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_StaticFields, ___Ten_11)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_Ten_11() const { return ___Ten_11; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_Ten_11() { return &___Ten_11; } inline void set_Ten_11(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___Ten_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___Ten_11), (void*)value); } inline static int32_t get_offset_of_BitLengthTable_12() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_StaticFields, ___BitLengthTable_12)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_BitLengthTable_12() const { return ___BitLengthTable_12; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_BitLengthTable_12() { return &___BitLengthTable_12; } inline void set_BitLengthTable_12(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___BitLengthTable_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___BitLengthTable_12), (void*)value); } inline static int32_t get_offset_of_radix2_17() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_StaticFields, ___radix2_17)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_radix2_17() const { return ___radix2_17; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_radix2_17() { return &___radix2_17; } inline void set_radix2_17(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___radix2_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___radix2_17), (void*)value); } inline static int32_t get_offset_of_radix2E_18() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_StaticFields, ___radix2E_18)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_radix2E_18() const { return ___radix2E_18; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_radix2E_18() { return &___radix2E_18; } inline void set_radix2E_18(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___radix2E_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___radix2E_18), (void*)value); } inline static int32_t get_offset_of_radix8_19() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_StaticFields, ___radix8_19)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_radix8_19() const { return ___radix8_19; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_radix8_19() { return &___radix8_19; } inline void set_radix8_19(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___radix8_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___radix8_19), (void*)value); } inline static int32_t get_offset_of_radix8E_20() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_StaticFields, ___radix8E_20)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_radix8E_20() const { return ___radix8E_20; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_radix8E_20() { return &___radix8E_20; } inline void set_radix8E_20(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___radix8E_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___radix8E_20), (void*)value); } inline static int32_t get_offset_of_radix10_21() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_StaticFields, ___radix10_21)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_radix10_21() const { return ___radix10_21; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_radix10_21() { return &___radix10_21; } inline void set_radix10_21(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___radix10_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___radix10_21), (void*)value); } inline static int32_t get_offset_of_radix10E_22() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_StaticFields, ___radix10E_22)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_radix10E_22() const { return ___radix10E_22; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_radix10E_22() { return &___radix10E_22; } inline void set_radix10E_22(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___radix10E_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___radix10E_22), (void*)value); } inline static int32_t get_offset_of_radix16_23() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_StaticFields, ___radix16_23)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_radix16_23() const { return ___radix16_23; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_radix16_23() { return &___radix16_23; } inline void set_radix16_23(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___radix16_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___radix16_23), (void*)value); } inline static int32_t get_offset_of_radix16E_24() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_StaticFields, ___radix16E_24)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_radix16E_24() const { return ___radix16E_24; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_radix16E_24() { return &___radix16E_24; } inline void set_radix16E_24(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___radix16E_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___radix16E_24), (void*)value); } inline static int32_t get_offset_of_RandomSource_25() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_StaticFields, ___RandomSource_25)); } inline SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * get_RandomSource_25() const { return ___RandomSource_25; } inline SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 ** get_address_of_RandomSource_25() { return &___RandomSource_25; } inline void set_RandomSource_25(SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * value) { ___RandomSource_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___RandomSource_25), (void*)value); } inline static int32_t get_offset_of_ExpWindowThresholds_26() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_StaticFields, ___ExpWindowThresholds_26)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_ExpWindowThresholds_26() const { return ___ExpWindowThresholds_26; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_ExpWindowThresholds_26() { return &___ExpWindowThresholds_26; } inline void set_ExpWindowThresholds_26(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___ExpWindowThresholds_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___ExpWindowThresholds_26), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsEnvelopedGenerator struct CmsEnvelopedGenerator_t48A8897F962E710CD0966567A63BD57B50B30614 : public RuntimeObject { public: // System.Collections.IList BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsEnvelopedGenerator::recipientInfoGenerators RuntimeObject* ___recipientInfoGenerators_22; // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsEnvelopedGenerator::rand SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * ___rand_23; // BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsAttributeTableGenerator BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsEnvelopedGenerator::unprotectedAttributeGenerator RuntimeObject* ___unprotectedAttributeGenerator_24; public: inline static int32_t get_offset_of_recipientInfoGenerators_22() { return static_cast(offsetof(CmsEnvelopedGenerator_t48A8897F962E710CD0966567A63BD57B50B30614, ___recipientInfoGenerators_22)); } inline RuntimeObject* get_recipientInfoGenerators_22() const { return ___recipientInfoGenerators_22; } inline RuntimeObject** get_address_of_recipientInfoGenerators_22() { return &___recipientInfoGenerators_22; } inline void set_recipientInfoGenerators_22(RuntimeObject* value) { ___recipientInfoGenerators_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___recipientInfoGenerators_22), (void*)value); } inline static int32_t get_offset_of_rand_23() { return static_cast(offsetof(CmsEnvelopedGenerator_t48A8897F962E710CD0966567A63BD57B50B30614, ___rand_23)); } inline SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * get_rand_23() const { return ___rand_23; } inline SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 ** get_address_of_rand_23() { return &___rand_23; } inline void set_rand_23(SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * value) { ___rand_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___rand_23), (void*)value); } inline static int32_t get_offset_of_unprotectedAttributeGenerator_24() { return static_cast(offsetof(CmsEnvelopedGenerator_t48A8897F962E710CD0966567A63BD57B50B30614, ___unprotectedAttributeGenerator_24)); } inline RuntimeObject* get_unprotectedAttributeGenerator_24() const { return ___unprotectedAttributeGenerator_24; } inline RuntimeObject** get_address_of_unprotectedAttributeGenerator_24() { return &___unprotectedAttributeGenerator_24; } inline void set_unprotectedAttributeGenerator_24(RuntimeObject* value) { ___unprotectedAttributeGenerator_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___unprotectedAttributeGenerator_24), (void*)value); } }; struct CmsEnvelopedGenerator_t48A8897F962E710CD0966567A63BD57B50B30614_StaticFields { public: // System.Int16[] BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsEnvelopedGenerator::rc2Table Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* ___rc2Table_0; // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsEnvelopedGenerator::DesEde3Cbc String_t* ___DesEde3Cbc_1; // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsEnvelopedGenerator::RC2Cbc String_t* ___RC2Cbc_2; // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsEnvelopedGenerator::Aes128Cbc String_t* ___Aes128Cbc_5; // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsEnvelopedGenerator::Aes192Cbc String_t* ___Aes192Cbc_6; // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsEnvelopedGenerator::Aes256Cbc String_t* ___Aes256Cbc_7; // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsEnvelopedGenerator::Camellia128Cbc String_t* ___Camellia128Cbc_8; // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsEnvelopedGenerator::Camellia192Cbc String_t* ___Camellia192Cbc_9; // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsEnvelopedGenerator::Camellia256Cbc String_t* ___Camellia256Cbc_10; // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsEnvelopedGenerator::SeedCbc String_t* ___SeedCbc_11; // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsEnvelopedGenerator::DesEde3Wrap String_t* ___DesEde3Wrap_12; // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsEnvelopedGenerator::Aes128Wrap String_t* ___Aes128Wrap_13; // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsEnvelopedGenerator::Aes192Wrap String_t* ___Aes192Wrap_14; // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsEnvelopedGenerator::Aes256Wrap String_t* ___Aes256Wrap_15; // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsEnvelopedGenerator::Camellia128Wrap String_t* ___Camellia128Wrap_16; // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsEnvelopedGenerator::Camellia192Wrap String_t* ___Camellia192Wrap_17; // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsEnvelopedGenerator::Camellia256Wrap String_t* ___Camellia256Wrap_18; // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsEnvelopedGenerator::SeedWrap String_t* ___SeedWrap_19; // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsEnvelopedGenerator::ECDHSha1Kdf String_t* ___ECDHSha1Kdf_20; // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsEnvelopedGenerator::ECMqvSha1Kdf String_t* ___ECMqvSha1Kdf_21; public: inline static int32_t get_offset_of_rc2Table_0() { return static_cast(offsetof(CmsEnvelopedGenerator_t48A8897F962E710CD0966567A63BD57B50B30614_StaticFields, ___rc2Table_0)); } inline Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* get_rc2Table_0() const { return ___rc2Table_0; } inline Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD** get_address_of_rc2Table_0() { return &___rc2Table_0; } inline void set_rc2Table_0(Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* value) { ___rc2Table_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___rc2Table_0), (void*)value); } inline static int32_t get_offset_of_DesEde3Cbc_1() { return static_cast(offsetof(CmsEnvelopedGenerator_t48A8897F962E710CD0966567A63BD57B50B30614_StaticFields, ___DesEde3Cbc_1)); } inline String_t* get_DesEde3Cbc_1() const { return ___DesEde3Cbc_1; } inline String_t** get_address_of_DesEde3Cbc_1() { return &___DesEde3Cbc_1; } inline void set_DesEde3Cbc_1(String_t* value) { ___DesEde3Cbc_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___DesEde3Cbc_1), (void*)value); } inline static int32_t get_offset_of_RC2Cbc_2() { return static_cast(offsetof(CmsEnvelopedGenerator_t48A8897F962E710CD0966567A63BD57B50B30614_StaticFields, ___RC2Cbc_2)); } inline String_t* get_RC2Cbc_2() const { return ___RC2Cbc_2; } inline String_t** get_address_of_RC2Cbc_2() { return &___RC2Cbc_2; } inline void set_RC2Cbc_2(String_t* value) { ___RC2Cbc_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___RC2Cbc_2), (void*)value); } inline static int32_t get_offset_of_Aes128Cbc_5() { return static_cast(offsetof(CmsEnvelopedGenerator_t48A8897F962E710CD0966567A63BD57B50B30614_StaticFields, ___Aes128Cbc_5)); } inline String_t* get_Aes128Cbc_5() const { return ___Aes128Cbc_5; } inline String_t** get_address_of_Aes128Cbc_5() { return &___Aes128Cbc_5; } inline void set_Aes128Cbc_5(String_t* value) { ___Aes128Cbc_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___Aes128Cbc_5), (void*)value); } inline static int32_t get_offset_of_Aes192Cbc_6() { return static_cast(offsetof(CmsEnvelopedGenerator_t48A8897F962E710CD0966567A63BD57B50B30614_StaticFields, ___Aes192Cbc_6)); } inline String_t* get_Aes192Cbc_6() const { return ___Aes192Cbc_6; } inline String_t** get_address_of_Aes192Cbc_6() { return &___Aes192Cbc_6; } inline void set_Aes192Cbc_6(String_t* value) { ___Aes192Cbc_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___Aes192Cbc_6), (void*)value); } inline static int32_t get_offset_of_Aes256Cbc_7() { return static_cast(offsetof(CmsEnvelopedGenerator_t48A8897F962E710CD0966567A63BD57B50B30614_StaticFields, ___Aes256Cbc_7)); } inline String_t* get_Aes256Cbc_7() const { return ___Aes256Cbc_7; } inline String_t** get_address_of_Aes256Cbc_7() { return &___Aes256Cbc_7; } inline void set_Aes256Cbc_7(String_t* value) { ___Aes256Cbc_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___Aes256Cbc_7), (void*)value); } inline static int32_t get_offset_of_Camellia128Cbc_8() { return static_cast(offsetof(CmsEnvelopedGenerator_t48A8897F962E710CD0966567A63BD57B50B30614_StaticFields, ___Camellia128Cbc_8)); } inline String_t* get_Camellia128Cbc_8() const { return ___Camellia128Cbc_8; } inline String_t** get_address_of_Camellia128Cbc_8() { return &___Camellia128Cbc_8; } inline void set_Camellia128Cbc_8(String_t* value) { ___Camellia128Cbc_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___Camellia128Cbc_8), (void*)value); } inline static int32_t get_offset_of_Camellia192Cbc_9() { return static_cast(offsetof(CmsEnvelopedGenerator_t48A8897F962E710CD0966567A63BD57B50B30614_StaticFields, ___Camellia192Cbc_9)); } inline String_t* get_Camellia192Cbc_9() const { return ___Camellia192Cbc_9; } inline String_t** get_address_of_Camellia192Cbc_9() { return &___Camellia192Cbc_9; } inline void set_Camellia192Cbc_9(String_t* value) { ___Camellia192Cbc_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___Camellia192Cbc_9), (void*)value); } inline static int32_t get_offset_of_Camellia256Cbc_10() { return static_cast(offsetof(CmsEnvelopedGenerator_t48A8897F962E710CD0966567A63BD57B50B30614_StaticFields, ___Camellia256Cbc_10)); } inline String_t* get_Camellia256Cbc_10() const { return ___Camellia256Cbc_10; } inline String_t** get_address_of_Camellia256Cbc_10() { return &___Camellia256Cbc_10; } inline void set_Camellia256Cbc_10(String_t* value) { ___Camellia256Cbc_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___Camellia256Cbc_10), (void*)value); } inline static int32_t get_offset_of_SeedCbc_11() { return static_cast(offsetof(CmsEnvelopedGenerator_t48A8897F962E710CD0966567A63BD57B50B30614_StaticFields, ___SeedCbc_11)); } inline String_t* get_SeedCbc_11() const { return ___SeedCbc_11; } inline String_t** get_address_of_SeedCbc_11() { return &___SeedCbc_11; } inline void set_SeedCbc_11(String_t* value) { ___SeedCbc_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___SeedCbc_11), (void*)value); } inline static int32_t get_offset_of_DesEde3Wrap_12() { return static_cast(offsetof(CmsEnvelopedGenerator_t48A8897F962E710CD0966567A63BD57B50B30614_StaticFields, ___DesEde3Wrap_12)); } inline String_t* get_DesEde3Wrap_12() const { return ___DesEde3Wrap_12; } inline String_t** get_address_of_DesEde3Wrap_12() { return &___DesEde3Wrap_12; } inline void set_DesEde3Wrap_12(String_t* value) { ___DesEde3Wrap_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___DesEde3Wrap_12), (void*)value); } inline static int32_t get_offset_of_Aes128Wrap_13() { return static_cast(offsetof(CmsEnvelopedGenerator_t48A8897F962E710CD0966567A63BD57B50B30614_StaticFields, ___Aes128Wrap_13)); } inline String_t* get_Aes128Wrap_13() const { return ___Aes128Wrap_13; } inline String_t** get_address_of_Aes128Wrap_13() { return &___Aes128Wrap_13; } inline void set_Aes128Wrap_13(String_t* value) { ___Aes128Wrap_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___Aes128Wrap_13), (void*)value); } inline static int32_t get_offset_of_Aes192Wrap_14() { return static_cast(offsetof(CmsEnvelopedGenerator_t48A8897F962E710CD0966567A63BD57B50B30614_StaticFields, ___Aes192Wrap_14)); } inline String_t* get_Aes192Wrap_14() const { return ___Aes192Wrap_14; } inline String_t** get_address_of_Aes192Wrap_14() { return &___Aes192Wrap_14; } inline void set_Aes192Wrap_14(String_t* value) { ___Aes192Wrap_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___Aes192Wrap_14), (void*)value); } inline static int32_t get_offset_of_Aes256Wrap_15() { return static_cast(offsetof(CmsEnvelopedGenerator_t48A8897F962E710CD0966567A63BD57B50B30614_StaticFields, ___Aes256Wrap_15)); } inline String_t* get_Aes256Wrap_15() const { return ___Aes256Wrap_15; } inline String_t** get_address_of_Aes256Wrap_15() { return &___Aes256Wrap_15; } inline void set_Aes256Wrap_15(String_t* value) { ___Aes256Wrap_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___Aes256Wrap_15), (void*)value); } inline static int32_t get_offset_of_Camellia128Wrap_16() { return static_cast(offsetof(CmsEnvelopedGenerator_t48A8897F962E710CD0966567A63BD57B50B30614_StaticFields, ___Camellia128Wrap_16)); } inline String_t* get_Camellia128Wrap_16() const { return ___Camellia128Wrap_16; } inline String_t** get_address_of_Camellia128Wrap_16() { return &___Camellia128Wrap_16; } inline void set_Camellia128Wrap_16(String_t* value) { ___Camellia128Wrap_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___Camellia128Wrap_16), (void*)value); } inline static int32_t get_offset_of_Camellia192Wrap_17() { return static_cast(offsetof(CmsEnvelopedGenerator_t48A8897F962E710CD0966567A63BD57B50B30614_StaticFields, ___Camellia192Wrap_17)); } inline String_t* get_Camellia192Wrap_17() const { return ___Camellia192Wrap_17; } inline String_t** get_address_of_Camellia192Wrap_17() { return &___Camellia192Wrap_17; } inline void set_Camellia192Wrap_17(String_t* value) { ___Camellia192Wrap_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___Camellia192Wrap_17), (void*)value); } inline static int32_t get_offset_of_Camellia256Wrap_18() { return static_cast(offsetof(CmsEnvelopedGenerator_t48A8897F962E710CD0966567A63BD57B50B30614_StaticFields, ___Camellia256Wrap_18)); } inline String_t* get_Camellia256Wrap_18() const { return ___Camellia256Wrap_18; } inline String_t** get_address_of_Camellia256Wrap_18() { return &___Camellia256Wrap_18; } inline void set_Camellia256Wrap_18(String_t* value) { ___Camellia256Wrap_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___Camellia256Wrap_18), (void*)value); } inline static int32_t get_offset_of_SeedWrap_19() { return static_cast(offsetof(CmsEnvelopedGenerator_t48A8897F962E710CD0966567A63BD57B50B30614_StaticFields, ___SeedWrap_19)); } inline String_t* get_SeedWrap_19() const { return ___SeedWrap_19; } inline String_t** get_address_of_SeedWrap_19() { return &___SeedWrap_19; } inline void set_SeedWrap_19(String_t* value) { ___SeedWrap_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___SeedWrap_19), (void*)value); } inline static int32_t get_offset_of_ECDHSha1Kdf_20() { return static_cast(offsetof(CmsEnvelopedGenerator_t48A8897F962E710CD0966567A63BD57B50B30614_StaticFields, ___ECDHSha1Kdf_20)); } inline String_t* get_ECDHSha1Kdf_20() const { return ___ECDHSha1Kdf_20; } inline String_t** get_address_of_ECDHSha1Kdf_20() { return &___ECDHSha1Kdf_20; } inline void set_ECDHSha1Kdf_20(String_t* value) { ___ECDHSha1Kdf_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___ECDHSha1Kdf_20), (void*)value); } inline static int32_t get_offset_of_ECMqvSha1Kdf_21() { return static_cast(offsetof(CmsEnvelopedGenerator_t48A8897F962E710CD0966567A63BD57B50B30614_StaticFields, ___ECMqvSha1Kdf_21)); } inline String_t* get_ECMqvSha1Kdf_21() const { return ___ECMqvSha1Kdf_21; } inline String_t** get_address_of_ECMqvSha1Kdf_21() { return &___ECMqvSha1Kdf_21; } inline void set_ECMqvSha1Kdf_21(String_t* value) { ___ECMqvSha1Kdf_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___ECMqvSha1Kdf_21), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsEnvelopedHelper struct CmsEnvelopedHelper_t4C541C5858FDC5D5FEFBEF5BB39D1E55C9319BF0 : public RuntimeObject { public: public: }; struct CmsEnvelopedHelper_t4C541C5858FDC5D5FEFBEF5BB39D1E55C9319BF0_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsEnvelopedHelper BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsEnvelopedHelper::Instance CmsEnvelopedHelper_t4C541C5858FDC5D5FEFBEF5BB39D1E55C9319BF0 * ___Instance_0; // System.Collections.IDictionary BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsEnvelopedHelper::KeySizes RuntimeObject* ___KeySizes_1; // System.Collections.IDictionary BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsEnvelopedHelper::BaseCipherNames RuntimeObject* ___BaseCipherNames_2; public: inline static int32_t get_offset_of_Instance_0() { return static_cast(offsetof(CmsEnvelopedHelper_t4C541C5858FDC5D5FEFBEF5BB39D1E55C9319BF0_StaticFields, ___Instance_0)); } inline CmsEnvelopedHelper_t4C541C5858FDC5D5FEFBEF5BB39D1E55C9319BF0 * get_Instance_0() const { return ___Instance_0; } inline CmsEnvelopedHelper_t4C541C5858FDC5D5FEFBEF5BB39D1E55C9319BF0 ** get_address_of_Instance_0() { return &___Instance_0; } inline void set_Instance_0(CmsEnvelopedHelper_t4C541C5858FDC5D5FEFBEF5BB39D1E55C9319BF0 * value) { ___Instance_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value); } inline static int32_t get_offset_of_KeySizes_1() { return static_cast(offsetof(CmsEnvelopedHelper_t4C541C5858FDC5D5FEFBEF5BB39D1E55C9319BF0_StaticFields, ___KeySizes_1)); } inline RuntimeObject* get_KeySizes_1() const { return ___KeySizes_1; } inline RuntimeObject** get_address_of_KeySizes_1() { return &___KeySizes_1; } inline void set_KeySizes_1(RuntimeObject* value) { ___KeySizes_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___KeySizes_1), (void*)value); } inline static int32_t get_offset_of_BaseCipherNames_2() { return static_cast(offsetof(CmsEnvelopedHelper_t4C541C5858FDC5D5FEFBEF5BB39D1E55C9319BF0_StaticFields, ___BaseCipherNames_2)); } inline RuntimeObject* get_BaseCipherNames_2() const { return ___BaseCipherNames_2; } inline RuntimeObject** get_address_of_BaseCipherNames_2() { return &___BaseCipherNames_2; } inline void set_BaseCipherNames_2(RuntimeObject* value) { ___BaseCipherNames_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___BaseCipherNames_2), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsTypedStream struct CmsTypedStream_t73EEA14F539B2D9626982E55116A232F30D73A21 : public RuntimeObject { public: // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsTypedStream::_oid String_t* ____oid_1; // System.IO.Stream BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsTypedStream::_in Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ____in_2; public: inline static int32_t get_offset_of__oid_1() { return static_cast(offsetof(CmsTypedStream_t73EEA14F539B2D9626982E55116A232F30D73A21, ____oid_1)); } inline String_t* get__oid_1() const { return ____oid_1; } inline String_t** get_address_of__oid_1() { return &____oid_1; } inline void set__oid_1(String_t* value) { ____oid_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____oid_1), (void*)value); } inline static int32_t get_offset_of__in_2() { return static_cast(offsetof(CmsTypedStream_t73EEA14F539B2D9626982E55116A232F30D73A21, ____in_2)); } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get__in_2() const { return ____in_2; } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of__in_2() { return &____in_2; } inline void set__in_2(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value) { ____in_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____in_2), (void*)value); } }; // System.Text.Encoding struct Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 : public RuntimeObject { public: // System.Int32 System.Text.Encoding::m_codePage int32_t ___m_codePage_55; // System.Globalization.CodePageDataItem System.Text.Encoding::dataItem CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E * ___dataItem_56; // System.Boolean System.Text.Encoding::m_deserializedFromEverett bool ___m_deserializedFromEverett_57; // System.Boolean System.Text.Encoding::m_isReadOnly bool ___m_isReadOnly_58; // System.Text.EncoderFallback System.Text.Encoding::encoderFallback EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 * ___encoderFallback_59; // System.Text.DecoderFallback System.Text.Encoding::decoderFallback DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D * ___decoderFallback_60; public: inline static int32_t get_offset_of_m_codePage_55() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827, ___m_codePage_55)); } inline int32_t get_m_codePage_55() const { return ___m_codePage_55; } inline int32_t* get_address_of_m_codePage_55() { return &___m_codePage_55; } inline void set_m_codePage_55(int32_t value) { ___m_codePage_55 = value; } inline static int32_t get_offset_of_dataItem_56() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827, ___dataItem_56)); } inline CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E * get_dataItem_56() const { return ___dataItem_56; } inline CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E ** get_address_of_dataItem_56() { return &___dataItem_56; } inline void set_dataItem_56(CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E * value) { ___dataItem_56 = value; Il2CppCodeGenWriteBarrier((void**)(&___dataItem_56), (void*)value); } inline static int32_t get_offset_of_m_deserializedFromEverett_57() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827, ___m_deserializedFromEverett_57)); } inline bool get_m_deserializedFromEverett_57() const { return ___m_deserializedFromEverett_57; } inline bool* get_address_of_m_deserializedFromEverett_57() { return &___m_deserializedFromEverett_57; } inline void set_m_deserializedFromEverett_57(bool value) { ___m_deserializedFromEverett_57 = value; } inline static int32_t get_offset_of_m_isReadOnly_58() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827, ___m_isReadOnly_58)); } inline bool get_m_isReadOnly_58() const { return ___m_isReadOnly_58; } inline bool* get_address_of_m_isReadOnly_58() { return &___m_isReadOnly_58; } inline void set_m_isReadOnly_58(bool value) { ___m_isReadOnly_58 = value; } inline static int32_t get_offset_of_encoderFallback_59() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827, ___encoderFallback_59)); } inline EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 * get_encoderFallback_59() const { return ___encoderFallback_59; } inline EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 ** get_address_of_encoderFallback_59() { return &___encoderFallback_59; } inline void set_encoderFallback_59(EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 * value) { ___encoderFallback_59 = value; Il2CppCodeGenWriteBarrier((void**)(&___encoderFallback_59), (void*)value); } inline static int32_t get_offset_of_decoderFallback_60() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827, ___decoderFallback_60)); } inline DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D * get_decoderFallback_60() const { return ___decoderFallback_60; } inline DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D ** get_address_of_decoderFallback_60() { return &___decoderFallback_60; } inline void set_decoderFallback_60(DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D * value) { ___decoderFallback_60 = value; Il2CppCodeGenWriteBarrier((void**)(&___decoderFallback_60), (void*)value); } }; struct Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields { public: // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::defaultEncoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___defaultEncoding_0; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::unicodeEncoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___unicodeEncoding_1; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::bigEndianUnicode Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___bigEndianUnicode_2; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf7Encoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___utf7Encoding_3; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf8Encoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___utf8Encoding_4; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf32Encoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___utf32Encoding_5; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::asciiEncoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___asciiEncoding_6; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::latin1Encoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___latin1Encoding_7; // System.Collections.Hashtable modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::encodings Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___encodings_8; // System.Object System.Text.Encoding::s_InternalSyncObject RuntimeObject * ___s_InternalSyncObject_61; public: inline static int32_t get_offset_of_defaultEncoding_0() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___defaultEncoding_0)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_defaultEncoding_0() const { return ___defaultEncoding_0; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_defaultEncoding_0() { return &___defaultEncoding_0; } inline void set_defaultEncoding_0(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___defaultEncoding_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultEncoding_0), (void*)value); } inline static int32_t get_offset_of_unicodeEncoding_1() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___unicodeEncoding_1)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_unicodeEncoding_1() const { return ___unicodeEncoding_1; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_unicodeEncoding_1() { return &___unicodeEncoding_1; } inline void set_unicodeEncoding_1(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___unicodeEncoding_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___unicodeEncoding_1), (void*)value); } inline static int32_t get_offset_of_bigEndianUnicode_2() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___bigEndianUnicode_2)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_bigEndianUnicode_2() const { return ___bigEndianUnicode_2; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_bigEndianUnicode_2() { return &___bigEndianUnicode_2; } inline void set_bigEndianUnicode_2(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___bigEndianUnicode_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___bigEndianUnicode_2), (void*)value); } inline static int32_t get_offset_of_utf7Encoding_3() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___utf7Encoding_3)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_utf7Encoding_3() const { return ___utf7Encoding_3; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_utf7Encoding_3() { return &___utf7Encoding_3; } inline void set_utf7Encoding_3(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___utf7Encoding_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___utf7Encoding_3), (void*)value); } inline static int32_t get_offset_of_utf8Encoding_4() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___utf8Encoding_4)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_utf8Encoding_4() const { return ___utf8Encoding_4; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_utf8Encoding_4() { return &___utf8Encoding_4; } inline void set_utf8Encoding_4(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___utf8Encoding_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___utf8Encoding_4), (void*)value); } inline static int32_t get_offset_of_utf32Encoding_5() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___utf32Encoding_5)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_utf32Encoding_5() const { return ___utf32Encoding_5; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_utf32Encoding_5() { return &___utf32Encoding_5; } inline void set_utf32Encoding_5(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___utf32Encoding_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___utf32Encoding_5), (void*)value); } inline static int32_t get_offset_of_asciiEncoding_6() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___asciiEncoding_6)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_asciiEncoding_6() const { return ___asciiEncoding_6; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_asciiEncoding_6() { return &___asciiEncoding_6; } inline void set_asciiEncoding_6(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___asciiEncoding_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___asciiEncoding_6), (void*)value); } inline static int32_t get_offset_of_latin1Encoding_7() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___latin1Encoding_7)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_latin1Encoding_7() const { return ___latin1Encoding_7; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_latin1Encoding_7() { return &___latin1Encoding_7; } inline void set_latin1Encoding_7(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___latin1Encoding_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___latin1Encoding_7), (void*)value); } inline static int32_t get_offset_of_encodings_8() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___encodings_8)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_encodings_8() const { return ___encodings_8; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_encodings_8() { return &___encodings_8; } inline void set_encodings_8(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ___encodings_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___encodings_8), (void*)value); } inline static int32_t get_offset_of_s_InternalSyncObject_61() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___s_InternalSyncObject_61)); } inline RuntimeObject * get_s_InternalSyncObject_61() const { return ___s_InternalSyncObject_61; } inline RuntimeObject ** get_address_of_s_InternalSyncObject_61() { return &___s_InternalSyncObject_61; } inline void set_s_InternalSyncObject_61(RuntimeObject * value) { ___s_InternalSyncObject_61 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_InternalSyncObject_61), (void*)value); } }; // BestHTTP.HTTPResponse struct HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD : public RuntimeObject { public: // System.Int32 BestHTTP.HTTPResponse::k__BackingField int32_t ___U3CVersionMajorU3Ek__BackingField_3; // System.Int32 BestHTTP.HTTPResponse::k__BackingField int32_t ___U3CVersionMinorU3Ek__BackingField_4; // System.Int32 BestHTTP.HTTPResponse::k__BackingField int32_t ___U3CStatusCodeU3Ek__BackingField_5; // System.String BestHTTP.HTTPResponse::k__BackingField String_t* ___U3CMessageU3Ek__BackingField_6; // System.Boolean BestHTTP.HTTPResponse::k__BackingField bool ___U3CIsStreamedU3Ek__BackingField_7; // System.Boolean BestHTTP.HTTPResponse::k__BackingField bool ___U3CIsStreamingFinishedU3Ek__BackingField_8; // System.Boolean BestHTTP.HTTPResponse::k__BackingField bool ___U3CIsFromCacheU3Ek__BackingField_9; // BestHTTP.Caching.HTTPCacheFileInfo BestHTTP.HTTPResponse::k__BackingField HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * ___U3CCacheFileInfoU3Ek__BackingField_10; // System.Boolean BestHTTP.HTTPResponse::k__BackingField bool ___U3CIsCacheOnlyU3Ek__BackingField_11; // System.Collections.Generic.Dictionary`2> BestHTTP.HTTPResponse::k__BackingField Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086 * ___U3CHeadersU3Ek__BackingField_12; // System.Byte[] BestHTTP.HTTPResponse::k__BackingField ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___U3CDataU3Ek__BackingField_13; // System.Boolean BestHTTP.HTTPResponse::k__BackingField bool ___U3CIsUpgradedU3Ek__BackingField_14; // System.Collections.Generic.List`1 BestHTTP.HTTPResponse::k__BackingField List_1_tF9D8E572A8599785D6C36AD7BDC592752B89E0A1 * ___U3CCookiesU3Ek__BackingField_15; // System.String BestHTTP.HTTPResponse::dataAsText String_t* ___dataAsText_16; // UnityEngine.Texture2D BestHTTP.HTTPResponse::texture Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * ___texture_17; // System.Boolean BestHTTP.HTTPResponse::k__BackingField bool ___U3CIsClosedManuallyU3Ek__BackingField_18; // BestHTTP.HTTPRequest BestHTTP.HTTPResponse::baseRequest HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * ___baseRequest_19; // System.IO.Stream BestHTTP.HTTPResponse::Stream Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___Stream_20; // System.Collections.Generic.List`1 BestHTTP.HTTPResponse::streamedFragments List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE * ___streamedFragments_21; // System.Object BestHTTP.HTTPResponse::SyncRoot RuntimeObject * ___SyncRoot_22; // System.Byte[] BestHTTP.HTTPResponse::fragmentBuffer ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___fragmentBuffer_23; // System.Int32 BestHTTP.HTTPResponse::fragmentBufferDataLength int32_t ___fragmentBufferDataLength_24; // System.IO.Stream BestHTTP.HTTPResponse::cacheStream Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___cacheStream_25; // System.Int32 BestHTTP.HTTPResponse::allFragmentSize int32_t ___allFragmentSize_26; // BestHTTP.Extensions.BufferPoolMemoryStream BestHTTP.HTTPResponse::decompressorInputStream BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B * ___decompressorInputStream_27; // BestHTTP.Extensions.BufferPoolMemoryStream BestHTTP.HTTPResponse::decompressorOutputStream BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B * ___decompressorOutputStream_28; // BestHTTP.Decompression.Zlib.GZipStream BestHTTP.HTTPResponse::decompressorGZipStream GZipStream_t99D1C296F7C62A7A6ED44277279DB835B13B37F1 * ___decompressorGZipStream_29; // System.Threading.AutoResetEvent modreq(System.Runtime.CompilerServices.IsVolatile) BestHTTP.HTTPResponse::fragmentWaitEvent AutoResetEvent_t3B012223F0DE760BF0D282C5F7B9084C6D3AF53D * ___fragmentWaitEvent_31; public: inline static int32_t get_offset_of_U3CVersionMajorU3Ek__BackingField_3() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___U3CVersionMajorU3Ek__BackingField_3)); } inline int32_t get_U3CVersionMajorU3Ek__BackingField_3() const { return ___U3CVersionMajorU3Ek__BackingField_3; } inline int32_t* get_address_of_U3CVersionMajorU3Ek__BackingField_3() { return &___U3CVersionMajorU3Ek__BackingField_3; } inline void set_U3CVersionMajorU3Ek__BackingField_3(int32_t value) { ___U3CVersionMajorU3Ek__BackingField_3 = value; } inline static int32_t get_offset_of_U3CVersionMinorU3Ek__BackingField_4() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___U3CVersionMinorU3Ek__BackingField_4)); } inline int32_t get_U3CVersionMinorU3Ek__BackingField_4() const { return ___U3CVersionMinorU3Ek__BackingField_4; } inline int32_t* get_address_of_U3CVersionMinorU3Ek__BackingField_4() { return &___U3CVersionMinorU3Ek__BackingField_4; } inline void set_U3CVersionMinorU3Ek__BackingField_4(int32_t value) { ___U3CVersionMinorU3Ek__BackingField_4 = value; } inline static int32_t get_offset_of_U3CStatusCodeU3Ek__BackingField_5() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___U3CStatusCodeU3Ek__BackingField_5)); } inline int32_t get_U3CStatusCodeU3Ek__BackingField_5() const { return ___U3CStatusCodeU3Ek__BackingField_5; } inline int32_t* get_address_of_U3CStatusCodeU3Ek__BackingField_5() { return &___U3CStatusCodeU3Ek__BackingField_5; } inline void set_U3CStatusCodeU3Ek__BackingField_5(int32_t value) { ___U3CStatusCodeU3Ek__BackingField_5 = value; } inline static int32_t get_offset_of_U3CMessageU3Ek__BackingField_6() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___U3CMessageU3Ek__BackingField_6)); } inline String_t* get_U3CMessageU3Ek__BackingField_6() const { return ___U3CMessageU3Ek__BackingField_6; } inline String_t** get_address_of_U3CMessageU3Ek__BackingField_6() { return &___U3CMessageU3Ek__BackingField_6; } inline void set_U3CMessageU3Ek__BackingField_6(String_t* value) { ___U3CMessageU3Ek__BackingField_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CMessageU3Ek__BackingField_6), (void*)value); } inline static int32_t get_offset_of_U3CIsStreamedU3Ek__BackingField_7() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___U3CIsStreamedU3Ek__BackingField_7)); } inline bool get_U3CIsStreamedU3Ek__BackingField_7() const { return ___U3CIsStreamedU3Ek__BackingField_7; } inline bool* get_address_of_U3CIsStreamedU3Ek__BackingField_7() { return &___U3CIsStreamedU3Ek__BackingField_7; } inline void set_U3CIsStreamedU3Ek__BackingField_7(bool value) { ___U3CIsStreamedU3Ek__BackingField_7 = value; } inline static int32_t get_offset_of_U3CIsStreamingFinishedU3Ek__BackingField_8() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___U3CIsStreamingFinishedU3Ek__BackingField_8)); } inline bool get_U3CIsStreamingFinishedU3Ek__BackingField_8() const { return ___U3CIsStreamingFinishedU3Ek__BackingField_8; } inline bool* get_address_of_U3CIsStreamingFinishedU3Ek__BackingField_8() { return &___U3CIsStreamingFinishedU3Ek__BackingField_8; } inline void set_U3CIsStreamingFinishedU3Ek__BackingField_8(bool value) { ___U3CIsStreamingFinishedU3Ek__BackingField_8 = value; } inline static int32_t get_offset_of_U3CIsFromCacheU3Ek__BackingField_9() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___U3CIsFromCacheU3Ek__BackingField_9)); } inline bool get_U3CIsFromCacheU3Ek__BackingField_9() const { return ___U3CIsFromCacheU3Ek__BackingField_9; } inline bool* get_address_of_U3CIsFromCacheU3Ek__BackingField_9() { return &___U3CIsFromCacheU3Ek__BackingField_9; } inline void set_U3CIsFromCacheU3Ek__BackingField_9(bool value) { ___U3CIsFromCacheU3Ek__BackingField_9 = value; } inline static int32_t get_offset_of_U3CCacheFileInfoU3Ek__BackingField_10() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___U3CCacheFileInfoU3Ek__BackingField_10)); } inline HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * get_U3CCacheFileInfoU3Ek__BackingField_10() const { return ___U3CCacheFileInfoU3Ek__BackingField_10; } inline HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA ** get_address_of_U3CCacheFileInfoU3Ek__BackingField_10() { return &___U3CCacheFileInfoU3Ek__BackingField_10; } inline void set_U3CCacheFileInfoU3Ek__BackingField_10(HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * value) { ___U3CCacheFileInfoU3Ek__BackingField_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CCacheFileInfoU3Ek__BackingField_10), (void*)value); } inline static int32_t get_offset_of_U3CIsCacheOnlyU3Ek__BackingField_11() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___U3CIsCacheOnlyU3Ek__BackingField_11)); } inline bool get_U3CIsCacheOnlyU3Ek__BackingField_11() const { return ___U3CIsCacheOnlyU3Ek__BackingField_11; } inline bool* get_address_of_U3CIsCacheOnlyU3Ek__BackingField_11() { return &___U3CIsCacheOnlyU3Ek__BackingField_11; } inline void set_U3CIsCacheOnlyU3Ek__BackingField_11(bool value) { ___U3CIsCacheOnlyU3Ek__BackingField_11 = value; } inline static int32_t get_offset_of_U3CHeadersU3Ek__BackingField_12() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___U3CHeadersU3Ek__BackingField_12)); } inline Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086 * get_U3CHeadersU3Ek__BackingField_12() const { return ___U3CHeadersU3Ek__BackingField_12; } inline Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086 ** get_address_of_U3CHeadersU3Ek__BackingField_12() { return &___U3CHeadersU3Ek__BackingField_12; } inline void set_U3CHeadersU3Ek__BackingField_12(Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086 * value) { ___U3CHeadersU3Ek__BackingField_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CHeadersU3Ek__BackingField_12), (void*)value); } inline static int32_t get_offset_of_U3CDataU3Ek__BackingField_13() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___U3CDataU3Ek__BackingField_13)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_U3CDataU3Ek__BackingField_13() const { return ___U3CDataU3Ek__BackingField_13; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_U3CDataU3Ek__BackingField_13() { return &___U3CDataU3Ek__BackingField_13; } inline void set_U3CDataU3Ek__BackingField_13(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___U3CDataU3Ek__BackingField_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CDataU3Ek__BackingField_13), (void*)value); } inline static int32_t get_offset_of_U3CIsUpgradedU3Ek__BackingField_14() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___U3CIsUpgradedU3Ek__BackingField_14)); } inline bool get_U3CIsUpgradedU3Ek__BackingField_14() const { return ___U3CIsUpgradedU3Ek__BackingField_14; } inline bool* get_address_of_U3CIsUpgradedU3Ek__BackingField_14() { return &___U3CIsUpgradedU3Ek__BackingField_14; } inline void set_U3CIsUpgradedU3Ek__BackingField_14(bool value) { ___U3CIsUpgradedU3Ek__BackingField_14 = value; } inline static int32_t get_offset_of_U3CCookiesU3Ek__BackingField_15() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___U3CCookiesU3Ek__BackingField_15)); } inline List_1_tF9D8E572A8599785D6C36AD7BDC592752B89E0A1 * get_U3CCookiesU3Ek__BackingField_15() const { return ___U3CCookiesU3Ek__BackingField_15; } inline List_1_tF9D8E572A8599785D6C36AD7BDC592752B89E0A1 ** get_address_of_U3CCookiesU3Ek__BackingField_15() { return &___U3CCookiesU3Ek__BackingField_15; } inline void set_U3CCookiesU3Ek__BackingField_15(List_1_tF9D8E572A8599785D6C36AD7BDC592752B89E0A1 * value) { ___U3CCookiesU3Ek__BackingField_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CCookiesU3Ek__BackingField_15), (void*)value); } inline static int32_t get_offset_of_dataAsText_16() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___dataAsText_16)); } inline String_t* get_dataAsText_16() const { return ___dataAsText_16; } inline String_t** get_address_of_dataAsText_16() { return &___dataAsText_16; } inline void set_dataAsText_16(String_t* value) { ___dataAsText_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___dataAsText_16), (void*)value); } inline static int32_t get_offset_of_texture_17() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___texture_17)); } inline Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * get_texture_17() const { return ___texture_17; } inline Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF ** get_address_of_texture_17() { return &___texture_17; } inline void set_texture_17(Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * value) { ___texture_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___texture_17), (void*)value); } inline static int32_t get_offset_of_U3CIsClosedManuallyU3Ek__BackingField_18() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___U3CIsClosedManuallyU3Ek__BackingField_18)); } inline bool get_U3CIsClosedManuallyU3Ek__BackingField_18() const { return ___U3CIsClosedManuallyU3Ek__BackingField_18; } inline bool* get_address_of_U3CIsClosedManuallyU3Ek__BackingField_18() { return &___U3CIsClosedManuallyU3Ek__BackingField_18; } inline void set_U3CIsClosedManuallyU3Ek__BackingField_18(bool value) { ___U3CIsClosedManuallyU3Ek__BackingField_18 = value; } inline static int32_t get_offset_of_baseRequest_19() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___baseRequest_19)); } inline HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * get_baseRequest_19() const { return ___baseRequest_19; } inline HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 ** get_address_of_baseRequest_19() { return &___baseRequest_19; } inline void set_baseRequest_19(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * value) { ___baseRequest_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___baseRequest_19), (void*)value); } inline static int32_t get_offset_of_Stream_20() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___Stream_20)); } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_Stream_20() const { return ___Stream_20; } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_Stream_20() { return &___Stream_20; } inline void set_Stream_20(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value) { ___Stream_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___Stream_20), (void*)value); } inline static int32_t get_offset_of_streamedFragments_21() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___streamedFragments_21)); } inline List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE * get_streamedFragments_21() const { return ___streamedFragments_21; } inline List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE ** get_address_of_streamedFragments_21() { return &___streamedFragments_21; } inline void set_streamedFragments_21(List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE * value) { ___streamedFragments_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___streamedFragments_21), (void*)value); } inline static int32_t get_offset_of_SyncRoot_22() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___SyncRoot_22)); } inline RuntimeObject * get_SyncRoot_22() const { return ___SyncRoot_22; } inline RuntimeObject ** get_address_of_SyncRoot_22() { return &___SyncRoot_22; } inline void set_SyncRoot_22(RuntimeObject * value) { ___SyncRoot_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___SyncRoot_22), (void*)value); } inline static int32_t get_offset_of_fragmentBuffer_23() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___fragmentBuffer_23)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_fragmentBuffer_23() const { return ___fragmentBuffer_23; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_fragmentBuffer_23() { return &___fragmentBuffer_23; } inline void set_fragmentBuffer_23(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___fragmentBuffer_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___fragmentBuffer_23), (void*)value); } inline static int32_t get_offset_of_fragmentBufferDataLength_24() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___fragmentBufferDataLength_24)); } inline int32_t get_fragmentBufferDataLength_24() const { return ___fragmentBufferDataLength_24; } inline int32_t* get_address_of_fragmentBufferDataLength_24() { return &___fragmentBufferDataLength_24; } inline void set_fragmentBufferDataLength_24(int32_t value) { ___fragmentBufferDataLength_24 = value; } inline static int32_t get_offset_of_cacheStream_25() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___cacheStream_25)); } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_cacheStream_25() const { return ___cacheStream_25; } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_cacheStream_25() { return &___cacheStream_25; } inline void set_cacheStream_25(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value) { ___cacheStream_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___cacheStream_25), (void*)value); } inline static int32_t get_offset_of_allFragmentSize_26() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___allFragmentSize_26)); } inline int32_t get_allFragmentSize_26() const { return ___allFragmentSize_26; } inline int32_t* get_address_of_allFragmentSize_26() { return &___allFragmentSize_26; } inline void set_allFragmentSize_26(int32_t value) { ___allFragmentSize_26 = value; } inline static int32_t get_offset_of_decompressorInputStream_27() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___decompressorInputStream_27)); } inline BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B * get_decompressorInputStream_27() const { return ___decompressorInputStream_27; } inline BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B ** get_address_of_decompressorInputStream_27() { return &___decompressorInputStream_27; } inline void set_decompressorInputStream_27(BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B * value) { ___decompressorInputStream_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___decompressorInputStream_27), (void*)value); } inline static int32_t get_offset_of_decompressorOutputStream_28() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___decompressorOutputStream_28)); } inline BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B * get_decompressorOutputStream_28() const { return ___decompressorOutputStream_28; } inline BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B ** get_address_of_decompressorOutputStream_28() { return &___decompressorOutputStream_28; } inline void set_decompressorOutputStream_28(BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B * value) { ___decompressorOutputStream_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___decompressorOutputStream_28), (void*)value); } inline static int32_t get_offset_of_decompressorGZipStream_29() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___decompressorGZipStream_29)); } inline GZipStream_t99D1C296F7C62A7A6ED44277279DB835B13B37F1 * get_decompressorGZipStream_29() const { return ___decompressorGZipStream_29; } inline GZipStream_t99D1C296F7C62A7A6ED44277279DB835B13B37F1 ** get_address_of_decompressorGZipStream_29() { return &___decompressorGZipStream_29; } inline void set_decompressorGZipStream_29(GZipStream_t99D1C296F7C62A7A6ED44277279DB835B13B37F1 * value) { ___decompressorGZipStream_29 = value; Il2CppCodeGenWriteBarrier((void**)(&___decompressorGZipStream_29), (void*)value); } inline static int32_t get_offset_of_fragmentWaitEvent_31() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___fragmentWaitEvent_31)); } inline AutoResetEvent_t3B012223F0DE760BF0D282C5F7B9084C6D3AF53D * get_fragmentWaitEvent_31() const { return ___fragmentWaitEvent_31; } inline AutoResetEvent_t3B012223F0DE760BF0D282C5F7B9084C6D3AF53D ** get_address_of_fragmentWaitEvent_31() { return &___fragmentWaitEvent_31; } inline void set_fragmentWaitEvent_31(AutoResetEvent_t3B012223F0DE760BF0D282C5F7B9084C6D3AF53D * value) { ___fragmentWaitEvent_31 = value; Il2CppCodeGenWriteBarrier((void**)(&___fragmentWaitEvent_31), (void*)value); } }; // BestHTTP.Extensions.HeaderValue struct HeaderValue_tB19EA8836300DA053E7A6E082DD196DA23BA7F77 : public RuntimeObject { public: // System.String BestHTTP.Extensions.HeaderValue::k__BackingField String_t* ___U3CKeyU3Ek__BackingField_0; // System.String BestHTTP.Extensions.HeaderValue::k__BackingField String_t* ___U3CValueU3Ek__BackingField_1; // System.Collections.Generic.List`1 BestHTTP.Extensions.HeaderValue::k__BackingField List_1_t9C4606F69CB3833861EC4E41C2E8DA5647D07189 * ___U3COptionsU3Ek__BackingField_2; public: inline static int32_t get_offset_of_U3CKeyU3Ek__BackingField_0() { return static_cast(offsetof(HeaderValue_tB19EA8836300DA053E7A6E082DD196DA23BA7F77, ___U3CKeyU3Ek__BackingField_0)); } inline String_t* get_U3CKeyU3Ek__BackingField_0() const { return ___U3CKeyU3Ek__BackingField_0; } inline String_t** get_address_of_U3CKeyU3Ek__BackingField_0() { return &___U3CKeyU3Ek__BackingField_0; } inline void set_U3CKeyU3Ek__BackingField_0(String_t* value) { ___U3CKeyU3Ek__BackingField_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CKeyU3Ek__BackingField_0), (void*)value); } inline static int32_t get_offset_of_U3CValueU3Ek__BackingField_1() { return static_cast(offsetof(HeaderValue_tB19EA8836300DA053E7A6E082DD196DA23BA7F77, ___U3CValueU3Ek__BackingField_1)); } inline String_t* get_U3CValueU3Ek__BackingField_1() const { return ___U3CValueU3Ek__BackingField_1; } inline String_t** get_address_of_U3CValueU3Ek__BackingField_1() { return &___U3CValueU3Ek__BackingField_1; } inline void set_U3CValueU3Ek__BackingField_1(String_t* value) { ___U3CValueU3Ek__BackingField_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CValueU3Ek__BackingField_1), (void*)value); } inline static int32_t get_offset_of_U3COptionsU3Ek__BackingField_2() { return static_cast(offsetof(HeaderValue_tB19EA8836300DA053E7A6E082DD196DA23BA7F77, ___U3COptionsU3Ek__BackingField_2)); } inline List_1_t9C4606F69CB3833861EC4E41C2E8DA5647D07189 * get_U3COptionsU3Ek__BackingField_2() const { return ___U3COptionsU3Ek__BackingField_2; } inline List_1_t9C4606F69CB3833861EC4E41C2E8DA5647D07189 ** get_address_of_U3COptionsU3Ek__BackingField_2() { return &___U3COptionsU3Ek__BackingField_2; } inline void set_U3COptionsU3Ek__BackingField_2(List_1_t9C4606F69CB3833861EC4E41C2E8DA5647D07189 * value) { ___U3COptionsU3Ek__BackingField_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3COptionsU3Ek__BackingField_2), (void*)value); } }; // LitJson.JsonMapper struct JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5 : public RuntimeObject { public: public: }; struct JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields { public: // System.Int32 LitJson.JsonMapper::max_nesting_depth int32_t ___max_nesting_depth_0; // System.IFormatProvider LitJson.JsonMapper::datetime_format RuntimeObject* ___datetime_format_1; // System.Collections.Generic.IDictionary`2 LitJson.JsonMapper::base_exporters_table RuntimeObject* ___base_exporters_table_2; // System.Collections.Generic.IDictionary`2 LitJson.JsonMapper::custom_exporters_table RuntimeObject* ___custom_exporters_table_3; // System.Collections.Generic.IDictionary`2> LitJson.JsonMapper::base_importers_table RuntimeObject* ___base_importers_table_4; // System.Collections.Generic.IDictionary`2> LitJson.JsonMapper::custom_importers_table RuntimeObject* ___custom_importers_table_5; // System.Collections.Generic.IDictionary`2 LitJson.JsonMapper::array_metadata RuntimeObject* ___array_metadata_6; // System.Object LitJson.JsonMapper::array_metadata_lock RuntimeObject * ___array_metadata_lock_7; // System.Collections.Generic.IDictionary`2> LitJson.JsonMapper::conv_ops RuntimeObject* ___conv_ops_8; // System.Object LitJson.JsonMapper::conv_ops_lock RuntimeObject * ___conv_ops_lock_9; // System.Collections.Generic.IDictionary`2 LitJson.JsonMapper::object_metadata RuntimeObject* ___object_metadata_10; // System.Object LitJson.JsonMapper::object_metadata_lock RuntimeObject * ___object_metadata_lock_11; // System.Collections.Generic.IDictionary`2> LitJson.JsonMapper::type_properties RuntimeObject* ___type_properties_12; // System.Object LitJson.JsonMapper::type_properties_lock RuntimeObject * ___type_properties_lock_13; // LitJson.JsonWriter LitJson.JsonMapper::static_writer JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * ___static_writer_14; // System.Object LitJson.JsonMapper::static_writer_lock RuntimeObject * ___static_writer_lock_15; public: inline static int32_t get_offset_of_max_nesting_depth_0() { return static_cast(offsetof(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields, ___max_nesting_depth_0)); } inline int32_t get_max_nesting_depth_0() const { return ___max_nesting_depth_0; } inline int32_t* get_address_of_max_nesting_depth_0() { return &___max_nesting_depth_0; } inline void set_max_nesting_depth_0(int32_t value) { ___max_nesting_depth_0 = value; } inline static int32_t get_offset_of_datetime_format_1() { return static_cast(offsetof(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields, ___datetime_format_1)); } inline RuntimeObject* get_datetime_format_1() const { return ___datetime_format_1; } inline RuntimeObject** get_address_of_datetime_format_1() { return &___datetime_format_1; } inline void set_datetime_format_1(RuntimeObject* value) { ___datetime_format_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___datetime_format_1), (void*)value); } inline static int32_t get_offset_of_base_exporters_table_2() { return static_cast(offsetof(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields, ___base_exporters_table_2)); } inline RuntimeObject* get_base_exporters_table_2() const { return ___base_exporters_table_2; } inline RuntimeObject** get_address_of_base_exporters_table_2() { return &___base_exporters_table_2; } inline void set_base_exporters_table_2(RuntimeObject* value) { ___base_exporters_table_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___base_exporters_table_2), (void*)value); } inline static int32_t get_offset_of_custom_exporters_table_3() { return static_cast(offsetof(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields, ___custom_exporters_table_3)); } inline RuntimeObject* get_custom_exporters_table_3() const { return ___custom_exporters_table_3; } inline RuntimeObject** get_address_of_custom_exporters_table_3() { return &___custom_exporters_table_3; } inline void set_custom_exporters_table_3(RuntimeObject* value) { ___custom_exporters_table_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___custom_exporters_table_3), (void*)value); } inline static int32_t get_offset_of_base_importers_table_4() { return static_cast(offsetof(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields, ___base_importers_table_4)); } inline RuntimeObject* get_base_importers_table_4() const { return ___base_importers_table_4; } inline RuntimeObject** get_address_of_base_importers_table_4() { return &___base_importers_table_4; } inline void set_base_importers_table_4(RuntimeObject* value) { ___base_importers_table_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___base_importers_table_4), (void*)value); } inline static int32_t get_offset_of_custom_importers_table_5() { return static_cast(offsetof(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields, ___custom_importers_table_5)); } inline RuntimeObject* get_custom_importers_table_5() const { return ___custom_importers_table_5; } inline RuntimeObject** get_address_of_custom_importers_table_5() { return &___custom_importers_table_5; } inline void set_custom_importers_table_5(RuntimeObject* value) { ___custom_importers_table_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___custom_importers_table_5), (void*)value); } inline static int32_t get_offset_of_array_metadata_6() { return static_cast(offsetof(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields, ___array_metadata_6)); } inline RuntimeObject* get_array_metadata_6() const { return ___array_metadata_6; } inline RuntimeObject** get_address_of_array_metadata_6() { return &___array_metadata_6; } inline void set_array_metadata_6(RuntimeObject* value) { ___array_metadata_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___array_metadata_6), (void*)value); } inline static int32_t get_offset_of_array_metadata_lock_7() { return static_cast(offsetof(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields, ___array_metadata_lock_7)); } inline RuntimeObject * get_array_metadata_lock_7() const { return ___array_metadata_lock_7; } inline RuntimeObject ** get_address_of_array_metadata_lock_7() { return &___array_metadata_lock_7; } inline void set_array_metadata_lock_7(RuntimeObject * value) { ___array_metadata_lock_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___array_metadata_lock_7), (void*)value); } inline static int32_t get_offset_of_conv_ops_8() { return static_cast(offsetof(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields, ___conv_ops_8)); } inline RuntimeObject* get_conv_ops_8() const { return ___conv_ops_8; } inline RuntimeObject** get_address_of_conv_ops_8() { return &___conv_ops_8; } inline void set_conv_ops_8(RuntimeObject* value) { ___conv_ops_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___conv_ops_8), (void*)value); } inline static int32_t get_offset_of_conv_ops_lock_9() { return static_cast(offsetof(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields, ___conv_ops_lock_9)); } inline RuntimeObject * get_conv_ops_lock_9() const { return ___conv_ops_lock_9; } inline RuntimeObject ** get_address_of_conv_ops_lock_9() { return &___conv_ops_lock_9; } inline void set_conv_ops_lock_9(RuntimeObject * value) { ___conv_ops_lock_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___conv_ops_lock_9), (void*)value); } inline static int32_t get_offset_of_object_metadata_10() { return static_cast(offsetof(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields, ___object_metadata_10)); } inline RuntimeObject* get_object_metadata_10() const { return ___object_metadata_10; } inline RuntimeObject** get_address_of_object_metadata_10() { return &___object_metadata_10; } inline void set_object_metadata_10(RuntimeObject* value) { ___object_metadata_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___object_metadata_10), (void*)value); } inline static int32_t get_offset_of_object_metadata_lock_11() { return static_cast(offsetof(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields, ___object_metadata_lock_11)); } inline RuntimeObject * get_object_metadata_lock_11() const { return ___object_metadata_lock_11; } inline RuntimeObject ** get_address_of_object_metadata_lock_11() { return &___object_metadata_lock_11; } inline void set_object_metadata_lock_11(RuntimeObject * value) { ___object_metadata_lock_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___object_metadata_lock_11), (void*)value); } inline static int32_t get_offset_of_type_properties_12() { return static_cast(offsetof(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields, ___type_properties_12)); } inline RuntimeObject* get_type_properties_12() const { return ___type_properties_12; } inline RuntimeObject** get_address_of_type_properties_12() { return &___type_properties_12; } inline void set_type_properties_12(RuntimeObject* value) { ___type_properties_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___type_properties_12), (void*)value); } inline static int32_t get_offset_of_type_properties_lock_13() { return static_cast(offsetof(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields, ___type_properties_lock_13)); } inline RuntimeObject * get_type_properties_lock_13() const { return ___type_properties_lock_13; } inline RuntimeObject ** get_address_of_type_properties_lock_13() { return &___type_properties_lock_13; } inline void set_type_properties_lock_13(RuntimeObject * value) { ___type_properties_lock_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___type_properties_lock_13), (void*)value); } inline static int32_t get_offset_of_static_writer_14() { return static_cast(offsetof(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields, ___static_writer_14)); } inline JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * get_static_writer_14() const { return ___static_writer_14; } inline JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A ** get_address_of_static_writer_14() { return &___static_writer_14; } inline void set_static_writer_14(JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * value) { ___static_writer_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___static_writer_14), (void*)value); } inline static int32_t get_offset_of_static_writer_lock_15() { return static_cast(offsetof(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields, ___static_writer_lock_15)); } inline RuntimeObject * get_static_writer_lock_15() const { return ___static_writer_lock_15; } inline RuntimeObject ** get_address_of_static_writer_lock_15() { return &___static_writer_lock_15; } inline void set_static_writer_lock_15(RuntimeObject * value) { ___static_writer_lock_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___static_writer_lock_15), (void*)value); } }; // LitJson.JsonMockWrapper struct JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 : public RuntimeObject { public: public: }; // BestHTTP.SignalRCore.JsonProtocol struct JsonProtocol_tB82FEAFDEBC166F53B523853DA071388D57D79A4 : public RuntimeObject { public: // BestHTTP.SignalRCore.IEncoder BestHTTP.SignalRCore.JsonProtocol::k__BackingField RuntimeObject* ___U3CEncoderU3Ek__BackingField_1; // BestHTTP.SignalRCore.HubConnection BestHTTP.SignalRCore.JsonProtocol::k__BackingField HubConnection_tD0CD7A840685CA3DCC65913C32524F0C81F6C8D6 * ___U3CConnectionU3Ek__BackingField_2; public: inline static int32_t get_offset_of_U3CEncoderU3Ek__BackingField_1() { return static_cast(offsetof(JsonProtocol_tB82FEAFDEBC166F53B523853DA071388D57D79A4, ___U3CEncoderU3Ek__BackingField_1)); } inline RuntimeObject* get_U3CEncoderU3Ek__BackingField_1() const { return ___U3CEncoderU3Ek__BackingField_1; } inline RuntimeObject** get_address_of_U3CEncoderU3Ek__BackingField_1() { return &___U3CEncoderU3Ek__BackingField_1; } inline void set_U3CEncoderU3Ek__BackingField_1(RuntimeObject* value) { ___U3CEncoderU3Ek__BackingField_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CEncoderU3Ek__BackingField_1), (void*)value); } inline static int32_t get_offset_of_U3CConnectionU3Ek__BackingField_2() { return static_cast(offsetof(JsonProtocol_tB82FEAFDEBC166F53B523853DA071388D57D79A4, ___U3CConnectionU3Ek__BackingField_2)); } inline HubConnection_tD0CD7A840685CA3DCC65913C32524F0C81F6C8D6 * get_U3CConnectionU3Ek__BackingField_2() const { return ___U3CConnectionU3Ek__BackingField_2; } inline HubConnection_tD0CD7A840685CA3DCC65913C32524F0C81F6C8D6 ** get_address_of_U3CConnectionU3Ek__BackingField_2() { return &___U3CConnectionU3Ek__BackingField_2; } inline void set_U3CConnectionU3Ek__BackingField_2(HubConnection_tD0CD7A840685CA3DCC65913C32524F0C81F6C8D6 * value) { ___U3CConnectionU3Ek__BackingField_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CConnectionU3Ek__BackingField_2), (void*)value); } }; // LitJson.JsonWriter struct JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A : public RuntimeObject { public: // LitJson.WriterContext LitJson.JsonWriter::context WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * ___context_1; // System.Collections.Generic.Stack`1 LitJson.JsonWriter::ctx_stack Stack_1_t7B63F93F3C5FA452C37D6EC4E51A4F56AF3D7B92 * ___ctx_stack_2; // System.Boolean LitJson.JsonWriter::has_reached_end bool ___has_reached_end_3; // System.Char[] LitJson.JsonWriter::hex_seq CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___hex_seq_4; // System.Int32 LitJson.JsonWriter::indentation int32_t ___indentation_5; // System.Int32 LitJson.JsonWriter::indent_value int32_t ___indent_value_6; // System.Text.StringBuilder LitJson.JsonWriter::inst_string_builder StringBuilder_t * ___inst_string_builder_7; // System.Boolean LitJson.JsonWriter::pretty_print bool ___pretty_print_8; // System.Boolean LitJson.JsonWriter::validate bool ___validate_9; // System.IO.TextWriter LitJson.JsonWriter::writer TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * ___writer_10; public: inline static int32_t get_offset_of_context_1() { return static_cast(offsetof(JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A, ___context_1)); } inline WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * get_context_1() const { return ___context_1; } inline WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 ** get_address_of_context_1() { return &___context_1; } inline void set_context_1(WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * value) { ___context_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___context_1), (void*)value); } inline static int32_t get_offset_of_ctx_stack_2() { return static_cast(offsetof(JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A, ___ctx_stack_2)); } inline Stack_1_t7B63F93F3C5FA452C37D6EC4E51A4F56AF3D7B92 * get_ctx_stack_2() const { return ___ctx_stack_2; } inline Stack_1_t7B63F93F3C5FA452C37D6EC4E51A4F56AF3D7B92 ** get_address_of_ctx_stack_2() { return &___ctx_stack_2; } inline void set_ctx_stack_2(Stack_1_t7B63F93F3C5FA452C37D6EC4E51A4F56AF3D7B92 * value) { ___ctx_stack_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___ctx_stack_2), (void*)value); } inline static int32_t get_offset_of_has_reached_end_3() { return static_cast(offsetof(JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A, ___has_reached_end_3)); } inline bool get_has_reached_end_3() const { return ___has_reached_end_3; } inline bool* get_address_of_has_reached_end_3() { return &___has_reached_end_3; } inline void set_has_reached_end_3(bool value) { ___has_reached_end_3 = value; } inline static int32_t get_offset_of_hex_seq_4() { return static_cast(offsetof(JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A, ___hex_seq_4)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_hex_seq_4() const { return ___hex_seq_4; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_hex_seq_4() { return &___hex_seq_4; } inline void set_hex_seq_4(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___hex_seq_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___hex_seq_4), (void*)value); } inline static int32_t get_offset_of_indentation_5() { return static_cast(offsetof(JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A, ___indentation_5)); } inline int32_t get_indentation_5() const { return ___indentation_5; } inline int32_t* get_address_of_indentation_5() { return &___indentation_5; } inline void set_indentation_5(int32_t value) { ___indentation_5 = value; } inline static int32_t get_offset_of_indent_value_6() { return static_cast(offsetof(JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A, ___indent_value_6)); } inline int32_t get_indent_value_6() const { return ___indent_value_6; } inline int32_t* get_address_of_indent_value_6() { return &___indent_value_6; } inline void set_indent_value_6(int32_t value) { ___indent_value_6 = value; } inline static int32_t get_offset_of_inst_string_builder_7() { return static_cast(offsetof(JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A, ___inst_string_builder_7)); } inline StringBuilder_t * get_inst_string_builder_7() const { return ___inst_string_builder_7; } inline StringBuilder_t ** get_address_of_inst_string_builder_7() { return &___inst_string_builder_7; } inline void set_inst_string_builder_7(StringBuilder_t * value) { ___inst_string_builder_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___inst_string_builder_7), (void*)value); } inline static int32_t get_offset_of_pretty_print_8() { return static_cast(offsetof(JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A, ___pretty_print_8)); } inline bool get_pretty_print_8() const { return ___pretty_print_8; } inline bool* get_address_of_pretty_print_8() { return &___pretty_print_8; } inline void set_pretty_print_8(bool value) { ___pretty_print_8 = value; } inline static int32_t get_offset_of_validate_9() { return static_cast(offsetof(JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A, ___validate_9)); } inline bool get_validate_9() const { return ___validate_9; } inline bool* get_address_of_validate_9() { return &___validate_9; } inline void set_validate_9(bool value) { ___validate_9 = value; } inline static int32_t get_offset_of_writer_10() { return static_cast(offsetof(JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A, ___writer_10)); } inline TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * get_writer_10() const { return ___writer_10; } inline TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 ** get_address_of_writer_10() { return &___writer_10; } inline void set_writer_10(TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * value) { ___writer_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___writer_10), (void*)value); } }; struct JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A_StaticFields { public: // System.Globalization.NumberFormatInfo LitJson.JsonWriter::number_format NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * ___number_format_0; public: inline static int32_t get_offset_of_number_format_0() { return static_cast(offsetof(JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A_StaticFields, ___number_format_0)); } inline NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * get_number_format_0() const { return ___number_format_0; } inline NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D ** get_address_of_number_format_0() { return &___number_format_0; } inline void set_number_format_0(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * value) { ___number_format_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___number_format_0), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher struct KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511 : public RuntimeObject { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::engine RuntimeObject* ___engine_4; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::macSize int32_t ___macSize_5; // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::forEncryption bool ___forEncryption_6; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::initialAssociatedText ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___initialAssociatedText_7; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::mac ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___mac_8; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::macBlock ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___macBlock_9; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::nonce ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___nonce_10; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::G1 ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___G1_11; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::buffer ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___buffer_12; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::s ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___s_13; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::counter ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___counter_14; // System.IO.MemoryStream BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::associatedText MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * ___associatedText_15; // System.IO.MemoryStream BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::data MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * ___data_16; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::Nb_ int32_t ___Nb__17; public: inline static int32_t get_offset_of_engine_4() { return static_cast(offsetof(KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511, ___engine_4)); } inline RuntimeObject* get_engine_4() const { return ___engine_4; } inline RuntimeObject** get_address_of_engine_4() { return &___engine_4; } inline void set_engine_4(RuntimeObject* value) { ___engine_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___engine_4), (void*)value); } inline static int32_t get_offset_of_macSize_5() { return static_cast(offsetof(KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511, ___macSize_5)); } inline int32_t get_macSize_5() const { return ___macSize_5; } inline int32_t* get_address_of_macSize_5() { return &___macSize_5; } inline void set_macSize_5(int32_t value) { ___macSize_5 = value; } inline static int32_t get_offset_of_forEncryption_6() { return static_cast(offsetof(KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511, ___forEncryption_6)); } inline bool get_forEncryption_6() const { return ___forEncryption_6; } inline bool* get_address_of_forEncryption_6() { return &___forEncryption_6; } inline void set_forEncryption_6(bool value) { ___forEncryption_6 = value; } inline static int32_t get_offset_of_initialAssociatedText_7() { return static_cast(offsetof(KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511, ___initialAssociatedText_7)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_initialAssociatedText_7() const { return ___initialAssociatedText_7; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_initialAssociatedText_7() { return &___initialAssociatedText_7; } inline void set_initialAssociatedText_7(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___initialAssociatedText_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___initialAssociatedText_7), (void*)value); } inline static int32_t get_offset_of_mac_8() { return static_cast(offsetof(KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511, ___mac_8)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_mac_8() const { return ___mac_8; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_mac_8() { return &___mac_8; } inline void set_mac_8(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___mac_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___mac_8), (void*)value); } inline static int32_t get_offset_of_macBlock_9() { return static_cast(offsetof(KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511, ___macBlock_9)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_macBlock_9() const { return ___macBlock_9; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_macBlock_9() { return &___macBlock_9; } inline void set_macBlock_9(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___macBlock_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___macBlock_9), (void*)value); } inline static int32_t get_offset_of_nonce_10() { return static_cast(offsetof(KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511, ___nonce_10)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_nonce_10() const { return ___nonce_10; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_nonce_10() { return &___nonce_10; } inline void set_nonce_10(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___nonce_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___nonce_10), (void*)value); } inline static int32_t get_offset_of_G1_11() { return static_cast(offsetof(KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511, ___G1_11)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_G1_11() const { return ___G1_11; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_G1_11() { return &___G1_11; } inline void set_G1_11(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___G1_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___G1_11), (void*)value); } inline static int32_t get_offset_of_buffer_12() { return static_cast(offsetof(KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511, ___buffer_12)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_buffer_12() const { return ___buffer_12; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_buffer_12() { return &___buffer_12; } inline void set_buffer_12(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___buffer_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___buffer_12), (void*)value); } inline static int32_t get_offset_of_s_13() { return static_cast(offsetof(KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511, ___s_13)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_s_13() const { return ___s_13; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_s_13() { return &___s_13; } inline void set_s_13(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___s_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_13), (void*)value); } inline static int32_t get_offset_of_counter_14() { return static_cast(offsetof(KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511, ___counter_14)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_counter_14() const { return ___counter_14; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_counter_14() { return &___counter_14; } inline void set_counter_14(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___counter_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___counter_14), (void*)value); } inline static int32_t get_offset_of_associatedText_15() { return static_cast(offsetof(KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511, ___associatedText_15)); } inline MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * get_associatedText_15() const { return ___associatedText_15; } inline MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C ** get_address_of_associatedText_15() { return &___associatedText_15; } inline void set_associatedText_15(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * value) { ___associatedText_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___associatedText_15), (void*)value); } inline static int32_t get_offset_of_data_16() { return static_cast(offsetof(KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511, ___data_16)); } inline MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * get_data_16() const { return ___data_16; } inline MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C ** get_address_of_data_16() { return &___data_16; } inline void set_data_16(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * value) { ___data_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___data_16), (void*)value); } inline static int32_t get_offset_of_Nb__17() { return static_cast(offsetof(KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511, ___Nb__17)); } inline int32_t get_Nb__17() const { return ___Nb__17; } inline int32_t* get_address_of_Nb__17() { return &___Nb__17; } inline void set_Nb__17(int32_t value) { ___Nb__17 = value; } }; struct KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511_StaticFields { public: // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::BYTES_IN_INT int32_t ___BYTES_IN_INT_0; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::BITS_IN_BYTE int32_t ___BITS_IN_BYTE_1; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::MAX_MAC_BIT_LENGTH int32_t ___MAX_MAC_BIT_LENGTH_2; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::MIN_MAC_BIT_LENGTH int32_t ___MIN_MAC_BIT_LENGTH_3; public: inline static int32_t get_offset_of_BYTES_IN_INT_0() { return static_cast(offsetof(KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511_StaticFields, ___BYTES_IN_INT_0)); } inline int32_t get_BYTES_IN_INT_0() const { return ___BYTES_IN_INT_0; } inline int32_t* get_address_of_BYTES_IN_INT_0() { return &___BYTES_IN_INT_0; } inline void set_BYTES_IN_INT_0(int32_t value) { ___BYTES_IN_INT_0 = value; } inline static int32_t get_offset_of_BITS_IN_BYTE_1() { return static_cast(offsetof(KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511_StaticFields, ___BITS_IN_BYTE_1)); } inline int32_t get_BITS_IN_BYTE_1() const { return ___BITS_IN_BYTE_1; } inline int32_t* get_address_of_BITS_IN_BYTE_1() { return &___BITS_IN_BYTE_1; } inline void set_BITS_IN_BYTE_1(int32_t value) { ___BITS_IN_BYTE_1 = value; } inline static int32_t get_offset_of_MAX_MAC_BIT_LENGTH_2() { return static_cast(offsetof(KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511_StaticFields, ___MAX_MAC_BIT_LENGTH_2)); } inline int32_t get_MAX_MAC_BIT_LENGTH_2() const { return ___MAX_MAC_BIT_LENGTH_2; } inline int32_t* get_address_of_MAX_MAC_BIT_LENGTH_2() { return &___MAX_MAC_BIT_LENGTH_2; } inline void set_MAX_MAC_BIT_LENGTH_2(int32_t value) { ___MAX_MAC_BIT_LENGTH_2 = value; } inline static int32_t get_offset_of_MIN_MAC_BIT_LENGTH_3() { return static_cast(offsetof(KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511_StaticFields, ___MIN_MAC_BIT_LENGTH_3)); } inline int32_t get_MIN_MAC_BIT_LENGTH_3() const { return ___MIN_MAC_BIT_LENGTH_3; } inline int32_t* get_address_of_MIN_MAC_BIT_LENGTH_3() { return &___MIN_MAC_BIT_LENGTH_3; } inline void set_MIN_MAC_BIT_LENGTH_3(int32_t value) { ___MIN_MAC_BIT_LENGTH_3 = value; } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCtrBlockCipher struct KCtrBlockCipher_t4B5FB1183B24BD5B518E83554A2F569A374B566B : public RuntimeObject { public: // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCtrBlockCipher::IV ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___IV_0; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCtrBlockCipher::ofbV ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___ofbV_1; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCtrBlockCipher::ofbOutV ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___ofbOutV_2; // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCtrBlockCipher::initialised bool ___initialised_3; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCtrBlockCipher::byteCount int32_t ___byteCount_4; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCtrBlockCipher::blockSize int32_t ___blockSize_5; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCtrBlockCipher::cipher RuntimeObject* ___cipher_6; public: inline static int32_t get_offset_of_IV_0() { return static_cast(offsetof(KCtrBlockCipher_t4B5FB1183B24BD5B518E83554A2F569A374B566B, ___IV_0)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_IV_0() const { return ___IV_0; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_IV_0() { return &___IV_0; } inline void set_IV_0(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___IV_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___IV_0), (void*)value); } inline static int32_t get_offset_of_ofbV_1() { return static_cast(offsetof(KCtrBlockCipher_t4B5FB1183B24BD5B518E83554A2F569A374B566B, ___ofbV_1)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_ofbV_1() const { return ___ofbV_1; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_ofbV_1() { return &___ofbV_1; } inline void set_ofbV_1(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___ofbV_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___ofbV_1), (void*)value); } inline static int32_t get_offset_of_ofbOutV_2() { return static_cast(offsetof(KCtrBlockCipher_t4B5FB1183B24BD5B518E83554A2F569A374B566B, ___ofbOutV_2)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_ofbOutV_2() const { return ___ofbOutV_2; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_ofbOutV_2() { return &___ofbOutV_2; } inline void set_ofbOutV_2(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___ofbOutV_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___ofbOutV_2), (void*)value); } inline static int32_t get_offset_of_initialised_3() { return static_cast(offsetof(KCtrBlockCipher_t4B5FB1183B24BD5B518E83554A2F569A374B566B, ___initialised_3)); } inline bool get_initialised_3() const { return ___initialised_3; } inline bool* get_address_of_initialised_3() { return &___initialised_3; } inline void set_initialised_3(bool value) { ___initialised_3 = value; } inline static int32_t get_offset_of_byteCount_4() { return static_cast(offsetof(KCtrBlockCipher_t4B5FB1183B24BD5B518E83554A2F569A374B566B, ___byteCount_4)); } inline int32_t get_byteCount_4() const { return ___byteCount_4; } inline int32_t* get_address_of_byteCount_4() { return &___byteCount_4; } inline void set_byteCount_4(int32_t value) { ___byteCount_4 = value; } inline static int32_t get_offset_of_blockSize_5() { return static_cast(offsetof(KCtrBlockCipher_t4B5FB1183B24BD5B518E83554A2F569A374B566B, ___blockSize_5)); } inline int32_t get_blockSize_5() const { return ___blockSize_5; } inline int32_t* get_address_of_blockSize_5() { return &___blockSize_5; } inline void set_blockSize_5(int32_t value) { ___blockSize_5 = value; } inline static int32_t get_offset_of_cipher_6() { return static_cast(offsetof(KCtrBlockCipher_t4B5FB1183B24BD5B518E83554A2F569A374B566B, ___cipher_6)); } inline RuntimeObject* get_cipher_6() const { return ___cipher_6; } inline RuntimeObject** get_address_of_cipher_6() { return &___cipher_6; } inline void set_cipher_6(RuntimeObject* value) { ___cipher_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___cipher_6), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.KdfParameters struct KdfParameters_t56EBC3CEF1BEB144CDB7BF823CB774656D442189 : public RuntimeObject { public: // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.KdfParameters::iv ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___iv_0; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.KdfParameters::shared ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___shared_1; public: inline static int32_t get_offset_of_iv_0() { return static_cast(offsetof(KdfParameters_t56EBC3CEF1BEB144CDB7BF823CB774656D442189, ___iv_0)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_iv_0() const { return ___iv_0; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_iv_0() { return &___iv_0; } inline void set_iv_0(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___iv_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___iv_0), (void*)value); } inline static int32_t get_offset_of_shared_1() { return static_cast(offsetof(KdfParameters_t56EBC3CEF1BEB144CDB7BF823CB774656D442189, ___shared_1)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_shared_1() const { return ___shared_1; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_shared_1() { return &___shared_1; } inline void set_shared_1(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___shared_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___shared_1), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest struct KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C : public RuntimeObject { public: // System.UInt64[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest::state UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* ___state_1; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest::dataQueue ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___dataQueue_2; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest::rate int32_t ___rate_3; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest::bitsInQueue int32_t ___bitsInQueue_4; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest::fixedOutputLength int32_t ___fixedOutputLength_5; // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest::squeezing bool ___squeezing_6; public: inline static int32_t get_offset_of_state_1() { return static_cast(offsetof(KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C, ___state_1)); } inline UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* get_state_1() const { return ___state_1; } inline UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2** get_address_of_state_1() { return &___state_1; } inline void set_state_1(UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* value) { ___state_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___state_1), (void*)value); } inline static int32_t get_offset_of_dataQueue_2() { return static_cast(offsetof(KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C, ___dataQueue_2)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_dataQueue_2() const { return ___dataQueue_2; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_dataQueue_2() { return &___dataQueue_2; } inline void set_dataQueue_2(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___dataQueue_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___dataQueue_2), (void*)value); } inline static int32_t get_offset_of_rate_3() { return static_cast(offsetof(KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C, ___rate_3)); } inline int32_t get_rate_3() const { return ___rate_3; } inline int32_t* get_address_of_rate_3() { return &___rate_3; } inline void set_rate_3(int32_t value) { ___rate_3 = value; } inline static int32_t get_offset_of_bitsInQueue_4() { return static_cast(offsetof(KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C, ___bitsInQueue_4)); } inline int32_t get_bitsInQueue_4() const { return ___bitsInQueue_4; } inline int32_t* get_address_of_bitsInQueue_4() { return &___bitsInQueue_4; } inline void set_bitsInQueue_4(int32_t value) { ___bitsInQueue_4 = value; } inline static int32_t get_offset_of_fixedOutputLength_5() { return static_cast(offsetof(KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C, ___fixedOutputLength_5)); } inline int32_t get_fixedOutputLength_5() const { return ___fixedOutputLength_5; } inline int32_t* get_address_of_fixedOutputLength_5() { return &___fixedOutputLength_5; } inline void set_fixedOutputLength_5(int32_t value) { ___fixedOutputLength_5 = value; } inline static int32_t get_offset_of_squeezing_6() { return static_cast(offsetof(KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C, ___squeezing_6)); } inline bool get_squeezing_6() const { return ___squeezing_6; } inline bool* get_address_of_squeezing_6() { return &___squeezing_6; } inline void set_squeezing_6(bool value) { ___squeezing_6 = value; } }; struct KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C_StaticFields { public: // System.UInt64[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest::KeccakRoundConstants UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* ___KeccakRoundConstants_0; public: inline static int32_t get_offset_of_KeccakRoundConstants_0() { return static_cast(offsetof(KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C_StaticFields, ___KeccakRoundConstants_0)); } inline UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* get_KeccakRoundConstants_0() const { return ___KeccakRoundConstants_0; } inline UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2** get_address_of_KeccakRoundConstants_0() { return &___KeccakRoundConstants_0; } inline void set_KeccakRoundConstants_0(UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* value) { ___KeccakRoundConstants_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___KeccakRoundConstants_0), (void*)value); } }; // BestHTTP.SignalR.Messages.KeepAliveMessage struct KeepAliveMessage_t44E67642111EEAB01A3E571061DA466BFA2136DF : public RuntimeObject { public: public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KekRecipientInfoGenerator struct KekRecipientInfoGenerator_t1EADCDF1D7A6EA36646F881F5090E1AF7340FDE2 : public RuntimeObject { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.KeyParameter BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KekRecipientInfoGenerator::keyEncryptionKey KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * ___keyEncryptionKey_1; // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KekRecipientInfoGenerator::keyEncryptionKeyOID String_t* ___keyEncryptionKeyOID_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KekRecipientInfoGenerator::kekIdentifier KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973 * ___kekIdentifier_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KekRecipientInfoGenerator::keyEncryptionAlgorithm AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___keyEncryptionAlgorithm_4; public: inline static int32_t get_offset_of_keyEncryptionKey_1() { return static_cast(offsetof(KekRecipientInfoGenerator_t1EADCDF1D7A6EA36646F881F5090E1AF7340FDE2, ___keyEncryptionKey_1)); } inline KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * get_keyEncryptionKey_1() const { return ___keyEncryptionKey_1; } inline KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC ** get_address_of_keyEncryptionKey_1() { return &___keyEncryptionKey_1; } inline void set_keyEncryptionKey_1(KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * value) { ___keyEncryptionKey_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___keyEncryptionKey_1), (void*)value); } inline static int32_t get_offset_of_keyEncryptionKeyOID_2() { return static_cast(offsetof(KekRecipientInfoGenerator_t1EADCDF1D7A6EA36646F881F5090E1AF7340FDE2, ___keyEncryptionKeyOID_2)); } inline String_t* get_keyEncryptionKeyOID_2() const { return ___keyEncryptionKeyOID_2; } inline String_t** get_address_of_keyEncryptionKeyOID_2() { return &___keyEncryptionKeyOID_2; } inline void set_keyEncryptionKeyOID_2(String_t* value) { ___keyEncryptionKeyOID_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___keyEncryptionKeyOID_2), (void*)value); } inline static int32_t get_offset_of_kekIdentifier_3() { return static_cast(offsetof(KekRecipientInfoGenerator_t1EADCDF1D7A6EA36646F881F5090E1AF7340FDE2, ___kekIdentifier_3)); } inline KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973 * get_kekIdentifier_3() const { return ___kekIdentifier_3; } inline KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973 ** get_address_of_kekIdentifier_3() { return &___kekIdentifier_3; } inline void set_kekIdentifier_3(KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973 * value) { ___kekIdentifier_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___kekIdentifier_3), (void*)value); } inline static int32_t get_offset_of_keyEncryptionAlgorithm_4() { return static_cast(offsetof(KekRecipientInfoGenerator_t1EADCDF1D7A6EA36646F881F5090E1AF7340FDE2, ___keyEncryptionAlgorithm_4)); } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * get_keyEncryptionAlgorithm_4() const { return ___keyEncryptionAlgorithm_4; } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 ** get_address_of_keyEncryptionAlgorithm_4() { return &___keyEncryptionAlgorithm_4; } inline void set_keyEncryptionAlgorithm_4(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * value) { ___keyEncryptionAlgorithm_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___keyEncryptionAlgorithm_4), (void*)value); } }; struct KekRecipientInfoGenerator_t1EADCDF1D7A6EA36646F881F5090E1AF7340FDE2_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsEnvelopedHelper BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KekRecipientInfoGenerator::Helper CmsEnvelopedHelper_t4C541C5858FDC5D5FEFBEF5BB39D1E55C9319BF0 * ___Helper_0; public: inline static int32_t get_offset_of_Helper_0() { return static_cast(offsetof(KekRecipientInfoGenerator_t1EADCDF1D7A6EA36646F881F5090E1AF7340FDE2_StaticFields, ___Helper_0)); } inline CmsEnvelopedHelper_t4C541C5858FDC5D5FEFBEF5BB39D1E55C9319BF0 * get_Helper_0() const { return ___Helper_0; } inline CmsEnvelopedHelper_t4C541C5858FDC5D5FEFBEF5BB39D1E55C9319BF0 ** get_address_of_Helper_0() { return &___Helper_0; } inline void set_Helper_0(CmsEnvelopedHelper_t4C541C5858FDC5D5FEFBEF5BB39D1E55C9319BF0 * value) { ___Helper_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Helper_0), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyAgreeRecipientInfoGenerator struct KeyAgreeRecipientInfoGenerator_t24C54423315127CBA3D467B929DD226A00232F34 : public RuntimeObject { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyAgreeRecipientInfoGenerator::keyAgreementOID DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___keyAgreementOID_1; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyAgreeRecipientInfoGenerator::keyEncryptionOID DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___keyEncryptionOID_2; // System.Collections.IList BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyAgreeRecipientInfoGenerator::recipientCerts RuntimeObject* ___recipientCerts_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyAgreeRecipientInfoGenerator::senderKeyPair AsymmetricCipherKeyPair_t975F15F5FD9FD35454E104A768061EAFB010D929 * ___senderKeyPair_4; public: inline static int32_t get_offset_of_keyAgreementOID_1() { return static_cast(offsetof(KeyAgreeRecipientInfoGenerator_t24C54423315127CBA3D467B929DD226A00232F34, ___keyAgreementOID_1)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_keyAgreementOID_1() const { return ___keyAgreementOID_1; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_keyAgreementOID_1() { return &___keyAgreementOID_1; } inline void set_keyAgreementOID_1(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___keyAgreementOID_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___keyAgreementOID_1), (void*)value); } inline static int32_t get_offset_of_keyEncryptionOID_2() { return static_cast(offsetof(KeyAgreeRecipientInfoGenerator_t24C54423315127CBA3D467B929DD226A00232F34, ___keyEncryptionOID_2)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_keyEncryptionOID_2() const { return ___keyEncryptionOID_2; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_keyEncryptionOID_2() { return &___keyEncryptionOID_2; } inline void set_keyEncryptionOID_2(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___keyEncryptionOID_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___keyEncryptionOID_2), (void*)value); } inline static int32_t get_offset_of_recipientCerts_3() { return static_cast(offsetof(KeyAgreeRecipientInfoGenerator_t24C54423315127CBA3D467B929DD226A00232F34, ___recipientCerts_3)); } inline RuntimeObject* get_recipientCerts_3() const { return ___recipientCerts_3; } inline RuntimeObject** get_address_of_recipientCerts_3() { return &___recipientCerts_3; } inline void set_recipientCerts_3(RuntimeObject* value) { ___recipientCerts_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___recipientCerts_3), (void*)value); } inline static int32_t get_offset_of_senderKeyPair_4() { return static_cast(offsetof(KeyAgreeRecipientInfoGenerator_t24C54423315127CBA3D467B929DD226A00232F34, ___senderKeyPair_4)); } inline AsymmetricCipherKeyPair_t975F15F5FD9FD35454E104A768061EAFB010D929 * get_senderKeyPair_4() const { return ___senderKeyPair_4; } inline AsymmetricCipherKeyPair_t975F15F5FD9FD35454E104A768061EAFB010D929 ** get_address_of_senderKeyPair_4() { return &___senderKeyPair_4; } inline void set_senderKeyPair_4(AsymmetricCipherKeyPair_t975F15F5FD9FD35454E104A768061EAFB010D929 * value) { ___senderKeyPair_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___senderKeyPair_4), (void*)value); } }; struct KeyAgreeRecipientInfoGenerator_t24C54423315127CBA3D467B929DD226A00232F34_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsEnvelopedHelper BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyAgreeRecipientInfoGenerator::Helper CmsEnvelopedHelper_t4C541C5858FDC5D5FEFBEF5BB39D1E55C9319BF0 * ___Helper_0; public: inline static int32_t get_offset_of_Helper_0() { return static_cast(offsetof(KeyAgreeRecipientInfoGenerator_t24C54423315127CBA3D467B929DD226A00232F34_StaticFields, ___Helper_0)); } inline CmsEnvelopedHelper_t4C541C5858FDC5D5FEFBEF5BB39D1E55C9319BF0 * get_Helper_0() const { return ___Helper_0; } inline CmsEnvelopedHelper_t4C541C5858FDC5D5FEFBEF5BB39D1E55C9319BF0 ** get_address_of_Helper_0() { return &___Helper_0; } inline void set_Helper_0(CmsEnvelopedHelper_t4C541C5858FDC5D5FEFBEF5BB39D1E55C9319BF0 * value) { ___Helper_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Helper_0), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.KeyExchangeAlgorithm struct KeyExchangeAlgorithm_tD9953762C6B6DEC6461B08F3F642B058C12CF513 : public RuntimeObject { public: public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.KeyGenerationParameters struct KeyGenerationParameters_t1B3393E8D9D0068ABF593DC15AA436FCA158BF39 : public RuntimeObject { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.KeyGenerationParameters::random SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * ___random_0; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.KeyGenerationParameters::strength int32_t ___strength_1; public: inline static int32_t get_offset_of_random_0() { return static_cast(offsetof(KeyGenerationParameters_t1B3393E8D9D0068ABF593DC15AA436FCA158BF39, ___random_0)); } inline SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * get_random_0() const { return ___random_0; } inline SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 ** get_address_of_random_0() { return &___random_0; } inline void set_random_0(SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * value) { ___random_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___random_0), (void*)value); } inline static int32_t get_offset_of_strength_1() { return static_cast(offsetof(KeyGenerationParameters_t1B3393E8D9D0068ABF593DC15AA436FCA158BF39, ___strength_1)); } inline int32_t get_strength_1() const { return ___strength_1; } inline int32_t* get_address_of_strength_1() { return &___strength_1; } inline void set_strength_1(int32_t value) { ___strength_1 = value; } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.KeyParameter struct KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC : public RuntimeObject { public: // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.KeyParameter::key ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___key_0; public: inline static int32_t get_offset_of_key_0() { return static_cast(offsetof(KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC, ___key_0)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_key_0() const { return ___key_0; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_key_0() { return &___key_0; } inline void set_key_0(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyTransRecipientInfoGenerator struct KeyTransRecipientInfoGenerator_t4D19EF837407B9F0CE3140C25A30074F5D7F9DF1 : public RuntimeObject { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateStructure BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyTransRecipientInfoGenerator::recipientTbsCert TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3 * ___recipientTbsCert_1; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyTransRecipientInfoGenerator::recipientPublicKey AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * ___recipientPublicKey_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyTransRecipientInfoGenerator::subjectKeyIdentifier Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * ___subjectKeyIdentifier_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyTransRecipientInfoGenerator::info SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB * ___info_4; public: inline static int32_t get_offset_of_recipientTbsCert_1() { return static_cast(offsetof(KeyTransRecipientInfoGenerator_t4D19EF837407B9F0CE3140C25A30074F5D7F9DF1, ___recipientTbsCert_1)); } inline TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3 * get_recipientTbsCert_1() const { return ___recipientTbsCert_1; } inline TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3 ** get_address_of_recipientTbsCert_1() { return &___recipientTbsCert_1; } inline void set_recipientTbsCert_1(TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3 * value) { ___recipientTbsCert_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___recipientTbsCert_1), (void*)value); } inline static int32_t get_offset_of_recipientPublicKey_2() { return static_cast(offsetof(KeyTransRecipientInfoGenerator_t4D19EF837407B9F0CE3140C25A30074F5D7F9DF1, ___recipientPublicKey_2)); } inline AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * get_recipientPublicKey_2() const { return ___recipientPublicKey_2; } inline AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A ** get_address_of_recipientPublicKey_2() { return &___recipientPublicKey_2; } inline void set_recipientPublicKey_2(AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * value) { ___recipientPublicKey_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___recipientPublicKey_2), (void*)value); } inline static int32_t get_offset_of_subjectKeyIdentifier_3() { return static_cast(offsetof(KeyTransRecipientInfoGenerator_t4D19EF837407B9F0CE3140C25A30074F5D7F9DF1, ___subjectKeyIdentifier_3)); } inline Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * get_subjectKeyIdentifier_3() const { return ___subjectKeyIdentifier_3; } inline Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 ** get_address_of_subjectKeyIdentifier_3() { return &___subjectKeyIdentifier_3; } inline void set_subjectKeyIdentifier_3(Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * value) { ___subjectKeyIdentifier_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___subjectKeyIdentifier_3), (void*)value); } inline static int32_t get_offset_of_info_4() { return static_cast(offsetof(KeyTransRecipientInfoGenerator_t4D19EF837407B9F0CE3140C25A30074F5D7F9DF1, ___info_4)); } inline SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB * get_info_4() const { return ___info_4; } inline SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB ** get_address_of_info_4() { return &___info_4; } inline void set_info_4(SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB * value) { ___info_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___info_4), (void*)value); } }; struct KeyTransRecipientInfoGenerator_t4D19EF837407B9F0CE3140C25A30074F5D7F9DF1_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsEnvelopedHelper BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyTransRecipientInfoGenerator::Helper CmsEnvelopedHelper_t4C541C5858FDC5D5FEFBEF5BB39D1E55C9319BF0 * ___Helper_0; public: inline static int32_t get_offset_of_Helper_0() { return static_cast(offsetof(KeyTransRecipientInfoGenerator_t4D19EF837407B9F0CE3140C25A30074F5D7F9DF1_StaticFields, ___Helper_0)); } inline CmsEnvelopedHelper_t4C541C5858FDC5D5FEFBEF5BB39D1E55C9319BF0 * get_Helper_0() const { return ___Helper_0; } inline CmsEnvelopedHelper_t4C541C5858FDC5D5FEFBEF5BB39D1E55C9319BF0 ** get_address_of_Helper_0() { return &___Helper_0; } inline void set_Helper_0(CmsEnvelopedHelper_t4C541C5858FDC5D5FEFBEF5BB39D1E55C9319BF0 * value) { ___Helper_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Helper_0), (void*)value); } }; // BestHTTP.Extensions.KeyValuePairList struct KeyValuePairList_tFB05264C65689BEB0A93912EE115844C33E3FF0F : public RuntimeObject { public: // System.Collections.Generic.List`1 BestHTTP.Extensions.KeyValuePairList::k__BackingField List_1_t9C4606F69CB3833861EC4E41C2E8DA5647D07189 * ___U3CValuesU3Ek__BackingField_0; public: inline static int32_t get_offset_of_U3CValuesU3Ek__BackingField_0() { return static_cast(offsetof(KeyValuePairList_tFB05264C65689BEB0A93912EE115844C33E3FF0F, ___U3CValuesU3Ek__BackingField_0)); } inline List_1_t9C4606F69CB3833861EC4E41C2E8DA5647D07189 * get_U3CValuesU3Ek__BackingField_0() const { return ___U3CValuesU3Ek__BackingField_0; } inline List_1_t9C4606F69CB3833861EC4E41C2E8DA5647D07189 ** get_address_of_U3CValuesU3Ek__BackingField_0() { return &___U3CValuesU3Ek__BackingField_0; } inline void set_U3CValuesU3Ek__BackingField_0(List_1_t9C4606F69CB3833861EC4E41C2E8DA5647D07189 * value) { ___U3CValuesU3Ek__BackingField_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CValuesU3Ek__BackingField_0), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Kisa.KisaObjectIdentifiers struct KisaObjectIdentifiers_t898950CC3EDDC3A29B3AE5ADE24CBD51FF226455 : public RuntimeObject { public: public: }; struct KisaObjectIdentifiers_t898950CC3EDDC3A29B3AE5ADE24CBD51FF226455_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Kisa.KisaObjectIdentifiers::IdSeedCbc DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdSeedCbc_0; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Kisa.KisaObjectIdentifiers::IdNpkiAppCmsSeedWrap DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdNpkiAppCmsSeedWrap_1; public: inline static int32_t get_offset_of_IdSeedCbc_0() { return static_cast(offsetof(KisaObjectIdentifiers_t898950CC3EDDC3A29B3AE5ADE24CBD51FF226455_StaticFields, ___IdSeedCbc_0)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdSeedCbc_0() const { return ___IdSeedCbc_0; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdSeedCbc_0() { return &___IdSeedCbc_0; } inline void set_IdSeedCbc_0(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdSeedCbc_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdSeedCbc_0), (void*)value); } inline static int32_t get_offset_of_IdNpkiAppCmsSeedWrap_1() { return static_cast(offsetof(KisaObjectIdentifiers_t898950CC3EDDC3A29B3AE5ADE24CBD51FF226455_StaticFields, ___IdNpkiAppCmsSeedWrap_1)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdNpkiAppCmsSeedWrap_1() const { return ___IdNpkiAppCmsSeedWrap_1; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdNpkiAppCmsSeedWrap_1() { return &___IdNpkiAppCmsSeedWrap_1; } inline void set_IdNpkiAppCmsSeedWrap_1(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdNpkiAppCmsSeedWrap_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdNpkiAppCmsSeedWrap_1), (void*)value); } }; // LanguageDefault struct LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783 : public RuntimeObject { public: // System.String LanguageDefault::text0 String_t* ___text0_0; // System.String LanguageDefault::text1 String_t* ___text1_1; // System.String LanguageDefault::text2 String_t* ___text2_2; // System.String LanguageDefault::text3 String_t* ___text3_3; // System.String LanguageDefault::text4 String_t* ___text4_4; // System.String LanguageDefault::text5 String_t* ___text5_5; // System.String LanguageDefault::text6 String_t* ___text6_6; // System.String LanguageDefault::text7 String_t* ___text7_7; // System.String LanguageDefault::text8 String_t* ___text8_8; // System.String LanguageDefault::text9 String_t* ___text9_9; // System.String LanguageDefault::text10 String_t* ___text10_10; // System.String LanguageDefault::text11 String_t* ___text11_11; // System.String LanguageDefault::text12 String_t* ___text12_12; // System.String LanguageDefault::text13 String_t* ___text13_13; // System.String LanguageDefault::text14 String_t* ___text14_14; // System.String LanguageDefault::text15 String_t* ___text15_15; // System.String LanguageDefault::text16 String_t* ___text16_16; // System.String LanguageDefault::text17 String_t* ___text17_17; // System.String LanguageDefault::text18 String_t* ___text18_18; // System.String LanguageDefault::text19 String_t* ___text19_19; // System.String LanguageDefault::text20 String_t* ___text20_20; // System.String LanguageDefault::text21 String_t* ___text21_21; // System.String LanguageDefault::text22 String_t* ___text22_22; // System.String LanguageDefault::text23 String_t* ___text23_23; // System.String LanguageDefault::text24 String_t* ___text24_24; // System.String LanguageDefault::text25 String_t* ___text25_25; // System.String LanguageDefault::text26 String_t* ___text26_26; // System.String LanguageDefault::text27 String_t* ___text27_27; // System.String LanguageDefault::text28 String_t* ___text28_28; // System.String LanguageDefault::text29 String_t* ___text29_29; // System.String LanguageDefault::text30 String_t* ___text30_30; // System.String LanguageDefault::text31 String_t* ___text31_31; // System.String LanguageDefault::text32 String_t* ___text32_32; // System.String LanguageDefault::text33 String_t* ___text33_33; // System.String LanguageDefault::text34 String_t* ___text34_34; // System.String LanguageDefault::text35 String_t* ___text35_35; // System.String LanguageDefault::text36 String_t* ___text36_36; // System.String LanguageDefault::text37 String_t* ___text37_37; // System.String LanguageDefault::text38 String_t* ___text38_38; // System.String LanguageDefault::text39 String_t* ___text39_39; // System.String LanguageDefault::text40 String_t* ___text40_40; // System.String LanguageDefault::text41 String_t* ___text41_41; // System.String LanguageDefault::text42 String_t* ___text42_42; // System.String LanguageDefault::text43 String_t* ___text43_43; // System.String LanguageDefault::text44 String_t* ___text44_44; // System.String LanguageDefault::text45 String_t* ___text45_45; // System.String LanguageDefault::text46 String_t* ___text46_46; // System.String LanguageDefault::text47 String_t* ___text47_47; // System.String LanguageDefault::text48 String_t* ___text48_48; // System.String LanguageDefault::text49 String_t* ___text49_49; // System.String LanguageDefault::text50 String_t* ___text50_50; // System.String LanguageDefault::text51 String_t* ___text51_51; // System.String LanguageDefault::text61 String_t* ___text61_52; // System.String LanguageDefault::text62 String_t* ___text62_53; // System.String LanguageDefault::text63 String_t* ___text63_54; // System.String LanguageDefault::text64 String_t* ___text64_55; // System.String LanguageDefault::text65 String_t* ___text65_56; // System.String LanguageDefault::text66 String_t* ___text66_57; // System.String LanguageDefault::text67 String_t* ___text67_58; // System.String LanguageDefault::text68 String_t* ___text68_59; // System.String LanguageDefault::text69 String_t* ___text69_60; // System.String LanguageDefault::text70 String_t* ___text70_61; // System.String LanguageDefault::text71 String_t* ___text71_62; // System.String LanguageDefault::text72 String_t* ___text72_63; // System.String LanguageDefault::text73 String_t* ___text73_64; // System.String LanguageDefault::text74 String_t* ___text74_65; // System.String LanguageDefault::text87 String_t* ___text87_66; // System.String LanguageDefault::text88 String_t* ___text88_67; // System.String LanguageDefault::text89 String_t* ___text89_68; // System.String LanguageDefault::text90 String_t* ___text90_69; // System.String LanguageDefault::text91 String_t* ___text91_70; // System.String LanguageDefault::text92 String_t* ___text92_71; // System.String LanguageDefault::text93 String_t* ___text93_72; // System.String LanguageDefault::text94 String_t* ___text94_73; // System.String LanguageDefault::text95 String_t* ___text95_74; // System.String LanguageDefault::text96 String_t* ___text96_75; // System.String LanguageDefault::text97 String_t* ___text97_76; // System.String LanguageDefault::text98 String_t* ___text98_77; // System.String LanguageDefault::text99 String_t* ___text99_78; // System.String LanguageDefault::text100 String_t* ___text100_79; // System.String LanguageDefault::text101 String_t* ___text101_80; // System.String LanguageDefault::text102 String_t* ___text102_81; // System.String LanguageDefault::text103 String_t* ___text103_82; // System.String LanguageDefault::text104 String_t* ___text104_83; // System.String LanguageDefault::text105 String_t* ___text105_84; // System.String LanguageDefault::text106 String_t* ___text106_85; // System.String LanguageDefault::text107 String_t* ___text107_86; // System.String LanguageDefault::text108 String_t* ___text108_87; // System.String LanguageDefault::text109 String_t* ___text109_88; // System.String LanguageDefault::text110 String_t* ___text110_89; // System.String LanguageDefault::text111 String_t* ___text111_90; // System.String LanguageDefault::text112 String_t* ___text112_91; // System.String LanguageDefault::text113 String_t* ___text113_92; // System.String LanguageDefault::text114 String_t* ___text114_93; // System.String LanguageDefault::text115 String_t* ___text115_94; // System.String LanguageDefault::text117 String_t* ___text117_95; // System.String LanguageDefault::text118 String_t* ___text118_96; // System.String LanguageDefault::text119 String_t* ___text119_97; // System.String LanguageDefault::text500 String_t* ___text500_98; // System.String LanguageDefault::text501 String_t* ___text501_99; // System.String LanguageDefault::text502 String_t* ___text502_100; // System.String LanguageDefault::text503 String_t* ___text503_101; // System.String LanguageDefault::text504 String_t* ___text504_102; // System.String LanguageDefault::text122 String_t* ___text122_103; // System.String LanguageDefault::text123 String_t* ___text123_104; // System.String LanguageDefault::text124 String_t* ___text124_105; // System.String LanguageDefault::text125 String_t* ___text125_106; // System.String LanguageDefault::text126 String_t* ___text126_107; // System.String LanguageDefault::text133 String_t* ___text133_108; // System.String LanguageDefault::text127 String_t* ___text127_109; // System.String LanguageDefault::text128 String_t* ___text128_110; // System.String LanguageDefault::text129 String_t* ___text129_111; // System.String LanguageDefault::text132 String_t* ___text132_112; // System.String LanguageDefault::text130 String_t* ___text130_113; // System.String LanguageDefault::text131 String_t* ___text131_114; // System.String LanguageDefault::text401 String_t* ___text401_115; // System.String LanguageDefault::text134 String_t* ___text134_116; // System.String LanguageDefault::text135 String_t* ___text135_117; // System.String LanguageDefault::text136 String_t* ___text136_118; // System.String LanguageDefault::text137 String_t* ___text137_119; // System.String LanguageDefault::text302 String_t* ___text302_120; // System.String LanguageDefault::text303 String_t* ___text303_121; // System.String LanguageDefault::text304 String_t* ___text304_122; // System.String LanguageDefault::text305 String_t* ___text305_123; // System.String LanguageDefault::text306 String_t* ___text306_124; // System.String LanguageDefault::text307 String_t* ___text307_125; // System.String LanguageDefault::text308 String_t* ___text308_126; // System.String LanguageDefault::text309 String_t* ___text309_127; // System.String LanguageDefault::text310 String_t* ___text310_128; // System.String LanguageDefault::text311 String_t* ___text311_129; // System.String LanguageDefault::text312 String_t* ___text312_130; // System.String LanguageDefault::text313 String_t* ___text313_131; // System.String LanguageDefault::text314 String_t* ___text314_132; // System.String LanguageDefault::text315 String_t* ___text315_133; // System.String LanguageDefault::text318 String_t* ___text318_134; // System.String LanguageDefault::text301 String_t* ___text301_135; // System.String LanguageDefault::text316 String_t* ___text316_136; // System.String LanguageDefault::text317 String_t* ___text317_137; // System.String LanguageDefault::text300 String_t* ___text300_138; // System.String LanguageDefault::text400 String_t* ___text400_139; // System.String LanguageDefault::text76 String_t* ___text76_140; // System.String LanguageDefault::text77 String_t* ___text77_141; // System.String LanguageDefault::text78 String_t* ___text78_142; // System.String LanguageDefault::text79 String_t* ___text79_143; // System.String LanguageDefault::text80 String_t* ___text80_144; // System.String LanguageDefault::text81 String_t* ___text81_145; // System.String LanguageDefault::text82 String_t* ___text82_146; // System.String LanguageDefault::text83 String_t* ___text83_147; // System.String LanguageDefault::text84 String_t* ___text84_148; // System.String LanguageDefault::text85 String_t* ___text85_149; // System.String LanguageDefault::text86 String_t* ___text86_150; // System.String LanguageDefault::text116 String_t* ___text116_151; // System.String LanguageDefault::text120 String_t* ___text120_152; // System.String LanguageDefault::text121 String_t* ___text121_153; // System.String LanguageDefault::text200 String_t* ___text200_154; // System.String LanguageDefault::text201 String_t* ___text201_155; // System.String LanguageDefault::text202 String_t* ___text202_156; // System.String LanguageDefault::text203 String_t* ___text203_157; // System.String LanguageDefault::text204 String_t* ___text204_158; // System.String LanguageDefault::text205 String_t* ___text205_159; // System.String LanguageDefault::text1000 String_t* ___text1000_160; // System.String LanguageDefault::text1001 String_t* ___text1001_161; // System.String LanguageDefault::text2000 String_t* ___text2000_162; // System.String LanguageDefault::text2001 String_t* ___text2001_163; // System.String LanguageDefault::text2002 String_t* ___text2002_164; // System.String LanguageDefault::text2003 String_t* ___text2003_165; // System.String LanguageDefault::text101000 String_t* ___text101000_166; // System.String LanguageDefault::text101001 String_t* ___text101001_167; // System.String LanguageDefault::text111000 String_t* ___text111000_168; // System.String LanguageDefault::text111001 String_t* ___text111001_169; // System.String LanguageDefault::text200000 String_t* ___text200000_170; // System.String LanguageDefault::text201000 String_t* ___text201000_171; // System.String LanguageDefault::text201001 String_t* ___text201001_172; // System.String LanguageDefault::text201002 String_t* ___text201002_173; // System.String LanguageDefault::text211000 String_t* ___text211000_174; // System.String LanguageDefault::text211001 String_t* ___text211001_175; // System.String LanguageDefault::text211002 String_t* ___text211002_176; // System.String LanguageDefault::text1234560 String_t* ___text1234560_177; // System.String LanguageDefault::text1234561 String_t* ___text1234561_178; // System.String LanguageDefault::text1234562 String_t* ___text1234562_179; // System.String LanguageDefault::text1234563 String_t* ___text1234563_180; public: inline static int32_t get_offset_of_text0_0() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text0_0)); } inline String_t* get_text0_0() const { return ___text0_0; } inline String_t** get_address_of_text0_0() { return &___text0_0; } inline void set_text0_0(String_t* value) { ___text0_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___text0_0), (void*)value); } inline static int32_t get_offset_of_text1_1() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text1_1)); } inline String_t* get_text1_1() const { return ___text1_1; } inline String_t** get_address_of_text1_1() { return &___text1_1; } inline void set_text1_1(String_t* value) { ___text1_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___text1_1), (void*)value); } inline static int32_t get_offset_of_text2_2() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text2_2)); } inline String_t* get_text2_2() const { return ___text2_2; } inline String_t** get_address_of_text2_2() { return &___text2_2; } inline void set_text2_2(String_t* value) { ___text2_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___text2_2), (void*)value); } inline static int32_t get_offset_of_text3_3() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text3_3)); } inline String_t* get_text3_3() const { return ___text3_3; } inline String_t** get_address_of_text3_3() { return &___text3_3; } inline void set_text3_3(String_t* value) { ___text3_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___text3_3), (void*)value); } inline static int32_t get_offset_of_text4_4() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text4_4)); } inline String_t* get_text4_4() const { return ___text4_4; } inline String_t** get_address_of_text4_4() { return &___text4_4; } inline void set_text4_4(String_t* value) { ___text4_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___text4_4), (void*)value); } inline static int32_t get_offset_of_text5_5() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text5_5)); } inline String_t* get_text5_5() const { return ___text5_5; } inline String_t** get_address_of_text5_5() { return &___text5_5; } inline void set_text5_5(String_t* value) { ___text5_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___text5_5), (void*)value); } inline static int32_t get_offset_of_text6_6() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text6_6)); } inline String_t* get_text6_6() const { return ___text6_6; } inline String_t** get_address_of_text6_6() { return &___text6_6; } inline void set_text6_6(String_t* value) { ___text6_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___text6_6), (void*)value); } inline static int32_t get_offset_of_text7_7() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text7_7)); } inline String_t* get_text7_7() const { return ___text7_7; } inline String_t** get_address_of_text7_7() { return &___text7_7; } inline void set_text7_7(String_t* value) { ___text7_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___text7_7), (void*)value); } inline static int32_t get_offset_of_text8_8() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text8_8)); } inline String_t* get_text8_8() const { return ___text8_8; } inline String_t** get_address_of_text8_8() { return &___text8_8; } inline void set_text8_8(String_t* value) { ___text8_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___text8_8), (void*)value); } inline static int32_t get_offset_of_text9_9() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text9_9)); } inline String_t* get_text9_9() const { return ___text9_9; } inline String_t** get_address_of_text9_9() { return &___text9_9; } inline void set_text9_9(String_t* value) { ___text9_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___text9_9), (void*)value); } inline static int32_t get_offset_of_text10_10() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text10_10)); } inline String_t* get_text10_10() const { return ___text10_10; } inline String_t** get_address_of_text10_10() { return &___text10_10; } inline void set_text10_10(String_t* value) { ___text10_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___text10_10), (void*)value); } inline static int32_t get_offset_of_text11_11() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text11_11)); } inline String_t* get_text11_11() const { return ___text11_11; } inline String_t** get_address_of_text11_11() { return &___text11_11; } inline void set_text11_11(String_t* value) { ___text11_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___text11_11), (void*)value); } inline static int32_t get_offset_of_text12_12() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text12_12)); } inline String_t* get_text12_12() const { return ___text12_12; } inline String_t** get_address_of_text12_12() { return &___text12_12; } inline void set_text12_12(String_t* value) { ___text12_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___text12_12), (void*)value); } inline static int32_t get_offset_of_text13_13() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text13_13)); } inline String_t* get_text13_13() const { return ___text13_13; } inline String_t** get_address_of_text13_13() { return &___text13_13; } inline void set_text13_13(String_t* value) { ___text13_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___text13_13), (void*)value); } inline static int32_t get_offset_of_text14_14() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text14_14)); } inline String_t* get_text14_14() const { return ___text14_14; } inline String_t** get_address_of_text14_14() { return &___text14_14; } inline void set_text14_14(String_t* value) { ___text14_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___text14_14), (void*)value); } inline static int32_t get_offset_of_text15_15() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text15_15)); } inline String_t* get_text15_15() const { return ___text15_15; } inline String_t** get_address_of_text15_15() { return &___text15_15; } inline void set_text15_15(String_t* value) { ___text15_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___text15_15), (void*)value); } inline static int32_t get_offset_of_text16_16() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text16_16)); } inline String_t* get_text16_16() const { return ___text16_16; } inline String_t** get_address_of_text16_16() { return &___text16_16; } inline void set_text16_16(String_t* value) { ___text16_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___text16_16), (void*)value); } inline static int32_t get_offset_of_text17_17() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text17_17)); } inline String_t* get_text17_17() const { return ___text17_17; } inline String_t** get_address_of_text17_17() { return &___text17_17; } inline void set_text17_17(String_t* value) { ___text17_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___text17_17), (void*)value); } inline static int32_t get_offset_of_text18_18() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text18_18)); } inline String_t* get_text18_18() const { return ___text18_18; } inline String_t** get_address_of_text18_18() { return &___text18_18; } inline void set_text18_18(String_t* value) { ___text18_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___text18_18), (void*)value); } inline static int32_t get_offset_of_text19_19() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text19_19)); } inline String_t* get_text19_19() const { return ___text19_19; } inline String_t** get_address_of_text19_19() { return &___text19_19; } inline void set_text19_19(String_t* value) { ___text19_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___text19_19), (void*)value); } inline static int32_t get_offset_of_text20_20() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text20_20)); } inline String_t* get_text20_20() const { return ___text20_20; } inline String_t** get_address_of_text20_20() { return &___text20_20; } inline void set_text20_20(String_t* value) { ___text20_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___text20_20), (void*)value); } inline static int32_t get_offset_of_text21_21() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text21_21)); } inline String_t* get_text21_21() const { return ___text21_21; } inline String_t** get_address_of_text21_21() { return &___text21_21; } inline void set_text21_21(String_t* value) { ___text21_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___text21_21), (void*)value); } inline static int32_t get_offset_of_text22_22() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text22_22)); } inline String_t* get_text22_22() const { return ___text22_22; } inline String_t** get_address_of_text22_22() { return &___text22_22; } inline void set_text22_22(String_t* value) { ___text22_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___text22_22), (void*)value); } inline static int32_t get_offset_of_text23_23() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text23_23)); } inline String_t* get_text23_23() const { return ___text23_23; } inline String_t** get_address_of_text23_23() { return &___text23_23; } inline void set_text23_23(String_t* value) { ___text23_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___text23_23), (void*)value); } inline static int32_t get_offset_of_text24_24() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text24_24)); } inline String_t* get_text24_24() const { return ___text24_24; } inline String_t** get_address_of_text24_24() { return &___text24_24; } inline void set_text24_24(String_t* value) { ___text24_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___text24_24), (void*)value); } inline static int32_t get_offset_of_text25_25() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text25_25)); } inline String_t* get_text25_25() const { return ___text25_25; } inline String_t** get_address_of_text25_25() { return &___text25_25; } inline void set_text25_25(String_t* value) { ___text25_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___text25_25), (void*)value); } inline static int32_t get_offset_of_text26_26() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text26_26)); } inline String_t* get_text26_26() const { return ___text26_26; } inline String_t** get_address_of_text26_26() { return &___text26_26; } inline void set_text26_26(String_t* value) { ___text26_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___text26_26), (void*)value); } inline static int32_t get_offset_of_text27_27() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text27_27)); } inline String_t* get_text27_27() const { return ___text27_27; } inline String_t** get_address_of_text27_27() { return &___text27_27; } inline void set_text27_27(String_t* value) { ___text27_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___text27_27), (void*)value); } inline static int32_t get_offset_of_text28_28() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text28_28)); } inline String_t* get_text28_28() const { return ___text28_28; } inline String_t** get_address_of_text28_28() { return &___text28_28; } inline void set_text28_28(String_t* value) { ___text28_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___text28_28), (void*)value); } inline static int32_t get_offset_of_text29_29() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text29_29)); } inline String_t* get_text29_29() const { return ___text29_29; } inline String_t** get_address_of_text29_29() { return &___text29_29; } inline void set_text29_29(String_t* value) { ___text29_29 = value; Il2CppCodeGenWriteBarrier((void**)(&___text29_29), (void*)value); } inline static int32_t get_offset_of_text30_30() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text30_30)); } inline String_t* get_text30_30() const { return ___text30_30; } inline String_t** get_address_of_text30_30() { return &___text30_30; } inline void set_text30_30(String_t* value) { ___text30_30 = value; Il2CppCodeGenWriteBarrier((void**)(&___text30_30), (void*)value); } inline static int32_t get_offset_of_text31_31() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text31_31)); } inline String_t* get_text31_31() const { return ___text31_31; } inline String_t** get_address_of_text31_31() { return &___text31_31; } inline void set_text31_31(String_t* value) { ___text31_31 = value; Il2CppCodeGenWriteBarrier((void**)(&___text31_31), (void*)value); } inline static int32_t get_offset_of_text32_32() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text32_32)); } inline String_t* get_text32_32() const { return ___text32_32; } inline String_t** get_address_of_text32_32() { return &___text32_32; } inline void set_text32_32(String_t* value) { ___text32_32 = value; Il2CppCodeGenWriteBarrier((void**)(&___text32_32), (void*)value); } inline static int32_t get_offset_of_text33_33() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text33_33)); } inline String_t* get_text33_33() const { return ___text33_33; } inline String_t** get_address_of_text33_33() { return &___text33_33; } inline void set_text33_33(String_t* value) { ___text33_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___text33_33), (void*)value); } inline static int32_t get_offset_of_text34_34() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text34_34)); } inline String_t* get_text34_34() const { return ___text34_34; } inline String_t** get_address_of_text34_34() { return &___text34_34; } inline void set_text34_34(String_t* value) { ___text34_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___text34_34), (void*)value); } inline static int32_t get_offset_of_text35_35() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text35_35)); } inline String_t* get_text35_35() const { return ___text35_35; } inline String_t** get_address_of_text35_35() { return &___text35_35; } inline void set_text35_35(String_t* value) { ___text35_35 = value; Il2CppCodeGenWriteBarrier((void**)(&___text35_35), (void*)value); } inline static int32_t get_offset_of_text36_36() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text36_36)); } inline String_t* get_text36_36() const { return ___text36_36; } inline String_t** get_address_of_text36_36() { return &___text36_36; } inline void set_text36_36(String_t* value) { ___text36_36 = value; Il2CppCodeGenWriteBarrier((void**)(&___text36_36), (void*)value); } inline static int32_t get_offset_of_text37_37() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text37_37)); } inline String_t* get_text37_37() const { return ___text37_37; } inline String_t** get_address_of_text37_37() { return &___text37_37; } inline void set_text37_37(String_t* value) { ___text37_37 = value; Il2CppCodeGenWriteBarrier((void**)(&___text37_37), (void*)value); } inline static int32_t get_offset_of_text38_38() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text38_38)); } inline String_t* get_text38_38() const { return ___text38_38; } inline String_t** get_address_of_text38_38() { return &___text38_38; } inline void set_text38_38(String_t* value) { ___text38_38 = value; Il2CppCodeGenWriteBarrier((void**)(&___text38_38), (void*)value); } inline static int32_t get_offset_of_text39_39() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text39_39)); } inline String_t* get_text39_39() const { return ___text39_39; } inline String_t** get_address_of_text39_39() { return &___text39_39; } inline void set_text39_39(String_t* value) { ___text39_39 = value; Il2CppCodeGenWriteBarrier((void**)(&___text39_39), (void*)value); } inline static int32_t get_offset_of_text40_40() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text40_40)); } inline String_t* get_text40_40() const { return ___text40_40; } inline String_t** get_address_of_text40_40() { return &___text40_40; } inline void set_text40_40(String_t* value) { ___text40_40 = value; Il2CppCodeGenWriteBarrier((void**)(&___text40_40), (void*)value); } inline static int32_t get_offset_of_text41_41() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text41_41)); } inline String_t* get_text41_41() const { return ___text41_41; } inline String_t** get_address_of_text41_41() { return &___text41_41; } inline void set_text41_41(String_t* value) { ___text41_41 = value; Il2CppCodeGenWriteBarrier((void**)(&___text41_41), (void*)value); } inline static int32_t get_offset_of_text42_42() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text42_42)); } inline String_t* get_text42_42() const { return ___text42_42; } inline String_t** get_address_of_text42_42() { return &___text42_42; } inline void set_text42_42(String_t* value) { ___text42_42 = value; Il2CppCodeGenWriteBarrier((void**)(&___text42_42), (void*)value); } inline static int32_t get_offset_of_text43_43() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text43_43)); } inline String_t* get_text43_43() const { return ___text43_43; } inline String_t** get_address_of_text43_43() { return &___text43_43; } inline void set_text43_43(String_t* value) { ___text43_43 = value; Il2CppCodeGenWriteBarrier((void**)(&___text43_43), (void*)value); } inline static int32_t get_offset_of_text44_44() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text44_44)); } inline String_t* get_text44_44() const { return ___text44_44; } inline String_t** get_address_of_text44_44() { return &___text44_44; } inline void set_text44_44(String_t* value) { ___text44_44 = value; Il2CppCodeGenWriteBarrier((void**)(&___text44_44), (void*)value); } inline static int32_t get_offset_of_text45_45() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text45_45)); } inline String_t* get_text45_45() const { return ___text45_45; } inline String_t** get_address_of_text45_45() { return &___text45_45; } inline void set_text45_45(String_t* value) { ___text45_45 = value; Il2CppCodeGenWriteBarrier((void**)(&___text45_45), (void*)value); } inline static int32_t get_offset_of_text46_46() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text46_46)); } inline String_t* get_text46_46() const { return ___text46_46; } inline String_t** get_address_of_text46_46() { return &___text46_46; } inline void set_text46_46(String_t* value) { ___text46_46 = value; Il2CppCodeGenWriteBarrier((void**)(&___text46_46), (void*)value); } inline static int32_t get_offset_of_text47_47() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text47_47)); } inline String_t* get_text47_47() const { return ___text47_47; } inline String_t** get_address_of_text47_47() { return &___text47_47; } inline void set_text47_47(String_t* value) { ___text47_47 = value; Il2CppCodeGenWriteBarrier((void**)(&___text47_47), (void*)value); } inline static int32_t get_offset_of_text48_48() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text48_48)); } inline String_t* get_text48_48() const { return ___text48_48; } inline String_t** get_address_of_text48_48() { return &___text48_48; } inline void set_text48_48(String_t* value) { ___text48_48 = value; Il2CppCodeGenWriteBarrier((void**)(&___text48_48), (void*)value); } inline static int32_t get_offset_of_text49_49() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text49_49)); } inline String_t* get_text49_49() const { return ___text49_49; } inline String_t** get_address_of_text49_49() { return &___text49_49; } inline void set_text49_49(String_t* value) { ___text49_49 = value; Il2CppCodeGenWriteBarrier((void**)(&___text49_49), (void*)value); } inline static int32_t get_offset_of_text50_50() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text50_50)); } inline String_t* get_text50_50() const { return ___text50_50; } inline String_t** get_address_of_text50_50() { return &___text50_50; } inline void set_text50_50(String_t* value) { ___text50_50 = value; Il2CppCodeGenWriteBarrier((void**)(&___text50_50), (void*)value); } inline static int32_t get_offset_of_text51_51() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text51_51)); } inline String_t* get_text51_51() const { return ___text51_51; } inline String_t** get_address_of_text51_51() { return &___text51_51; } inline void set_text51_51(String_t* value) { ___text51_51 = value; Il2CppCodeGenWriteBarrier((void**)(&___text51_51), (void*)value); } inline static int32_t get_offset_of_text61_52() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text61_52)); } inline String_t* get_text61_52() const { return ___text61_52; } inline String_t** get_address_of_text61_52() { return &___text61_52; } inline void set_text61_52(String_t* value) { ___text61_52 = value; Il2CppCodeGenWriteBarrier((void**)(&___text61_52), (void*)value); } inline static int32_t get_offset_of_text62_53() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text62_53)); } inline String_t* get_text62_53() const { return ___text62_53; } inline String_t** get_address_of_text62_53() { return &___text62_53; } inline void set_text62_53(String_t* value) { ___text62_53 = value; Il2CppCodeGenWriteBarrier((void**)(&___text62_53), (void*)value); } inline static int32_t get_offset_of_text63_54() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text63_54)); } inline String_t* get_text63_54() const { return ___text63_54; } inline String_t** get_address_of_text63_54() { return &___text63_54; } inline void set_text63_54(String_t* value) { ___text63_54 = value; Il2CppCodeGenWriteBarrier((void**)(&___text63_54), (void*)value); } inline static int32_t get_offset_of_text64_55() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text64_55)); } inline String_t* get_text64_55() const { return ___text64_55; } inline String_t** get_address_of_text64_55() { return &___text64_55; } inline void set_text64_55(String_t* value) { ___text64_55 = value; Il2CppCodeGenWriteBarrier((void**)(&___text64_55), (void*)value); } inline static int32_t get_offset_of_text65_56() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text65_56)); } inline String_t* get_text65_56() const { return ___text65_56; } inline String_t** get_address_of_text65_56() { return &___text65_56; } inline void set_text65_56(String_t* value) { ___text65_56 = value; Il2CppCodeGenWriteBarrier((void**)(&___text65_56), (void*)value); } inline static int32_t get_offset_of_text66_57() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text66_57)); } inline String_t* get_text66_57() const { return ___text66_57; } inline String_t** get_address_of_text66_57() { return &___text66_57; } inline void set_text66_57(String_t* value) { ___text66_57 = value; Il2CppCodeGenWriteBarrier((void**)(&___text66_57), (void*)value); } inline static int32_t get_offset_of_text67_58() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text67_58)); } inline String_t* get_text67_58() const { return ___text67_58; } inline String_t** get_address_of_text67_58() { return &___text67_58; } inline void set_text67_58(String_t* value) { ___text67_58 = value; Il2CppCodeGenWriteBarrier((void**)(&___text67_58), (void*)value); } inline static int32_t get_offset_of_text68_59() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text68_59)); } inline String_t* get_text68_59() const { return ___text68_59; } inline String_t** get_address_of_text68_59() { return &___text68_59; } inline void set_text68_59(String_t* value) { ___text68_59 = value; Il2CppCodeGenWriteBarrier((void**)(&___text68_59), (void*)value); } inline static int32_t get_offset_of_text69_60() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text69_60)); } inline String_t* get_text69_60() const { return ___text69_60; } inline String_t** get_address_of_text69_60() { return &___text69_60; } inline void set_text69_60(String_t* value) { ___text69_60 = value; Il2CppCodeGenWriteBarrier((void**)(&___text69_60), (void*)value); } inline static int32_t get_offset_of_text70_61() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text70_61)); } inline String_t* get_text70_61() const { return ___text70_61; } inline String_t** get_address_of_text70_61() { return &___text70_61; } inline void set_text70_61(String_t* value) { ___text70_61 = value; Il2CppCodeGenWriteBarrier((void**)(&___text70_61), (void*)value); } inline static int32_t get_offset_of_text71_62() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text71_62)); } inline String_t* get_text71_62() const { return ___text71_62; } inline String_t** get_address_of_text71_62() { return &___text71_62; } inline void set_text71_62(String_t* value) { ___text71_62 = value; Il2CppCodeGenWriteBarrier((void**)(&___text71_62), (void*)value); } inline static int32_t get_offset_of_text72_63() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text72_63)); } inline String_t* get_text72_63() const { return ___text72_63; } inline String_t** get_address_of_text72_63() { return &___text72_63; } inline void set_text72_63(String_t* value) { ___text72_63 = value; Il2CppCodeGenWriteBarrier((void**)(&___text72_63), (void*)value); } inline static int32_t get_offset_of_text73_64() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text73_64)); } inline String_t* get_text73_64() const { return ___text73_64; } inline String_t** get_address_of_text73_64() { return &___text73_64; } inline void set_text73_64(String_t* value) { ___text73_64 = value; Il2CppCodeGenWriteBarrier((void**)(&___text73_64), (void*)value); } inline static int32_t get_offset_of_text74_65() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text74_65)); } inline String_t* get_text74_65() const { return ___text74_65; } inline String_t** get_address_of_text74_65() { return &___text74_65; } inline void set_text74_65(String_t* value) { ___text74_65 = value; Il2CppCodeGenWriteBarrier((void**)(&___text74_65), (void*)value); } inline static int32_t get_offset_of_text87_66() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text87_66)); } inline String_t* get_text87_66() const { return ___text87_66; } inline String_t** get_address_of_text87_66() { return &___text87_66; } inline void set_text87_66(String_t* value) { ___text87_66 = value; Il2CppCodeGenWriteBarrier((void**)(&___text87_66), (void*)value); } inline static int32_t get_offset_of_text88_67() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text88_67)); } inline String_t* get_text88_67() const { return ___text88_67; } inline String_t** get_address_of_text88_67() { return &___text88_67; } inline void set_text88_67(String_t* value) { ___text88_67 = value; Il2CppCodeGenWriteBarrier((void**)(&___text88_67), (void*)value); } inline static int32_t get_offset_of_text89_68() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text89_68)); } inline String_t* get_text89_68() const { return ___text89_68; } inline String_t** get_address_of_text89_68() { return &___text89_68; } inline void set_text89_68(String_t* value) { ___text89_68 = value; Il2CppCodeGenWriteBarrier((void**)(&___text89_68), (void*)value); } inline static int32_t get_offset_of_text90_69() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text90_69)); } inline String_t* get_text90_69() const { return ___text90_69; } inline String_t** get_address_of_text90_69() { return &___text90_69; } inline void set_text90_69(String_t* value) { ___text90_69 = value; Il2CppCodeGenWriteBarrier((void**)(&___text90_69), (void*)value); } inline static int32_t get_offset_of_text91_70() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text91_70)); } inline String_t* get_text91_70() const { return ___text91_70; } inline String_t** get_address_of_text91_70() { return &___text91_70; } inline void set_text91_70(String_t* value) { ___text91_70 = value; Il2CppCodeGenWriteBarrier((void**)(&___text91_70), (void*)value); } inline static int32_t get_offset_of_text92_71() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text92_71)); } inline String_t* get_text92_71() const { return ___text92_71; } inline String_t** get_address_of_text92_71() { return &___text92_71; } inline void set_text92_71(String_t* value) { ___text92_71 = value; Il2CppCodeGenWriteBarrier((void**)(&___text92_71), (void*)value); } inline static int32_t get_offset_of_text93_72() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text93_72)); } inline String_t* get_text93_72() const { return ___text93_72; } inline String_t** get_address_of_text93_72() { return &___text93_72; } inline void set_text93_72(String_t* value) { ___text93_72 = value; Il2CppCodeGenWriteBarrier((void**)(&___text93_72), (void*)value); } inline static int32_t get_offset_of_text94_73() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text94_73)); } inline String_t* get_text94_73() const { return ___text94_73; } inline String_t** get_address_of_text94_73() { return &___text94_73; } inline void set_text94_73(String_t* value) { ___text94_73 = value; Il2CppCodeGenWriteBarrier((void**)(&___text94_73), (void*)value); } inline static int32_t get_offset_of_text95_74() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text95_74)); } inline String_t* get_text95_74() const { return ___text95_74; } inline String_t** get_address_of_text95_74() { return &___text95_74; } inline void set_text95_74(String_t* value) { ___text95_74 = value; Il2CppCodeGenWriteBarrier((void**)(&___text95_74), (void*)value); } inline static int32_t get_offset_of_text96_75() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text96_75)); } inline String_t* get_text96_75() const { return ___text96_75; } inline String_t** get_address_of_text96_75() { return &___text96_75; } inline void set_text96_75(String_t* value) { ___text96_75 = value; Il2CppCodeGenWriteBarrier((void**)(&___text96_75), (void*)value); } inline static int32_t get_offset_of_text97_76() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text97_76)); } inline String_t* get_text97_76() const { return ___text97_76; } inline String_t** get_address_of_text97_76() { return &___text97_76; } inline void set_text97_76(String_t* value) { ___text97_76 = value; Il2CppCodeGenWriteBarrier((void**)(&___text97_76), (void*)value); } inline static int32_t get_offset_of_text98_77() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text98_77)); } inline String_t* get_text98_77() const { return ___text98_77; } inline String_t** get_address_of_text98_77() { return &___text98_77; } inline void set_text98_77(String_t* value) { ___text98_77 = value; Il2CppCodeGenWriteBarrier((void**)(&___text98_77), (void*)value); } inline static int32_t get_offset_of_text99_78() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text99_78)); } inline String_t* get_text99_78() const { return ___text99_78; } inline String_t** get_address_of_text99_78() { return &___text99_78; } inline void set_text99_78(String_t* value) { ___text99_78 = value; Il2CppCodeGenWriteBarrier((void**)(&___text99_78), (void*)value); } inline static int32_t get_offset_of_text100_79() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text100_79)); } inline String_t* get_text100_79() const { return ___text100_79; } inline String_t** get_address_of_text100_79() { return &___text100_79; } inline void set_text100_79(String_t* value) { ___text100_79 = value; Il2CppCodeGenWriteBarrier((void**)(&___text100_79), (void*)value); } inline static int32_t get_offset_of_text101_80() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text101_80)); } inline String_t* get_text101_80() const { return ___text101_80; } inline String_t** get_address_of_text101_80() { return &___text101_80; } inline void set_text101_80(String_t* value) { ___text101_80 = value; Il2CppCodeGenWriteBarrier((void**)(&___text101_80), (void*)value); } inline static int32_t get_offset_of_text102_81() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text102_81)); } inline String_t* get_text102_81() const { return ___text102_81; } inline String_t** get_address_of_text102_81() { return &___text102_81; } inline void set_text102_81(String_t* value) { ___text102_81 = value; Il2CppCodeGenWriteBarrier((void**)(&___text102_81), (void*)value); } inline static int32_t get_offset_of_text103_82() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text103_82)); } inline String_t* get_text103_82() const { return ___text103_82; } inline String_t** get_address_of_text103_82() { return &___text103_82; } inline void set_text103_82(String_t* value) { ___text103_82 = value; Il2CppCodeGenWriteBarrier((void**)(&___text103_82), (void*)value); } inline static int32_t get_offset_of_text104_83() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text104_83)); } inline String_t* get_text104_83() const { return ___text104_83; } inline String_t** get_address_of_text104_83() { return &___text104_83; } inline void set_text104_83(String_t* value) { ___text104_83 = value; Il2CppCodeGenWriteBarrier((void**)(&___text104_83), (void*)value); } inline static int32_t get_offset_of_text105_84() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text105_84)); } inline String_t* get_text105_84() const { return ___text105_84; } inline String_t** get_address_of_text105_84() { return &___text105_84; } inline void set_text105_84(String_t* value) { ___text105_84 = value; Il2CppCodeGenWriteBarrier((void**)(&___text105_84), (void*)value); } inline static int32_t get_offset_of_text106_85() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text106_85)); } inline String_t* get_text106_85() const { return ___text106_85; } inline String_t** get_address_of_text106_85() { return &___text106_85; } inline void set_text106_85(String_t* value) { ___text106_85 = value; Il2CppCodeGenWriteBarrier((void**)(&___text106_85), (void*)value); } inline static int32_t get_offset_of_text107_86() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text107_86)); } inline String_t* get_text107_86() const { return ___text107_86; } inline String_t** get_address_of_text107_86() { return &___text107_86; } inline void set_text107_86(String_t* value) { ___text107_86 = value; Il2CppCodeGenWriteBarrier((void**)(&___text107_86), (void*)value); } inline static int32_t get_offset_of_text108_87() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text108_87)); } inline String_t* get_text108_87() const { return ___text108_87; } inline String_t** get_address_of_text108_87() { return &___text108_87; } inline void set_text108_87(String_t* value) { ___text108_87 = value; Il2CppCodeGenWriteBarrier((void**)(&___text108_87), (void*)value); } inline static int32_t get_offset_of_text109_88() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text109_88)); } inline String_t* get_text109_88() const { return ___text109_88; } inline String_t** get_address_of_text109_88() { return &___text109_88; } inline void set_text109_88(String_t* value) { ___text109_88 = value; Il2CppCodeGenWriteBarrier((void**)(&___text109_88), (void*)value); } inline static int32_t get_offset_of_text110_89() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text110_89)); } inline String_t* get_text110_89() const { return ___text110_89; } inline String_t** get_address_of_text110_89() { return &___text110_89; } inline void set_text110_89(String_t* value) { ___text110_89 = value; Il2CppCodeGenWriteBarrier((void**)(&___text110_89), (void*)value); } inline static int32_t get_offset_of_text111_90() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text111_90)); } inline String_t* get_text111_90() const { return ___text111_90; } inline String_t** get_address_of_text111_90() { return &___text111_90; } inline void set_text111_90(String_t* value) { ___text111_90 = value; Il2CppCodeGenWriteBarrier((void**)(&___text111_90), (void*)value); } inline static int32_t get_offset_of_text112_91() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text112_91)); } inline String_t* get_text112_91() const { return ___text112_91; } inline String_t** get_address_of_text112_91() { return &___text112_91; } inline void set_text112_91(String_t* value) { ___text112_91 = value; Il2CppCodeGenWriteBarrier((void**)(&___text112_91), (void*)value); } inline static int32_t get_offset_of_text113_92() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text113_92)); } inline String_t* get_text113_92() const { return ___text113_92; } inline String_t** get_address_of_text113_92() { return &___text113_92; } inline void set_text113_92(String_t* value) { ___text113_92 = value; Il2CppCodeGenWriteBarrier((void**)(&___text113_92), (void*)value); } inline static int32_t get_offset_of_text114_93() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text114_93)); } inline String_t* get_text114_93() const { return ___text114_93; } inline String_t** get_address_of_text114_93() { return &___text114_93; } inline void set_text114_93(String_t* value) { ___text114_93 = value; Il2CppCodeGenWriteBarrier((void**)(&___text114_93), (void*)value); } inline static int32_t get_offset_of_text115_94() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text115_94)); } inline String_t* get_text115_94() const { return ___text115_94; } inline String_t** get_address_of_text115_94() { return &___text115_94; } inline void set_text115_94(String_t* value) { ___text115_94 = value; Il2CppCodeGenWriteBarrier((void**)(&___text115_94), (void*)value); } inline static int32_t get_offset_of_text117_95() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text117_95)); } inline String_t* get_text117_95() const { return ___text117_95; } inline String_t** get_address_of_text117_95() { return &___text117_95; } inline void set_text117_95(String_t* value) { ___text117_95 = value; Il2CppCodeGenWriteBarrier((void**)(&___text117_95), (void*)value); } inline static int32_t get_offset_of_text118_96() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text118_96)); } inline String_t* get_text118_96() const { return ___text118_96; } inline String_t** get_address_of_text118_96() { return &___text118_96; } inline void set_text118_96(String_t* value) { ___text118_96 = value; Il2CppCodeGenWriteBarrier((void**)(&___text118_96), (void*)value); } inline static int32_t get_offset_of_text119_97() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text119_97)); } inline String_t* get_text119_97() const { return ___text119_97; } inline String_t** get_address_of_text119_97() { return &___text119_97; } inline void set_text119_97(String_t* value) { ___text119_97 = value; Il2CppCodeGenWriteBarrier((void**)(&___text119_97), (void*)value); } inline static int32_t get_offset_of_text500_98() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text500_98)); } inline String_t* get_text500_98() const { return ___text500_98; } inline String_t** get_address_of_text500_98() { return &___text500_98; } inline void set_text500_98(String_t* value) { ___text500_98 = value; Il2CppCodeGenWriteBarrier((void**)(&___text500_98), (void*)value); } inline static int32_t get_offset_of_text501_99() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text501_99)); } inline String_t* get_text501_99() const { return ___text501_99; } inline String_t** get_address_of_text501_99() { return &___text501_99; } inline void set_text501_99(String_t* value) { ___text501_99 = value; Il2CppCodeGenWriteBarrier((void**)(&___text501_99), (void*)value); } inline static int32_t get_offset_of_text502_100() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text502_100)); } inline String_t* get_text502_100() const { return ___text502_100; } inline String_t** get_address_of_text502_100() { return &___text502_100; } inline void set_text502_100(String_t* value) { ___text502_100 = value; Il2CppCodeGenWriteBarrier((void**)(&___text502_100), (void*)value); } inline static int32_t get_offset_of_text503_101() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text503_101)); } inline String_t* get_text503_101() const { return ___text503_101; } inline String_t** get_address_of_text503_101() { return &___text503_101; } inline void set_text503_101(String_t* value) { ___text503_101 = value; Il2CppCodeGenWriteBarrier((void**)(&___text503_101), (void*)value); } inline static int32_t get_offset_of_text504_102() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text504_102)); } inline String_t* get_text504_102() const { return ___text504_102; } inline String_t** get_address_of_text504_102() { return &___text504_102; } inline void set_text504_102(String_t* value) { ___text504_102 = value; Il2CppCodeGenWriteBarrier((void**)(&___text504_102), (void*)value); } inline static int32_t get_offset_of_text122_103() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text122_103)); } inline String_t* get_text122_103() const { return ___text122_103; } inline String_t** get_address_of_text122_103() { return &___text122_103; } inline void set_text122_103(String_t* value) { ___text122_103 = value; Il2CppCodeGenWriteBarrier((void**)(&___text122_103), (void*)value); } inline static int32_t get_offset_of_text123_104() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text123_104)); } inline String_t* get_text123_104() const { return ___text123_104; } inline String_t** get_address_of_text123_104() { return &___text123_104; } inline void set_text123_104(String_t* value) { ___text123_104 = value; Il2CppCodeGenWriteBarrier((void**)(&___text123_104), (void*)value); } inline static int32_t get_offset_of_text124_105() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text124_105)); } inline String_t* get_text124_105() const { return ___text124_105; } inline String_t** get_address_of_text124_105() { return &___text124_105; } inline void set_text124_105(String_t* value) { ___text124_105 = value; Il2CppCodeGenWriteBarrier((void**)(&___text124_105), (void*)value); } inline static int32_t get_offset_of_text125_106() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text125_106)); } inline String_t* get_text125_106() const { return ___text125_106; } inline String_t** get_address_of_text125_106() { return &___text125_106; } inline void set_text125_106(String_t* value) { ___text125_106 = value; Il2CppCodeGenWriteBarrier((void**)(&___text125_106), (void*)value); } inline static int32_t get_offset_of_text126_107() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text126_107)); } inline String_t* get_text126_107() const { return ___text126_107; } inline String_t** get_address_of_text126_107() { return &___text126_107; } inline void set_text126_107(String_t* value) { ___text126_107 = value; Il2CppCodeGenWriteBarrier((void**)(&___text126_107), (void*)value); } inline static int32_t get_offset_of_text133_108() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text133_108)); } inline String_t* get_text133_108() const { return ___text133_108; } inline String_t** get_address_of_text133_108() { return &___text133_108; } inline void set_text133_108(String_t* value) { ___text133_108 = value; Il2CppCodeGenWriteBarrier((void**)(&___text133_108), (void*)value); } inline static int32_t get_offset_of_text127_109() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text127_109)); } inline String_t* get_text127_109() const { return ___text127_109; } inline String_t** get_address_of_text127_109() { return &___text127_109; } inline void set_text127_109(String_t* value) { ___text127_109 = value; Il2CppCodeGenWriteBarrier((void**)(&___text127_109), (void*)value); } inline static int32_t get_offset_of_text128_110() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text128_110)); } inline String_t* get_text128_110() const { return ___text128_110; } inline String_t** get_address_of_text128_110() { return &___text128_110; } inline void set_text128_110(String_t* value) { ___text128_110 = value; Il2CppCodeGenWriteBarrier((void**)(&___text128_110), (void*)value); } inline static int32_t get_offset_of_text129_111() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text129_111)); } inline String_t* get_text129_111() const { return ___text129_111; } inline String_t** get_address_of_text129_111() { return &___text129_111; } inline void set_text129_111(String_t* value) { ___text129_111 = value; Il2CppCodeGenWriteBarrier((void**)(&___text129_111), (void*)value); } inline static int32_t get_offset_of_text132_112() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text132_112)); } inline String_t* get_text132_112() const { return ___text132_112; } inline String_t** get_address_of_text132_112() { return &___text132_112; } inline void set_text132_112(String_t* value) { ___text132_112 = value; Il2CppCodeGenWriteBarrier((void**)(&___text132_112), (void*)value); } inline static int32_t get_offset_of_text130_113() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text130_113)); } inline String_t* get_text130_113() const { return ___text130_113; } inline String_t** get_address_of_text130_113() { return &___text130_113; } inline void set_text130_113(String_t* value) { ___text130_113 = value; Il2CppCodeGenWriteBarrier((void**)(&___text130_113), (void*)value); } inline static int32_t get_offset_of_text131_114() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text131_114)); } inline String_t* get_text131_114() const { return ___text131_114; } inline String_t** get_address_of_text131_114() { return &___text131_114; } inline void set_text131_114(String_t* value) { ___text131_114 = value; Il2CppCodeGenWriteBarrier((void**)(&___text131_114), (void*)value); } inline static int32_t get_offset_of_text401_115() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text401_115)); } inline String_t* get_text401_115() const { return ___text401_115; } inline String_t** get_address_of_text401_115() { return &___text401_115; } inline void set_text401_115(String_t* value) { ___text401_115 = value; Il2CppCodeGenWriteBarrier((void**)(&___text401_115), (void*)value); } inline static int32_t get_offset_of_text134_116() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text134_116)); } inline String_t* get_text134_116() const { return ___text134_116; } inline String_t** get_address_of_text134_116() { return &___text134_116; } inline void set_text134_116(String_t* value) { ___text134_116 = value; Il2CppCodeGenWriteBarrier((void**)(&___text134_116), (void*)value); } inline static int32_t get_offset_of_text135_117() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text135_117)); } inline String_t* get_text135_117() const { return ___text135_117; } inline String_t** get_address_of_text135_117() { return &___text135_117; } inline void set_text135_117(String_t* value) { ___text135_117 = value; Il2CppCodeGenWriteBarrier((void**)(&___text135_117), (void*)value); } inline static int32_t get_offset_of_text136_118() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text136_118)); } inline String_t* get_text136_118() const { return ___text136_118; } inline String_t** get_address_of_text136_118() { return &___text136_118; } inline void set_text136_118(String_t* value) { ___text136_118 = value; Il2CppCodeGenWriteBarrier((void**)(&___text136_118), (void*)value); } inline static int32_t get_offset_of_text137_119() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text137_119)); } inline String_t* get_text137_119() const { return ___text137_119; } inline String_t** get_address_of_text137_119() { return &___text137_119; } inline void set_text137_119(String_t* value) { ___text137_119 = value; Il2CppCodeGenWriteBarrier((void**)(&___text137_119), (void*)value); } inline static int32_t get_offset_of_text302_120() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text302_120)); } inline String_t* get_text302_120() const { return ___text302_120; } inline String_t** get_address_of_text302_120() { return &___text302_120; } inline void set_text302_120(String_t* value) { ___text302_120 = value; Il2CppCodeGenWriteBarrier((void**)(&___text302_120), (void*)value); } inline static int32_t get_offset_of_text303_121() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text303_121)); } inline String_t* get_text303_121() const { return ___text303_121; } inline String_t** get_address_of_text303_121() { return &___text303_121; } inline void set_text303_121(String_t* value) { ___text303_121 = value; Il2CppCodeGenWriteBarrier((void**)(&___text303_121), (void*)value); } inline static int32_t get_offset_of_text304_122() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text304_122)); } inline String_t* get_text304_122() const { return ___text304_122; } inline String_t** get_address_of_text304_122() { return &___text304_122; } inline void set_text304_122(String_t* value) { ___text304_122 = value; Il2CppCodeGenWriteBarrier((void**)(&___text304_122), (void*)value); } inline static int32_t get_offset_of_text305_123() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text305_123)); } inline String_t* get_text305_123() const { return ___text305_123; } inline String_t** get_address_of_text305_123() { return &___text305_123; } inline void set_text305_123(String_t* value) { ___text305_123 = value; Il2CppCodeGenWriteBarrier((void**)(&___text305_123), (void*)value); } inline static int32_t get_offset_of_text306_124() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text306_124)); } inline String_t* get_text306_124() const { return ___text306_124; } inline String_t** get_address_of_text306_124() { return &___text306_124; } inline void set_text306_124(String_t* value) { ___text306_124 = value; Il2CppCodeGenWriteBarrier((void**)(&___text306_124), (void*)value); } inline static int32_t get_offset_of_text307_125() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text307_125)); } inline String_t* get_text307_125() const { return ___text307_125; } inline String_t** get_address_of_text307_125() { return &___text307_125; } inline void set_text307_125(String_t* value) { ___text307_125 = value; Il2CppCodeGenWriteBarrier((void**)(&___text307_125), (void*)value); } inline static int32_t get_offset_of_text308_126() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text308_126)); } inline String_t* get_text308_126() const { return ___text308_126; } inline String_t** get_address_of_text308_126() { return &___text308_126; } inline void set_text308_126(String_t* value) { ___text308_126 = value; Il2CppCodeGenWriteBarrier((void**)(&___text308_126), (void*)value); } inline static int32_t get_offset_of_text309_127() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text309_127)); } inline String_t* get_text309_127() const { return ___text309_127; } inline String_t** get_address_of_text309_127() { return &___text309_127; } inline void set_text309_127(String_t* value) { ___text309_127 = value; Il2CppCodeGenWriteBarrier((void**)(&___text309_127), (void*)value); } inline static int32_t get_offset_of_text310_128() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text310_128)); } inline String_t* get_text310_128() const { return ___text310_128; } inline String_t** get_address_of_text310_128() { return &___text310_128; } inline void set_text310_128(String_t* value) { ___text310_128 = value; Il2CppCodeGenWriteBarrier((void**)(&___text310_128), (void*)value); } inline static int32_t get_offset_of_text311_129() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text311_129)); } inline String_t* get_text311_129() const { return ___text311_129; } inline String_t** get_address_of_text311_129() { return &___text311_129; } inline void set_text311_129(String_t* value) { ___text311_129 = value; Il2CppCodeGenWriteBarrier((void**)(&___text311_129), (void*)value); } inline static int32_t get_offset_of_text312_130() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text312_130)); } inline String_t* get_text312_130() const { return ___text312_130; } inline String_t** get_address_of_text312_130() { return &___text312_130; } inline void set_text312_130(String_t* value) { ___text312_130 = value; Il2CppCodeGenWriteBarrier((void**)(&___text312_130), (void*)value); } inline static int32_t get_offset_of_text313_131() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text313_131)); } inline String_t* get_text313_131() const { return ___text313_131; } inline String_t** get_address_of_text313_131() { return &___text313_131; } inline void set_text313_131(String_t* value) { ___text313_131 = value; Il2CppCodeGenWriteBarrier((void**)(&___text313_131), (void*)value); } inline static int32_t get_offset_of_text314_132() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text314_132)); } inline String_t* get_text314_132() const { return ___text314_132; } inline String_t** get_address_of_text314_132() { return &___text314_132; } inline void set_text314_132(String_t* value) { ___text314_132 = value; Il2CppCodeGenWriteBarrier((void**)(&___text314_132), (void*)value); } inline static int32_t get_offset_of_text315_133() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text315_133)); } inline String_t* get_text315_133() const { return ___text315_133; } inline String_t** get_address_of_text315_133() { return &___text315_133; } inline void set_text315_133(String_t* value) { ___text315_133 = value; Il2CppCodeGenWriteBarrier((void**)(&___text315_133), (void*)value); } inline static int32_t get_offset_of_text318_134() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text318_134)); } inline String_t* get_text318_134() const { return ___text318_134; } inline String_t** get_address_of_text318_134() { return &___text318_134; } inline void set_text318_134(String_t* value) { ___text318_134 = value; Il2CppCodeGenWriteBarrier((void**)(&___text318_134), (void*)value); } inline static int32_t get_offset_of_text301_135() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text301_135)); } inline String_t* get_text301_135() const { return ___text301_135; } inline String_t** get_address_of_text301_135() { return &___text301_135; } inline void set_text301_135(String_t* value) { ___text301_135 = value; Il2CppCodeGenWriteBarrier((void**)(&___text301_135), (void*)value); } inline static int32_t get_offset_of_text316_136() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text316_136)); } inline String_t* get_text316_136() const { return ___text316_136; } inline String_t** get_address_of_text316_136() { return &___text316_136; } inline void set_text316_136(String_t* value) { ___text316_136 = value; Il2CppCodeGenWriteBarrier((void**)(&___text316_136), (void*)value); } inline static int32_t get_offset_of_text317_137() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text317_137)); } inline String_t* get_text317_137() const { return ___text317_137; } inline String_t** get_address_of_text317_137() { return &___text317_137; } inline void set_text317_137(String_t* value) { ___text317_137 = value; Il2CppCodeGenWriteBarrier((void**)(&___text317_137), (void*)value); } inline static int32_t get_offset_of_text300_138() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text300_138)); } inline String_t* get_text300_138() const { return ___text300_138; } inline String_t** get_address_of_text300_138() { return &___text300_138; } inline void set_text300_138(String_t* value) { ___text300_138 = value; Il2CppCodeGenWriteBarrier((void**)(&___text300_138), (void*)value); } inline static int32_t get_offset_of_text400_139() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text400_139)); } inline String_t* get_text400_139() const { return ___text400_139; } inline String_t** get_address_of_text400_139() { return &___text400_139; } inline void set_text400_139(String_t* value) { ___text400_139 = value; Il2CppCodeGenWriteBarrier((void**)(&___text400_139), (void*)value); } inline static int32_t get_offset_of_text76_140() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text76_140)); } inline String_t* get_text76_140() const { return ___text76_140; } inline String_t** get_address_of_text76_140() { return &___text76_140; } inline void set_text76_140(String_t* value) { ___text76_140 = value; Il2CppCodeGenWriteBarrier((void**)(&___text76_140), (void*)value); } inline static int32_t get_offset_of_text77_141() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text77_141)); } inline String_t* get_text77_141() const { return ___text77_141; } inline String_t** get_address_of_text77_141() { return &___text77_141; } inline void set_text77_141(String_t* value) { ___text77_141 = value; Il2CppCodeGenWriteBarrier((void**)(&___text77_141), (void*)value); } inline static int32_t get_offset_of_text78_142() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text78_142)); } inline String_t* get_text78_142() const { return ___text78_142; } inline String_t** get_address_of_text78_142() { return &___text78_142; } inline void set_text78_142(String_t* value) { ___text78_142 = value; Il2CppCodeGenWriteBarrier((void**)(&___text78_142), (void*)value); } inline static int32_t get_offset_of_text79_143() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text79_143)); } inline String_t* get_text79_143() const { return ___text79_143; } inline String_t** get_address_of_text79_143() { return &___text79_143; } inline void set_text79_143(String_t* value) { ___text79_143 = value; Il2CppCodeGenWriteBarrier((void**)(&___text79_143), (void*)value); } inline static int32_t get_offset_of_text80_144() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text80_144)); } inline String_t* get_text80_144() const { return ___text80_144; } inline String_t** get_address_of_text80_144() { return &___text80_144; } inline void set_text80_144(String_t* value) { ___text80_144 = value; Il2CppCodeGenWriteBarrier((void**)(&___text80_144), (void*)value); } inline static int32_t get_offset_of_text81_145() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text81_145)); } inline String_t* get_text81_145() const { return ___text81_145; } inline String_t** get_address_of_text81_145() { return &___text81_145; } inline void set_text81_145(String_t* value) { ___text81_145 = value; Il2CppCodeGenWriteBarrier((void**)(&___text81_145), (void*)value); } inline static int32_t get_offset_of_text82_146() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text82_146)); } inline String_t* get_text82_146() const { return ___text82_146; } inline String_t** get_address_of_text82_146() { return &___text82_146; } inline void set_text82_146(String_t* value) { ___text82_146 = value; Il2CppCodeGenWriteBarrier((void**)(&___text82_146), (void*)value); } inline static int32_t get_offset_of_text83_147() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text83_147)); } inline String_t* get_text83_147() const { return ___text83_147; } inline String_t** get_address_of_text83_147() { return &___text83_147; } inline void set_text83_147(String_t* value) { ___text83_147 = value; Il2CppCodeGenWriteBarrier((void**)(&___text83_147), (void*)value); } inline static int32_t get_offset_of_text84_148() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text84_148)); } inline String_t* get_text84_148() const { return ___text84_148; } inline String_t** get_address_of_text84_148() { return &___text84_148; } inline void set_text84_148(String_t* value) { ___text84_148 = value; Il2CppCodeGenWriteBarrier((void**)(&___text84_148), (void*)value); } inline static int32_t get_offset_of_text85_149() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text85_149)); } inline String_t* get_text85_149() const { return ___text85_149; } inline String_t** get_address_of_text85_149() { return &___text85_149; } inline void set_text85_149(String_t* value) { ___text85_149 = value; Il2CppCodeGenWriteBarrier((void**)(&___text85_149), (void*)value); } inline static int32_t get_offset_of_text86_150() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text86_150)); } inline String_t* get_text86_150() const { return ___text86_150; } inline String_t** get_address_of_text86_150() { return &___text86_150; } inline void set_text86_150(String_t* value) { ___text86_150 = value; Il2CppCodeGenWriteBarrier((void**)(&___text86_150), (void*)value); } inline static int32_t get_offset_of_text116_151() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text116_151)); } inline String_t* get_text116_151() const { return ___text116_151; } inline String_t** get_address_of_text116_151() { return &___text116_151; } inline void set_text116_151(String_t* value) { ___text116_151 = value; Il2CppCodeGenWriteBarrier((void**)(&___text116_151), (void*)value); } inline static int32_t get_offset_of_text120_152() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text120_152)); } inline String_t* get_text120_152() const { return ___text120_152; } inline String_t** get_address_of_text120_152() { return &___text120_152; } inline void set_text120_152(String_t* value) { ___text120_152 = value; Il2CppCodeGenWriteBarrier((void**)(&___text120_152), (void*)value); } inline static int32_t get_offset_of_text121_153() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text121_153)); } inline String_t* get_text121_153() const { return ___text121_153; } inline String_t** get_address_of_text121_153() { return &___text121_153; } inline void set_text121_153(String_t* value) { ___text121_153 = value; Il2CppCodeGenWriteBarrier((void**)(&___text121_153), (void*)value); } inline static int32_t get_offset_of_text200_154() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text200_154)); } inline String_t* get_text200_154() const { return ___text200_154; } inline String_t** get_address_of_text200_154() { return &___text200_154; } inline void set_text200_154(String_t* value) { ___text200_154 = value; Il2CppCodeGenWriteBarrier((void**)(&___text200_154), (void*)value); } inline static int32_t get_offset_of_text201_155() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text201_155)); } inline String_t* get_text201_155() const { return ___text201_155; } inline String_t** get_address_of_text201_155() { return &___text201_155; } inline void set_text201_155(String_t* value) { ___text201_155 = value; Il2CppCodeGenWriteBarrier((void**)(&___text201_155), (void*)value); } inline static int32_t get_offset_of_text202_156() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text202_156)); } inline String_t* get_text202_156() const { return ___text202_156; } inline String_t** get_address_of_text202_156() { return &___text202_156; } inline void set_text202_156(String_t* value) { ___text202_156 = value; Il2CppCodeGenWriteBarrier((void**)(&___text202_156), (void*)value); } inline static int32_t get_offset_of_text203_157() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text203_157)); } inline String_t* get_text203_157() const { return ___text203_157; } inline String_t** get_address_of_text203_157() { return &___text203_157; } inline void set_text203_157(String_t* value) { ___text203_157 = value; Il2CppCodeGenWriteBarrier((void**)(&___text203_157), (void*)value); } inline static int32_t get_offset_of_text204_158() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text204_158)); } inline String_t* get_text204_158() const { return ___text204_158; } inline String_t** get_address_of_text204_158() { return &___text204_158; } inline void set_text204_158(String_t* value) { ___text204_158 = value; Il2CppCodeGenWriteBarrier((void**)(&___text204_158), (void*)value); } inline static int32_t get_offset_of_text205_159() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text205_159)); } inline String_t* get_text205_159() const { return ___text205_159; } inline String_t** get_address_of_text205_159() { return &___text205_159; } inline void set_text205_159(String_t* value) { ___text205_159 = value; Il2CppCodeGenWriteBarrier((void**)(&___text205_159), (void*)value); } inline static int32_t get_offset_of_text1000_160() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text1000_160)); } inline String_t* get_text1000_160() const { return ___text1000_160; } inline String_t** get_address_of_text1000_160() { return &___text1000_160; } inline void set_text1000_160(String_t* value) { ___text1000_160 = value; Il2CppCodeGenWriteBarrier((void**)(&___text1000_160), (void*)value); } inline static int32_t get_offset_of_text1001_161() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text1001_161)); } inline String_t* get_text1001_161() const { return ___text1001_161; } inline String_t** get_address_of_text1001_161() { return &___text1001_161; } inline void set_text1001_161(String_t* value) { ___text1001_161 = value; Il2CppCodeGenWriteBarrier((void**)(&___text1001_161), (void*)value); } inline static int32_t get_offset_of_text2000_162() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text2000_162)); } inline String_t* get_text2000_162() const { return ___text2000_162; } inline String_t** get_address_of_text2000_162() { return &___text2000_162; } inline void set_text2000_162(String_t* value) { ___text2000_162 = value; Il2CppCodeGenWriteBarrier((void**)(&___text2000_162), (void*)value); } inline static int32_t get_offset_of_text2001_163() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text2001_163)); } inline String_t* get_text2001_163() const { return ___text2001_163; } inline String_t** get_address_of_text2001_163() { return &___text2001_163; } inline void set_text2001_163(String_t* value) { ___text2001_163 = value; Il2CppCodeGenWriteBarrier((void**)(&___text2001_163), (void*)value); } inline static int32_t get_offset_of_text2002_164() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text2002_164)); } inline String_t* get_text2002_164() const { return ___text2002_164; } inline String_t** get_address_of_text2002_164() { return &___text2002_164; } inline void set_text2002_164(String_t* value) { ___text2002_164 = value; Il2CppCodeGenWriteBarrier((void**)(&___text2002_164), (void*)value); } inline static int32_t get_offset_of_text2003_165() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text2003_165)); } inline String_t* get_text2003_165() const { return ___text2003_165; } inline String_t** get_address_of_text2003_165() { return &___text2003_165; } inline void set_text2003_165(String_t* value) { ___text2003_165 = value; Il2CppCodeGenWriteBarrier((void**)(&___text2003_165), (void*)value); } inline static int32_t get_offset_of_text101000_166() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text101000_166)); } inline String_t* get_text101000_166() const { return ___text101000_166; } inline String_t** get_address_of_text101000_166() { return &___text101000_166; } inline void set_text101000_166(String_t* value) { ___text101000_166 = value; Il2CppCodeGenWriteBarrier((void**)(&___text101000_166), (void*)value); } inline static int32_t get_offset_of_text101001_167() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text101001_167)); } inline String_t* get_text101001_167() const { return ___text101001_167; } inline String_t** get_address_of_text101001_167() { return &___text101001_167; } inline void set_text101001_167(String_t* value) { ___text101001_167 = value; Il2CppCodeGenWriteBarrier((void**)(&___text101001_167), (void*)value); } inline static int32_t get_offset_of_text111000_168() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text111000_168)); } inline String_t* get_text111000_168() const { return ___text111000_168; } inline String_t** get_address_of_text111000_168() { return &___text111000_168; } inline void set_text111000_168(String_t* value) { ___text111000_168 = value; Il2CppCodeGenWriteBarrier((void**)(&___text111000_168), (void*)value); } inline static int32_t get_offset_of_text111001_169() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text111001_169)); } inline String_t* get_text111001_169() const { return ___text111001_169; } inline String_t** get_address_of_text111001_169() { return &___text111001_169; } inline void set_text111001_169(String_t* value) { ___text111001_169 = value; Il2CppCodeGenWriteBarrier((void**)(&___text111001_169), (void*)value); } inline static int32_t get_offset_of_text200000_170() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text200000_170)); } inline String_t* get_text200000_170() const { return ___text200000_170; } inline String_t** get_address_of_text200000_170() { return &___text200000_170; } inline void set_text200000_170(String_t* value) { ___text200000_170 = value; Il2CppCodeGenWriteBarrier((void**)(&___text200000_170), (void*)value); } inline static int32_t get_offset_of_text201000_171() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text201000_171)); } inline String_t* get_text201000_171() const { return ___text201000_171; } inline String_t** get_address_of_text201000_171() { return &___text201000_171; } inline void set_text201000_171(String_t* value) { ___text201000_171 = value; Il2CppCodeGenWriteBarrier((void**)(&___text201000_171), (void*)value); } inline static int32_t get_offset_of_text201001_172() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text201001_172)); } inline String_t* get_text201001_172() const { return ___text201001_172; } inline String_t** get_address_of_text201001_172() { return &___text201001_172; } inline void set_text201001_172(String_t* value) { ___text201001_172 = value; Il2CppCodeGenWriteBarrier((void**)(&___text201001_172), (void*)value); } inline static int32_t get_offset_of_text201002_173() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text201002_173)); } inline String_t* get_text201002_173() const { return ___text201002_173; } inline String_t** get_address_of_text201002_173() { return &___text201002_173; } inline void set_text201002_173(String_t* value) { ___text201002_173 = value; Il2CppCodeGenWriteBarrier((void**)(&___text201002_173), (void*)value); } inline static int32_t get_offset_of_text211000_174() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text211000_174)); } inline String_t* get_text211000_174() const { return ___text211000_174; } inline String_t** get_address_of_text211000_174() { return &___text211000_174; } inline void set_text211000_174(String_t* value) { ___text211000_174 = value; Il2CppCodeGenWriteBarrier((void**)(&___text211000_174), (void*)value); } inline static int32_t get_offset_of_text211001_175() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text211001_175)); } inline String_t* get_text211001_175() const { return ___text211001_175; } inline String_t** get_address_of_text211001_175() { return &___text211001_175; } inline void set_text211001_175(String_t* value) { ___text211001_175 = value; Il2CppCodeGenWriteBarrier((void**)(&___text211001_175), (void*)value); } inline static int32_t get_offset_of_text211002_176() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text211002_176)); } inline String_t* get_text211002_176() const { return ___text211002_176; } inline String_t** get_address_of_text211002_176() { return &___text211002_176; } inline void set_text211002_176(String_t* value) { ___text211002_176 = value; Il2CppCodeGenWriteBarrier((void**)(&___text211002_176), (void*)value); } inline static int32_t get_offset_of_text1234560_177() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text1234560_177)); } inline String_t* get_text1234560_177() const { return ___text1234560_177; } inline String_t** get_address_of_text1234560_177() { return &___text1234560_177; } inline void set_text1234560_177(String_t* value) { ___text1234560_177 = value; Il2CppCodeGenWriteBarrier((void**)(&___text1234560_177), (void*)value); } inline static int32_t get_offset_of_text1234561_178() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text1234561_178)); } inline String_t* get_text1234561_178() const { return ___text1234561_178; } inline String_t** get_address_of_text1234561_178() { return &___text1234561_178; } inline void set_text1234561_178(String_t* value) { ___text1234561_178 = value; Il2CppCodeGenWriteBarrier((void**)(&___text1234561_178), (void*)value); } inline static int32_t get_offset_of_text1234562_179() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text1234562_179)); } inline String_t* get_text1234562_179() const { return ___text1234562_179; } inline String_t** get_address_of_text1234562_179() { return &___text1234562_179; } inline void set_text1234562_179(String_t* value) { ___text1234562_179 = value; Il2CppCodeGenWriteBarrier((void**)(&___text1234562_179), (void*)value); } inline static int32_t get_offset_of_text1234563_180() { return static_cast(offsetof(LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783, ___text1234563_180)); } inline String_t* get_text1234563_180() const { return ___text1234563_180; } inline String_t** get_address_of_text1234563_180() { return &___text1234563_180; } inline void set_text1234563_180(String_t* value) { ___text1234563_180 = value; Il2CppCodeGenWriteBarrier((void**)(&___text1234563_180), (void*)value); } }; // LitJson.Lexer struct Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC : public RuntimeObject { public: // System.Boolean LitJson.Lexer::allow_comments bool ___allow_comments_2; // System.Boolean LitJson.Lexer::allow_single_quoted_strings bool ___allow_single_quoted_strings_3; // System.Boolean LitJson.Lexer::end_of_input bool ___end_of_input_4; // LitJson.FsmContext LitJson.Lexer::fsm_context FsmContext_tE104D61BAAFA7B6F000FCC1D1C281359A2D3C5B0 * ___fsm_context_5; // System.Int32 LitJson.Lexer::input_buffer int32_t ___input_buffer_6; // System.Int32 LitJson.Lexer::input_char int32_t ___input_char_7; // System.IO.TextReader LitJson.Lexer::reader TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * ___reader_8; // System.Int32 LitJson.Lexer::state int32_t ___state_9; // System.Text.StringBuilder LitJson.Lexer::string_buffer StringBuilder_t * ___string_buffer_10; // System.String LitJson.Lexer::string_value String_t* ___string_value_11; // System.Int32 LitJson.Lexer::token int32_t ___token_12; // System.Int32 LitJson.Lexer::unichar int32_t ___unichar_13; public: inline static int32_t get_offset_of_allow_comments_2() { return static_cast(offsetof(Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC, ___allow_comments_2)); } inline bool get_allow_comments_2() const { return ___allow_comments_2; } inline bool* get_address_of_allow_comments_2() { return &___allow_comments_2; } inline void set_allow_comments_2(bool value) { ___allow_comments_2 = value; } inline static int32_t get_offset_of_allow_single_quoted_strings_3() { return static_cast(offsetof(Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC, ___allow_single_quoted_strings_3)); } inline bool get_allow_single_quoted_strings_3() const { return ___allow_single_quoted_strings_3; } inline bool* get_address_of_allow_single_quoted_strings_3() { return &___allow_single_quoted_strings_3; } inline void set_allow_single_quoted_strings_3(bool value) { ___allow_single_quoted_strings_3 = value; } inline static int32_t get_offset_of_end_of_input_4() { return static_cast(offsetof(Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC, ___end_of_input_4)); } inline bool get_end_of_input_4() const { return ___end_of_input_4; } inline bool* get_address_of_end_of_input_4() { return &___end_of_input_4; } inline void set_end_of_input_4(bool value) { ___end_of_input_4 = value; } inline static int32_t get_offset_of_fsm_context_5() { return static_cast(offsetof(Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC, ___fsm_context_5)); } inline FsmContext_tE104D61BAAFA7B6F000FCC1D1C281359A2D3C5B0 * get_fsm_context_5() const { return ___fsm_context_5; } inline FsmContext_tE104D61BAAFA7B6F000FCC1D1C281359A2D3C5B0 ** get_address_of_fsm_context_5() { return &___fsm_context_5; } inline void set_fsm_context_5(FsmContext_tE104D61BAAFA7B6F000FCC1D1C281359A2D3C5B0 * value) { ___fsm_context_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___fsm_context_5), (void*)value); } inline static int32_t get_offset_of_input_buffer_6() { return static_cast(offsetof(Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC, ___input_buffer_6)); } inline int32_t get_input_buffer_6() const { return ___input_buffer_6; } inline int32_t* get_address_of_input_buffer_6() { return &___input_buffer_6; } inline void set_input_buffer_6(int32_t value) { ___input_buffer_6 = value; } inline static int32_t get_offset_of_input_char_7() { return static_cast(offsetof(Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC, ___input_char_7)); } inline int32_t get_input_char_7() const { return ___input_char_7; } inline int32_t* get_address_of_input_char_7() { return &___input_char_7; } inline void set_input_char_7(int32_t value) { ___input_char_7 = value; } inline static int32_t get_offset_of_reader_8() { return static_cast(offsetof(Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC, ___reader_8)); } inline TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * get_reader_8() const { return ___reader_8; } inline TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F ** get_address_of_reader_8() { return &___reader_8; } inline void set_reader_8(TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * value) { ___reader_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___reader_8), (void*)value); } inline static int32_t get_offset_of_state_9() { return static_cast(offsetof(Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC, ___state_9)); } inline int32_t get_state_9() const { return ___state_9; } inline int32_t* get_address_of_state_9() { return &___state_9; } inline void set_state_9(int32_t value) { ___state_9 = value; } inline static int32_t get_offset_of_string_buffer_10() { return static_cast(offsetof(Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC, ___string_buffer_10)); } inline StringBuilder_t * get_string_buffer_10() const { return ___string_buffer_10; } inline StringBuilder_t ** get_address_of_string_buffer_10() { return &___string_buffer_10; } inline void set_string_buffer_10(StringBuilder_t * value) { ___string_buffer_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___string_buffer_10), (void*)value); } inline static int32_t get_offset_of_string_value_11() { return static_cast(offsetof(Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC, ___string_value_11)); } inline String_t* get_string_value_11() const { return ___string_value_11; } inline String_t** get_address_of_string_value_11() { return &___string_value_11; } inline void set_string_value_11(String_t* value) { ___string_value_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___string_value_11), (void*)value); } inline static int32_t get_offset_of_token_12() { return static_cast(offsetof(Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC, ___token_12)); } inline int32_t get_token_12() const { return ___token_12; } inline int32_t* get_address_of_token_12() { return &___token_12; } inline void set_token_12(int32_t value) { ___token_12 = value; } inline static int32_t get_offset_of_unichar_13() { return static_cast(offsetof(Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC, ___unichar_13)); } inline int32_t get_unichar_13() const { return ___unichar_13; } inline int32_t* get_address_of_unichar_13() { return &___unichar_13; } inline void set_unichar_13(int32_t value) { ___unichar_13 = value; } }; struct Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC_StaticFields { public: // System.Int32[] LitJson.Lexer::fsm_return_table Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___fsm_return_table_0; // LitJson.Lexer/StateHandler[] LitJson.Lexer::fsm_handler_table StateHandlerU5BU5D_t55036B08F2F919EA20F0804A50ED9752ABD09F41* ___fsm_handler_table_1; public: inline static int32_t get_offset_of_fsm_return_table_0() { return static_cast(offsetof(Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC_StaticFields, ___fsm_return_table_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_fsm_return_table_0() const { return ___fsm_return_table_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_fsm_return_table_0() { return &___fsm_return_table_0; } inline void set_fsm_return_table_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___fsm_return_table_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___fsm_return_table_0), (void*)value); } inline static int32_t get_offset_of_fsm_handler_table_1() { return static_cast(offsetof(Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC_StaticFields, ___fsm_handler_table_1)); } inline StateHandlerU5BU5D_t55036B08F2F919EA20F0804A50ED9752ABD09F41* get_fsm_handler_table_1() const { return ___fsm_handler_table_1; } inline StateHandlerU5BU5D_t55036B08F2F919EA20F0804A50ED9752ABD09F41** get_address_of_fsm_handler_table_1() { return &___fsm_handler_table_1; } inline void set_fsm_handler_table_1(StateHandlerU5BU5D_t55036B08F2F919EA20F0804A50ED9752ABD09F41* value) { ___fsm_handler_table_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___fsm_handler_table_1), (void*)value); } }; // System.MarshalByRefObject struct MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 : public RuntimeObject { public: // System.Object System.MarshalByRefObject::_identity RuntimeObject * ____identity_0; public: inline static int32_t get_offset_of__identity_0() { return static_cast(offsetof(MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8, ____identity_0)); } inline RuntimeObject * get__identity_0() const { return ____identity_0; } inline RuntimeObject ** get_address_of__identity_0() { return &____identity_0; } inline void set__identity_0(RuntimeObject * value) { ____identity_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____identity_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.MarshalByRefObject struct MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8_marshaled_pinvoke { Il2CppIUnknown* ____identity_0; }; // Native definition for COM marshalling of System.MarshalByRefObject struct MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8_marshaled_com { Il2CppIUnknown* ____identity_0; }; // System.Reflection.MemberInfo struct MemberInfo_t : public RuntimeObject { public: public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.MqvPrivateParameters struct MqvPrivateParameters_t5FC169BF7E9130DEB59D0A3E198847975BE0DE87 : public RuntimeObject { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.MqvPrivateParameters::staticPrivateKey ECPrivateKeyParameters_t4F22D9A57AC7E670B61E096835534ECE1D259029 * ___staticPrivateKey_0; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.MqvPrivateParameters::ephemeralPrivateKey ECPrivateKeyParameters_t4F22D9A57AC7E670B61E096835534ECE1D259029 * ___ephemeralPrivateKey_1; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.MqvPrivateParameters::ephemeralPublicKey ECPublicKeyParameters_tB75EB7F71DB6B346048D07C4EC9D4968988F92FB * ___ephemeralPublicKey_2; public: inline static int32_t get_offset_of_staticPrivateKey_0() { return static_cast(offsetof(MqvPrivateParameters_t5FC169BF7E9130DEB59D0A3E198847975BE0DE87, ___staticPrivateKey_0)); } inline ECPrivateKeyParameters_t4F22D9A57AC7E670B61E096835534ECE1D259029 * get_staticPrivateKey_0() const { return ___staticPrivateKey_0; } inline ECPrivateKeyParameters_t4F22D9A57AC7E670B61E096835534ECE1D259029 ** get_address_of_staticPrivateKey_0() { return &___staticPrivateKey_0; } inline void set_staticPrivateKey_0(ECPrivateKeyParameters_t4F22D9A57AC7E670B61E096835534ECE1D259029 * value) { ___staticPrivateKey_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___staticPrivateKey_0), (void*)value); } inline static int32_t get_offset_of_ephemeralPrivateKey_1() { return static_cast(offsetof(MqvPrivateParameters_t5FC169BF7E9130DEB59D0A3E198847975BE0DE87, ___ephemeralPrivateKey_1)); } inline ECPrivateKeyParameters_t4F22D9A57AC7E670B61E096835534ECE1D259029 * get_ephemeralPrivateKey_1() const { return ___ephemeralPrivateKey_1; } inline ECPrivateKeyParameters_t4F22D9A57AC7E670B61E096835534ECE1D259029 ** get_address_of_ephemeralPrivateKey_1() { return &___ephemeralPrivateKey_1; } inline void set_ephemeralPrivateKey_1(ECPrivateKeyParameters_t4F22D9A57AC7E670B61E096835534ECE1D259029 * value) { ___ephemeralPrivateKey_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___ephemeralPrivateKey_1), (void*)value); } inline static int32_t get_offset_of_ephemeralPublicKey_2() { return static_cast(offsetof(MqvPrivateParameters_t5FC169BF7E9130DEB59D0A3E198847975BE0DE87, ___ephemeralPublicKey_2)); } inline ECPublicKeyParameters_tB75EB7F71DB6B346048D07C4EC9D4968988F92FB * get_ephemeralPublicKey_2() const { return ___ephemeralPublicKey_2; } inline ECPublicKeyParameters_tB75EB7F71DB6B346048D07C4EC9D4968988F92FB ** get_address_of_ephemeralPublicKey_2() { return &___ephemeralPublicKey_2; } inline void set_ephemeralPublicKey_2(ECPublicKeyParameters_tB75EB7F71DB6B346048D07C4EC9D4968988F92FB * value) { ___ephemeralPublicKey_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___ephemeralPublicKey_2), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.MqvPublicParameters struct MqvPublicParameters_t45CD88AB7EC58154D669C5D5D68FC11F9BEE6680 : public RuntimeObject { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.MqvPublicParameters::staticPublicKey ECPublicKeyParameters_tB75EB7F71DB6B346048D07C4EC9D4968988F92FB * ___staticPublicKey_0; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.MqvPublicParameters::ephemeralPublicKey ECPublicKeyParameters_tB75EB7F71DB6B346048D07C4EC9D4968988F92FB * ___ephemeralPublicKey_1; public: inline static int32_t get_offset_of_staticPublicKey_0() { return static_cast(offsetof(MqvPublicParameters_t45CD88AB7EC58154D669C5D5D68FC11F9BEE6680, ___staticPublicKey_0)); } inline ECPublicKeyParameters_tB75EB7F71DB6B346048D07C4EC9D4968988F92FB * get_staticPublicKey_0() const { return ___staticPublicKey_0; } inline ECPublicKeyParameters_tB75EB7F71DB6B346048D07C4EC9D4968988F92FB ** get_address_of_staticPublicKey_0() { return &___staticPublicKey_0; } inline void set_staticPublicKey_0(ECPublicKeyParameters_tB75EB7F71DB6B346048D07C4EC9D4968988F92FB * value) { ___staticPublicKey_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___staticPublicKey_0), (void*)value); } inline static int32_t get_offset_of_ephemeralPublicKey_1() { return static_cast(offsetof(MqvPublicParameters_t45CD88AB7EC58154D669C5D5D68FC11F9BEE6680, ___ephemeralPublicKey_1)); } inline ECPublicKeyParameters_tB75EB7F71DB6B346048D07C4EC9D4968988F92FB * get_ephemeralPublicKey_1() const { return ___ephemeralPublicKey_1; } inline ECPublicKeyParameters_tB75EB7F71DB6B346048D07C4EC9D4968988F92FB ** get_address_of_ephemeralPublicKey_1() { return &___ephemeralPublicKey_1; } inline void set_ephemeralPublicKey_1(ECPublicKeyParameters_tB75EB7F71DB6B346048D07C4EC9D4968988F92FB * value) { ___ephemeralPublicKey_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___ephemeralPublicKey_1), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers struct NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA : public RuntimeObject { public: public: }; struct NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::NistAlgorithm DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___NistAlgorithm_0; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::HashAlgs DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___HashAlgs_1; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdSha256 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdSha256_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdSha384 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdSha384_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdSha512 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdSha512_4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdSha224 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdSha224_5; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdSha512_224 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdSha512_224_6; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdSha512_256 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdSha512_256_7; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdSha3_224 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdSha3_224_8; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdSha3_256 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdSha3_256_9; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdSha3_384 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdSha3_384_10; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdSha3_512 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdSha3_512_11; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdShake128 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdShake128_12; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdShake256 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdShake256_13; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdHMacWithSha3_224 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdHMacWithSha3_224_14; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdHMacWithSha3_256 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdHMacWithSha3_256_15; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdHMacWithSha3_384 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdHMacWithSha3_384_16; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdHMacWithSha3_512 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdHMacWithSha3_512_17; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::Aes DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Aes_18; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes128Ecb DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAes128Ecb_19; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes128Cbc DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAes128Cbc_20; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes128Ofb DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAes128Ofb_21; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes128Cfb DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAes128Cfb_22; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes128Wrap DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAes128Wrap_23; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes128Gcm DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAes128Gcm_24; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes128Ccm DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAes128Ccm_25; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes192Ecb DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAes192Ecb_26; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes192Cbc DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAes192Cbc_27; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes192Ofb DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAes192Ofb_28; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes192Cfb DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAes192Cfb_29; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes192Wrap DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAes192Wrap_30; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes192Gcm DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAes192Gcm_31; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes192Ccm DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAes192Ccm_32; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes256Ecb DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAes256Ecb_33; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes256Cbc DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAes256Cbc_34; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes256Ofb DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAes256Ofb_35; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes256Cfb DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAes256Cfb_36; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes256Wrap DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAes256Wrap_37; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes256Gcm DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAes256Gcm_38; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes256Ccm DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAes256Ccm_39; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdDsaWithSha2 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdDsaWithSha2_40; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::DsaWithSha224 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DsaWithSha224_41; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::DsaWithSha256 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DsaWithSha256_42; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::DsaWithSha384 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DsaWithSha384_43; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::DsaWithSha512 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DsaWithSha512_44; public: inline static int32_t get_offset_of_NistAlgorithm_0() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___NistAlgorithm_0)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_NistAlgorithm_0() const { return ___NistAlgorithm_0; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_NistAlgorithm_0() { return &___NistAlgorithm_0; } inline void set_NistAlgorithm_0(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___NistAlgorithm_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___NistAlgorithm_0), (void*)value); } inline static int32_t get_offset_of_HashAlgs_1() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___HashAlgs_1)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_HashAlgs_1() const { return ___HashAlgs_1; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_HashAlgs_1() { return &___HashAlgs_1; } inline void set_HashAlgs_1(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___HashAlgs_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___HashAlgs_1), (void*)value); } inline static int32_t get_offset_of_IdSha256_2() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdSha256_2)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdSha256_2() const { return ___IdSha256_2; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdSha256_2() { return &___IdSha256_2; } inline void set_IdSha256_2(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdSha256_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdSha256_2), (void*)value); } inline static int32_t get_offset_of_IdSha384_3() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdSha384_3)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdSha384_3() const { return ___IdSha384_3; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdSha384_3() { return &___IdSha384_3; } inline void set_IdSha384_3(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdSha384_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdSha384_3), (void*)value); } inline static int32_t get_offset_of_IdSha512_4() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdSha512_4)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdSha512_4() const { return ___IdSha512_4; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdSha512_4() { return &___IdSha512_4; } inline void set_IdSha512_4(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdSha512_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdSha512_4), (void*)value); } inline static int32_t get_offset_of_IdSha224_5() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdSha224_5)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdSha224_5() const { return ___IdSha224_5; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdSha224_5() { return &___IdSha224_5; } inline void set_IdSha224_5(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdSha224_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdSha224_5), (void*)value); } inline static int32_t get_offset_of_IdSha512_224_6() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdSha512_224_6)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdSha512_224_6() const { return ___IdSha512_224_6; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdSha512_224_6() { return &___IdSha512_224_6; } inline void set_IdSha512_224_6(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdSha512_224_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdSha512_224_6), (void*)value); } inline static int32_t get_offset_of_IdSha512_256_7() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdSha512_256_7)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdSha512_256_7() const { return ___IdSha512_256_7; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdSha512_256_7() { return &___IdSha512_256_7; } inline void set_IdSha512_256_7(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdSha512_256_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdSha512_256_7), (void*)value); } inline static int32_t get_offset_of_IdSha3_224_8() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdSha3_224_8)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdSha3_224_8() const { return ___IdSha3_224_8; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdSha3_224_8() { return &___IdSha3_224_8; } inline void set_IdSha3_224_8(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdSha3_224_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdSha3_224_8), (void*)value); } inline static int32_t get_offset_of_IdSha3_256_9() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdSha3_256_9)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdSha3_256_9() const { return ___IdSha3_256_9; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdSha3_256_9() { return &___IdSha3_256_9; } inline void set_IdSha3_256_9(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdSha3_256_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdSha3_256_9), (void*)value); } inline static int32_t get_offset_of_IdSha3_384_10() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdSha3_384_10)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdSha3_384_10() const { return ___IdSha3_384_10; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdSha3_384_10() { return &___IdSha3_384_10; } inline void set_IdSha3_384_10(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdSha3_384_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdSha3_384_10), (void*)value); } inline static int32_t get_offset_of_IdSha3_512_11() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdSha3_512_11)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdSha3_512_11() const { return ___IdSha3_512_11; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdSha3_512_11() { return &___IdSha3_512_11; } inline void set_IdSha3_512_11(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdSha3_512_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdSha3_512_11), (void*)value); } inline static int32_t get_offset_of_IdShake128_12() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdShake128_12)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdShake128_12() const { return ___IdShake128_12; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdShake128_12() { return &___IdShake128_12; } inline void set_IdShake128_12(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdShake128_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdShake128_12), (void*)value); } inline static int32_t get_offset_of_IdShake256_13() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdShake256_13)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdShake256_13() const { return ___IdShake256_13; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdShake256_13() { return &___IdShake256_13; } inline void set_IdShake256_13(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdShake256_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdShake256_13), (void*)value); } inline static int32_t get_offset_of_IdHMacWithSha3_224_14() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdHMacWithSha3_224_14)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdHMacWithSha3_224_14() const { return ___IdHMacWithSha3_224_14; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdHMacWithSha3_224_14() { return &___IdHMacWithSha3_224_14; } inline void set_IdHMacWithSha3_224_14(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdHMacWithSha3_224_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdHMacWithSha3_224_14), (void*)value); } inline static int32_t get_offset_of_IdHMacWithSha3_256_15() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdHMacWithSha3_256_15)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdHMacWithSha3_256_15() const { return ___IdHMacWithSha3_256_15; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdHMacWithSha3_256_15() { return &___IdHMacWithSha3_256_15; } inline void set_IdHMacWithSha3_256_15(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdHMacWithSha3_256_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdHMacWithSha3_256_15), (void*)value); } inline static int32_t get_offset_of_IdHMacWithSha3_384_16() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdHMacWithSha3_384_16)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdHMacWithSha3_384_16() const { return ___IdHMacWithSha3_384_16; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdHMacWithSha3_384_16() { return &___IdHMacWithSha3_384_16; } inline void set_IdHMacWithSha3_384_16(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdHMacWithSha3_384_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdHMacWithSha3_384_16), (void*)value); } inline static int32_t get_offset_of_IdHMacWithSha3_512_17() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdHMacWithSha3_512_17)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdHMacWithSha3_512_17() const { return ___IdHMacWithSha3_512_17; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdHMacWithSha3_512_17() { return &___IdHMacWithSha3_512_17; } inline void set_IdHMacWithSha3_512_17(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdHMacWithSha3_512_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdHMacWithSha3_512_17), (void*)value); } inline static int32_t get_offset_of_Aes_18() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___Aes_18)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Aes_18() const { return ___Aes_18; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Aes_18() { return &___Aes_18; } inline void set_Aes_18(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Aes_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___Aes_18), (void*)value); } inline static int32_t get_offset_of_IdAes128Ecb_19() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdAes128Ecb_19)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAes128Ecb_19() const { return ___IdAes128Ecb_19; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAes128Ecb_19() { return &___IdAes128Ecb_19; } inline void set_IdAes128Ecb_19(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAes128Ecb_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAes128Ecb_19), (void*)value); } inline static int32_t get_offset_of_IdAes128Cbc_20() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdAes128Cbc_20)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAes128Cbc_20() const { return ___IdAes128Cbc_20; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAes128Cbc_20() { return &___IdAes128Cbc_20; } inline void set_IdAes128Cbc_20(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAes128Cbc_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAes128Cbc_20), (void*)value); } inline static int32_t get_offset_of_IdAes128Ofb_21() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdAes128Ofb_21)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAes128Ofb_21() const { return ___IdAes128Ofb_21; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAes128Ofb_21() { return &___IdAes128Ofb_21; } inline void set_IdAes128Ofb_21(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAes128Ofb_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAes128Ofb_21), (void*)value); } inline static int32_t get_offset_of_IdAes128Cfb_22() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdAes128Cfb_22)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAes128Cfb_22() const { return ___IdAes128Cfb_22; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAes128Cfb_22() { return &___IdAes128Cfb_22; } inline void set_IdAes128Cfb_22(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAes128Cfb_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAes128Cfb_22), (void*)value); } inline static int32_t get_offset_of_IdAes128Wrap_23() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdAes128Wrap_23)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAes128Wrap_23() const { return ___IdAes128Wrap_23; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAes128Wrap_23() { return &___IdAes128Wrap_23; } inline void set_IdAes128Wrap_23(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAes128Wrap_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAes128Wrap_23), (void*)value); } inline static int32_t get_offset_of_IdAes128Gcm_24() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdAes128Gcm_24)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAes128Gcm_24() const { return ___IdAes128Gcm_24; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAes128Gcm_24() { return &___IdAes128Gcm_24; } inline void set_IdAes128Gcm_24(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAes128Gcm_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAes128Gcm_24), (void*)value); } inline static int32_t get_offset_of_IdAes128Ccm_25() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdAes128Ccm_25)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAes128Ccm_25() const { return ___IdAes128Ccm_25; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAes128Ccm_25() { return &___IdAes128Ccm_25; } inline void set_IdAes128Ccm_25(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAes128Ccm_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAes128Ccm_25), (void*)value); } inline static int32_t get_offset_of_IdAes192Ecb_26() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdAes192Ecb_26)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAes192Ecb_26() const { return ___IdAes192Ecb_26; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAes192Ecb_26() { return &___IdAes192Ecb_26; } inline void set_IdAes192Ecb_26(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAes192Ecb_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAes192Ecb_26), (void*)value); } inline static int32_t get_offset_of_IdAes192Cbc_27() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdAes192Cbc_27)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAes192Cbc_27() const { return ___IdAes192Cbc_27; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAes192Cbc_27() { return &___IdAes192Cbc_27; } inline void set_IdAes192Cbc_27(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAes192Cbc_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAes192Cbc_27), (void*)value); } inline static int32_t get_offset_of_IdAes192Ofb_28() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdAes192Ofb_28)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAes192Ofb_28() const { return ___IdAes192Ofb_28; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAes192Ofb_28() { return &___IdAes192Ofb_28; } inline void set_IdAes192Ofb_28(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAes192Ofb_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAes192Ofb_28), (void*)value); } inline static int32_t get_offset_of_IdAes192Cfb_29() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdAes192Cfb_29)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAes192Cfb_29() const { return ___IdAes192Cfb_29; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAes192Cfb_29() { return &___IdAes192Cfb_29; } inline void set_IdAes192Cfb_29(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAes192Cfb_29 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAes192Cfb_29), (void*)value); } inline static int32_t get_offset_of_IdAes192Wrap_30() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdAes192Wrap_30)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAes192Wrap_30() const { return ___IdAes192Wrap_30; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAes192Wrap_30() { return &___IdAes192Wrap_30; } inline void set_IdAes192Wrap_30(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAes192Wrap_30 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAes192Wrap_30), (void*)value); } inline static int32_t get_offset_of_IdAes192Gcm_31() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdAes192Gcm_31)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAes192Gcm_31() const { return ___IdAes192Gcm_31; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAes192Gcm_31() { return &___IdAes192Gcm_31; } inline void set_IdAes192Gcm_31(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAes192Gcm_31 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAes192Gcm_31), (void*)value); } inline static int32_t get_offset_of_IdAes192Ccm_32() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdAes192Ccm_32)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAes192Ccm_32() const { return ___IdAes192Ccm_32; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAes192Ccm_32() { return &___IdAes192Ccm_32; } inline void set_IdAes192Ccm_32(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAes192Ccm_32 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAes192Ccm_32), (void*)value); } inline static int32_t get_offset_of_IdAes256Ecb_33() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdAes256Ecb_33)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAes256Ecb_33() const { return ___IdAes256Ecb_33; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAes256Ecb_33() { return &___IdAes256Ecb_33; } inline void set_IdAes256Ecb_33(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAes256Ecb_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAes256Ecb_33), (void*)value); } inline static int32_t get_offset_of_IdAes256Cbc_34() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdAes256Cbc_34)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAes256Cbc_34() const { return ___IdAes256Cbc_34; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAes256Cbc_34() { return &___IdAes256Cbc_34; } inline void set_IdAes256Cbc_34(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAes256Cbc_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAes256Cbc_34), (void*)value); } inline static int32_t get_offset_of_IdAes256Ofb_35() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdAes256Ofb_35)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAes256Ofb_35() const { return ___IdAes256Ofb_35; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAes256Ofb_35() { return &___IdAes256Ofb_35; } inline void set_IdAes256Ofb_35(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAes256Ofb_35 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAes256Ofb_35), (void*)value); } inline static int32_t get_offset_of_IdAes256Cfb_36() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdAes256Cfb_36)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAes256Cfb_36() const { return ___IdAes256Cfb_36; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAes256Cfb_36() { return &___IdAes256Cfb_36; } inline void set_IdAes256Cfb_36(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAes256Cfb_36 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAes256Cfb_36), (void*)value); } inline static int32_t get_offset_of_IdAes256Wrap_37() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdAes256Wrap_37)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAes256Wrap_37() const { return ___IdAes256Wrap_37; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAes256Wrap_37() { return &___IdAes256Wrap_37; } inline void set_IdAes256Wrap_37(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAes256Wrap_37 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAes256Wrap_37), (void*)value); } inline static int32_t get_offset_of_IdAes256Gcm_38() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdAes256Gcm_38)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAes256Gcm_38() const { return ___IdAes256Gcm_38; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAes256Gcm_38() { return &___IdAes256Gcm_38; } inline void set_IdAes256Gcm_38(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAes256Gcm_38 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAes256Gcm_38), (void*)value); } inline static int32_t get_offset_of_IdAes256Ccm_39() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdAes256Ccm_39)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAes256Ccm_39() const { return ___IdAes256Ccm_39; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAes256Ccm_39() { return &___IdAes256Ccm_39; } inline void set_IdAes256Ccm_39(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAes256Ccm_39 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAes256Ccm_39), (void*)value); } inline static int32_t get_offset_of_IdDsaWithSha2_40() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdDsaWithSha2_40)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdDsaWithSha2_40() const { return ___IdDsaWithSha2_40; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdDsaWithSha2_40() { return &___IdDsaWithSha2_40; } inline void set_IdDsaWithSha2_40(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdDsaWithSha2_40 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdDsaWithSha2_40), (void*)value); } inline static int32_t get_offset_of_DsaWithSha224_41() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___DsaWithSha224_41)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DsaWithSha224_41() const { return ___DsaWithSha224_41; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DsaWithSha224_41() { return &___DsaWithSha224_41; } inline void set_DsaWithSha224_41(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DsaWithSha224_41 = value; Il2CppCodeGenWriteBarrier((void**)(&___DsaWithSha224_41), (void*)value); } inline static int32_t get_offset_of_DsaWithSha256_42() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___DsaWithSha256_42)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DsaWithSha256_42() const { return ___DsaWithSha256_42; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DsaWithSha256_42() { return &___DsaWithSha256_42; } inline void set_DsaWithSha256_42(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DsaWithSha256_42 = value; Il2CppCodeGenWriteBarrier((void**)(&___DsaWithSha256_42), (void*)value); } inline static int32_t get_offset_of_DsaWithSha384_43() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___DsaWithSha384_43)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DsaWithSha384_43() const { return ___DsaWithSha384_43; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DsaWithSha384_43() { return &___DsaWithSha384_43; } inline void set_DsaWithSha384_43(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DsaWithSha384_43 = value; Il2CppCodeGenWriteBarrier((void**)(&___DsaWithSha384_43), (void*)value); } inline static int32_t get_offset_of_DsaWithSha512_44() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___DsaWithSha512_44)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DsaWithSha512_44() const { return ___DsaWithSha512_44; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DsaWithSha512_44() { return &___DsaWithSha512_44; } inline void set_DsaWithSha512_44(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DsaWithSha512_44 = value; Il2CppCodeGenWriteBarrier((void**)(&___DsaWithSha512_44), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Ntt.NttObjectIdentifiers struct NttObjectIdentifiers_tC71ED857CCE3FB6613DDC764A2350C3561807317 : public RuntimeObject { public: public: }; struct NttObjectIdentifiers_tC71ED857CCE3FB6613DDC764A2350C3561807317_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Ntt.NttObjectIdentifiers::IdCamellia128Cbc DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdCamellia128Cbc_0; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Ntt.NttObjectIdentifiers::IdCamellia192Cbc DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdCamellia192Cbc_1; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Ntt.NttObjectIdentifiers::IdCamellia256Cbc DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdCamellia256Cbc_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Ntt.NttObjectIdentifiers::IdCamellia128Wrap DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdCamellia128Wrap_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Ntt.NttObjectIdentifiers::IdCamellia192Wrap DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdCamellia192Wrap_4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Ntt.NttObjectIdentifiers::IdCamellia256Wrap DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdCamellia256Wrap_5; public: inline static int32_t get_offset_of_IdCamellia128Cbc_0() { return static_cast(offsetof(NttObjectIdentifiers_tC71ED857CCE3FB6613DDC764A2350C3561807317_StaticFields, ___IdCamellia128Cbc_0)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdCamellia128Cbc_0() const { return ___IdCamellia128Cbc_0; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdCamellia128Cbc_0() { return &___IdCamellia128Cbc_0; } inline void set_IdCamellia128Cbc_0(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdCamellia128Cbc_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdCamellia128Cbc_0), (void*)value); } inline static int32_t get_offset_of_IdCamellia192Cbc_1() { return static_cast(offsetof(NttObjectIdentifiers_tC71ED857CCE3FB6613DDC764A2350C3561807317_StaticFields, ___IdCamellia192Cbc_1)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdCamellia192Cbc_1() const { return ___IdCamellia192Cbc_1; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdCamellia192Cbc_1() { return &___IdCamellia192Cbc_1; } inline void set_IdCamellia192Cbc_1(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdCamellia192Cbc_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdCamellia192Cbc_1), (void*)value); } inline static int32_t get_offset_of_IdCamellia256Cbc_2() { return static_cast(offsetof(NttObjectIdentifiers_tC71ED857CCE3FB6613DDC764A2350C3561807317_StaticFields, ___IdCamellia256Cbc_2)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdCamellia256Cbc_2() const { return ___IdCamellia256Cbc_2; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdCamellia256Cbc_2() { return &___IdCamellia256Cbc_2; } inline void set_IdCamellia256Cbc_2(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdCamellia256Cbc_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdCamellia256Cbc_2), (void*)value); } inline static int32_t get_offset_of_IdCamellia128Wrap_3() { return static_cast(offsetof(NttObjectIdentifiers_tC71ED857CCE3FB6613DDC764A2350C3561807317_StaticFields, ___IdCamellia128Wrap_3)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdCamellia128Wrap_3() const { return ___IdCamellia128Wrap_3; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdCamellia128Wrap_3() { return &___IdCamellia128Wrap_3; } inline void set_IdCamellia128Wrap_3(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdCamellia128Wrap_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdCamellia128Wrap_3), (void*)value); } inline static int32_t get_offset_of_IdCamellia192Wrap_4() { return static_cast(offsetof(NttObjectIdentifiers_tC71ED857CCE3FB6613DDC764A2350C3561807317_StaticFields, ___IdCamellia192Wrap_4)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdCamellia192Wrap_4() const { return ___IdCamellia192Wrap_4; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdCamellia192Wrap_4() { return &___IdCamellia192Wrap_4; } inline void set_IdCamellia192Wrap_4(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdCamellia192Wrap_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdCamellia192Wrap_4), (void*)value); } inline static int32_t get_offset_of_IdCamellia256Wrap_5() { return static_cast(offsetof(NttObjectIdentifiers_tC71ED857CCE3FB6613DDC764A2350C3561807317_StaticFields, ___IdCamellia256Wrap_5)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdCamellia256Wrap_5() const { return ___IdCamellia256Wrap_5; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdCamellia256Wrap_5() { return &___IdCamellia256Wrap_5; } inline void set_IdCamellia256Wrap_5(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdCamellia256Wrap_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdCamellia256Wrap_5), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ParametersWithIV struct ParametersWithIV_tD5AFAE97C3F7DA4A08BC278F9AC969DA957E87A0 : public RuntimeObject { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ICipherParameters BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ParametersWithIV::parameters RuntimeObject* ___parameters_0; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ParametersWithIV::iv ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___iv_1; public: inline static int32_t get_offset_of_parameters_0() { return static_cast(offsetof(ParametersWithIV_tD5AFAE97C3F7DA4A08BC278F9AC969DA957E87A0, ___parameters_0)); } inline RuntimeObject* get_parameters_0() const { return ___parameters_0; } inline RuntimeObject** get_address_of_parameters_0() { return &___parameters_0; } inline void set_parameters_0(RuntimeObject* value) { ___parameters_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___parameters_0), (void*)value); } inline static int32_t get_offset_of_iv_1() { return static_cast(offsetof(ParametersWithIV_tD5AFAE97C3F7DA4A08BC278F9AC969DA957E87A0, ___iv_1)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_iv_1() const { return ___iv_1; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_iv_1() { return &___iv_1; } inline void set_iv_1(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___iv_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___iv_1), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ParametersWithRandom struct ParametersWithRandom_t557A9B373F5F2998BE6C0461812FBE4EB73425AC : public RuntimeObject { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ICipherParameters BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ParametersWithRandom::parameters RuntimeObject* ___parameters_0; // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ParametersWithRandom::random SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * ___random_1; public: inline static int32_t get_offset_of_parameters_0() { return static_cast(offsetof(ParametersWithRandom_t557A9B373F5F2998BE6C0461812FBE4EB73425AC, ___parameters_0)); } inline RuntimeObject* get_parameters_0() const { return ___parameters_0; } inline RuntimeObject** get_address_of_parameters_0() { return &___parameters_0; } inline void set_parameters_0(RuntimeObject* value) { ___parameters_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___parameters_0), (void*)value); } inline static int32_t get_offset_of_random_1() { return static_cast(offsetof(ParametersWithRandom_t557A9B373F5F2998BE6C0461812FBE4EB73425AC, ___random_1)); } inline SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * get_random_1() const { return ___random_1; } inline SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 ** get_address_of_random_1() { return &___random_1; } inline void set_random_1(SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * value) { ___random_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___random_1), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers struct PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516 : public RuntimeObject { public: public: }; struct PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs1Oid DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Pkcs1Oid_1; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::RsaEncryption DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___RsaEncryption_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::MD2WithRsaEncryption DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___MD2WithRsaEncryption_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::MD4WithRsaEncryption DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___MD4WithRsaEncryption_4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::MD5WithRsaEncryption DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___MD5WithRsaEncryption_5; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Sha1WithRsaEncryption DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Sha1WithRsaEncryption_6; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::SrsaOaepEncryptionSet DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___SrsaOaepEncryptionSet_7; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdRsaesOaep DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdRsaesOaep_8; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdMgf1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdMgf1_9; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdPSpecified DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdPSpecified_10; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdRsassaPss DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdRsassaPss_11; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Sha256WithRsaEncryption DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Sha256WithRsaEncryption_12; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Sha384WithRsaEncryption DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Sha384WithRsaEncryption_13; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Sha512WithRsaEncryption DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Sha512WithRsaEncryption_14; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Sha224WithRsaEncryption DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Sha224WithRsaEncryption_15; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Sha512_224WithRSAEncryption DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Sha512_224WithRSAEncryption_16; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Sha512_256WithRSAEncryption DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Sha512_256WithRSAEncryption_17; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::DhKeyAgreement DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DhKeyAgreement_19; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::PbeWithMD2AndDesCbc DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___PbeWithMD2AndDesCbc_21; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::PbeWithMD2AndRC2Cbc DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___PbeWithMD2AndRC2Cbc_22; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::PbeWithMD5AndDesCbc DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___PbeWithMD5AndDesCbc_23; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::PbeWithMD5AndRC2Cbc DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___PbeWithMD5AndRC2Cbc_24; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::PbeWithSha1AndDesCbc DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___PbeWithSha1AndDesCbc_25; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::PbeWithSha1AndRC2Cbc DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___PbeWithSha1AndRC2Cbc_26; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdPbeS2 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdPbeS2_27; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdPbkdf2 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdPbkdf2_28; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::DesEde3Cbc DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DesEde3Cbc_30; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::RC2Cbc DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___RC2Cbc_31; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::MD2 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___MD2_33; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::MD4 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___MD4_34; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::MD5 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___MD5_35; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdHmacWithSha1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdHmacWithSha1_36; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdHmacWithSha224 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdHmacWithSha224_37; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdHmacWithSha256 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdHmacWithSha256_38; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdHmacWithSha384 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdHmacWithSha384_39; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdHmacWithSha512 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdHmacWithSha512_40; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Data DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Data_42; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::SignedData DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___SignedData_43; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::EnvelopedData DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___EnvelopedData_44; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::SignedAndEnvelopedData DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___SignedAndEnvelopedData_45; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::DigestedData DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DigestedData_46; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::EncryptedData DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___EncryptedData_47; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs9AtEmailAddress DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Pkcs9AtEmailAddress_49; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs9AtUnstructuredName DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Pkcs9AtUnstructuredName_50; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs9AtContentType DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Pkcs9AtContentType_51; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs9AtMessageDigest DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Pkcs9AtMessageDigest_52; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs9AtSigningTime DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Pkcs9AtSigningTime_53; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs9AtCounterSignature DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Pkcs9AtCounterSignature_54; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs9AtChallengePassword DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Pkcs9AtChallengePassword_55; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs9AtUnstructuredAddress DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Pkcs9AtUnstructuredAddress_56; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs9AtExtendedCertificateAttributes DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Pkcs9AtExtendedCertificateAttributes_57; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs9AtSigningDescription DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Pkcs9AtSigningDescription_58; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs9AtExtensionRequest DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Pkcs9AtExtensionRequest_59; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs9AtSmimeCapabilities DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Pkcs9AtSmimeCapabilities_60; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdSmime DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdSmime_61; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs9AtFriendlyName DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Pkcs9AtFriendlyName_62; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs9AtLocalKeyID DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Pkcs9AtLocalKeyID_63; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::X509CertType DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___X509CertType_64; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::X509Certificate DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___X509Certificate_66; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::SdsiCertificate DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___SdsiCertificate_67; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::X509Crl DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___X509Crl_69; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAlg DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAlg_70; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAlgEsdh DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAlgEsdh_71; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAlgCms3DesWrap DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAlgCms3DesWrap_72; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAlgCmsRC2Wrap DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAlgCmsRC2Wrap_73; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAlgPwriKek DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAlgPwriKek_74; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAlgSsdh DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAlgSsdh_75; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdRsaKem DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdRsaKem_76; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::PreferSignedData DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___PreferSignedData_77; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::CannotDecryptAny DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___CannotDecryptAny_78; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::SmimeCapabilitiesVersions DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___SmimeCapabilitiesVersions_79; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAReceiptRequest DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAAReceiptRequest_80; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdCTAuthData DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdCTAuthData_82; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdCTTstInfo DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdCTTstInfo_83; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdCTCompressedData DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdCTCompressedData_84; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdCTAuthEnvelopedData DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdCTAuthEnvelopedData_85; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdCTTimestampedData DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdCTTimestampedData_86; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdCtiEtsProofOfOrigin DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdCtiEtsProofOfOrigin_88; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdCtiEtsProofOfReceipt DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdCtiEtsProofOfReceipt_89; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdCtiEtsProofOfDelivery DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdCtiEtsProofOfDelivery_90; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdCtiEtsProofOfSender DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdCtiEtsProofOfSender_91; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdCtiEtsProofOfApproval DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdCtiEtsProofOfApproval_92; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdCtiEtsProofOfCreation DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdCtiEtsProofOfCreation_93; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAOid DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAAOid_95; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAContentHint DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAAContentHint_96; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAMsgSigDigest DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAAMsgSigDigest_97; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAContentReference DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAAContentReference_98; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAEncrypKeyPref DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAAEncrypKeyPref_99; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAASigningCertificate DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAASigningCertificate_100; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAASigningCertificateV2 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAASigningCertificateV2_101; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAContentIdentifier DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAAContentIdentifier_102; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAASignatureTimeStampToken DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAASignatureTimeStampToken_103; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAEtsSigPolicyID DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAAEtsSigPolicyID_104; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAEtsCommitmentType DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAAEtsCommitmentType_105; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAEtsSignerLocation DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAAEtsSignerLocation_106; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAEtsSignerAttr DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAAEtsSignerAttr_107; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAEtsOtherSigCert DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAAEtsOtherSigCert_108; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAEtsContentTimestamp DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAAEtsContentTimestamp_109; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAEtsCertificateRefs DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAAEtsCertificateRefs_110; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAEtsRevocationRefs DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAAEtsRevocationRefs_111; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAEtsCertValues DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAAEtsCertValues_112; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAEtsRevocationValues DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAAEtsRevocationValues_113; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAEtsEscTimeStamp DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAAEtsEscTimeStamp_114; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAEtsCertCrlTimestamp DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAAEtsCertCrlTimestamp_115; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAEtsArchiveTimestamp DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAAEtsArchiveTimestamp_116; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAADecryptKeyID DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAADecryptKeyID_117; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAImplCryptoAlgs DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAAImplCryptoAlgs_118; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAAsymmDecryptKeyID DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAAAsymmDecryptKeyID_119; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAImplCompressAlgs DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAAImplCompressAlgs_120; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAACommunityIdentifiers DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAACommunityIdentifiers_121; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAASigPolicyID DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAASigPolicyID_122; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAACommitmentType DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAACommitmentType_123; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAASignerLocation DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAASignerLocation_124; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAOtherSigCert DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAAOtherSigCert_125; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdSpqEtsUri DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdSpqEtsUri_127; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdSpqEtsUNotice DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdSpqEtsUNotice_128; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::KeyBag DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___KeyBag_131; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs8ShroudedKeyBag DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Pkcs8ShroudedKeyBag_132; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::CertBag DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___CertBag_133; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::CrlBag DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___CrlBag_134; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::SecretBag DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___SecretBag_135; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::SafeContentsBag DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___SafeContentsBag_136; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::PbeWithShaAnd128BitRC4 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___PbeWithShaAnd128BitRC4_138; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::PbeWithShaAnd40BitRC4 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___PbeWithShaAnd40BitRC4_139; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::PbeWithShaAnd3KeyTripleDesCbc DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___PbeWithShaAnd3KeyTripleDesCbc_140; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::PbeWithShaAnd2KeyTripleDesCbc DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___PbeWithShaAnd2KeyTripleDesCbc_141; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::PbeWithShaAnd128BitRC2Cbc DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___PbeWithShaAnd128BitRC2Cbc_142; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::PbewithShaAnd40BitRC2Cbc DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___PbewithShaAnd40BitRC2Cbc_143; public: inline static int32_t get_offset_of_Pkcs1Oid_1() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___Pkcs1Oid_1)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Pkcs1Oid_1() const { return ___Pkcs1Oid_1; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Pkcs1Oid_1() { return &___Pkcs1Oid_1; } inline void set_Pkcs1Oid_1(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Pkcs1Oid_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Pkcs1Oid_1), (void*)value); } inline static int32_t get_offset_of_RsaEncryption_2() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___RsaEncryption_2)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_RsaEncryption_2() const { return ___RsaEncryption_2; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_RsaEncryption_2() { return &___RsaEncryption_2; } inline void set_RsaEncryption_2(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___RsaEncryption_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___RsaEncryption_2), (void*)value); } inline static int32_t get_offset_of_MD2WithRsaEncryption_3() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___MD2WithRsaEncryption_3)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_MD2WithRsaEncryption_3() const { return ___MD2WithRsaEncryption_3; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_MD2WithRsaEncryption_3() { return &___MD2WithRsaEncryption_3; } inline void set_MD2WithRsaEncryption_3(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___MD2WithRsaEncryption_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___MD2WithRsaEncryption_3), (void*)value); } inline static int32_t get_offset_of_MD4WithRsaEncryption_4() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___MD4WithRsaEncryption_4)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_MD4WithRsaEncryption_4() const { return ___MD4WithRsaEncryption_4; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_MD4WithRsaEncryption_4() { return &___MD4WithRsaEncryption_4; } inline void set_MD4WithRsaEncryption_4(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___MD4WithRsaEncryption_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___MD4WithRsaEncryption_4), (void*)value); } inline static int32_t get_offset_of_MD5WithRsaEncryption_5() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___MD5WithRsaEncryption_5)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_MD5WithRsaEncryption_5() const { return ___MD5WithRsaEncryption_5; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_MD5WithRsaEncryption_5() { return &___MD5WithRsaEncryption_5; } inline void set_MD5WithRsaEncryption_5(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___MD5WithRsaEncryption_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___MD5WithRsaEncryption_5), (void*)value); } inline static int32_t get_offset_of_Sha1WithRsaEncryption_6() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___Sha1WithRsaEncryption_6)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Sha1WithRsaEncryption_6() const { return ___Sha1WithRsaEncryption_6; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Sha1WithRsaEncryption_6() { return &___Sha1WithRsaEncryption_6; } inline void set_Sha1WithRsaEncryption_6(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Sha1WithRsaEncryption_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___Sha1WithRsaEncryption_6), (void*)value); } inline static int32_t get_offset_of_SrsaOaepEncryptionSet_7() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___SrsaOaepEncryptionSet_7)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_SrsaOaepEncryptionSet_7() const { return ___SrsaOaepEncryptionSet_7; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_SrsaOaepEncryptionSet_7() { return &___SrsaOaepEncryptionSet_7; } inline void set_SrsaOaepEncryptionSet_7(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___SrsaOaepEncryptionSet_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___SrsaOaepEncryptionSet_7), (void*)value); } inline static int32_t get_offset_of_IdRsaesOaep_8() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdRsaesOaep_8)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdRsaesOaep_8() const { return ___IdRsaesOaep_8; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdRsaesOaep_8() { return &___IdRsaesOaep_8; } inline void set_IdRsaesOaep_8(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdRsaesOaep_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdRsaesOaep_8), (void*)value); } inline static int32_t get_offset_of_IdMgf1_9() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdMgf1_9)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdMgf1_9() const { return ___IdMgf1_9; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdMgf1_9() { return &___IdMgf1_9; } inline void set_IdMgf1_9(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdMgf1_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdMgf1_9), (void*)value); } inline static int32_t get_offset_of_IdPSpecified_10() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdPSpecified_10)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdPSpecified_10() const { return ___IdPSpecified_10; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdPSpecified_10() { return &___IdPSpecified_10; } inline void set_IdPSpecified_10(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdPSpecified_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdPSpecified_10), (void*)value); } inline static int32_t get_offset_of_IdRsassaPss_11() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdRsassaPss_11)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdRsassaPss_11() const { return ___IdRsassaPss_11; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdRsassaPss_11() { return &___IdRsassaPss_11; } inline void set_IdRsassaPss_11(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdRsassaPss_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdRsassaPss_11), (void*)value); } inline static int32_t get_offset_of_Sha256WithRsaEncryption_12() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___Sha256WithRsaEncryption_12)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Sha256WithRsaEncryption_12() const { return ___Sha256WithRsaEncryption_12; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Sha256WithRsaEncryption_12() { return &___Sha256WithRsaEncryption_12; } inline void set_Sha256WithRsaEncryption_12(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Sha256WithRsaEncryption_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___Sha256WithRsaEncryption_12), (void*)value); } inline static int32_t get_offset_of_Sha384WithRsaEncryption_13() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___Sha384WithRsaEncryption_13)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Sha384WithRsaEncryption_13() const { return ___Sha384WithRsaEncryption_13; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Sha384WithRsaEncryption_13() { return &___Sha384WithRsaEncryption_13; } inline void set_Sha384WithRsaEncryption_13(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Sha384WithRsaEncryption_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___Sha384WithRsaEncryption_13), (void*)value); } inline static int32_t get_offset_of_Sha512WithRsaEncryption_14() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___Sha512WithRsaEncryption_14)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Sha512WithRsaEncryption_14() const { return ___Sha512WithRsaEncryption_14; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Sha512WithRsaEncryption_14() { return &___Sha512WithRsaEncryption_14; } inline void set_Sha512WithRsaEncryption_14(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Sha512WithRsaEncryption_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___Sha512WithRsaEncryption_14), (void*)value); } inline static int32_t get_offset_of_Sha224WithRsaEncryption_15() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___Sha224WithRsaEncryption_15)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Sha224WithRsaEncryption_15() const { return ___Sha224WithRsaEncryption_15; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Sha224WithRsaEncryption_15() { return &___Sha224WithRsaEncryption_15; } inline void set_Sha224WithRsaEncryption_15(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Sha224WithRsaEncryption_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___Sha224WithRsaEncryption_15), (void*)value); } inline static int32_t get_offset_of_Sha512_224WithRSAEncryption_16() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___Sha512_224WithRSAEncryption_16)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Sha512_224WithRSAEncryption_16() const { return ___Sha512_224WithRSAEncryption_16; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Sha512_224WithRSAEncryption_16() { return &___Sha512_224WithRSAEncryption_16; } inline void set_Sha512_224WithRSAEncryption_16(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Sha512_224WithRSAEncryption_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___Sha512_224WithRSAEncryption_16), (void*)value); } inline static int32_t get_offset_of_Sha512_256WithRSAEncryption_17() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___Sha512_256WithRSAEncryption_17)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Sha512_256WithRSAEncryption_17() const { return ___Sha512_256WithRSAEncryption_17; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Sha512_256WithRSAEncryption_17() { return &___Sha512_256WithRSAEncryption_17; } inline void set_Sha512_256WithRSAEncryption_17(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Sha512_256WithRSAEncryption_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___Sha512_256WithRSAEncryption_17), (void*)value); } inline static int32_t get_offset_of_DhKeyAgreement_19() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___DhKeyAgreement_19)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DhKeyAgreement_19() const { return ___DhKeyAgreement_19; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DhKeyAgreement_19() { return &___DhKeyAgreement_19; } inline void set_DhKeyAgreement_19(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DhKeyAgreement_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___DhKeyAgreement_19), (void*)value); } inline static int32_t get_offset_of_PbeWithMD2AndDesCbc_21() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___PbeWithMD2AndDesCbc_21)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_PbeWithMD2AndDesCbc_21() const { return ___PbeWithMD2AndDesCbc_21; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_PbeWithMD2AndDesCbc_21() { return &___PbeWithMD2AndDesCbc_21; } inline void set_PbeWithMD2AndDesCbc_21(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___PbeWithMD2AndDesCbc_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___PbeWithMD2AndDesCbc_21), (void*)value); } inline static int32_t get_offset_of_PbeWithMD2AndRC2Cbc_22() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___PbeWithMD2AndRC2Cbc_22)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_PbeWithMD2AndRC2Cbc_22() const { return ___PbeWithMD2AndRC2Cbc_22; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_PbeWithMD2AndRC2Cbc_22() { return &___PbeWithMD2AndRC2Cbc_22; } inline void set_PbeWithMD2AndRC2Cbc_22(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___PbeWithMD2AndRC2Cbc_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___PbeWithMD2AndRC2Cbc_22), (void*)value); } inline static int32_t get_offset_of_PbeWithMD5AndDesCbc_23() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___PbeWithMD5AndDesCbc_23)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_PbeWithMD5AndDesCbc_23() const { return ___PbeWithMD5AndDesCbc_23; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_PbeWithMD5AndDesCbc_23() { return &___PbeWithMD5AndDesCbc_23; } inline void set_PbeWithMD5AndDesCbc_23(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___PbeWithMD5AndDesCbc_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___PbeWithMD5AndDesCbc_23), (void*)value); } inline static int32_t get_offset_of_PbeWithMD5AndRC2Cbc_24() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___PbeWithMD5AndRC2Cbc_24)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_PbeWithMD5AndRC2Cbc_24() const { return ___PbeWithMD5AndRC2Cbc_24; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_PbeWithMD5AndRC2Cbc_24() { return &___PbeWithMD5AndRC2Cbc_24; } inline void set_PbeWithMD5AndRC2Cbc_24(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___PbeWithMD5AndRC2Cbc_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___PbeWithMD5AndRC2Cbc_24), (void*)value); } inline static int32_t get_offset_of_PbeWithSha1AndDesCbc_25() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___PbeWithSha1AndDesCbc_25)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_PbeWithSha1AndDesCbc_25() const { return ___PbeWithSha1AndDesCbc_25; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_PbeWithSha1AndDesCbc_25() { return &___PbeWithSha1AndDesCbc_25; } inline void set_PbeWithSha1AndDesCbc_25(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___PbeWithSha1AndDesCbc_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___PbeWithSha1AndDesCbc_25), (void*)value); } inline static int32_t get_offset_of_PbeWithSha1AndRC2Cbc_26() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___PbeWithSha1AndRC2Cbc_26)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_PbeWithSha1AndRC2Cbc_26() const { return ___PbeWithSha1AndRC2Cbc_26; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_PbeWithSha1AndRC2Cbc_26() { return &___PbeWithSha1AndRC2Cbc_26; } inline void set_PbeWithSha1AndRC2Cbc_26(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___PbeWithSha1AndRC2Cbc_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___PbeWithSha1AndRC2Cbc_26), (void*)value); } inline static int32_t get_offset_of_IdPbeS2_27() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdPbeS2_27)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdPbeS2_27() const { return ___IdPbeS2_27; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdPbeS2_27() { return &___IdPbeS2_27; } inline void set_IdPbeS2_27(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdPbeS2_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdPbeS2_27), (void*)value); } inline static int32_t get_offset_of_IdPbkdf2_28() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdPbkdf2_28)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdPbkdf2_28() const { return ___IdPbkdf2_28; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdPbkdf2_28() { return &___IdPbkdf2_28; } inline void set_IdPbkdf2_28(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdPbkdf2_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdPbkdf2_28), (void*)value); } inline static int32_t get_offset_of_DesEde3Cbc_30() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___DesEde3Cbc_30)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DesEde3Cbc_30() const { return ___DesEde3Cbc_30; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DesEde3Cbc_30() { return &___DesEde3Cbc_30; } inline void set_DesEde3Cbc_30(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DesEde3Cbc_30 = value; Il2CppCodeGenWriteBarrier((void**)(&___DesEde3Cbc_30), (void*)value); } inline static int32_t get_offset_of_RC2Cbc_31() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___RC2Cbc_31)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_RC2Cbc_31() const { return ___RC2Cbc_31; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_RC2Cbc_31() { return &___RC2Cbc_31; } inline void set_RC2Cbc_31(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___RC2Cbc_31 = value; Il2CppCodeGenWriteBarrier((void**)(&___RC2Cbc_31), (void*)value); } inline static int32_t get_offset_of_MD2_33() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___MD2_33)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_MD2_33() const { return ___MD2_33; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_MD2_33() { return &___MD2_33; } inline void set_MD2_33(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___MD2_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___MD2_33), (void*)value); } inline static int32_t get_offset_of_MD4_34() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___MD4_34)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_MD4_34() const { return ___MD4_34; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_MD4_34() { return &___MD4_34; } inline void set_MD4_34(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___MD4_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___MD4_34), (void*)value); } inline static int32_t get_offset_of_MD5_35() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___MD5_35)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_MD5_35() const { return ___MD5_35; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_MD5_35() { return &___MD5_35; } inline void set_MD5_35(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___MD5_35 = value; Il2CppCodeGenWriteBarrier((void**)(&___MD5_35), (void*)value); } inline static int32_t get_offset_of_IdHmacWithSha1_36() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdHmacWithSha1_36)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdHmacWithSha1_36() const { return ___IdHmacWithSha1_36; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdHmacWithSha1_36() { return &___IdHmacWithSha1_36; } inline void set_IdHmacWithSha1_36(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdHmacWithSha1_36 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdHmacWithSha1_36), (void*)value); } inline static int32_t get_offset_of_IdHmacWithSha224_37() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdHmacWithSha224_37)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdHmacWithSha224_37() const { return ___IdHmacWithSha224_37; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdHmacWithSha224_37() { return &___IdHmacWithSha224_37; } inline void set_IdHmacWithSha224_37(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdHmacWithSha224_37 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdHmacWithSha224_37), (void*)value); } inline static int32_t get_offset_of_IdHmacWithSha256_38() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdHmacWithSha256_38)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdHmacWithSha256_38() const { return ___IdHmacWithSha256_38; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdHmacWithSha256_38() { return &___IdHmacWithSha256_38; } inline void set_IdHmacWithSha256_38(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdHmacWithSha256_38 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdHmacWithSha256_38), (void*)value); } inline static int32_t get_offset_of_IdHmacWithSha384_39() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdHmacWithSha384_39)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdHmacWithSha384_39() const { return ___IdHmacWithSha384_39; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdHmacWithSha384_39() { return &___IdHmacWithSha384_39; } inline void set_IdHmacWithSha384_39(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdHmacWithSha384_39 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdHmacWithSha384_39), (void*)value); } inline static int32_t get_offset_of_IdHmacWithSha512_40() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdHmacWithSha512_40)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdHmacWithSha512_40() const { return ___IdHmacWithSha512_40; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdHmacWithSha512_40() { return &___IdHmacWithSha512_40; } inline void set_IdHmacWithSha512_40(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdHmacWithSha512_40 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdHmacWithSha512_40), (void*)value); } inline static int32_t get_offset_of_Data_42() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___Data_42)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Data_42() const { return ___Data_42; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Data_42() { return &___Data_42; } inline void set_Data_42(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Data_42 = value; Il2CppCodeGenWriteBarrier((void**)(&___Data_42), (void*)value); } inline static int32_t get_offset_of_SignedData_43() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___SignedData_43)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_SignedData_43() const { return ___SignedData_43; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_SignedData_43() { return &___SignedData_43; } inline void set_SignedData_43(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___SignedData_43 = value; Il2CppCodeGenWriteBarrier((void**)(&___SignedData_43), (void*)value); } inline static int32_t get_offset_of_EnvelopedData_44() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___EnvelopedData_44)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_EnvelopedData_44() const { return ___EnvelopedData_44; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_EnvelopedData_44() { return &___EnvelopedData_44; } inline void set_EnvelopedData_44(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___EnvelopedData_44 = value; Il2CppCodeGenWriteBarrier((void**)(&___EnvelopedData_44), (void*)value); } inline static int32_t get_offset_of_SignedAndEnvelopedData_45() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___SignedAndEnvelopedData_45)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_SignedAndEnvelopedData_45() const { return ___SignedAndEnvelopedData_45; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_SignedAndEnvelopedData_45() { return &___SignedAndEnvelopedData_45; } inline void set_SignedAndEnvelopedData_45(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___SignedAndEnvelopedData_45 = value; Il2CppCodeGenWriteBarrier((void**)(&___SignedAndEnvelopedData_45), (void*)value); } inline static int32_t get_offset_of_DigestedData_46() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___DigestedData_46)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DigestedData_46() const { return ___DigestedData_46; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DigestedData_46() { return &___DigestedData_46; } inline void set_DigestedData_46(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DigestedData_46 = value; Il2CppCodeGenWriteBarrier((void**)(&___DigestedData_46), (void*)value); } inline static int32_t get_offset_of_EncryptedData_47() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___EncryptedData_47)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_EncryptedData_47() const { return ___EncryptedData_47; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_EncryptedData_47() { return &___EncryptedData_47; } inline void set_EncryptedData_47(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___EncryptedData_47 = value; Il2CppCodeGenWriteBarrier((void**)(&___EncryptedData_47), (void*)value); } inline static int32_t get_offset_of_Pkcs9AtEmailAddress_49() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___Pkcs9AtEmailAddress_49)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Pkcs9AtEmailAddress_49() const { return ___Pkcs9AtEmailAddress_49; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Pkcs9AtEmailAddress_49() { return &___Pkcs9AtEmailAddress_49; } inline void set_Pkcs9AtEmailAddress_49(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Pkcs9AtEmailAddress_49 = value; Il2CppCodeGenWriteBarrier((void**)(&___Pkcs9AtEmailAddress_49), (void*)value); } inline static int32_t get_offset_of_Pkcs9AtUnstructuredName_50() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___Pkcs9AtUnstructuredName_50)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Pkcs9AtUnstructuredName_50() const { return ___Pkcs9AtUnstructuredName_50; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Pkcs9AtUnstructuredName_50() { return &___Pkcs9AtUnstructuredName_50; } inline void set_Pkcs9AtUnstructuredName_50(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Pkcs9AtUnstructuredName_50 = value; Il2CppCodeGenWriteBarrier((void**)(&___Pkcs9AtUnstructuredName_50), (void*)value); } inline static int32_t get_offset_of_Pkcs9AtContentType_51() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___Pkcs9AtContentType_51)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Pkcs9AtContentType_51() const { return ___Pkcs9AtContentType_51; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Pkcs9AtContentType_51() { return &___Pkcs9AtContentType_51; } inline void set_Pkcs9AtContentType_51(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Pkcs9AtContentType_51 = value; Il2CppCodeGenWriteBarrier((void**)(&___Pkcs9AtContentType_51), (void*)value); } inline static int32_t get_offset_of_Pkcs9AtMessageDigest_52() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___Pkcs9AtMessageDigest_52)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Pkcs9AtMessageDigest_52() const { return ___Pkcs9AtMessageDigest_52; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Pkcs9AtMessageDigest_52() { return &___Pkcs9AtMessageDigest_52; } inline void set_Pkcs9AtMessageDigest_52(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Pkcs9AtMessageDigest_52 = value; Il2CppCodeGenWriteBarrier((void**)(&___Pkcs9AtMessageDigest_52), (void*)value); } inline static int32_t get_offset_of_Pkcs9AtSigningTime_53() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___Pkcs9AtSigningTime_53)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Pkcs9AtSigningTime_53() const { return ___Pkcs9AtSigningTime_53; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Pkcs9AtSigningTime_53() { return &___Pkcs9AtSigningTime_53; } inline void set_Pkcs9AtSigningTime_53(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Pkcs9AtSigningTime_53 = value; Il2CppCodeGenWriteBarrier((void**)(&___Pkcs9AtSigningTime_53), (void*)value); } inline static int32_t get_offset_of_Pkcs9AtCounterSignature_54() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___Pkcs9AtCounterSignature_54)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Pkcs9AtCounterSignature_54() const { return ___Pkcs9AtCounterSignature_54; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Pkcs9AtCounterSignature_54() { return &___Pkcs9AtCounterSignature_54; } inline void set_Pkcs9AtCounterSignature_54(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Pkcs9AtCounterSignature_54 = value; Il2CppCodeGenWriteBarrier((void**)(&___Pkcs9AtCounterSignature_54), (void*)value); } inline static int32_t get_offset_of_Pkcs9AtChallengePassword_55() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___Pkcs9AtChallengePassword_55)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Pkcs9AtChallengePassword_55() const { return ___Pkcs9AtChallengePassword_55; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Pkcs9AtChallengePassword_55() { return &___Pkcs9AtChallengePassword_55; } inline void set_Pkcs9AtChallengePassword_55(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Pkcs9AtChallengePassword_55 = value; Il2CppCodeGenWriteBarrier((void**)(&___Pkcs9AtChallengePassword_55), (void*)value); } inline static int32_t get_offset_of_Pkcs9AtUnstructuredAddress_56() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___Pkcs9AtUnstructuredAddress_56)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Pkcs9AtUnstructuredAddress_56() const { return ___Pkcs9AtUnstructuredAddress_56; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Pkcs9AtUnstructuredAddress_56() { return &___Pkcs9AtUnstructuredAddress_56; } inline void set_Pkcs9AtUnstructuredAddress_56(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Pkcs9AtUnstructuredAddress_56 = value; Il2CppCodeGenWriteBarrier((void**)(&___Pkcs9AtUnstructuredAddress_56), (void*)value); } inline static int32_t get_offset_of_Pkcs9AtExtendedCertificateAttributes_57() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___Pkcs9AtExtendedCertificateAttributes_57)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Pkcs9AtExtendedCertificateAttributes_57() const { return ___Pkcs9AtExtendedCertificateAttributes_57; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Pkcs9AtExtendedCertificateAttributes_57() { return &___Pkcs9AtExtendedCertificateAttributes_57; } inline void set_Pkcs9AtExtendedCertificateAttributes_57(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Pkcs9AtExtendedCertificateAttributes_57 = value; Il2CppCodeGenWriteBarrier((void**)(&___Pkcs9AtExtendedCertificateAttributes_57), (void*)value); } inline static int32_t get_offset_of_Pkcs9AtSigningDescription_58() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___Pkcs9AtSigningDescription_58)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Pkcs9AtSigningDescription_58() const { return ___Pkcs9AtSigningDescription_58; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Pkcs9AtSigningDescription_58() { return &___Pkcs9AtSigningDescription_58; } inline void set_Pkcs9AtSigningDescription_58(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Pkcs9AtSigningDescription_58 = value; Il2CppCodeGenWriteBarrier((void**)(&___Pkcs9AtSigningDescription_58), (void*)value); } inline static int32_t get_offset_of_Pkcs9AtExtensionRequest_59() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___Pkcs9AtExtensionRequest_59)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Pkcs9AtExtensionRequest_59() const { return ___Pkcs9AtExtensionRequest_59; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Pkcs9AtExtensionRequest_59() { return &___Pkcs9AtExtensionRequest_59; } inline void set_Pkcs9AtExtensionRequest_59(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Pkcs9AtExtensionRequest_59 = value; Il2CppCodeGenWriteBarrier((void**)(&___Pkcs9AtExtensionRequest_59), (void*)value); } inline static int32_t get_offset_of_Pkcs9AtSmimeCapabilities_60() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___Pkcs9AtSmimeCapabilities_60)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Pkcs9AtSmimeCapabilities_60() const { return ___Pkcs9AtSmimeCapabilities_60; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Pkcs9AtSmimeCapabilities_60() { return &___Pkcs9AtSmimeCapabilities_60; } inline void set_Pkcs9AtSmimeCapabilities_60(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Pkcs9AtSmimeCapabilities_60 = value; Il2CppCodeGenWriteBarrier((void**)(&___Pkcs9AtSmimeCapabilities_60), (void*)value); } inline static int32_t get_offset_of_IdSmime_61() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdSmime_61)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdSmime_61() const { return ___IdSmime_61; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdSmime_61() { return &___IdSmime_61; } inline void set_IdSmime_61(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdSmime_61 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdSmime_61), (void*)value); } inline static int32_t get_offset_of_Pkcs9AtFriendlyName_62() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___Pkcs9AtFriendlyName_62)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Pkcs9AtFriendlyName_62() const { return ___Pkcs9AtFriendlyName_62; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Pkcs9AtFriendlyName_62() { return &___Pkcs9AtFriendlyName_62; } inline void set_Pkcs9AtFriendlyName_62(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Pkcs9AtFriendlyName_62 = value; Il2CppCodeGenWriteBarrier((void**)(&___Pkcs9AtFriendlyName_62), (void*)value); } inline static int32_t get_offset_of_Pkcs9AtLocalKeyID_63() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___Pkcs9AtLocalKeyID_63)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Pkcs9AtLocalKeyID_63() const { return ___Pkcs9AtLocalKeyID_63; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Pkcs9AtLocalKeyID_63() { return &___Pkcs9AtLocalKeyID_63; } inline void set_Pkcs9AtLocalKeyID_63(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Pkcs9AtLocalKeyID_63 = value; Il2CppCodeGenWriteBarrier((void**)(&___Pkcs9AtLocalKeyID_63), (void*)value); } inline static int32_t get_offset_of_X509CertType_64() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___X509CertType_64)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_X509CertType_64() const { return ___X509CertType_64; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_X509CertType_64() { return &___X509CertType_64; } inline void set_X509CertType_64(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___X509CertType_64 = value; Il2CppCodeGenWriteBarrier((void**)(&___X509CertType_64), (void*)value); } inline static int32_t get_offset_of_X509Certificate_66() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___X509Certificate_66)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_X509Certificate_66() const { return ___X509Certificate_66; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_X509Certificate_66() { return &___X509Certificate_66; } inline void set_X509Certificate_66(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___X509Certificate_66 = value; Il2CppCodeGenWriteBarrier((void**)(&___X509Certificate_66), (void*)value); } inline static int32_t get_offset_of_SdsiCertificate_67() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___SdsiCertificate_67)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_SdsiCertificate_67() const { return ___SdsiCertificate_67; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_SdsiCertificate_67() { return &___SdsiCertificate_67; } inline void set_SdsiCertificate_67(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___SdsiCertificate_67 = value; Il2CppCodeGenWriteBarrier((void**)(&___SdsiCertificate_67), (void*)value); } inline static int32_t get_offset_of_X509Crl_69() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___X509Crl_69)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_X509Crl_69() const { return ___X509Crl_69; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_X509Crl_69() { return &___X509Crl_69; } inline void set_X509Crl_69(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___X509Crl_69 = value; Il2CppCodeGenWriteBarrier((void**)(&___X509Crl_69), (void*)value); } inline static int32_t get_offset_of_IdAlg_70() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAlg_70)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAlg_70() const { return ___IdAlg_70; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAlg_70() { return &___IdAlg_70; } inline void set_IdAlg_70(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAlg_70 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAlg_70), (void*)value); } inline static int32_t get_offset_of_IdAlgEsdh_71() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAlgEsdh_71)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAlgEsdh_71() const { return ___IdAlgEsdh_71; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAlgEsdh_71() { return &___IdAlgEsdh_71; } inline void set_IdAlgEsdh_71(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAlgEsdh_71 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAlgEsdh_71), (void*)value); } inline static int32_t get_offset_of_IdAlgCms3DesWrap_72() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAlgCms3DesWrap_72)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAlgCms3DesWrap_72() const { return ___IdAlgCms3DesWrap_72; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAlgCms3DesWrap_72() { return &___IdAlgCms3DesWrap_72; } inline void set_IdAlgCms3DesWrap_72(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAlgCms3DesWrap_72 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAlgCms3DesWrap_72), (void*)value); } inline static int32_t get_offset_of_IdAlgCmsRC2Wrap_73() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAlgCmsRC2Wrap_73)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAlgCmsRC2Wrap_73() const { return ___IdAlgCmsRC2Wrap_73; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAlgCmsRC2Wrap_73() { return &___IdAlgCmsRC2Wrap_73; } inline void set_IdAlgCmsRC2Wrap_73(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAlgCmsRC2Wrap_73 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAlgCmsRC2Wrap_73), (void*)value); } inline static int32_t get_offset_of_IdAlgPwriKek_74() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAlgPwriKek_74)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAlgPwriKek_74() const { return ___IdAlgPwriKek_74; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAlgPwriKek_74() { return &___IdAlgPwriKek_74; } inline void set_IdAlgPwriKek_74(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAlgPwriKek_74 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAlgPwriKek_74), (void*)value); } inline static int32_t get_offset_of_IdAlgSsdh_75() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAlgSsdh_75)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAlgSsdh_75() const { return ___IdAlgSsdh_75; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAlgSsdh_75() { return &___IdAlgSsdh_75; } inline void set_IdAlgSsdh_75(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAlgSsdh_75 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAlgSsdh_75), (void*)value); } inline static int32_t get_offset_of_IdRsaKem_76() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdRsaKem_76)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdRsaKem_76() const { return ___IdRsaKem_76; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdRsaKem_76() { return &___IdRsaKem_76; } inline void set_IdRsaKem_76(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdRsaKem_76 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdRsaKem_76), (void*)value); } inline static int32_t get_offset_of_PreferSignedData_77() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___PreferSignedData_77)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_PreferSignedData_77() const { return ___PreferSignedData_77; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_PreferSignedData_77() { return &___PreferSignedData_77; } inline void set_PreferSignedData_77(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___PreferSignedData_77 = value; Il2CppCodeGenWriteBarrier((void**)(&___PreferSignedData_77), (void*)value); } inline static int32_t get_offset_of_CannotDecryptAny_78() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___CannotDecryptAny_78)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_CannotDecryptAny_78() const { return ___CannotDecryptAny_78; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_CannotDecryptAny_78() { return &___CannotDecryptAny_78; } inline void set_CannotDecryptAny_78(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___CannotDecryptAny_78 = value; Il2CppCodeGenWriteBarrier((void**)(&___CannotDecryptAny_78), (void*)value); } inline static int32_t get_offset_of_SmimeCapabilitiesVersions_79() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___SmimeCapabilitiesVersions_79)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_SmimeCapabilitiesVersions_79() const { return ___SmimeCapabilitiesVersions_79; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_SmimeCapabilitiesVersions_79() { return &___SmimeCapabilitiesVersions_79; } inline void set_SmimeCapabilitiesVersions_79(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___SmimeCapabilitiesVersions_79 = value; Il2CppCodeGenWriteBarrier((void**)(&___SmimeCapabilitiesVersions_79), (void*)value); } inline static int32_t get_offset_of_IdAAReceiptRequest_80() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAAReceiptRequest_80)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAAReceiptRequest_80() const { return ___IdAAReceiptRequest_80; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAAReceiptRequest_80() { return &___IdAAReceiptRequest_80; } inline void set_IdAAReceiptRequest_80(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAAReceiptRequest_80 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAAReceiptRequest_80), (void*)value); } inline static int32_t get_offset_of_IdCTAuthData_82() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdCTAuthData_82)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdCTAuthData_82() const { return ___IdCTAuthData_82; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdCTAuthData_82() { return &___IdCTAuthData_82; } inline void set_IdCTAuthData_82(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdCTAuthData_82 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdCTAuthData_82), (void*)value); } inline static int32_t get_offset_of_IdCTTstInfo_83() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdCTTstInfo_83)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdCTTstInfo_83() const { return ___IdCTTstInfo_83; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdCTTstInfo_83() { return &___IdCTTstInfo_83; } inline void set_IdCTTstInfo_83(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdCTTstInfo_83 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdCTTstInfo_83), (void*)value); } inline static int32_t get_offset_of_IdCTCompressedData_84() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdCTCompressedData_84)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdCTCompressedData_84() const { return ___IdCTCompressedData_84; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdCTCompressedData_84() { return &___IdCTCompressedData_84; } inline void set_IdCTCompressedData_84(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdCTCompressedData_84 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdCTCompressedData_84), (void*)value); } inline static int32_t get_offset_of_IdCTAuthEnvelopedData_85() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdCTAuthEnvelopedData_85)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdCTAuthEnvelopedData_85() const { return ___IdCTAuthEnvelopedData_85; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdCTAuthEnvelopedData_85() { return &___IdCTAuthEnvelopedData_85; } inline void set_IdCTAuthEnvelopedData_85(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdCTAuthEnvelopedData_85 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdCTAuthEnvelopedData_85), (void*)value); } inline static int32_t get_offset_of_IdCTTimestampedData_86() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdCTTimestampedData_86)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdCTTimestampedData_86() const { return ___IdCTTimestampedData_86; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdCTTimestampedData_86() { return &___IdCTTimestampedData_86; } inline void set_IdCTTimestampedData_86(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdCTTimestampedData_86 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdCTTimestampedData_86), (void*)value); } inline static int32_t get_offset_of_IdCtiEtsProofOfOrigin_88() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdCtiEtsProofOfOrigin_88)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdCtiEtsProofOfOrigin_88() const { return ___IdCtiEtsProofOfOrigin_88; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdCtiEtsProofOfOrigin_88() { return &___IdCtiEtsProofOfOrigin_88; } inline void set_IdCtiEtsProofOfOrigin_88(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdCtiEtsProofOfOrigin_88 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdCtiEtsProofOfOrigin_88), (void*)value); } inline static int32_t get_offset_of_IdCtiEtsProofOfReceipt_89() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdCtiEtsProofOfReceipt_89)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdCtiEtsProofOfReceipt_89() const { return ___IdCtiEtsProofOfReceipt_89; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdCtiEtsProofOfReceipt_89() { return &___IdCtiEtsProofOfReceipt_89; } inline void set_IdCtiEtsProofOfReceipt_89(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdCtiEtsProofOfReceipt_89 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdCtiEtsProofOfReceipt_89), (void*)value); } inline static int32_t get_offset_of_IdCtiEtsProofOfDelivery_90() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdCtiEtsProofOfDelivery_90)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdCtiEtsProofOfDelivery_90() const { return ___IdCtiEtsProofOfDelivery_90; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdCtiEtsProofOfDelivery_90() { return &___IdCtiEtsProofOfDelivery_90; } inline void set_IdCtiEtsProofOfDelivery_90(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdCtiEtsProofOfDelivery_90 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdCtiEtsProofOfDelivery_90), (void*)value); } inline static int32_t get_offset_of_IdCtiEtsProofOfSender_91() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdCtiEtsProofOfSender_91)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdCtiEtsProofOfSender_91() const { return ___IdCtiEtsProofOfSender_91; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdCtiEtsProofOfSender_91() { return &___IdCtiEtsProofOfSender_91; } inline void set_IdCtiEtsProofOfSender_91(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdCtiEtsProofOfSender_91 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdCtiEtsProofOfSender_91), (void*)value); } inline static int32_t get_offset_of_IdCtiEtsProofOfApproval_92() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdCtiEtsProofOfApproval_92)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdCtiEtsProofOfApproval_92() const { return ___IdCtiEtsProofOfApproval_92; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdCtiEtsProofOfApproval_92() { return &___IdCtiEtsProofOfApproval_92; } inline void set_IdCtiEtsProofOfApproval_92(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdCtiEtsProofOfApproval_92 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdCtiEtsProofOfApproval_92), (void*)value); } inline static int32_t get_offset_of_IdCtiEtsProofOfCreation_93() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdCtiEtsProofOfCreation_93)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdCtiEtsProofOfCreation_93() const { return ___IdCtiEtsProofOfCreation_93; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdCtiEtsProofOfCreation_93() { return &___IdCtiEtsProofOfCreation_93; } inline void set_IdCtiEtsProofOfCreation_93(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdCtiEtsProofOfCreation_93 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdCtiEtsProofOfCreation_93), (void*)value); } inline static int32_t get_offset_of_IdAAOid_95() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAAOid_95)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAAOid_95() const { return ___IdAAOid_95; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAAOid_95() { return &___IdAAOid_95; } inline void set_IdAAOid_95(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAAOid_95 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAAOid_95), (void*)value); } inline static int32_t get_offset_of_IdAAContentHint_96() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAAContentHint_96)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAAContentHint_96() const { return ___IdAAContentHint_96; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAAContentHint_96() { return &___IdAAContentHint_96; } inline void set_IdAAContentHint_96(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAAContentHint_96 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAAContentHint_96), (void*)value); } inline static int32_t get_offset_of_IdAAMsgSigDigest_97() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAAMsgSigDigest_97)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAAMsgSigDigest_97() const { return ___IdAAMsgSigDigest_97; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAAMsgSigDigest_97() { return &___IdAAMsgSigDigest_97; } inline void set_IdAAMsgSigDigest_97(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAAMsgSigDigest_97 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAAMsgSigDigest_97), (void*)value); } inline static int32_t get_offset_of_IdAAContentReference_98() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAAContentReference_98)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAAContentReference_98() const { return ___IdAAContentReference_98; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAAContentReference_98() { return &___IdAAContentReference_98; } inline void set_IdAAContentReference_98(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAAContentReference_98 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAAContentReference_98), (void*)value); } inline static int32_t get_offset_of_IdAAEncrypKeyPref_99() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAAEncrypKeyPref_99)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAAEncrypKeyPref_99() const { return ___IdAAEncrypKeyPref_99; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAAEncrypKeyPref_99() { return &___IdAAEncrypKeyPref_99; } inline void set_IdAAEncrypKeyPref_99(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAAEncrypKeyPref_99 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAAEncrypKeyPref_99), (void*)value); } inline static int32_t get_offset_of_IdAASigningCertificate_100() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAASigningCertificate_100)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAASigningCertificate_100() const { return ___IdAASigningCertificate_100; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAASigningCertificate_100() { return &___IdAASigningCertificate_100; } inline void set_IdAASigningCertificate_100(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAASigningCertificate_100 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAASigningCertificate_100), (void*)value); } inline static int32_t get_offset_of_IdAASigningCertificateV2_101() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAASigningCertificateV2_101)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAASigningCertificateV2_101() const { return ___IdAASigningCertificateV2_101; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAASigningCertificateV2_101() { return &___IdAASigningCertificateV2_101; } inline void set_IdAASigningCertificateV2_101(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAASigningCertificateV2_101 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAASigningCertificateV2_101), (void*)value); } inline static int32_t get_offset_of_IdAAContentIdentifier_102() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAAContentIdentifier_102)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAAContentIdentifier_102() const { return ___IdAAContentIdentifier_102; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAAContentIdentifier_102() { return &___IdAAContentIdentifier_102; } inline void set_IdAAContentIdentifier_102(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAAContentIdentifier_102 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAAContentIdentifier_102), (void*)value); } inline static int32_t get_offset_of_IdAASignatureTimeStampToken_103() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAASignatureTimeStampToken_103)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAASignatureTimeStampToken_103() const { return ___IdAASignatureTimeStampToken_103; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAASignatureTimeStampToken_103() { return &___IdAASignatureTimeStampToken_103; } inline void set_IdAASignatureTimeStampToken_103(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAASignatureTimeStampToken_103 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAASignatureTimeStampToken_103), (void*)value); } inline static int32_t get_offset_of_IdAAEtsSigPolicyID_104() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAAEtsSigPolicyID_104)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAAEtsSigPolicyID_104() const { return ___IdAAEtsSigPolicyID_104; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAAEtsSigPolicyID_104() { return &___IdAAEtsSigPolicyID_104; } inline void set_IdAAEtsSigPolicyID_104(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAAEtsSigPolicyID_104 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAAEtsSigPolicyID_104), (void*)value); } inline static int32_t get_offset_of_IdAAEtsCommitmentType_105() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAAEtsCommitmentType_105)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAAEtsCommitmentType_105() const { return ___IdAAEtsCommitmentType_105; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAAEtsCommitmentType_105() { return &___IdAAEtsCommitmentType_105; } inline void set_IdAAEtsCommitmentType_105(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAAEtsCommitmentType_105 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAAEtsCommitmentType_105), (void*)value); } inline static int32_t get_offset_of_IdAAEtsSignerLocation_106() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAAEtsSignerLocation_106)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAAEtsSignerLocation_106() const { return ___IdAAEtsSignerLocation_106; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAAEtsSignerLocation_106() { return &___IdAAEtsSignerLocation_106; } inline void set_IdAAEtsSignerLocation_106(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAAEtsSignerLocation_106 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAAEtsSignerLocation_106), (void*)value); } inline static int32_t get_offset_of_IdAAEtsSignerAttr_107() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAAEtsSignerAttr_107)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAAEtsSignerAttr_107() const { return ___IdAAEtsSignerAttr_107; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAAEtsSignerAttr_107() { return &___IdAAEtsSignerAttr_107; } inline void set_IdAAEtsSignerAttr_107(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAAEtsSignerAttr_107 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAAEtsSignerAttr_107), (void*)value); } inline static int32_t get_offset_of_IdAAEtsOtherSigCert_108() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAAEtsOtherSigCert_108)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAAEtsOtherSigCert_108() const { return ___IdAAEtsOtherSigCert_108; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAAEtsOtherSigCert_108() { return &___IdAAEtsOtherSigCert_108; } inline void set_IdAAEtsOtherSigCert_108(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAAEtsOtherSigCert_108 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAAEtsOtherSigCert_108), (void*)value); } inline static int32_t get_offset_of_IdAAEtsContentTimestamp_109() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAAEtsContentTimestamp_109)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAAEtsContentTimestamp_109() const { return ___IdAAEtsContentTimestamp_109; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAAEtsContentTimestamp_109() { return &___IdAAEtsContentTimestamp_109; } inline void set_IdAAEtsContentTimestamp_109(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAAEtsContentTimestamp_109 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAAEtsContentTimestamp_109), (void*)value); } inline static int32_t get_offset_of_IdAAEtsCertificateRefs_110() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAAEtsCertificateRefs_110)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAAEtsCertificateRefs_110() const { return ___IdAAEtsCertificateRefs_110; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAAEtsCertificateRefs_110() { return &___IdAAEtsCertificateRefs_110; } inline void set_IdAAEtsCertificateRefs_110(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAAEtsCertificateRefs_110 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAAEtsCertificateRefs_110), (void*)value); } inline static int32_t get_offset_of_IdAAEtsRevocationRefs_111() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAAEtsRevocationRefs_111)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAAEtsRevocationRefs_111() const { return ___IdAAEtsRevocationRefs_111; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAAEtsRevocationRefs_111() { return &___IdAAEtsRevocationRefs_111; } inline void set_IdAAEtsRevocationRefs_111(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAAEtsRevocationRefs_111 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAAEtsRevocationRefs_111), (void*)value); } inline static int32_t get_offset_of_IdAAEtsCertValues_112() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAAEtsCertValues_112)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAAEtsCertValues_112() const { return ___IdAAEtsCertValues_112; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAAEtsCertValues_112() { return &___IdAAEtsCertValues_112; } inline void set_IdAAEtsCertValues_112(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAAEtsCertValues_112 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAAEtsCertValues_112), (void*)value); } inline static int32_t get_offset_of_IdAAEtsRevocationValues_113() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAAEtsRevocationValues_113)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAAEtsRevocationValues_113() const { return ___IdAAEtsRevocationValues_113; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAAEtsRevocationValues_113() { return &___IdAAEtsRevocationValues_113; } inline void set_IdAAEtsRevocationValues_113(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAAEtsRevocationValues_113 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAAEtsRevocationValues_113), (void*)value); } inline static int32_t get_offset_of_IdAAEtsEscTimeStamp_114() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAAEtsEscTimeStamp_114)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAAEtsEscTimeStamp_114() const { return ___IdAAEtsEscTimeStamp_114; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAAEtsEscTimeStamp_114() { return &___IdAAEtsEscTimeStamp_114; } inline void set_IdAAEtsEscTimeStamp_114(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAAEtsEscTimeStamp_114 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAAEtsEscTimeStamp_114), (void*)value); } inline static int32_t get_offset_of_IdAAEtsCertCrlTimestamp_115() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAAEtsCertCrlTimestamp_115)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAAEtsCertCrlTimestamp_115() const { return ___IdAAEtsCertCrlTimestamp_115; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAAEtsCertCrlTimestamp_115() { return &___IdAAEtsCertCrlTimestamp_115; } inline void set_IdAAEtsCertCrlTimestamp_115(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAAEtsCertCrlTimestamp_115 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAAEtsCertCrlTimestamp_115), (void*)value); } inline static int32_t get_offset_of_IdAAEtsArchiveTimestamp_116() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAAEtsArchiveTimestamp_116)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAAEtsArchiveTimestamp_116() const { return ___IdAAEtsArchiveTimestamp_116; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAAEtsArchiveTimestamp_116() { return &___IdAAEtsArchiveTimestamp_116; } inline void set_IdAAEtsArchiveTimestamp_116(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAAEtsArchiveTimestamp_116 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAAEtsArchiveTimestamp_116), (void*)value); } inline static int32_t get_offset_of_IdAADecryptKeyID_117() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAADecryptKeyID_117)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAADecryptKeyID_117() const { return ___IdAADecryptKeyID_117; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAADecryptKeyID_117() { return &___IdAADecryptKeyID_117; } inline void set_IdAADecryptKeyID_117(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAADecryptKeyID_117 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAADecryptKeyID_117), (void*)value); } inline static int32_t get_offset_of_IdAAImplCryptoAlgs_118() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAAImplCryptoAlgs_118)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAAImplCryptoAlgs_118() const { return ___IdAAImplCryptoAlgs_118; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAAImplCryptoAlgs_118() { return &___IdAAImplCryptoAlgs_118; } inline void set_IdAAImplCryptoAlgs_118(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAAImplCryptoAlgs_118 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAAImplCryptoAlgs_118), (void*)value); } inline static int32_t get_offset_of_IdAAAsymmDecryptKeyID_119() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAAAsymmDecryptKeyID_119)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAAAsymmDecryptKeyID_119() const { return ___IdAAAsymmDecryptKeyID_119; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAAAsymmDecryptKeyID_119() { return &___IdAAAsymmDecryptKeyID_119; } inline void set_IdAAAsymmDecryptKeyID_119(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAAAsymmDecryptKeyID_119 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAAAsymmDecryptKeyID_119), (void*)value); } inline static int32_t get_offset_of_IdAAImplCompressAlgs_120() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAAImplCompressAlgs_120)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAAImplCompressAlgs_120() const { return ___IdAAImplCompressAlgs_120; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAAImplCompressAlgs_120() { return &___IdAAImplCompressAlgs_120; } inline void set_IdAAImplCompressAlgs_120(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAAImplCompressAlgs_120 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAAImplCompressAlgs_120), (void*)value); } inline static int32_t get_offset_of_IdAACommunityIdentifiers_121() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAACommunityIdentifiers_121)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAACommunityIdentifiers_121() const { return ___IdAACommunityIdentifiers_121; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAACommunityIdentifiers_121() { return &___IdAACommunityIdentifiers_121; } inline void set_IdAACommunityIdentifiers_121(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAACommunityIdentifiers_121 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAACommunityIdentifiers_121), (void*)value); } inline static int32_t get_offset_of_IdAASigPolicyID_122() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAASigPolicyID_122)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAASigPolicyID_122() const { return ___IdAASigPolicyID_122; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAASigPolicyID_122() { return &___IdAASigPolicyID_122; } inline void set_IdAASigPolicyID_122(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAASigPolicyID_122 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAASigPolicyID_122), (void*)value); } inline static int32_t get_offset_of_IdAACommitmentType_123() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAACommitmentType_123)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAACommitmentType_123() const { return ___IdAACommitmentType_123; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAACommitmentType_123() { return &___IdAACommitmentType_123; } inline void set_IdAACommitmentType_123(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAACommitmentType_123 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAACommitmentType_123), (void*)value); } inline static int32_t get_offset_of_IdAASignerLocation_124() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAASignerLocation_124)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAASignerLocation_124() const { return ___IdAASignerLocation_124; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAASignerLocation_124() { return &___IdAASignerLocation_124; } inline void set_IdAASignerLocation_124(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAASignerLocation_124 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAASignerLocation_124), (void*)value); } inline static int32_t get_offset_of_IdAAOtherSigCert_125() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAAOtherSigCert_125)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAAOtherSigCert_125() const { return ___IdAAOtherSigCert_125; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAAOtherSigCert_125() { return &___IdAAOtherSigCert_125; } inline void set_IdAAOtherSigCert_125(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAAOtherSigCert_125 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAAOtherSigCert_125), (void*)value); } inline static int32_t get_offset_of_IdSpqEtsUri_127() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdSpqEtsUri_127)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdSpqEtsUri_127() const { return ___IdSpqEtsUri_127; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdSpqEtsUri_127() { return &___IdSpqEtsUri_127; } inline void set_IdSpqEtsUri_127(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdSpqEtsUri_127 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdSpqEtsUri_127), (void*)value); } inline static int32_t get_offset_of_IdSpqEtsUNotice_128() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdSpqEtsUNotice_128)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdSpqEtsUNotice_128() const { return ___IdSpqEtsUNotice_128; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdSpqEtsUNotice_128() { return &___IdSpqEtsUNotice_128; } inline void set_IdSpqEtsUNotice_128(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdSpqEtsUNotice_128 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdSpqEtsUNotice_128), (void*)value); } inline static int32_t get_offset_of_KeyBag_131() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___KeyBag_131)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_KeyBag_131() const { return ___KeyBag_131; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_KeyBag_131() { return &___KeyBag_131; } inline void set_KeyBag_131(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___KeyBag_131 = value; Il2CppCodeGenWriteBarrier((void**)(&___KeyBag_131), (void*)value); } inline static int32_t get_offset_of_Pkcs8ShroudedKeyBag_132() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___Pkcs8ShroudedKeyBag_132)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Pkcs8ShroudedKeyBag_132() const { return ___Pkcs8ShroudedKeyBag_132; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Pkcs8ShroudedKeyBag_132() { return &___Pkcs8ShroudedKeyBag_132; } inline void set_Pkcs8ShroudedKeyBag_132(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Pkcs8ShroudedKeyBag_132 = value; Il2CppCodeGenWriteBarrier((void**)(&___Pkcs8ShroudedKeyBag_132), (void*)value); } inline static int32_t get_offset_of_CertBag_133() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___CertBag_133)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_CertBag_133() const { return ___CertBag_133; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_CertBag_133() { return &___CertBag_133; } inline void set_CertBag_133(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___CertBag_133 = value; Il2CppCodeGenWriteBarrier((void**)(&___CertBag_133), (void*)value); } inline static int32_t get_offset_of_CrlBag_134() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___CrlBag_134)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_CrlBag_134() const { return ___CrlBag_134; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_CrlBag_134() { return &___CrlBag_134; } inline void set_CrlBag_134(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___CrlBag_134 = value; Il2CppCodeGenWriteBarrier((void**)(&___CrlBag_134), (void*)value); } inline static int32_t get_offset_of_SecretBag_135() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___SecretBag_135)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_SecretBag_135() const { return ___SecretBag_135; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_SecretBag_135() { return &___SecretBag_135; } inline void set_SecretBag_135(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___SecretBag_135 = value; Il2CppCodeGenWriteBarrier((void**)(&___SecretBag_135), (void*)value); } inline static int32_t get_offset_of_SafeContentsBag_136() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___SafeContentsBag_136)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_SafeContentsBag_136() const { return ___SafeContentsBag_136; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_SafeContentsBag_136() { return &___SafeContentsBag_136; } inline void set_SafeContentsBag_136(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___SafeContentsBag_136 = value; Il2CppCodeGenWriteBarrier((void**)(&___SafeContentsBag_136), (void*)value); } inline static int32_t get_offset_of_PbeWithShaAnd128BitRC4_138() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___PbeWithShaAnd128BitRC4_138)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_PbeWithShaAnd128BitRC4_138() const { return ___PbeWithShaAnd128BitRC4_138; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_PbeWithShaAnd128BitRC4_138() { return &___PbeWithShaAnd128BitRC4_138; } inline void set_PbeWithShaAnd128BitRC4_138(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___PbeWithShaAnd128BitRC4_138 = value; Il2CppCodeGenWriteBarrier((void**)(&___PbeWithShaAnd128BitRC4_138), (void*)value); } inline static int32_t get_offset_of_PbeWithShaAnd40BitRC4_139() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___PbeWithShaAnd40BitRC4_139)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_PbeWithShaAnd40BitRC4_139() const { return ___PbeWithShaAnd40BitRC4_139; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_PbeWithShaAnd40BitRC4_139() { return &___PbeWithShaAnd40BitRC4_139; } inline void set_PbeWithShaAnd40BitRC4_139(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___PbeWithShaAnd40BitRC4_139 = value; Il2CppCodeGenWriteBarrier((void**)(&___PbeWithShaAnd40BitRC4_139), (void*)value); } inline static int32_t get_offset_of_PbeWithShaAnd3KeyTripleDesCbc_140() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___PbeWithShaAnd3KeyTripleDesCbc_140)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_PbeWithShaAnd3KeyTripleDesCbc_140() const { return ___PbeWithShaAnd3KeyTripleDesCbc_140; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_PbeWithShaAnd3KeyTripleDesCbc_140() { return &___PbeWithShaAnd3KeyTripleDesCbc_140; } inline void set_PbeWithShaAnd3KeyTripleDesCbc_140(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___PbeWithShaAnd3KeyTripleDesCbc_140 = value; Il2CppCodeGenWriteBarrier((void**)(&___PbeWithShaAnd3KeyTripleDesCbc_140), (void*)value); } inline static int32_t get_offset_of_PbeWithShaAnd2KeyTripleDesCbc_141() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___PbeWithShaAnd2KeyTripleDesCbc_141)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_PbeWithShaAnd2KeyTripleDesCbc_141() const { return ___PbeWithShaAnd2KeyTripleDesCbc_141; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_PbeWithShaAnd2KeyTripleDesCbc_141() { return &___PbeWithShaAnd2KeyTripleDesCbc_141; } inline void set_PbeWithShaAnd2KeyTripleDesCbc_141(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___PbeWithShaAnd2KeyTripleDesCbc_141 = value; Il2CppCodeGenWriteBarrier((void**)(&___PbeWithShaAnd2KeyTripleDesCbc_141), (void*)value); } inline static int32_t get_offset_of_PbeWithShaAnd128BitRC2Cbc_142() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___PbeWithShaAnd128BitRC2Cbc_142)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_PbeWithShaAnd128BitRC2Cbc_142() const { return ___PbeWithShaAnd128BitRC2Cbc_142; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_PbeWithShaAnd128BitRC2Cbc_142() { return &___PbeWithShaAnd128BitRC2Cbc_142; } inline void set_PbeWithShaAnd128BitRC2Cbc_142(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___PbeWithShaAnd128BitRC2Cbc_142 = value; Il2CppCodeGenWriteBarrier((void**)(&___PbeWithShaAnd128BitRC2Cbc_142), (void*)value); } inline static int32_t get_offset_of_PbewithShaAnd40BitRC2Cbc_143() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___PbewithShaAnd40BitRC2Cbc_143)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_PbewithShaAnd40BitRC2Cbc_143() const { return ___PbewithShaAnd40BitRC2Cbc_143; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_PbewithShaAnd40BitRC2Cbc_143() { return &___PbewithShaAnd40BitRC2Cbc_143; } inline void set_PbewithShaAnd40BitRC2Cbc_143(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___PbewithShaAnd40BitRC2Cbc_143 = value; Il2CppCodeGenWriteBarrier((void**)(&___PbewithShaAnd40BitRC2Cbc_143), (void*)value); } }; // System.Random struct Random_t6C9E9775A149D0ADCFEB4B252C408F03EE870118 : public RuntimeObject { public: // System.Int32 System.Random::inext int32_t ___inext_0; // System.Int32 System.Random::inextp int32_t ___inextp_1; // System.Int32[] System.Random::SeedArray Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___SeedArray_2; public: inline static int32_t get_offset_of_inext_0() { return static_cast(offsetof(Random_t6C9E9775A149D0ADCFEB4B252C408F03EE870118, ___inext_0)); } inline int32_t get_inext_0() const { return ___inext_0; } inline int32_t* get_address_of_inext_0() { return &___inext_0; } inline void set_inext_0(int32_t value) { ___inext_0 = value; } inline static int32_t get_offset_of_inextp_1() { return static_cast(offsetof(Random_t6C9E9775A149D0ADCFEB4B252C408F03EE870118, ___inextp_1)); } inline int32_t get_inextp_1() const { return ___inextp_1; } inline int32_t* get_address_of_inextp_1() { return &___inextp_1; } inline void set_inextp_1(int32_t value) { ___inextp_1 = value; } inline static int32_t get_offset_of_SeedArray_2() { return static_cast(offsetof(Random_t6C9E9775A149D0ADCFEB4B252C408F03EE870118, ___SeedArray_2)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_SeedArray_2() const { return ___SeedArray_2; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_SeedArray_2() { return &___SeedArray_2; } inline void set_SeedArray_2(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___SeedArray_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___SeedArray_2), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.RecipientInformation struct RecipientInformation_tB02D0534E5C0851FB482467BA26A52FAD2F853AB : public RuntimeObject { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.RecipientID BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.RecipientInformation::rid RecipientID_t744700C1480DE017B5D0AB81C6A1044A8C400125 * ___rid_0; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.RecipientInformation::keyEncAlg AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___keyEncAlg_1; // BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsSecureReadable BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.RecipientInformation::secureReadable RuntimeObject* ___secureReadable_2; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.RecipientInformation::resultMac ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___resultMac_3; public: inline static int32_t get_offset_of_rid_0() { return static_cast(offsetof(RecipientInformation_tB02D0534E5C0851FB482467BA26A52FAD2F853AB, ___rid_0)); } inline RecipientID_t744700C1480DE017B5D0AB81C6A1044A8C400125 * get_rid_0() const { return ___rid_0; } inline RecipientID_t744700C1480DE017B5D0AB81C6A1044A8C400125 ** get_address_of_rid_0() { return &___rid_0; } inline void set_rid_0(RecipientID_t744700C1480DE017B5D0AB81C6A1044A8C400125 * value) { ___rid_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___rid_0), (void*)value); } inline static int32_t get_offset_of_keyEncAlg_1() { return static_cast(offsetof(RecipientInformation_tB02D0534E5C0851FB482467BA26A52FAD2F853AB, ___keyEncAlg_1)); } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * get_keyEncAlg_1() const { return ___keyEncAlg_1; } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 ** get_address_of_keyEncAlg_1() { return &___keyEncAlg_1; } inline void set_keyEncAlg_1(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * value) { ___keyEncAlg_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___keyEncAlg_1), (void*)value); } inline static int32_t get_offset_of_secureReadable_2() { return static_cast(offsetof(RecipientInformation_tB02D0534E5C0851FB482467BA26A52FAD2F853AB, ___secureReadable_2)); } inline RuntimeObject* get_secureReadable_2() const { return ___secureReadable_2; } inline RuntimeObject** get_address_of_secureReadable_2() { return &___secureReadable_2; } inline void set_secureReadable_2(RuntimeObject* value) { ___secureReadable_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___secureReadable_2), (void*)value); } inline static int32_t get_offset_of_resultMac_3() { return static_cast(offsetof(RecipientInformation_tB02D0534E5C0851FB482467BA26A52FAD2F853AB, ___resultMac_3)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_resultMac_3() const { return ___resultMac_3; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_resultMac_3() { return &___resultMac_3; } inline void set_resultMac_3(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___resultMac_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___resultMac_3), (void*)value); } }; // System.String struct String_t : public RuntimeObject { public: // System.Int32 System.String::m_stringLength int32_t ___m_stringLength_0; // System.Char System.String::m_firstChar Il2CppChar ___m_firstChar_1; public: inline static int32_t get_offset_of_m_stringLength_0() { return static_cast(offsetof(String_t, ___m_stringLength_0)); } inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; } inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; } inline void set_m_stringLength_0(int32_t value) { ___m_stringLength_0 = value; } inline static int32_t get_offset_of_m_firstChar_1() { return static_cast(offsetof(String_t, ___m_firstChar_1)); } inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; } inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; } inline void set_m_firstChar_1(Il2CppChar value) { ___m_firstChar_1 = value; } }; struct String_t_StaticFields { public: // System.String System.String::Empty String_t* ___Empty_5; public: inline static int32_t get_offset_of_Empty_5() { return static_cast(offsetof(String_t_StaticFields, ___Empty_5)); } inline String_t* get_Empty_5() const { return ___Empty_5; } inline String_t** get_address_of_Empty_5() { return &___Empty_5; } inline void set_Empty_5(String_t* value) { ___Empty_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___Empty_5), (void*)value); } }; // System.Text.StringBuilder struct StringBuilder_t : public RuntimeObject { public: // System.Char[] System.Text.StringBuilder::m_ChunkChars CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___m_ChunkChars_0; // System.Text.StringBuilder System.Text.StringBuilder::m_ChunkPrevious StringBuilder_t * ___m_ChunkPrevious_1; // System.Int32 System.Text.StringBuilder::m_ChunkLength int32_t ___m_ChunkLength_2; // System.Int32 System.Text.StringBuilder::m_ChunkOffset int32_t ___m_ChunkOffset_3; // System.Int32 System.Text.StringBuilder::m_MaxCapacity int32_t ___m_MaxCapacity_4; public: inline static int32_t get_offset_of_m_ChunkChars_0() { return static_cast(offsetof(StringBuilder_t, ___m_ChunkChars_0)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_m_ChunkChars_0() const { return ___m_ChunkChars_0; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_m_ChunkChars_0() { return &___m_ChunkChars_0; } inline void set_m_ChunkChars_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___m_ChunkChars_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ChunkChars_0), (void*)value); } inline static int32_t get_offset_of_m_ChunkPrevious_1() { return static_cast(offsetof(StringBuilder_t, ___m_ChunkPrevious_1)); } inline StringBuilder_t * get_m_ChunkPrevious_1() const { return ___m_ChunkPrevious_1; } inline StringBuilder_t ** get_address_of_m_ChunkPrevious_1() { return &___m_ChunkPrevious_1; } inline void set_m_ChunkPrevious_1(StringBuilder_t * value) { ___m_ChunkPrevious_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ChunkPrevious_1), (void*)value); } inline static int32_t get_offset_of_m_ChunkLength_2() { return static_cast(offsetof(StringBuilder_t, ___m_ChunkLength_2)); } inline int32_t get_m_ChunkLength_2() const { return ___m_ChunkLength_2; } inline int32_t* get_address_of_m_ChunkLength_2() { return &___m_ChunkLength_2; } inline void set_m_ChunkLength_2(int32_t value) { ___m_ChunkLength_2 = value; } inline static int32_t get_offset_of_m_ChunkOffset_3() { return static_cast(offsetof(StringBuilder_t, ___m_ChunkOffset_3)); } inline int32_t get_m_ChunkOffset_3() const { return ___m_ChunkOffset_3; } inline int32_t* get_address_of_m_ChunkOffset_3() { return &___m_ChunkOffset_3; } inline void set_m_ChunkOffset_3(int32_t value) { ___m_ChunkOffset_3 = value; } inline static int32_t get_offset_of_m_MaxCapacity_4() { return static_cast(offsetof(StringBuilder_t, ___m_MaxCapacity_4)); } inline int32_t get_m_MaxCapacity_4() const { return ___m_MaxCapacity_4; } inline int32_t* get_address_of_m_MaxCapacity_4() { return &___m_MaxCapacity_4; } inline void set_m_MaxCapacity_4(int32_t value) { ___m_MaxCapacity_4 = value; } }; // System.StringComparer struct StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 : public RuntimeObject { public: public: }; struct StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_StaticFields { public: // System.StringComparer System.StringComparer::_invariantCulture StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * ____invariantCulture_0; // System.StringComparer System.StringComparer::_invariantCultureIgnoreCase StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * ____invariantCultureIgnoreCase_1; // System.StringComparer System.StringComparer::_ordinal StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * ____ordinal_2; // System.StringComparer System.StringComparer::_ordinalIgnoreCase StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * ____ordinalIgnoreCase_3; public: inline static int32_t get_offset_of__invariantCulture_0() { return static_cast(offsetof(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_StaticFields, ____invariantCulture_0)); } inline StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * get__invariantCulture_0() const { return ____invariantCulture_0; } inline StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 ** get_address_of__invariantCulture_0() { return &____invariantCulture_0; } inline void set__invariantCulture_0(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * value) { ____invariantCulture_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____invariantCulture_0), (void*)value); } inline static int32_t get_offset_of__invariantCultureIgnoreCase_1() { return static_cast(offsetof(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_StaticFields, ____invariantCultureIgnoreCase_1)); } inline StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * get__invariantCultureIgnoreCase_1() const { return ____invariantCultureIgnoreCase_1; } inline StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 ** get_address_of__invariantCultureIgnoreCase_1() { return &____invariantCultureIgnoreCase_1; } inline void set__invariantCultureIgnoreCase_1(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * value) { ____invariantCultureIgnoreCase_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____invariantCultureIgnoreCase_1), (void*)value); } inline static int32_t get_offset_of__ordinal_2() { return static_cast(offsetof(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_StaticFields, ____ordinal_2)); } inline StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * get__ordinal_2() const { return ____ordinal_2; } inline StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 ** get_address_of__ordinal_2() { return &____ordinal_2; } inline void set__ordinal_2(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * value) { ____ordinal_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____ordinal_2), (void*)value); } inline static int32_t get_offset_of__ordinalIgnoreCase_3() { return static_cast(offsetof(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_StaticFields, ____ordinalIgnoreCase_3)); } inline StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * get__ordinalIgnoreCase_3() const { return ____ordinalIgnoreCase_3; } inline StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 ** get_address_of__ordinalIgnoreCase_3() { return &____ordinalIgnoreCase_3; } inline void set__ordinalIgnoreCase_3(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * value) { ____ordinalIgnoreCase_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____ordinalIgnoreCase_3), (void*)value); } }; // System.ValueType struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 : public RuntimeObject { public: public: }; // Native definition for P/Invoke marshalling of System.ValueType struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_pinvoke { }; // Native definition for COM marshalling of System.ValueType struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_com { }; // LitJson.WriterContext struct WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 : public RuntimeObject { public: // System.Int32 LitJson.WriterContext::Count int32_t ___Count_0; // System.Boolean LitJson.WriterContext::InArray bool ___InArray_1; // System.Boolean LitJson.WriterContext::InObject bool ___InObject_2; // System.Boolean LitJson.WriterContext::ExpectingValue bool ___ExpectingValue_3; // System.Int32 LitJson.WriterContext::Padding int32_t ___Padding_4; public: inline static int32_t get_offset_of_Count_0() { return static_cast(offsetof(WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3, ___Count_0)); } inline int32_t get_Count_0() const { return ___Count_0; } inline int32_t* get_address_of_Count_0() { return &___Count_0; } inline void set_Count_0(int32_t value) { ___Count_0 = value; } inline static int32_t get_offset_of_InArray_1() { return static_cast(offsetof(WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3, ___InArray_1)); } inline bool get_InArray_1() const { return ___InArray_1; } inline bool* get_address_of_InArray_1() { return &___InArray_1; } inline void set_InArray_1(bool value) { ___InArray_1 = value; } inline static int32_t get_offset_of_InObject_2() { return static_cast(offsetof(WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3, ___InObject_2)); } inline bool get_InObject_2() const { return ___InObject_2; } inline bool* get_address_of_InObject_2() { return &___InObject_2; } inline void set_InObject_2(bool value) { ___InObject_2 = value; } inline static int32_t get_offset_of_ExpectingValue_3() { return static_cast(offsetof(WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3, ___ExpectingValue_3)); } inline bool get_ExpectingValue_3() const { return ___ExpectingValue_3; } inline bool* get_address_of_ExpectingValue_3() { return &___ExpectingValue_3; } inline void set_ExpectingValue_3(bool value) { ___ExpectingValue_3 = value; } inline static int32_t get_offset_of_Padding_4() { return static_cast(offsetof(WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3, ___Padding_4)); } inline int32_t get_Padding_4() const { return ___Padding_4; } inline int32_t* get_address_of_Padding_4() { return &___Padding_4; } inline void set_Padding_4(int32_t value) { ___Padding_4 = value; } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Store.X509CertStoreSelector struct X509CertStoreSelector_tDC9D1189AE7E9E64F71CF541A2D316686E4E2996 : public RuntimeObject { public: // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Store.X509CertStoreSelector::authorityKeyIdentifier ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___authorityKeyIdentifier_0; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Store.X509CertStoreSelector::basicConstraints int32_t ___basicConstraints_1; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Certificate BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Store.X509CertStoreSelector::certificate X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06 * ___certificate_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Date.DateTimeObject BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Store.X509CertStoreSelector::certificateValid DateTimeObject_tD3D00CE2EC23DE07701C2169068B3D47BC4D5B54 * ___certificateValid_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections.ISet BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Store.X509CertStoreSelector::extendedKeyUsage RuntimeObject* ___extendedKeyUsage_4; // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Store.X509CertStoreSelector::ignoreX509NameOrdering bool ___ignoreX509NameOrdering_5; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Store.X509CertStoreSelector::issuer X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * ___issuer_6; // System.Boolean[] BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Store.X509CertStoreSelector::keyUsage BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* ___keyUsage_7; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections.ISet BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Store.X509CertStoreSelector::policy RuntimeObject* ___policy_8; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Date.DateTimeObject BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Store.X509CertStoreSelector::privateKeyValid DateTimeObject_tD3D00CE2EC23DE07701C2169068B3D47BC4D5B54 * ___privateKeyValid_9; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Store.X509CertStoreSelector::serialNumber BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___serialNumber_10; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Store.X509CertStoreSelector::subject X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * ___subject_11; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Store.X509CertStoreSelector::subjectKeyIdentifier ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___subjectKeyIdentifier_12; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Store.X509CertStoreSelector::subjectPublicKey SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB * ___subjectPublicKey_13; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Store.X509CertStoreSelector::subjectPublicKeyAlgID DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___subjectPublicKeyAlgID_14; public: inline static int32_t get_offset_of_authorityKeyIdentifier_0() { return static_cast(offsetof(X509CertStoreSelector_tDC9D1189AE7E9E64F71CF541A2D316686E4E2996, ___authorityKeyIdentifier_0)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_authorityKeyIdentifier_0() const { return ___authorityKeyIdentifier_0; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_authorityKeyIdentifier_0() { return &___authorityKeyIdentifier_0; } inline void set_authorityKeyIdentifier_0(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___authorityKeyIdentifier_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___authorityKeyIdentifier_0), (void*)value); } inline static int32_t get_offset_of_basicConstraints_1() { return static_cast(offsetof(X509CertStoreSelector_tDC9D1189AE7E9E64F71CF541A2D316686E4E2996, ___basicConstraints_1)); } inline int32_t get_basicConstraints_1() const { return ___basicConstraints_1; } inline int32_t* get_address_of_basicConstraints_1() { return &___basicConstraints_1; } inline void set_basicConstraints_1(int32_t value) { ___basicConstraints_1 = value; } inline static int32_t get_offset_of_certificate_2() { return static_cast(offsetof(X509CertStoreSelector_tDC9D1189AE7E9E64F71CF541A2D316686E4E2996, ___certificate_2)); } inline X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06 * get_certificate_2() const { return ___certificate_2; } inline X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06 ** get_address_of_certificate_2() { return &___certificate_2; } inline void set_certificate_2(X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06 * value) { ___certificate_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___certificate_2), (void*)value); } inline static int32_t get_offset_of_certificateValid_3() { return static_cast(offsetof(X509CertStoreSelector_tDC9D1189AE7E9E64F71CF541A2D316686E4E2996, ___certificateValid_3)); } inline DateTimeObject_tD3D00CE2EC23DE07701C2169068B3D47BC4D5B54 * get_certificateValid_3() const { return ___certificateValid_3; } inline DateTimeObject_tD3D00CE2EC23DE07701C2169068B3D47BC4D5B54 ** get_address_of_certificateValid_3() { return &___certificateValid_3; } inline void set_certificateValid_3(DateTimeObject_tD3D00CE2EC23DE07701C2169068B3D47BC4D5B54 * value) { ___certificateValid_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___certificateValid_3), (void*)value); } inline static int32_t get_offset_of_extendedKeyUsage_4() { return static_cast(offsetof(X509CertStoreSelector_tDC9D1189AE7E9E64F71CF541A2D316686E4E2996, ___extendedKeyUsage_4)); } inline RuntimeObject* get_extendedKeyUsage_4() const { return ___extendedKeyUsage_4; } inline RuntimeObject** get_address_of_extendedKeyUsage_4() { return &___extendedKeyUsage_4; } inline void set_extendedKeyUsage_4(RuntimeObject* value) { ___extendedKeyUsage_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___extendedKeyUsage_4), (void*)value); } inline static int32_t get_offset_of_ignoreX509NameOrdering_5() { return static_cast(offsetof(X509CertStoreSelector_tDC9D1189AE7E9E64F71CF541A2D316686E4E2996, ___ignoreX509NameOrdering_5)); } inline bool get_ignoreX509NameOrdering_5() const { return ___ignoreX509NameOrdering_5; } inline bool* get_address_of_ignoreX509NameOrdering_5() { return &___ignoreX509NameOrdering_5; } inline void set_ignoreX509NameOrdering_5(bool value) { ___ignoreX509NameOrdering_5 = value; } inline static int32_t get_offset_of_issuer_6() { return static_cast(offsetof(X509CertStoreSelector_tDC9D1189AE7E9E64F71CF541A2D316686E4E2996, ___issuer_6)); } inline X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * get_issuer_6() const { return ___issuer_6; } inline X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 ** get_address_of_issuer_6() { return &___issuer_6; } inline void set_issuer_6(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * value) { ___issuer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___issuer_6), (void*)value); } inline static int32_t get_offset_of_keyUsage_7() { return static_cast(offsetof(X509CertStoreSelector_tDC9D1189AE7E9E64F71CF541A2D316686E4E2996, ___keyUsage_7)); } inline BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* get_keyUsage_7() const { return ___keyUsage_7; } inline BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C** get_address_of_keyUsage_7() { return &___keyUsage_7; } inline void set_keyUsage_7(BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* value) { ___keyUsage_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keyUsage_7), (void*)value); } inline static int32_t get_offset_of_policy_8() { return static_cast(offsetof(X509CertStoreSelector_tDC9D1189AE7E9E64F71CF541A2D316686E4E2996, ___policy_8)); } inline RuntimeObject* get_policy_8() const { return ___policy_8; } inline RuntimeObject** get_address_of_policy_8() { return &___policy_8; } inline void set_policy_8(RuntimeObject* value) { ___policy_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___policy_8), (void*)value); } inline static int32_t get_offset_of_privateKeyValid_9() { return static_cast(offsetof(X509CertStoreSelector_tDC9D1189AE7E9E64F71CF541A2D316686E4E2996, ___privateKeyValid_9)); } inline DateTimeObject_tD3D00CE2EC23DE07701C2169068B3D47BC4D5B54 * get_privateKeyValid_9() const { return ___privateKeyValid_9; } inline DateTimeObject_tD3D00CE2EC23DE07701C2169068B3D47BC4D5B54 ** get_address_of_privateKeyValid_9() { return &___privateKeyValid_9; } inline void set_privateKeyValid_9(DateTimeObject_tD3D00CE2EC23DE07701C2169068B3D47BC4D5B54 * value) { ___privateKeyValid_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___privateKeyValid_9), (void*)value); } inline static int32_t get_offset_of_serialNumber_10() { return static_cast(offsetof(X509CertStoreSelector_tDC9D1189AE7E9E64F71CF541A2D316686E4E2996, ___serialNumber_10)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_serialNumber_10() const { return ___serialNumber_10; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_serialNumber_10() { return &___serialNumber_10; } inline void set_serialNumber_10(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___serialNumber_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___serialNumber_10), (void*)value); } inline static int32_t get_offset_of_subject_11() { return static_cast(offsetof(X509CertStoreSelector_tDC9D1189AE7E9E64F71CF541A2D316686E4E2996, ___subject_11)); } inline X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * get_subject_11() const { return ___subject_11; } inline X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 ** get_address_of_subject_11() { return &___subject_11; } inline void set_subject_11(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * value) { ___subject_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___subject_11), (void*)value); } inline static int32_t get_offset_of_subjectKeyIdentifier_12() { return static_cast(offsetof(X509CertStoreSelector_tDC9D1189AE7E9E64F71CF541A2D316686E4E2996, ___subjectKeyIdentifier_12)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_subjectKeyIdentifier_12() const { return ___subjectKeyIdentifier_12; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_subjectKeyIdentifier_12() { return &___subjectKeyIdentifier_12; } inline void set_subjectKeyIdentifier_12(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___subjectKeyIdentifier_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___subjectKeyIdentifier_12), (void*)value); } inline static int32_t get_offset_of_subjectPublicKey_13() { return static_cast(offsetof(X509CertStoreSelector_tDC9D1189AE7E9E64F71CF541A2D316686E4E2996, ___subjectPublicKey_13)); } inline SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB * get_subjectPublicKey_13() const { return ___subjectPublicKey_13; } inline SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB ** get_address_of_subjectPublicKey_13() { return &___subjectPublicKey_13; } inline void set_subjectPublicKey_13(SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB * value) { ___subjectPublicKey_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___subjectPublicKey_13), (void*)value); } inline static int32_t get_offset_of_subjectPublicKeyAlgID_14() { return static_cast(offsetof(X509CertStoreSelector_tDC9D1189AE7E9E64F71CF541A2D316686E4E2996, ___subjectPublicKeyAlgID_14)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_subjectPublicKeyAlgID_14() const { return ___subjectPublicKeyAlgID_14; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_subjectPublicKeyAlgID_14() { return &___subjectPublicKeyAlgID_14; } inline void set_subjectPublicKeyAlgID_14(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___subjectPublicKeyAlgID_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___subjectPublicKeyAlgID_14), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extension struct X509Extension_t977D8DEE7C59707768F9038FE1B97F2E243B80AB : public RuntimeObject { public: // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extension::critical bool ___critical_0; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extension::value Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * ___value_1; public: inline static int32_t get_offset_of_critical_0() { return static_cast(offsetof(X509Extension_t977D8DEE7C59707768F9038FE1B97F2E243B80AB, ___critical_0)); } inline bool get_critical_0() const { return ___critical_0; } inline bool* get_address_of_critical_0() { return &___critical_0; } inline void set_critical_0(bool value) { ___critical_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast(offsetof(X509Extension_t977D8DEE7C59707768F9038FE1B97F2E243B80AB, ___value_1)); } inline Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * get_value_1() const { return ___value_1; } inline Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509ExtensionBase struct X509ExtensionBase_t91B691B9E834F516C9CE847F2B900B019A37CCE7 : public RuntimeObject { public: public: }; // LitJson.JsonMapper/<>c struct U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318 : public RuntimeObject { public: public: }; struct U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields { public: // LitJson.JsonMapper/<>c LitJson.JsonMapper/<>c::<>9 U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318 * ___U3CU3E9_0; // LitJson.WrapperFactory LitJson.JsonMapper/<>c::<>9__25_0 WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C * ___U3CU3E9__25_0_1; // LitJson.ExporterFunc LitJson.JsonMapper/<>c::<>9__26_0 ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * ___U3CU3E9__26_0_2; // LitJson.ExporterFunc LitJson.JsonMapper/<>c::<>9__26_1 ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * ___U3CU3E9__26_1_3; // LitJson.ExporterFunc LitJson.JsonMapper/<>c::<>9__26_2 ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * ___U3CU3E9__26_2_4; // LitJson.ExporterFunc LitJson.JsonMapper/<>c::<>9__26_3 ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * ___U3CU3E9__26_3_5; // LitJson.ExporterFunc LitJson.JsonMapper/<>c::<>9__26_4 ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * ___U3CU3E9__26_4_6; // LitJson.ExporterFunc LitJson.JsonMapper/<>c::<>9__26_5 ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * ___U3CU3E9__26_5_7; // LitJson.ExporterFunc LitJson.JsonMapper/<>c::<>9__26_6 ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * ___U3CU3E9__26_6_8; // LitJson.ExporterFunc LitJson.JsonMapper/<>c::<>9__26_7 ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * ___U3CU3E9__26_7_9; // LitJson.ExporterFunc LitJson.JsonMapper/<>c::<>9__26_8 ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * ___U3CU3E9__26_8_10; // LitJson.ImporterFunc LitJson.JsonMapper/<>c::<>9__27_0 ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * ___U3CU3E9__27_0_11; // LitJson.ImporterFunc LitJson.JsonMapper/<>c::<>9__27_1 ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * ___U3CU3E9__27_1_12; // LitJson.ImporterFunc LitJson.JsonMapper/<>c::<>9__27_2 ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * ___U3CU3E9__27_2_13; // LitJson.ImporterFunc LitJson.JsonMapper/<>c::<>9__27_3 ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * ___U3CU3E9__27_3_14; // LitJson.ImporterFunc LitJson.JsonMapper/<>c::<>9__27_4 ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * ___U3CU3E9__27_4_15; // LitJson.ImporterFunc LitJson.JsonMapper/<>c::<>9__27_5 ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * ___U3CU3E9__27_5_16; // LitJson.ImporterFunc LitJson.JsonMapper/<>c::<>9__27_6 ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * ___U3CU3E9__27_6_17; // LitJson.ImporterFunc LitJson.JsonMapper/<>c::<>9__27_7 ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * ___U3CU3E9__27_7_18; // LitJson.ImporterFunc LitJson.JsonMapper/<>c::<>9__27_8 ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * ___U3CU3E9__27_8_19; // LitJson.ImporterFunc LitJson.JsonMapper/<>c::<>9__27_9 ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * ___U3CU3E9__27_9_20; // LitJson.ImporterFunc LitJson.JsonMapper/<>c::<>9__27_10 ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * ___U3CU3E9__27_10_21; // LitJson.ImporterFunc LitJson.JsonMapper/<>c::<>9__27_11 ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * ___U3CU3E9__27_11_22; // LitJson.WrapperFactory LitJson.JsonMapper/<>c::<>9__32_0 WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C * ___U3CU3E9__32_0_23; // LitJson.WrapperFactory LitJson.JsonMapper/<>c::<>9__33_0 WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C * ___U3CU3E9__33_0_24; // LitJson.WrapperFactory LitJson.JsonMapper/<>c::<>9__34_0 WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C * ___U3CU3E9__34_0_25; public: inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast(offsetof(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields, ___U3CU3E9_0)); } inline U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318 * get_U3CU3E9_0() const { return ___U3CU3E9_0; } inline U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; } inline void set_U3CU3E9_0(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318 * value) { ___U3CU3E9_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__25_0_1() { return static_cast(offsetof(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields, ___U3CU3E9__25_0_1)); } inline WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C * get_U3CU3E9__25_0_1() const { return ___U3CU3E9__25_0_1; } inline WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C ** get_address_of_U3CU3E9__25_0_1() { return &___U3CU3E9__25_0_1; } inline void set_U3CU3E9__25_0_1(WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C * value) { ___U3CU3E9__25_0_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__25_0_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__26_0_2() { return static_cast(offsetof(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields, ___U3CU3E9__26_0_2)); } inline ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * get_U3CU3E9__26_0_2() const { return ___U3CU3E9__26_0_2; } inline ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 ** get_address_of_U3CU3E9__26_0_2() { return &___U3CU3E9__26_0_2; } inline void set_U3CU3E9__26_0_2(ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * value) { ___U3CU3E9__26_0_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__26_0_2), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__26_1_3() { return static_cast(offsetof(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields, ___U3CU3E9__26_1_3)); } inline ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * get_U3CU3E9__26_1_3() const { return ___U3CU3E9__26_1_3; } inline ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 ** get_address_of_U3CU3E9__26_1_3() { return &___U3CU3E9__26_1_3; } inline void set_U3CU3E9__26_1_3(ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * value) { ___U3CU3E9__26_1_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__26_1_3), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__26_2_4() { return static_cast(offsetof(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields, ___U3CU3E9__26_2_4)); } inline ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * get_U3CU3E9__26_2_4() const { return ___U3CU3E9__26_2_4; } inline ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 ** get_address_of_U3CU3E9__26_2_4() { return &___U3CU3E9__26_2_4; } inline void set_U3CU3E9__26_2_4(ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * value) { ___U3CU3E9__26_2_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__26_2_4), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__26_3_5() { return static_cast(offsetof(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields, ___U3CU3E9__26_3_5)); } inline ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * get_U3CU3E9__26_3_5() const { return ___U3CU3E9__26_3_5; } inline ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 ** get_address_of_U3CU3E9__26_3_5() { return &___U3CU3E9__26_3_5; } inline void set_U3CU3E9__26_3_5(ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * value) { ___U3CU3E9__26_3_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__26_3_5), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__26_4_6() { return static_cast(offsetof(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields, ___U3CU3E9__26_4_6)); } inline ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * get_U3CU3E9__26_4_6() const { return ___U3CU3E9__26_4_6; } inline ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 ** get_address_of_U3CU3E9__26_4_6() { return &___U3CU3E9__26_4_6; } inline void set_U3CU3E9__26_4_6(ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * value) { ___U3CU3E9__26_4_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__26_4_6), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__26_5_7() { return static_cast(offsetof(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields, ___U3CU3E9__26_5_7)); } inline ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * get_U3CU3E9__26_5_7() const { return ___U3CU3E9__26_5_7; } inline ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 ** get_address_of_U3CU3E9__26_5_7() { return &___U3CU3E9__26_5_7; } inline void set_U3CU3E9__26_5_7(ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * value) { ___U3CU3E9__26_5_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__26_5_7), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__26_6_8() { return static_cast(offsetof(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields, ___U3CU3E9__26_6_8)); } inline ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * get_U3CU3E9__26_6_8() const { return ___U3CU3E9__26_6_8; } inline ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 ** get_address_of_U3CU3E9__26_6_8() { return &___U3CU3E9__26_6_8; } inline void set_U3CU3E9__26_6_8(ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * value) { ___U3CU3E9__26_6_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__26_6_8), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__26_7_9() { return static_cast(offsetof(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields, ___U3CU3E9__26_7_9)); } inline ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * get_U3CU3E9__26_7_9() const { return ___U3CU3E9__26_7_9; } inline ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 ** get_address_of_U3CU3E9__26_7_9() { return &___U3CU3E9__26_7_9; } inline void set_U3CU3E9__26_7_9(ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * value) { ___U3CU3E9__26_7_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__26_7_9), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__26_8_10() { return static_cast(offsetof(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields, ___U3CU3E9__26_8_10)); } inline ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * get_U3CU3E9__26_8_10() const { return ___U3CU3E9__26_8_10; } inline ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 ** get_address_of_U3CU3E9__26_8_10() { return &___U3CU3E9__26_8_10; } inline void set_U3CU3E9__26_8_10(ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * value) { ___U3CU3E9__26_8_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__26_8_10), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__27_0_11() { return static_cast(offsetof(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields, ___U3CU3E9__27_0_11)); } inline ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * get_U3CU3E9__27_0_11() const { return ___U3CU3E9__27_0_11; } inline ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D ** get_address_of_U3CU3E9__27_0_11() { return &___U3CU3E9__27_0_11; } inline void set_U3CU3E9__27_0_11(ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * value) { ___U3CU3E9__27_0_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__27_0_11), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__27_1_12() { return static_cast(offsetof(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields, ___U3CU3E9__27_1_12)); } inline ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * get_U3CU3E9__27_1_12() const { return ___U3CU3E9__27_1_12; } inline ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D ** get_address_of_U3CU3E9__27_1_12() { return &___U3CU3E9__27_1_12; } inline void set_U3CU3E9__27_1_12(ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * value) { ___U3CU3E9__27_1_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__27_1_12), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__27_2_13() { return static_cast(offsetof(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields, ___U3CU3E9__27_2_13)); } inline ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * get_U3CU3E9__27_2_13() const { return ___U3CU3E9__27_2_13; } inline ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D ** get_address_of_U3CU3E9__27_2_13() { return &___U3CU3E9__27_2_13; } inline void set_U3CU3E9__27_2_13(ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * value) { ___U3CU3E9__27_2_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__27_2_13), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__27_3_14() { return static_cast(offsetof(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields, ___U3CU3E9__27_3_14)); } inline ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * get_U3CU3E9__27_3_14() const { return ___U3CU3E9__27_3_14; } inline ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D ** get_address_of_U3CU3E9__27_3_14() { return &___U3CU3E9__27_3_14; } inline void set_U3CU3E9__27_3_14(ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * value) { ___U3CU3E9__27_3_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__27_3_14), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__27_4_15() { return static_cast(offsetof(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields, ___U3CU3E9__27_4_15)); } inline ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * get_U3CU3E9__27_4_15() const { return ___U3CU3E9__27_4_15; } inline ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D ** get_address_of_U3CU3E9__27_4_15() { return &___U3CU3E9__27_4_15; } inline void set_U3CU3E9__27_4_15(ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * value) { ___U3CU3E9__27_4_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__27_4_15), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__27_5_16() { return static_cast(offsetof(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields, ___U3CU3E9__27_5_16)); } inline ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * get_U3CU3E9__27_5_16() const { return ___U3CU3E9__27_5_16; } inline ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D ** get_address_of_U3CU3E9__27_5_16() { return &___U3CU3E9__27_5_16; } inline void set_U3CU3E9__27_5_16(ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * value) { ___U3CU3E9__27_5_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__27_5_16), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__27_6_17() { return static_cast(offsetof(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields, ___U3CU3E9__27_6_17)); } inline ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * get_U3CU3E9__27_6_17() const { return ___U3CU3E9__27_6_17; } inline ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D ** get_address_of_U3CU3E9__27_6_17() { return &___U3CU3E9__27_6_17; } inline void set_U3CU3E9__27_6_17(ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * value) { ___U3CU3E9__27_6_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__27_6_17), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__27_7_18() { return static_cast(offsetof(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields, ___U3CU3E9__27_7_18)); } inline ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * get_U3CU3E9__27_7_18() const { return ___U3CU3E9__27_7_18; } inline ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D ** get_address_of_U3CU3E9__27_7_18() { return &___U3CU3E9__27_7_18; } inline void set_U3CU3E9__27_7_18(ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * value) { ___U3CU3E9__27_7_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__27_7_18), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__27_8_19() { return static_cast(offsetof(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields, ___U3CU3E9__27_8_19)); } inline ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * get_U3CU3E9__27_8_19() const { return ___U3CU3E9__27_8_19; } inline ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D ** get_address_of_U3CU3E9__27_8_19() { return &___U3CU3E9__27_8_19; } inline void set_U3CU3E9__27_8_19(ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * value) { ___U3CU3E9__27_8_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__27_8_19), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__27_9_20() { return static_cast(offsetof(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields, ___U3CU3E9__27_9_20)); } inline ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * get_U3CU3E9__27_9_20() const { return ___U3CU3E9__27_9_20; } inline ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D ** get_address_of_U3CU3E9__27_9_20() { return &___U3CU3E9__27_9_20; } inline void set_U3CU3E9__27_9_20(ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * value) { ___U3CU3E9__27_9_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__27_9_20), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__27_10_21() { return static_cast(offsetof(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields, ___U3CU3E9__27_10_21)); } inline ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * get_U3CU3E9__27_10_21() const { return ___U3CU3E9__27_10_21; } inline ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D ** get_address_of_U3CU3E9__27_10_21() { return &___U3CU3E9__27_10_21; } inline void set_U3CU3E9__27_10_21(ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * value) { ___U3CU3E9__27_10_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__27_10_21), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__27_11_22() { return static_cast(offsetof(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields, ___U3CU3E9__27_11_22)); } inline ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * get_U3CU3E9__27_11_22() const { return ___U3CU3E9__27_11_22; } inline ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D ** get_address_of_U3CU3E9__27_11_22() { return &___U3CU3E9__27_11_22; } inline void set_U3CU3E9__27_11_22(ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * value) { ___U3CU3E9__27_11_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__27_11_22), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__32_0_23() { return static_cast(offsetof(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields, ___U3CU3E9__32_0_23)); } inline WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C * get_U3CU3E9__32_0_23() const { return ___U3CU3E9__32_0_23; } inline WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C ** get_address_of_U3CU3E9__32_0_23() { return &___U3CU3E9__32_0_23; } inline void set_U3CU3E9__32_0_23(WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C * value) { ___U3CU3E9__32_0_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__32_0_23), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__33_0_24() { return static_cast(offsetof(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields, ___U3CU3E9__33_0_24)); } inline WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C * get_U3CU3E9__33_0_24() const { return ___U3CU3E9__33_0_24; } inline WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C ** get_address_of_U3CU3E9__33_0_24() { return &___U3CU3E9__33_0_24; } inline void set_U3CU3E9__33_0_24(WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C * value) { ___U3CU3E9__33_0_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__33_0_24), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__34_0_25() { return static_cast(offsetof(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields, ___U3CU3E9__34_0_25)); } inline WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C * get_U3CU3E9__34_0_25() const { return ___U3CU3E9__34_0_25; } inline WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C ** get_address_of_U3CU3E9__34_0_25() { return &___U3CU3E9__34_0_25; } inline void set_U3CU3E9__34_0_25(WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C * value) { ___U3CU3E9__34_0_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__34_0_25), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier struct AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier::algorithm DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___algorithm_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier::parameters Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * ___parameters_3; public: inline static int32_t get_offset_of_algorithm_2() { return static_cast(offsetof(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9, ___algorithm_2)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_algorithm_2() const { return ___algorithm_2; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_algorithm_2() { return &___algorithm_2; } inline void set_algorithm_2(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___algorithm_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___algorithm_2), (void*)value); } inline static int32_t get_offset_of_parameters_3() { return static_cast(offsetof(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9, ___parameters_3)); } inline Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * get_parameters_3() const { return ___parameters_3; } inline Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC ** get_address_of_parameters_3() { return &___parameters_3; } inline void set_parameters_3(Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * value) { ___parameters_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___parameters_3), (void*)value); } }; // LitJson.ArrayMetadata struct ArrayMetadata_tF0CA4EA5DDA5A3A4E7FFF5549F3807D19592A4B9 { public: // System.Type LitJson.ArrayMetadata::element_type Type_t * ___element_type_0; // System.Boolean LitJson.ArrayMetadata::is_array bool ___is_array_1; // System.Boolean LitJson.ArrayMetadata::is_list bool ___is_list_2; public: inline static int32_t get_offset_of_element_type_0() { return static_cast(offsetof(ArrayMetadata_tF0CA4EA5DDA5A3A4E7FFF5549F3807D19592A4B9, ___element_type_0)); } inline Type_t * get_element_type_0() const { return ___element_type_0; } inline Type_t ** get_address_of_element_type_0() { return &___element_type_0; } inline void set_element_type_0(Type_t * value) { ___element_type_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___element_type_0), (void*)value); } inline static int32_t get_offset_of_is_array_1() { return static_cast(offsetof(ArrayMetadata_tF0CA4EA5DDA5A3A4E7FFF5549F3807D19592A4B9, ___is_array_1)); } inline bool get_is_array_1() const { return ___is_array_1; } inline bool* get_address_of_is_array_1() { return &___is_array_1; } inline void set_is_array_1(bool value) { ___is_array_1 = value; } inline static int32_t get_offset_of_is_list_2() { return static_cast(offsetof(ArrayMetadata_tF0CA4EA5DDA5A3A4E7FFF5549F3807D19592A4B9, ___is_list_2)); } inline bool get_is_list_2() const { return ___is_list_2; } inline bool* get_address_of_is_list_2() { return &___is_list_2; } inline void set_is_list_2(bool value) { ___is_list_2 = value; } }; // Native definition for P/Invoke marshalling of LitJson.ArrayMetadata struct ArrayMetadata_tF0CA4EA5DDA5A3A4E7FFF5549F3807D19592A4B9_marshaled_pinvoke { Type_t * ___element_type_0; int32_t ___is_array_1; int32_t ___is_list_2; }; // Native definition for COM marshalling of LitJson.ArrayMetadata struct ArrayMetadata_tF0CA4EA5DDA5A3A4E7FFF5549F3807D19592A4B9_marshaled_com { Type_t * ___element_type_0; int32_t ___is_array_1; int32_t ___is_list_2; }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Object struct Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: public: }; // System.Boolean struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37 { public: // System.Boolean System.Boolean::m_value bool ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37, ___m_value_0)); } inline bool get_m_value_0() const { return ___m_value_0; } inline bool* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(bool value) { ___m_value_0 = value; } }; struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields { public: // System.String System.Boolean::TrueString String_t* ___TrueString_5; // System.String System.Boolean::FalseString String_t* ___FalseString_6; public: inline static int32_t get_offset_of_TrueString_5() { return static_cast(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___TrueString_5)); } inline String_t* get_TrueString_5() const { return ___TrueString_5; } inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; } inline void set_TrueString_5(String_t* value) { ___TrueString_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value); } inline static int32_t get_offset_of_FalseString_6() { return static_cast(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___FalseString_6)); } inline String_t* get_FalseString_6() const { return ___FalseString_6; } inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; } inline void set_FalseString_6(String_t* value) { ___FalseString_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value); } }; // System.Byte struct Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056 { public: // System.Byte System.Byte::m_value uint8_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056, ___m_value_0)); } inline uint8_t get_m_value_0() const { return ___m_value_0; } inline uint8_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint8_t value) { ___m_value_0 = value; } }; // BestHTTP.SignalRCore.Messages.CancelInvocationMessage struct CancelInvocationMessage_t11BB5BF6A7125A5CFD91D367AB77D627B9C6394D { public: // System.String BestHTTP.SignalRCore.Messages.CancelInvocationMessage::invocationId String_t* ___invocationId_0; public: inline static int32_t get_offset_of_invocationId_0() { return static_cast(offsetof(CancelInvocationMessage_t11BB5BF6A7125A5CFD91D367AB77D627B9C6394D, ___invocationId_0)); } inline String_t* get_invocationId_0() const { return ___invocationId_0; } inline String_t** get_address_of_invocationId_0() { return &___invocationId_0; } inline void set_invocationId_0(String_t* value) { ___invocationId_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___invocationId_0), (void*)value); } }; // Native definition for P/Invoke marshalling of BestHTTP.SignalRCore.Messages.CancelInvocationMessage struct CancelInvocationMessage_t11BB5BF6A7125A5CFD91D367AB77D627B9C6394D_marshaled_pinvoke { char* ___invocationId_0; }; // Native definition for COM marshalling of BestHTTP.SignalRCore.Messages.CancelInvocationMessage struct CancelInvocationMessage_t11BB5BF6A7125A5CFD91D367AB77D627B9C6394D_marshaled_com { Il2CppChar* ___invocationId_0; }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.CertifiedKeyPair struct CertifiedKeyPair_t50EB833AED8814B77F5F26FD6F653B3C8A31B807 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.CertOrEncCert BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.CertifiedKeyPair::certOrEncCert CertOrEncCert_t46D5B3CC01E21697A45ED1E8CE163196BEF34BA0 * ___certOrEncCert_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Crmf.EncryptedValue BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.CertifiedKeyPair::privateKey EncryptedValue_t2141D38B30370A8572D08139F2050710E69196A1 * ___privateKey_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Crmf.PkiPublicationInfo BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.CertifiedKeyPair::publicationInfo PkiPublicationInfo_t6895A4B735CC2E8886D91C57BBF896ADF0A83DEC * ___publicationInfo_4; public: inline static int32_t get_offset_of_certOrEncCert_2() { return static_cast(offsetof(CertifiedKeyPair_t50EB833AED8814B77F5F26FD6F653B3C8A31B807, ___certOrEncCert_2)); } inline CertOrEncCert_t46D5B3CC01E21697A45ED1E8CE163196BEF34BA0 * get_certOrEncCert_2() const { return ___certOrEncCert_2; } inline CertOrEncCert_t46D5B3CC01E21697A45ED1E8CE163196BEF34BA0 ** get_address_of_certOrEncCert_2() { return &___certOrEncCert_2; } inline void set_certOrEncCert_2(CertOrEncCert_t46D5B3CC01E21697A45ED1E8CE163196BEF34BA0 * value) { ___certOrEncCert_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___certOrEncCert_2), (void*)value); } inline static int32_t get_offset_of_privateKey_3() { return static_cast(offsetof(CertifiedKeyPair_t50EB833AED8814B77F5F26FD6F653B3C8A31B807, ___privateKey_3)); } inline EncryptedValue_t2141D38B30370A8572D08139F2050710E69196A1 * get_privateKey_3() const { return ___privateKey_3; } inline EncryptedValue_t2141D38B30370A8572D08139F2050710E69196A1 ** get_address_of_privateKey_3() { return &___privateKey_3; } inline void set_privateKey_3(EncryptedValue_t2141D38B30370A8572D08139F2050710E69196A1 * value) { ___privateKey_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___privateKey_3), (void*)value); } inline static int32_t get_offset_of_publicationInfo_4() { return static_cast(offsetof(CertifiedKeyPair_t50EB833AED8814B77F5F26FD6F653B3C8A31B807, ___publicationInfo_4)); } inline PkiPublicationInfo_t6895A4B735CC2E8886D91C57BBF896ADF0A83DEC * get_publicationInfo_4() const { return ___publicationInfo_4; } inline PkiPublicationInfo_t6895A4B735CC2E8886D91C57BBF896ADF0A83DEC ** get_address_of_publicationInfo_4() { return &___publicationInfo_4; } inline void set_publicationInfo_4(PkiPublicationInfo_t6895A4B735CC2E8886D91C57BBF896ADF0A83DEC * value) { ___publicationInfo_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___publicationInfo_4), (void*)value); } }; // System.Char struct Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14 { public: // System.Char System.Char::m_value Il2CppChar ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14, ___m_value_0)); } inline Il2CppChar get_m_value_0() const { return ___m_value_0; } inline Il2CppChar* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(Il2CppChar value) { ___m_value_0 = value; } }; struct Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_StaticFields { public: // System.Byte[] System.Char::categoryForLatin1 ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___categoryForLatin1_3; public: inline static int32_t get_offset_of_categoryForLatin1_3() { return static_cast(offsetof(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_StaticFields, ___categoryForLatin1_3)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_categoryForLatin1_3() const { return ___categoryForLatin1_3; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_categoryForLatin1_3() { return &___categoryForLatin1_3; } inline void set_categoryForLatin1_3(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___categoryForLatin1_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___categoryForLatin1_3), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.CmpCertificate struct CmpCertificate_t426B8158788ADFD4E28E4E8F169E1E1D7651F894 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509CertificateStructure BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.CmpCertificate::x509v3PKCert X509CertificateStructure_tD48237F907D1001604C98590613EFD6D720BEDE1 * ___x509v3PKCert_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeCertificate BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.CmpCertificate::x509v2AttrCert AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 * ___x509v2AttrCert_3; public: inline static int32_t get_offset_of_x509v3PKCert_2() { return static_cast(offsetof(CmpCertificate_t426B8158788ADFD4E28E4E8F169E1E1D7651F894, ___x509v3PKCert_2)); } inline X509CertificateStructure_tD48237F907D1001604C98590613EFD6D720BEDE1 * get_x509v3PKCert_2() const { return ___x509v3PKCert_2; } inline X509CertificateStructure_tD48237F907D1001604C98590613EFD6D720BEDE1 ** get_address_of_x509v3PKCert_2() { return &___x509v3PKCert_2; } inline void set_x509v3PKCert_2(X509CertificateStructure_tD48237F907D1001604C98590613EFD6D720BEDE1 * value) { ___x509v3PKCert_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___x509v3PKCert_2), (void*)value); } inline static int32_t get_offset_of_x509v2AttrCert_3() { return static_cast(offsetof(CmpCertificate_t426B8158788ADFD4E28E4E8F169E1E1D7651F894, ___x509v2AttrCert_3)); } inline AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 * get_x509v2AttrCert_3() const { return ___x509v2AttrCert_3; } inline AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 ** get_address_of_x509v2AttrCert_3() { return &___x509v2AttrCert_3; } inline void set_x509v2AttrCert_3(AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 * value) { ___x509v2AttrCert_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___x509v2AttrCert_3), (void*)value); } }; // System.DateTime struct DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 { public: // System.UInt64 System.DateTime::dateData uint64_t ___dateData_44; public: inline static int32_t get_offset_of_dateData_44() { return static_cast(offsetof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405, ___dateData_44)); } inline uint64_t get_dateData_44() const { return ___dateData_44; } inline uint64_t* get_address_of_dateData_44() { return &___dateData_44; } inline void set_dateData_44(uint64_t value) { ___dateData_44 = value; } }; struct DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields { public: // System.Int32[] System.DateTime::DaysToMonth365 Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___DaysToMonth365_29; // System.Int32[] System.DateTime::DaysToMonth366 Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___DaysToMonth366_30; // System.DateTime System.DateTime::MinValue DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___MinValue_31; // System.DateTime System.DateTime::MaxValue DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___MaxValue_32; public: inline static int32_t get_offset_of_DaysToMonth365_29() { return static_cast(offsetof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields, ___DaysToMonth365_29)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_DaysToMonth365_29() const { return ___DaysToMonth365_29; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_DaysToMonth365_29() { return &___DaysToMonth365_29; } inline void set_DaysToMonth365_29(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___DaysToMonth365_29 = value; Il2CppCodeGenWriteBarrier((void**)(&___DaysToMonth365_29), (void*)value); } inline static int32_t get_offset_of_DaysToMonth366_30() { return static_cast(offsetof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields, ___DaysToMonth366_30)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_DaysToMonth366_30() const { return ___DaysToMonth366_30; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_DaysToMonth366_30() { return &___DaysToMonth366_30; } inline void set_DaysToMonth366_30(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___DaysToMonth366_30 = value; Il2CppCodeGenWriteBarrier((void**)(&___DaysToMonth366_30), (void*)value); } inline static int32_t get_offset_of_MinValue_31() { return static_cast(offsetof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields, ___MinValue_31)); } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_MinValue_31() const { return ___MinValue_31; } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_MinValue_31() { return &___MinValue_31; } inline void set_MinValue_31(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value) { ___MinValue_31 = value; } inline static int32_t get_offset_of_MaxValue_32() { return static_cast(offsetof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields, ___MaxValue_32)); } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_MaxValue_32() const { return ___MaxValue_32; } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_MaxValue_32() { return &___MaxValue_32; } inline void set_MaxValue_32(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value) { ___MaxValue_32 = value; } }; // System.Decimal struct Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 { public: // System.Int32 System.Decimal::flags int32_t ___flags_14; // System.Int32 System.Decimal::hi int32_t ___hi_15; // System.Int32 System.Decimal::lo int32_t ___lo_16; // System.Int32 System.Decimal::mid int32_t ___mid_17; public: inline static int32_t get_offset_of_flags_14() { return static_cast(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7, ___flags_14)); } inline int32_t get_flags_14() const { return ___flags_14; } inline int32_t* get_address_of_flags_14() { return &___flags_14; } inline void set_flags_14(int32_t value) { ___flags_14 = value; } inline static int32_t get_offset_of_hi_15() { return static_cast(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7, ___hi_15)); } inline int32_t get_hi_15() const { return ___hi_15; } inline int32_t* get_address_of_hi_15() { return &___hi_15; } inline void set_hi_15(int32_t value) { ___hi_15 = value; } inline static int32_t get_offset_of_lo_16() { return static_cast(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7, ___lo_16)); } inline int32_t get_lo_16() const { return ___lo_16; } inline int32_t* get_address_of_lo_16() { return &___lo_16; } inline void set_lo_16(int32_t value) { ___lo_16 = value; } inline static int32_t get_offset_of_mid_17() { return static_cast(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7, ___mid_17)); } inline int32_t get_mid_17() const { return ___mid_17; } inline int32_t* get_address_of_mid_17() { return &___mid_17; } inline void set_mid_17(int32_t value) { ___mid_17 = value; } }; struct Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields { public: // System.UInt32[] System.Decimal::Powers10 UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* ___Powers10_6; // System.Decimal System.Decimal::Zero Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___Zero_7; // System.Decimal System.Decimal::One Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___One_8; // System.Decimal System.Decimal::MinusOne Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___MinusOne_9; // System.Decimal System.Decimal::MaxValue Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___MaxValue_10; // System.Decimal System.Decimal::MinValue Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___MinValue_11; // System.Decimal System.Decimal::NearNegativeZero Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___NearNegativeZero_12; // System.Decimal System.Decimal::NearPositiveZero Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___NearPositiveZero_13; public: inline static int32_t get_offset_of_Powers10_6() { return static_cast(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___Powers10_6)); } inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* get_Powers10_6() const { return ___Powers10_6; } inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF** get_address_of_Powers10_6() { return &___Powers10_6; } inline void set_Powers10_6(UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* value) { ___Powers10_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___Powers10_6), (void*)value); } inline static int32_t get_offset_of_Zero_7() { return static_cast(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___Zero_7)); } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_Zero_7() const { return ___Zero_7; } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_Zero_7() { return &___Zero_7; } inline void set_Zero_7(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value) { ___Zero_7 = value; } inline static int32_t get_offset_of_One_8() { return static_cast(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___One_8)); } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_One_8() const { return ___One_8; } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_One_8() { return &___One_8; } inline void set_One_8(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value) { ___One_8 = value; } inline static int32_t get_offset_of_MinusOne_9() { return static_cast(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___MinusOne_9)); } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_MinusOne_9() const { return ___MinusOne_9; } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_MinusOne_9() { return &___MinusOne_9; } inline void set_MinusOne_9(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value) { ___MinusOne_9 = value; } inline static int32_t get_offset_of_MaxValue_10() { return static_cast(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___MaxValue_10)); } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_MaxValue_10() const { return ___MaxValue_10; } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_MaxValue_10() { return &___MaxValue_10; } inline void set_MaxValue_10(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value) { ___MaxValue_10 = value; } inline static int32_t get_offset_of_MinValue_11() { return static_cast(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___MinValue_11)); } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_MinValue_11() const { return ___MinValue_11; } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_MinValue_11() { return &___MinValue_11; } inline void set_MinValue_11(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value) { ___MinValue_11 = value; } inline static int32_t get_offset_of_NearNegativeZero_12() { return static_cast(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___NearNegativeZero_12)); } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_NearNegativeZero_12() const { return ___NearNegativeZero_12; } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_NearNegativeZero_12() { return &___NearNegativeZero_12; } inline void set_NearNegativeZero_12(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value) { ___NearNegativeZero_12 = value; } inline static int32_t get_offset_of_NearPositiveZero_13() { return static_cast(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___NearPositiveZero_13)); } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_NearPositiveZero_13() const { return ___NearPositiveZero_13; } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_NearPositiveZero_13() { return &___NearPositiveZero_13; } inline void set_NearPositiveZero_13(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value) { ___NearPositiveZero_13 = value; } }; // System.Collections.DictionaryEntry struct DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 { public: // System.Object System.Collections.DictionaryEntry::_key RuntimeObject * ____key_0; // System.Object System.Collections.DictionaryEntry::_value RuntimeObject * ____value_1; public: inline static int32_t get_offset_of__key_0() { return static_cast(offsetof(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90, ____key_0)); } inline RuntimeObject * get__key_0() const { return ____key_0; } inline RuntimeObject ** get_address_of__key_0() { return &____key_0; } inline void set__key_0(RuntimeObject * value) { ____key_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____key_0), (void*)value); } inline static int32_t get_offset_of__value_1() { return static_cast(offsetof(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90, ____value_1)); } inline RuntimeObject * get__value_1() const { return ____value_1; } inline RuntimeObject ** get_address_of__value_1() { return &____value_1; } inline void set__value_1(RuntimeObject * value) { ____value_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____value_1), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Collections.DictionaryEntry struct DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_marshaled_pinvoke { Il2CppIUnknown* ____key_0; Il2CppIUnknown* ____value_1; }; // Native definition for COM marshalling of System.Collections.DictionaryEntry struct DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_marshaled_com { Il2CppIUnknown* ____key_0; Il2CppIUnknown* ____value_1; }; // System.Double struct Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181 { public: // System.Double System.Double::m_value double ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181, ___m_value_0)); } inline double get_m_value_0() const { return ___m_value_0; } inline double* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(double value) { ___m_value_0 = value; } }; struct Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_StaticFields { public: // System.Double System.Double::NegativeZero double ___NegativeZero_7; public: inline static int32_t get_offset_of_NegativeZero_7() { return static_cast(offsetof(Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_StaticFields, ___NegativeZero_7)); } inline double get_NegativeZero_7() const { return ___NegativeZero_7; } inline double* get_address_of_NegativeZero_7() { return &___NegativeZero_7; } inline void set_NegativeZero_7(double value) { ___NegativeZero_7 = value; } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ECKeyGenerationParameters struct ECKeyGenerationParameters_t4937721DC10527ECC156FA98F13AE431AD00F565 : public KeyGenerationParameters_t1B3393E8D9D0068ABF593DC15AA436FCA158BF39 { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ECDomainParameters BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ECKeyGenerationParameters::domainParams ECDomainParameters_t497C366AFE7E3BFD490E52439C422AFDE91B12DC * ___domainParams_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ECKeyGenerationParameters::publicKeyParamSet DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___publicKeyParamSet_3; public: inline static int32_t get_offset_of_domainParams_2() { return static_cast(offsetof(ECKeyGenerationParameters_t4937721DC10527ECC156FA98F13AE431AD00F565, ___domainParams_2)); } inline ECDomainParameters_t497C366AFE7E3BFD490E52439C422AFDE91B12DC * get_domainParams_2() const { return ___domainParams_2; } inline ECDomainParameters_t497C366AFE7E3BFD490E52439C422AFDE91B12DC ** get_address_of_domainParams_2() { return &___domainParams_2; } inline void set_domainParams_2(ECDomainParameters_t497C366AFE7E3BFD490E52439C422AFDE91B12DC * value) { ___domainParams_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___domainParams_2), (void*)value); } inline static int32_t get_offset_of_publicKeyParamSet_3() { return static_cast(offsetof(ECKeyGenerationParameters_t4937721DC10527ECC156FA98F13AE431AD00F565, ___publicKeyParamSet_3)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_publicKeyParamSet_3() const { return ___publicKeyParamSet_3; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_publicKeyParamSet_3() { return &___publicKeyParamSet_3; } inline void set_publicKeyParamSet_3(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___publicKeyParamSet_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___publicKeyParamSet_3), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ECKeyParameters struct ECKeyParameters_tC564F57CB492506FC8DACDDD142BFEF68E9A3141 : public AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A { public: // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ECKeyParameters::algorithm String_t* ___algorithm_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ECDomainParameters BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ECKeyParameters::parameters ECDomainParameters_t497C366AFE7E3BFD490E52439C422AFDE91B12DC * ___parameters_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ECKeyParameters::publicKeyParamSet DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___publicKeyParamSet_4; public: inline static int32_t get_offset_of_algorithm_2() { return static_cast(offsetof(ECKeyParameters_tC564F57CB492506FC8DACDDD142BFEF68E9A3141, ___algorithm_2)); } inline String_t* get_algorithm_2() const { return ___algorithm_2; } inline String_t** get_address_of_algorithm_2() { return &___algorithm_2; } inline void set_algorithm_2(String_t* value) { ___algorithm_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___algorithm_2), (void*)value); } inline static int32_t get_offset_of_parameters_3() { return static_cast(offsetof(ECKeyParameters_tC564F57CB492506FC8DACDDD142BFEF68E9A3141, ___parameters_3)); } inline ECDomainParameters_t497C366AFE7E3BFD490E52439C422AFDE91B12DC * get_parameters_3() const { return ___parameters_3; } inline ECDomainParameters_t497C366AFE7E3BFD490E52439C422AFDE91B12DC ** get_address_of_parameters_3() { return &___parameters_3; } inline void set_parameters_3(ECDomainParameters_t497C366AFE7E3BFD490E52439C422AFDE91B12DC * value) { ___parameters_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___parameters_3), (void*)value); } inline static int32_t get_offset_of_publicKeyParamSet_4() { return static_cast(offsetof(ECKeyParameters_tC564F57CB492506FC8DACDDD142BFEF68E9A3141, ___publicKeyParamSet_4)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_publicKeyParamSet_4() const { return ___publicKeyParamSet_4; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_publicKeyParamSet_4() { return &___publicKeyParamSet_4; } inline void set_publicKeyParamSet_4(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___publicKeyParamSet_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___publicKeyParamSet_4), (void*)value); } }; struct ECKeyParameters_tC564F57CB492506FC8DACDDD142BFEF68E9A3141_StaticFields { public: // System.String[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ECKeyParameters::algorithms StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___algorithms_1; public: inline static int32_t get_offset_of_algorithms_1() { return static_cast(offsetof(ECKeyParameters_tC564F57CB492506FC8DACDDD142BFEF68E9A3141_StaticFields, ___algorithms_1)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_algorithms_1() const { return ___algorithms_1; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_algorithms_1() { return &___algorithms_1; } inline void set_algorithms_1(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___algorithms_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___algorithms_1), (void*)value); } }; // System.Enum struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA : public ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 { public: public: }; struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields { public: // System.Char[] System.Enum::enumSeperatorCharArray CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___enumSeperatorCharArray_0; public: inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast(offsetof(Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields, ___enumSeperatorCharArray_0)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; } inline void set_enumSeperatorCharArray_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___enumSeperatorCharArray_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Enum struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_pinvoke { }; // Native definition for COM marshalling of System.Enum struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_com { }; // System.Reflection.FieldInfo struct FieldInfo_t : public MemberInfo_t { public: public: }; // BestHTTP.Extensions.HeaderParser struct HeaderParser_t90F5D0027B4A301EFD28FC225846CB32AB67AD5E : public KeyValuePairList_tFB05264C65689BEB0A93912EE115844C33E3FF0F { public: public: }; // System.Int32 struct Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046 { public: // System.Int32 System.Int32::m_value int32_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046, ___m_value_0)); } inline int32_t get_m_value_0() const { return ___m_value_0; } inline int32_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int32_t value) { ___m_value_0 = value; } }; // System.Int64 struct Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3 { public: // System.Int64 System.Int64::m_value int64_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3, ___m_value_0)); } inline int64_t get_m_value_0() const { return ___m_value_0; } inline int64_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int64_t value) { ___m_value_0 = value; } }; // System.IntPtr struct IntPtr_t { public: // System.Void* System.IntPtr::m_value void* ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(IntPtr_t, ___m_value_0)); } inline void* get_m_value_0() const { return ___m_value_0; } inline void** get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(void* value) { ___m_value_0 = value; } }; struct IntPtr_t_StaticFields { public: // System.IntPtr System.IntPtr::Zero intptr_t ___Zero_1; public: inline static int32_t get_offset_of_Zero_1() { return static_cast(offsetof(IntPtr_t_StaticFields, ___Zero_1)); } inline intptr_t get_Zero_1() const { return ___Zero_1; } inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; } inline void set_Zero_1(intptr_t value) { ___Zero_1 = value; } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber struct IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber::name X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * ___name_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber::serialNumber DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * ___serialNumber_3; public: inline static int32_t get_offset_of_name_2() { return static_cast(offsetof(IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64, ___name_2)); } inline X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * get_name_2() const { return ___name_2; } inline X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 ** get_address_of_name_2() { return &___name_2; } inline void set_name_2(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * value) { ___name_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___name_2), (void*)value); } inline static int32_t get_offset_of_serialNumber_3() { return static_cast(offsetof(IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64, ___serialNumber_3)); } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * get_serialNumber_3() const { return ___serialNumber_3; } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 ** get_address_of_serialNumber_3() { return &___serialNumber_3; } inline void set_serialNumber_3(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * value) { ___serialNumber_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___serialNumber_3), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Generators.Kdf1BytesGenerator struct Kdf1BytesGenerator_t5644A5D35F7458CD81FEBB1EEE3675DCAC5A805F : public BaseKdfBytesGenerator_t9F8BAA4766A94011AFFDB7D7C52714FBFD3EB255 { public: public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Generators.Kdf2BytesGenerator struct Kdf2BytesGenerator_t0B685D72F032C668FF02E742A08D06DB5F2DBDC9 : public BaseKdfBytesGenerator_t9F8BAA4766A94011AFFDB7D7C52714FBFD3EB255 { public: public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekIdentifier struct KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekIdentifier::keyIdentifier Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * ___keyIdentifier_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerGeneralizedTime BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekIdentifier::date DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 * ___date_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.OtherKeyAttribute BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekIdentifier::other OtherKeyAttribute_tABF4FB6A6D942EF9F90E7BC0C092BFB0E154ABBB * ___other_4; public: inline static int32_t get_offset_of_keyIdentifier_2() { return static_cast(offsetof(KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973, ___keyIdentifier_2)); } inline Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * get_keyIdentifier_2() const { return ___keyIdentifier_2; } inline Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 ** get_address_of_keyIdentifier_2() { return &___keyIdentifier_2; } inline void set_keyIdentifier_2(Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * value) { ___keyIdentifier_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___keyIdentifier_2), (void*)value); } inline static int32_t get_offset_of_date_3() { return static_cast(offsetof(KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973, ___date_3)); } inline DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 * get_date_3() const { return ___date_3; } inline DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 ** get_address_of_date_3() { return &___date_3; } inline void set_date_3(DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 * value) { ___date_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___date_3), (void*)value); } inline static int32_t get_offset_of_other_4() { return static_cast(offsetof(KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973, ___other_4)); } inline OtherKeyAttribute_tABF4FB6A6D942EF9F90E7BC0C092BFB0E154ABBB * get_other_4() const { return ___other_4; } inline OtherKeyAttribute_tABF4FB6A6D942EF9F90E7BC0C092BFB0E154ABBB ** get_address_of_other_4() { return &___other_4; } inline void set_other_4(OtherKeyAttribute_tABF4FB6A6D942EF9F90E7BC0C092BFB0E154ABBB * value) { ___other_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___other_4), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekRecipientInfo struct KekRecipientInfo_t49DC4E62062A5E6E070BCBE2704D5AE43A4A7A25 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekRecipientInfo::version DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * ___version_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekRecipientInfo::kekID KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973 * ___kekID_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekRecipientInfo::keyEncryptionAlgorithm AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___keyEncryptionAlgorithm_4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekRecipientInfo::encryptedKey Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * ___encryptedKey_5; public: inline static int32_t get_offset_of_version_2() { return static_cast(offsetof(KekRecipientInfo_t49DC4E62062A5E6E070BCBE2704D5AE43A4A7A25, ___version_2)); } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * get_version_2() const { return ___version_2; } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 ** get_address_of_version_2() { return &___version_2; } inline void set_version_2(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * value) { ___version_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_2), (void*)value); } inline static int32_t get_offset_of_kekID_3() { return static_cast(offsetof(KekRecipientInfo_t49DC4E62062A5E6E070BCBE2704D5AE43A4A7A25, ___kekID_3)); } inline KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973 * get_kekID_3() const { return ___kekID_3; } inline KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973 ** get_address_of_kekID_3() { return &___kekID_3; } inline void set_kekID_3(KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973 * value) { ___kekID_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___kekID_3), (void*)value); } inline static int32_t get_offset_of_keyEncryptionAlgorithm_4() { return static_cast(offsetof(KekRecipientInfo_t49DC4E62062A5E6E070BCBE2704D5AE43A4A7A25, ___keyEncryptionAlgorithm_4)); } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * get_keyEncryptionAlgorithm_4() const { return ___keyEncryptionAlgorithm_4; } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 ** get_address_of_keyEncryptionAlgorithm_4() { return &___keyEncryptionAlgorithm_4; } inline void set_keyEncryptionAlgorithm_4(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * value) { ___keyEncryptionAlgorithm_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___keyEncryptionAlgorithm_4), (void*)value); } inline static int32_t get_offset_of_encryptedKey_5() { return static_cast(offsetof(KekRecipientInfo_t49DC4E62062A5E6E070BCBE2704D5AE43A4A7A25, ___encryptedKey_5)); } inline Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * get_encryptedKey_5() const { return ___encryptedKey_5; } inline Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 ** get_address_of_encryptedKey_5() { return &___encryptedKey_5; } inline void set_encryptedKey_5(Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * value) { ___encryptedKey_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___encryptedKey_5), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KekRecipientInformation struct KekRecipientInformation_t7580B68697441E129CA62DCCBBC56046D11C5320 : public RecipientInformation_tB02D0534E5C0851FB482467BA26A52FAD2F853AB { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekRecipientInfo BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KekRecipientInformation::info KekRecipientInfo_t49DC4E62062A5E6E070BCBE2704D5AE43A4A7A25 * ___info_4; public: inline static int32_t get_offset_of_info_4() { return static_cast(offsetof(KekRecipientInformation_t7580B68697441E129CA62DCCBBC56046D11C5320, ___info_4)); } inline KekRecipientInfo_t49DC4E62062A5E6E070BCBE2704D5AE43A4A7A25 * get_info_4() const { return ___info_4; } inline KekRecipientInfo_t49DC4E62062A5E6E070BCBE2704D5AE43A4A7A25 ** get_address_of_info_4() { return &___info_4; } inline void set_info_4(KekRecipientInfo_t49DC4E62062A5E6E070BCBE2704D5AE43A4A7A25 * value) { ___info_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___info_4), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientIdentifier struct KeyAgreeRecipientIdentifier_tBA5E98B2A6C72F3799020F0A9D1C465116A7A28A : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientIdentifier::issuerSerial IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64 * ___issuerSerial_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.RecipientKeyIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientIdentifier::rKeyID RecipientKeyIdentifier_tCDD2B03857B94474CBA49C1E4FDC30DA4C26F492 * ___rKeyID_3; public: inline static int32_t get_offset_of_issuerSerial_2() { return static_cast(offsetof(KeyAgreeRecipientIdentifier_tBA5E98B2A6C72F3799020F0A9D1C465116A7A28A, ___issuerSerial_2)); } inline IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64 * get_issuerSerial_2() const { return ___issuerSerial_2; } inline IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64 ** get_address_of_issuerSerial_2() { return &___issuerSerial_2; } inline void set_issuerSerial_2(IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64 * value) { ___issuerSerial_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___issuerSerial_2), (void*)value); } inline static int32_t get_offset_of_rKeyID_3() { return static_cast(offsetof(KeyAgreeRecipientIdentifier_tBA5E98B2A6C72F3799020F0A9D1C465116A7A28A, ___rKeyID_3)); } inline RecipientKeyIdentifier_tCDD2B03857B94474CBA49C1E4FDC30DA4C26F492 * get_rKeyID_3() const { return ___rKeyID_3; } inline RecipientKeyIdentifier_tCDD2B03857B94474CBA49C1E4FDC30DA4C26F492 ** get_address_of_rKeyID_3() { return &___rKeyID_3; } inline void set_rKeyID_3(RecipientKeyIdentifier_tCDD2B03857B94474CBA49C1E4FDC30DA4C26F492 * value) { ___rKeyID_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___rKeyID_3), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo struct KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo::version DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * ___version_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.OriginatorIdentifierOrKey BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo::originator OriginatorIdentifierOrKey_t391EC78D0FD29ED45DCF5BFF9AC5BABA8A005603 * ___originator_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo::ukm Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * ___ukm_4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo::keyEncryptionAlgorithm AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___keyEncryptionAlgorithm_5; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo::recipientEncryptedKeys Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * ___recipientEncryptedKeys_6; public: inline static int32_t get_offset_of_version_2() { return static_cast(offsetof(KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC, ___version_2)); } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * get_version_2() const { return ___version_2; } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 ** get_address_of_version_2() { return &___version_2; } inline void set_version_2(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * value) { ___version_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_2), (void*)value); } inline static int32_t get_offset_of_originator_3() { return static_cast(offsetof(KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC, ___originator_3)); } inline OriginatorIdentifierOrKey_t391EC78D0FD29ED45DCF5BFF9AC5BABA8A005603 * get_originator_3() const { return ___originator_3; } inline OriginatorIdentifierOrKey_t391EC78D0FD29ED45DCF5BFF9AC5BABA8A005603 ** get_address_of_originator_3() { return &___originator_3; } inline void set_originator_3(OriginatorIdentifierOrKey_t391EC78D0FD29ED45DCF5BFF9AC5BABA8A005603 * value) { ___originator_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___originator_3), (void*)value); } inline static int32_t get_offset_of_ukm_4() { return static_cast(offsetof(KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC, ___ukm_4)); } inline Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * get_ukm_4() const { return ___ukm_4; } inline Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 ** get_address_of_ukm_4() { return &___ukm_4; } inline void set_ukm_4(Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * value) { ___ukm_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___ukm_4), (void*)value); } inline static int32_t get_offset_of_keyEncryptionAlgorithm_5() { return static_cast(offsetof(KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC, ___keyEncryptionAlgorithm_5)); } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * get_keyEncryptionAlgorithm_5() const { return ___keyEncryptionAlgorithm_5; } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 ** get_address_of_keyEncryptionAlgorithm_5() { return &___keyEncryptionAlgorithm_5; } inline void set_keyEncryptionAlgorithm_5(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * value) { ___keyEncryptionAlgorithm_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___keyEncryptionAlgorithm_5), (void*)value); } inline static int32_t get_offset_of_recipientEncryptedKeys_6() { return static_cast(offsetof(KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC, ___recipientEncryptedKeys_6)); } inline Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * get_recipientEncryptedKeys_6() const { return ___recipientEncryptedKeys_6; } inline Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 ** get_address_of_recipientEncryptedKeys_6() { return &___recipientEncryptedKeys_6; } inline void set_recipientEncryptedKeys_6(Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * value) { ___recipientEncryptedKeys_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___recipientEncryptedKeys_6), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyAgreeRecipientInformation struct KeyAgreeRecipientInformation_t428C88783EA962AE6460155DB641A5385BA20929 : public RecipientInformation_tB02D0534E5C0851FB482467BA26A52FAD2F853AB { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyAgreeRecipientInformation::info KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC * ___info_4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyAgreeRecipientInformation::encryptedKey Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * ___encryptedKey_5; public: inline static int32_t get_offset_of_info_4() { return static_cast(offsetof(KeyAgreeRecipientInformation_t428C88783EA962AE6460155DB641A5385BA20929, ___info_4)); } inline KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC * get_info_4() const { return ___info_4; } inline KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC ** get_address_of_info_4() { return &___info_4; } inline void set_info_4(KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC * value) { ___info_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___info_4), (void*)value); } inline static int32_t get_offset_of_encryptedKey_5() { return static_cast(offsetof(KeyAgreeRecipientInformation_t428C88783EA962AE6460155DB641A5385BA20929, ___encryptedKey_5)); } inline Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * get_encryptedKey_5() const { return ___encryptedKey_5; } inline Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 ** get_address_of_encryptedKey_5() { return &___encryptedKey_5; } inline void set_encryptedKey_5(Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * value) { ___encryptedKey_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___encryptedKey_5), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.KeyRecRepContent struct KeyRecRepContent_t22F4C88ECE39C1F57BE1F388B10F38BE3CC44E01 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.KeyRecRepContent::status PkiStatusInfo_t599558AC728FCD067FBBCD19778BE6228EBA3A17 * ___status_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.CmpCertificate BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.KeyRecRepContent::newSigCert CmpCertificate_t426B8158788ADFD4E28E4E8F169E1E1D7651F894 * ___newSigCert_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.KeyRecRepContent::caCerts Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * ___caCerts_4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.KeyRecRepContent::keyPairHist Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * ___keyPairHist_5; public: inline static int32_t get_offset_of_status_2() { return static_cast(offsetof(KeyRecRepContent_t22F4C88ECE39C1F57BE1F388B10F38BE3CC44E01, ___status_2)); } inline PkiStatusInfo_t599558AC728FCD067FBBCD19778BE6228EBA3A17 * get_status_2() const { return ___status_2; } inline PkiStatusInfo_t599558AC728FCD067FBBCD19778BE6228EBA3A17 ** get_address_of_status_2() { return &___status_2; } inline void set_status_2(PkiStatusInfo_t599558AC728FCD067FBBCD19778BE6228EBA3A17 * value) { ___status_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___status_2), (void*)value); } inline static int32_t get_offset_of_newSigCert_3() { return static_cast(offsetof(KeyRecRepContent_t22F4C88ECE39C1F57BE1F388B10F38BE3CC44E01, ___newSigCert_3)); } inline CmpCertificate_t426B8158788ADFD4E28E4E8F169E1E1D7651F894 * get_newSigCert_3() const { return ___newSigCert_3; } inline CmpCertificate_t426B8158788ADFD4E28E4E8F169E1E1D7651F894 ** get_address_of_newSigCert_3() { return &___newSigCert_3; } inline void set_newSigCert_3(CmpCertificate_t426B8158788ADFD4E28E4E8F169E1E1D7651F894 * value) { ___newSigCert_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___newSigCert_3), (void*)value); } inline static int32_t get_offset_of_caCerts_4() { return static_cast(offsetof(KeyRecRepContent_t22F4C88ECE39C1F57BE1F388B10F38BE3CC44E01, ___caCerts_4)); } inline Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * get_caCerts_4() const { return ___caCerts_4; } inline Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 ** get_address_of_caCerts_4() { return &___caCerts_4; } inline void set_caCerts_4(Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * value) { ___caCerts_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___caCerts_4), (void*)value); } inline static int32_t get_offset_of_keyPairHist_5() { return static_cast(offsetof(KeyRecRepContent_t22F4C88ECE39C1F57BE1F388B10F38BE3CC44E01, ___keyPairHist_5)); } inline Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * get_keyPairHist_5() const { return ___keyPairHist_5; } inline Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 ** get_address_of_keyPairHist_5() { return &___keyPairHist_5; } inline void set_keyPairHist_5(Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * value) { ___keyPairHist_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___keyPairHist_5), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.KeySpecificInfo struct KeySpecificInfo_t6C8A5DBFEF691A3EA6772568ED94CF80A142B476 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.KeySpecificInfo::algorithm DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___algorithm_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.KeySpecificInfo::counter Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * ___counter_3; public: inline static int32_t get_offset_of_algorithm_2() { return static_cast(offsetof(KeySpecificInfo_t6C8A5DBFEF691A3EA6772568ED94CF80A142B476, ___algorithm_2)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_algorithm_2() const { return ___algorithm_2; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_algorithm_2() { return &___algorithm_2; } inline void set_algorithm_2(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___algorithm_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___algorithm_2), (void*)value); } inline static int32_t get_offset_of_counter_3() { return static_cast(offsetof(KeySpecificInfo_t6C8A5DBFEF691A3EA6772568ED94CF80A142B476, ___counter_3)); } inline Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * get_counter_3() const { return ___counter_3; } inline Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 ** get_address_of_counter_3() { return &___counter_3; } inline void set_counter_3(Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * value) { ___counter_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___counter_3), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyTransRecipientInfo struct KeyTransRecipientInfo_t5560A4301685119C4400C494D4B8D2D5BCF538A0 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyTransRecipientInfo::version DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * ___version_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.RecipientIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyTransRecipientInfo::rid RecipientIdentifier_tBC500D2CDE60B57F8CB815C4599D2EE019A2E5C1 * ___rid_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyTransRecipientInfo::keyEncryptionAlgorithm AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___keyEncryptionAlgorithm_4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyTransRecipientInfo::encryptedKey Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * ___encryptedKey_5; public: inline static int32_t get_offset_of_version_2() { return static_cast(offsetof(KeyTransRecipientInfo_t5560A4301685119C4400C494D4B8D2D5BCF538A0, ___version_2)); } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * get_version_2() const { return ___version_2; } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 ** get_address_of_version_2() { return &___version_2; } inline void set_version_2(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * value) { ___version_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_2), (void*)value); } inline static int32_t get_offset_of_rid_3() { return static_cast(offsetof(KeyTransRecipientInfo_t5560A4301685119C4400C494D4B8D2D5BCF538A0, ___rid_3)); } inline RecipientIdentifier_tBC500D2CDE60B57F8CB815C4599D2EE019A2E5C1 * get_rid_3() const { return ___rid_3; } inline RecipientIdentifier_tBC500D2CDE60B57F8CB815C4599D2EE019A2E5C1 ** get_address_of_rid_3() { return &___rid_3; } inline void set_rid_3(RecipientIdentifier_tBC500D2CDE60B57F8CB815C4599D2EE019A2E5C1 * value) { ___rid_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___rid_3), (void*)value); } inline static int32_t get_offset_of_keyEncryptionAlgorithm_4() { return static_cast(offsetof(KeyTransRecipientInfo_t5560A4301685119C4400C494D4B8D2D5BCF538A0, ___keyEncryptionAlgorithm_4)); } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * get_keyEncryptionAlgorithm_4() const { return ___keyEncryptionAlgorithm_4; } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 ** get_address_of_keyEncryptionAlgorithm_4() { return &___keyEncryptionAlgorithm_4; } inline void set_keyEncryptionAlgorithm_4(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * value) { ___keyEncryptionAlgorithm_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___keyEncryptionAlgorithm_4), (void*)value); } inline static int32_t get_offset_of_encryptedKey_5() { return static_cast(offsetof(KeyTransRecipientInfo_t5560A4301685119C4400C494D4B8D2D5BCF538A0, ___encryptedKey_5)); } inline Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * get_encryptedKey_5() const { return ___encryptedKey_5; } inline Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 ** get_address_of_encryptedKey_5() { return &___encryptedKey_5; } inline void set_encryptedKey_5(Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * value) { ___encryptedKey_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___encryptedKey_5), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyTransRecipientInformation struct KeyTransRecipientInformation_t5A77B5723E83662291A1744A96270F6A153A0830 : public RecipientInformation_tB02D0534E5C0851FB482467BA26A52FAD2F853AB { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyTransRecipientInfo BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyTransRecipientInformation::info KeyTransRecipientInfo_t5560A4301685119C4400C494D4B8D2D5BCF538A0 * ___info_4; public: inline static int32_t get_offset_of_info_4() { return static_cast(offsetof(KeyTransRecipientInformation_t5A77B5723E83662291A1744A96270F6A153A0830, ___info_4)); } inline KeyTransRecipientInfo_t5560A4301685119C4400C494D4B8D2D5BCF538A0 * get_info_4() const { return ___info_4; } inline KeyTransRecipientInfo_t5560A4301685119C4400C494D4B8D2D5BCF538A0 ** get_address_of_info_4() { return &___info_4; } inline void set_info_4(KeyTransRecipientInfo_t5560A4301685119C4400C494D4B8D2D5BCF538A0 * value) { ___info_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___info_4), (void*)value); } }; // LanguageEnglish struct LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249 : public LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783 { public: // System.String LanguageEnglish::text1 String_t* ___text1_181; // System.String LanguageEnglish::text2 String_t* ___text2_182; // System.String LanguageEnglish::text3 String_t* ___text3_183; // System.String LanguageEnglish::text4 String_t* ___text4_184; // System.String LanguageEnglish::text5 String_t* ___text5_185; // System.String LanguageEnglish::text6 String_t* ___text6_186; // System.String LanguageEnglish::text7 String_t* ___text7_187; // System.String LanguageEnglish::text8 String_t* ___text8_188; // System.String LanguageEnglish::text9 String_t* ___text9_189; // System.String LanguageEnglish::text10 String_t* ___text10_190; // System.String LanguageEnglish::text11 String_t* ___text11_191; // System.String LanguageEnglish::text12 String_t* ___text12_192; // System.String LanguageEnglish::text13 String_t* ___text13_193; // System.String LanguageEnglish::text14 String_t* ___text14_194; // System.String LanguageEnglish::text15 String_t* ___text15_195; // System.String LanguageEnglish::text16 String_t* ___text16_196; // System.String LanguageEnglish::text17 String_t* ___text17_197; // System.String LanguageEnglish::text18 String_t* ___text18_198; // System.String LanguageEnglish::text19 String_t* ___text19_199; // System.String LanguageEnglish::text20 String_t* ___text20_200; // System.String LanguageEnglish::text21 String_t* ___text21_201; // System.String LanguageEnglish::text22 String_t* ___text22_202; // System.String LanguageEnglish::text23 String_t* ___text23_203; // System.String LanguageEnglish::text24 String_t* ___text24_204; // System.String LanguageEnglish::text25 String_t* ___text25_205; // System.String LanguageEnglish::text26 String_t* ___text26_206; // System.String LanguageEnglish::text27 String_t* ___text27_207; // System.String LanguageEnglish::text28 String_t* ___text28_208; // System.String LanguageEnglish::text29 String_t* ___text29_209; // System.String LanguageEnglish::text30 String_t* ___text30_210; // System.String LanguageEnglish::text31 String_t* ___text31_211; // System.String LanguageEnglish::text32 String_t* ___text32_212; // System.String LanguageEnglish::text33 String_t* ___text33_213; // System.String LanguageEnglish::text34 String_t* ___text34_214; // System.String LanguageEnglish::text35 String_t* ___text35_215; // System.String LanguageEnglish::text36 String_t* ___text36_216; // System.String LanguageEnglish::text37 String_t* ___text37_217; // System.String LanguageEnglish::text38 String_t* ___text38_218; // System.String LanguageEnglish::text39 String_t* ___text39_219; // System.String LanguageEnglish::text40 String_t* ___text40_220; // System.String LanguageEnglish::text41 String_t* ___text41_221; // System.String LanguageEnglish::text42 String_t* ___text42_222; // System.String LanguageEnglish::text43 String_t* ___text43_223; // System.String LanguageEnglish::text44 String_t* ___text44_224; // System.String LanguageEnglish::text45 String_t* ___text45_225; // System.String LanguageEnglish::text46 String_t* ___text46_226; // System.String LanguageEnglish::text47 String_t* ___text47_227; // System.String LanguageEnglish::text48 String_t* ___text48_228; // System.String LanguageEnglish::text49 String_t* ___text49_229; // System.String LanguageEnglish::text50 String_t* ___text50_230; // System.String LanguageEnglish::text51 String_t* ___text51_231; // System.String LanguageEnglish::text61 String_t* ___text61_232; // System.String LanguageEnglish::text62 String_t* ___text62_233; // System.String LanguageEnglish::text63 String_t* ___text63_234; // System.String LanguageEnglish::text64 String_t* ___text64_235; // System.String LanguageEnglish::text65 String_t* ___text65_236; // System.String LanguageEnglish::text66 String_t* ___text66_237; // System.String LanguageEnglish::text67 String_t* ___text67_238; // System.String LanguageEnglish::text68 String_t* ___text68_239; // System.String LanguageEnglish::text69 String_t* ___text69_240; // System.String LanguageEnglish::text70 String_t* ___text70_241; // System.String LanguageEnglish::text71 String_t* ___text71_242; // System.String LanguageEnglish::text72 String_t* ___text72_243; // System.String LanguageEnglish::text73 String_t* ___text73_244; // System.String LanguageEnglish::text74 String_t* ___text74_245; // System.String LanguageEnglish::text87 String_t* ___text87_246; // System.String LanguageEnglish::text88 String_t* ___text88_247; // System.String LanguageEnglish::text89 String_t* ___text89_248; // System.String LanguageEnglish::text90 String_t* ___text90_249; // System.String LanguageEnglish::text91 String_t* ___text91_250; // System.String LanguageEnglish::text92 String_t* ___text92_251; // System.String LanguageEnglish::text93 String_t* ___text93_252; // System.String LanguageEnglish::text94 String_t* ___text94_253; // System.String LanguageEnglish::text95 String_t* ___text95_254; // System.String LanguageEnglish::text96 String_t* ___text96_255; // System.String LanguageEnglish::text97 String_t* ___text97_256; // System.String LanguageEnglish::text98 String_t* ___text98_257; // System.String LanguageEnglish::text99 String_t* ___text99_258; // System.String LanguageEnglish::text100 String_t* ___text100_259; // System.String LanguageEnglish::text101 String_t* ___text101_260; // System.String LanguageEnglish::text102 String_t* ___text102_261; // System.String LanguageEnglish::text103 String_t* ___text103_262; // System.String LanguageEnglish::text104 String_t* ___text104_263; // System.String LanguageEnglish::text105 String_t* ___text105_264; // System.String LanguageEnglish::text106 String_t* ___text106_265; // System.String LanguageEnglish::text107 String_t* ___text107_266; // System.String LanguageEnglish::text108 String_t* ___text108_267; // System.String LanguageEnglish::text109 String_t* ___text109_268; // System.String LanguageEnglish::text110 String_t* ___text110_269; // System.String LanguageEnglish::text111 String_t* ___text111_270; // System.String LanguageEnglish::text112 String_t* ___text112_271; // System.String LanguageEnglish::text113 String_t* ___text113_272; // System.String LanguageEnglish::text114 String_t* ___text114_273; // System.String LanguageEnglish::text115 String_t* ___text115_274; // System.String LanguageEnglish::text117 String_t* ___text117_275; // System.String LanguageEnglish::text118 String_t* ___text118_276; // System.String LanguageEnglish::text119 String_t* ___text119_277; // System.String LanguageEnglish::text500 String_t* ___text500_278; // System.String LanguageEnglish::text501 String_t* ___text501_279; // System.String LanguageEnglish::text502 String_t* ___text502_280; // System.String LanguageEnglish::text503 String_t* ___text503_281; // System.String LanguageEnglish::text504 String_t* ___text504_282; // System.String LanguageEnglish::text122 String_t* ___text122_283; // System.String LanguageEnglish::text123 String_t* ___text123_284; // System.String LanguageEnglish::text124 String_t* ___text124_285; // System.String LanguageEnglish::text125 String_t* ___text125_286; // System.String LanguageEnglish::text126 String_t* ___text126_287; // System.String LanguageEnglish::text133 String_t* ___text133_288; // System.String LanguageEnglish::text127 String_t* ___text127_289; // System.String LanguageEnglish::text128 String_t* ___text128_290; // System.String LanguageEnglish::text129 String_t* ___text129_291; // System.String LanguageEnglish::text132 String_t* ___text132_292; // System.String LanguageEnglish::text130 String_t* ___text130_293; // System.String LanguageEnglish::text131 String_t* ___text131_294; // System.String LanguageEnglish::text401 String_t* ___text401_295; // System.String LanguageEnglish::text134 String_t* ___text134_296; // System.String LanguageEnglish::text135 String_t* ___text135_297; // System.String LanguageEnglish::text136 String_t* ___text136_298; // System.String LanguageEnglish::text137 String_t* ___text137_299; // System.String LanguageEnglish::text302 String_t* ___text302_300; // System.String LanguageEnglish::text303 String_t* ___text303_301; // System.String LanguageEnglish::text304 String_t* ___text304_302; // System.String LanguageEnglish::text305 String_t* ___text305_303; // System.String LanguageEnglish::text306 String_t* ___text306_304; // System.String LanguageEnglish::text307 String_t* ___text307_305; // System.String LanguageEnglish::text308 String_t* ___text308_306; // System.String LanguageEnglish::text309 String_t* ___text309_307; // System.String LanguageEnglish::text310 String_t* ___text310_308; // System.String LanguageEnglish::text311 String_t* ___text311_309; // System.String LanguageEnglish::text312 String_t* ___text312_310; // System.String LanguageEnglish::text313 String_t* ___text313_311; // System.String LanguageEnglish::text314 String_t* ___text314_312; // System.String LanguageEnglish::text315 String_t* ___text315_313; // System.String LanguageEnglish::text318 String_t* ___text318_314; // System.String LanguageEnglish::text301 String_t* ___text301_315; // System.String LanguageEnglish::text316 String_t* ___text316_316; // System.String LanguageEnglish::text317 String_t* ___text317_317; // System.String LanguageEnglish::text300 String_t* ___text300_318; // System.String LanguageEnglish::text400 String_t* ___text400_319; // System.String LanguageEnglish::text76 String_t* ___text76_320; // System.String LanguageEnglish::text77 String_t* ___text77_321; // System.String LanguageEnglish::text78 String_t* ___text78_322; // System.String LanguageEnglish::text79 String_t* ___text79_323; // System.String LanguageEnglish::text80 String_t* ___text80_324; // System.String LanguageEnglish::text81 String_t* ___text81_325; // System.String LanguageEnglish::text82 String_t* ___text82_326; // System.String LanguageEnglish::text83 String_t* ___text83_327; // System.String LanguageEnglish::text84 String_t* ___text84_328; // System.String LanguageEnglish::text85 String_t* ___text85_329; // System.String LanguageEnglish::text86 String_t* ___text86_330; // System.String LanguageEnglish::text116 String_t* ___text116_331; // System.String LanguageEnglish::text120 String_t* ___text120_332; // System.String LanguageEnglish::text121 String_t* ___text121_333; // System.String LanguageEnglish::text200 String_t* ___text200_334; // System.String LanguageEnglish::text201 String_t* ___text201_335; // System.String LanguageEnglish::text202 String_t* ___text202_336; // System.String LanguageEnglish::text203 String_t* ___text203_337; // System.String LanguageEnglish::text204 String_t* ___text204_338; // System.String LanguageEnglish::text205 String_t* ___text205_339; // System.String LanguageEnglish::text1000 String_t* ___text1000_340; // System.String LanguageEnglish::text1001 String_t* ___text1001_341; // System.String LanguageEnglish::text2000 String_t* ___text2000_342; // System.String LanguageEnglish::text2001 String_t* ___text2001_343; // System.String LanguageEnglish::text2002 String_t* ___text2002_344; // System.String LanguageEnglish::text2003 String_t* ___text2003_345; // System.String LanguageEnglish::text101000 String_t* ___text101000_346; // System.String LanguageEnglish::text101001 String_t* ___text101001_347; // System.String LanguageEnglish::text111000 String_t* ___text111000_348; // System.String LanguageEnglish::text111001 String_t* ___text111001_349; // System.String LanguageEnglish::text200000 String_t* ___text200000_350; // System.String LanguageEnglish::text201000 String_t* ___text201000_351; // System.String LanguageEnglish::text201001 String_t* ___text201001_352; // System.String LanguageEnglish::text201002 String_t* ___text201002_353; // System.String LanguageEnglish::text211000 String_t* ___text211000_354; // System.String LanguageEnglish::text211001 String_t* ___text211001_355; // System.String LanguageEnglish::text211002 String_t* ___text211002_356; // System.String LanguageEnglish::text1234560 String_t* ___text1234560_357; // System.String LanguageEnglish::text1234561 String_t* ___text1234561_358; // System.String LanguageEnglish::text1234562 String_t* ___text1234562_359; // System.String LanguageEnglish::text1234563 String_t* ___text1234563_360; public: inline static int32_t get_offset_of_text1_181() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text1_181)); } inline String_t* get_text1_181() const { return ___text1_181; } inline String_t** get_address_of_text1_181() { return &___text1_181; } inline void set_text1_181(String_t* value) { ___text1_181 = value; Il2CppCodeGenWriteBarrier((void**)(&___text1_181), (void*)value); } inline static int32_t get_offset_of_text2_182() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text2_182)); } inline String_t* get_text2_182() const { return ___text2_182; } inline String_t** get_address_of_text2_182() { return &___text2_182; } inline void set_text2_182(String_t* value) { ___text2_182 = value; Il2CppCodeGenWriteBarrier((void**)(&___text2_182), (void*)value); } inline static int32_t get_offset_of_text3_183() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text3_183)); } inline String_t* get_text3_183() const { return ___text3_183; } inline String_t** get_address_of_text3_183() { return &___text3_183; } inline void set_text3_183(String_t* value) { ___text3_183 = value; Il2CppCodeGenWriteBarrier((void**)(&___text3_183), (void*)value); } inline static int32_t get_offset_of_text4_184() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text4_184)); } inline String_t* get_text4_184() const { return ___text4_184; } inline String_t** get_address_of_text4_184() { return &___text4_184; } inline void set_text4_184(String_t* value) { ___text4_184 = value; Il2CppCodeGenWriteBarrier((void**)(&___text4_184), (void*)value); } inline static int32_t get_offset_of_text5_185() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text5_185)); } inline String_t* get_text5_185() const { return ___text5_185; } inline String_t** get_address_of_text5_185() { return &___text5_185; } inline void set_text5_185(String_t* value) { ___text5_185 = value; Il2CppCodeGenWriteBarrier((void**)(&___text5_185), (void*)value); } inline static int32_t get_offset_of_text6_186() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text6_186)); } inline String_t* get_text6_186() const { return ___text6_186; } inline String_t** get_address_of_text6_186() { return &___text6_186; } inline void set_text6_186(String_t* value) { ___text6_186 = value; Il2CppCodeGenWriteBarrier((void**)(&___text6_186), (void*)value); } inline static int32_t get_offset_of_text7_187() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text7_187)); } inline String_t* get_text7_187() const { return ___text7_187; } inline String_t** get_address_of_text7_187() { return &___text7_187; } inline void set_text7_187(String_t* value) { ___text7_187 = value; Il2CppCodeGenWriteBarrier((void**)(&___text7_187), (void*)value); } inline static int32_t get_offset_of_text8_188() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text8_188)); } inline String_t* get_text8_188() const { return ___text8_188; } inline String_t** get_address_of_text8_188() { return &___text8_188; } inline void set_text8_188(String_t* value) { ___text8_188 = value; Il2CppCodeGenWriteBarrier((void**)(&___text8_188), (void*)value); } inline static int32_t get_offset_of_text9_189() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text9_189)); } inline String_t* get_text9_189() const { return ___text9_189; } inline String_t** get_address_of_text9_189() { return &___text9_189; } inline void set_text9_189(String_t* value) { ___text9_189 = value; Il2CppCodeGenWriteBarrier((void**)(&___text9_189), (void*)value); } inline static int32_t get_offset_of_text10_190() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text10_190)); } inline String_t* get_text10_190() const { return ___text10_190; } inline String_t** get_address_of_text10_190() { return &___text10_190; } inline void set_text10_190(String_t* value) { ___text10_190 = value; Il2CppCodeGenWriteBarrier((void**)(&___text10_190), (void*)value); } inline static int32_t get_offset_of_text11_191() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text11_191)); } inline String_t* get_text11_191() const { return ___text11_191; } inline String_t** get_address_of_text11_191() { return &___text11_191; } inline void set_text11_191(String_t* value) { ___text11_191 = value; Il2CppCodeGenWriteBarrier((void**)(&___text11_191), (void*)value); } inline static int32_t get_offset_of_text12_192() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text12_192)); } inline String_t* get_text12_192() const { return ___text12_192; } inline String_t** get_address_of_text12_192() { return &___text12_192; } inline void set_text12_192(String_t* value) { ___text12_192 = value; Il2CppCodeGenWriteBarrier((void**)(&___text12_192), (void*)value); } inline static int32_t get_offset_of_text13_193() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text13_193)); } inline String_t* get_text13_193() const { return ___text13_193; } inline String_t** get_address_of_text13_193() { return &___text13_193; } inline void set_text13_193(String_t* value) { ___text13_193 = value; Il2CppCodeGenWriteBarrier((void**)(&___text13_193), (void*)value); } inline static int32_t get_offset_of_text14_194() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text14_194)); } inline String_t* get_text14_194() const { return ___text14_194; } inline String_t** get_address_of_text14_194() { return &___text14_194; } inline void set_text14_194(String_t* value) { ___text14_194 = value; Il2CppCodeGenWriteBarrier((void**)(&___text14_194), (void*)value); } inline static int32_t get_offset_of_text15_195() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text15_195)); } inline String_t* get_text15_195() const { return ___text15_195; } inline String_t** get_address_of_text15_195() { return &___text15_195; } inline void set_text15_195(String_t* value) { ___text15_195 = value; Il2CppCodeGenWriteBarrier((void**)(&___text15_195), (void*)value); } inline static int32_t get_offset_of_text16_196() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text16_196)); } inline String_t* get_text16_196() const { return ___text16_196; } inline String_t** get_address_of_text16_196() { return &___text16_196; } inline void set_text16_196(String_t* value) { ___text16_196 = value; Il2CppCodeGenWriteBarrier((void**)(&___text16_196), (void*)value); } inline static int32_t get_offset_of_text17_197() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text17_197)); } inline String_t* get_text17_197() const { return ___text17_197; } inline String_t** get_address_of_text17_197() { return &___text17_197; } inline void set_text17_197(String_t* value) { ___text17_197 = value; Il2CppCodeGenWriteBarrier((void**)(&___text17_197), (void*)value); } inline static int32_t get_offset_of_text18_198() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text18_198)); } inline String_t* get_text18_198() const { return ___text18_198; } inline String_t** get_address_of_text18_198() { return &___text18_198; } inline void set_text18_198(String_t* value) { ___text18_198 = value; Il2CppCodeGenWriteBarrier((void**)(&___text18_198), (void*)value); } inline static int32_t get_offset_of_text19_199() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text19_199)); } inline String_t* get_text19_199() const { return ___text19_199; } inline String_t** get_address_of_text19_199() { return &___text19_199; } inline void set_text19_199(String_t* value) { ___text19_199 = value; Il2CppCodeGenWriteBarrier((void**)(&___text19_199), (void*)value); } inline static int32_t get_offset_of_text20_200() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text20_200)); } inline String_t* get_text20_200() const { return ___text20_200; } inline String_t** get_address_of_text20_200() { return &___text20_200; } inline void set_text20_200(String_t* value) { ___text20_200 = value; Il2CppCodeGenWriteBarrier((void**)(&___text20_200), (void*)value); } inline static int32_t get_offset_of_text21_201() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text21_201)); } inline String_t* get_text21_201() const { return ___text21_201; } inline String_t** get_address_of_text21_201() { return &___text21_201; } inline void set_text21_201(String_t* value) { ___text21_201 = value; Il2CppCodeGenWriteBarrier((void**)(&___text21_201), (void*)value); } inline static int32_t get_offset_of_text22_202() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text22_202)); } inline String_t* get_text22_202() const { return ___text22_202; } inline String_t** get_address_of_text22_202() { return &___text22_202; } inline void set_text22_202(String_t* value) { ___text22_202 = value; Il2CppCodeGenWriteBarrier((void**)(&___text22_202), (void*)value); } inline static int32_t get_offset_of_text23_203() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text23_203)); } inline String_t* get_text23_203() const { return ___text23_203; } inline String_t** get_address_of_text23_203() { return &___text23_203; } inline void set_text23_203(String_t* value) { ___text23_203 = value; Il2CppCodeGenWriteBarrier((void**)(&___text23_203), (void*)value); } inline static int32_t get_offset_of_text24_204() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text24_204)); } inline String_t* get_text24_204() const { return ___text24_204; } inline String_t** get_address_of_text24_204() { return &___text24_204; } inline void set_text24_204(String_t* value) { ___text24_204 = value; Il2CppCodeGenWriteBarrier((void**)(&___text24_204), (void*)value); } inline static int32_t get_offset_of_text25_205() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text25_205)); } inline String_t* get_text25_205() const { return ___text25_205; } inline String_t** get_address_of_text25_205() { return &___text25_205; } inline void set_text25_205(String_t* value) { ___text25_205 = value; Il2CppCodeGenWriteBarrier((void**)(&___text25_205), (void*)value); } inline static int32_t get_offset_of_text26_206() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text26_206)); } inline String_t* get_text26_206() const { return ___text26_206; } inline String_t** get_address_of_text26_206() { return &___text26_206; } inline void set_text26_206(String_t* value) { ___text26_206 = value; Il2CppCodeGenWriteBarrier((void**)(&___text26_206), (void*)value); } inline static int32_t get_offset_of_text27_207() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text27_207)); } inline String_t* get_text27_207() const { return ___text27_207; } inline String_t** get_address_of_text27_207() { return &___text27_207; } inline void set_text27_207(String_t* value) { ___text27_207 = value; Il2CppCodeGenWriteBarrier((void**)(&___text27_207), (void*)value); } inline static int32_t get_offset_of_text28_208() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text28_208)); } inline String_t* get_text28_208() const { return ___text28_208; } inline String_t** get_address_of_text28_208() { return &___text28_208; } inline void set_text28_208(String_t* value) { ___text28_208 = value; Il2CppCodeGenWriteBarrier((void**)(&___text28_208), (void*)value); } inline static int32_t get_offset_of_text29_209() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text29_209)); } inline String_t* get_text29_209() const { return ___text29_209; } inline String_t** get_address_of_text29_209() { return &___text29_209; } inline void set_text29_209(String_t* value) { ___text29_209 = value; Il2CppCodeGenWriteBarrier((void**)(&___text29_209), (void*)value); } inline static int32_t get_offset_of_text30_210() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text30_210)); } inline String_t* get_text30_210() const { return ___text30_210; } inline String_t** get_address_of_text30_210() { return &___text30_210; } inline void set_text30_210(String_t* value) { ___text30_210 = value; Il2CppCodeGenWriteBarrier((void**)(&___text30_210), (void*)value); } inline static int32_t get_offset_of_text31_211() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text31_211)); } inline String_t* get_text31_211() const { return ___text31_211; } inline String_t** get_address_of_text31_211() { return &___text31_211; } inline void set_text31_211(String_t* value) { ___text31_211 = value; Il2CppCodeGenWriteBarrier((void**)(&___text31_211), (void*)value); } inline static int32_t get_offset_of_text32_212() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text32_212)); } inline String_t* get_text32_212() const { return ___text32_212; } inline String_t** get_address_of_text32_212() { return &___text32_212; } inline void set_text32_212(String_t* value) { ___text32_212 = value; Il2CppCodeGenWriteBarrier((void**)(&___text32_212), (void*)value); } inline static int32_t get_offset_of_text33_213() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text33_213)); } inline String_t* get_text33_213() const { return ___text33_213; } inline String_t** get_address_of_text33_213() { return &___text33_213; } inline void set_text33_213(String_t* value) { ___text33_213 = value; Il2CppCodeGenWriteBarrier((void**)(&___text33_213), (void*)value); } inline static int32_t get_offset_of_text34_214() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text34_214)); } inline String_t* get_text34_214() const { return ___text34_214; } inline String_t** get_address_of_text34_214() { return &___text34_214; } inline void set_text34_214(String_t* value) { ___text34_214 = value; Il2CppCodeGenWriteBarrier((void**)(&___text34_214), (void*)value); } inline static int32_t get_offset_of_text35_215() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text35_215)); } inline String_t* get_text35_215() const { return ___text35_215; } inline String_t** get_address_of_text35_215() { return &___text35_215; } inline void set_text35_215(String_t* value) { ___text35_215 = value; Il2CppCodeGenWriteBarrier((void**)(&___text35_215), (void*)value); } inline static int32_t get_offset_of_text36_216() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text36_216)); } inline String_t* get_text36_216() const { return ___text36_216; } inline String_t** get_address_of_text36_216() { return &___text36_216; } inline void set_text36_216(String_t* value) { ___text36_216 = value; Il2CppCodeGenWriteBarrier((void**)(&___text36_216), (void*)value); } inline static int32_t get_offset_of_text37_217() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text37_217)); } inline String_t* get_text37_217() const { return ___text37_217; } inline String_t** get_address_of_text37_217() { return &___text37_217; } inline void set_text37_217(String_t* value) { ___text37_217 = value; Il2CppCodeGenWriteBarrier((void**)(&___text37_217), (void*)value); } inline static int32_t get_offset_of_text38_218() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text38_218)); } inline String_t* get_text38_218() const { return ___text38_218; } inline String_t** get_address_of_text38_218() { return &___text38_218; } inline void set_text38_218(String_t* value) { ___text38_218 = value; Il2CppCodeGenWriteBarrier((void**)(&___text38_218), (void*)value); } inline static int32_t get_offset_of_text39_219() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text39_219)); } inline String_t* get_text39_219() const { return ___text39_219; } inline String_t** get_address_of_text39_219() { return &___text39_219; } inline void set_text39_219(String_t* value) { ___text39_219 = value; Il2CppCodeGenWriteBarrier((void**)(&___text39_219), (void*)value); } inline static int32_t get_offset_of_text40_220() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text40_220)); } inline String_t* get_text40_220() const { return ___text40_220; } inline String_t** get_address_of_text40_220() { return &___text40_220; } inline void set_text40_220(String_t* value) { ___text40_220 = value; Il2CppCodeGenWriteBarrier((void**)(&___text40_220), (void*)value); } inline static int32_t get_offset_of_text41_221() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text41_221)); } inline String_t* get_text41_221() const { return ___text41_221; } inline String_t** get_address_of_text41_221() { return &___text41_221; } inline void set_text41_221(String_t* value) { ___text41_221 = value; Il2CppCodeGenWriteBarrier((void**)(&___text41_221), (void*)value); } inline static int32_t get_offset_of_text42_222() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text42_222)); } inline String_t* get_text42_222() const { return ___text42_222; } inline String_t** get_address_of_text42_222() { return &___text42_222; } inline void set_text42_222(String_t* value) { ___text42_222 = value; Il2CppCodeGenWriteBarrier((void**)(&___text42_222), (void*)value); } inline static int32_t get_offset_of_text43_223() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text43_223)); } inline String_t* get_text43_223() const { return ___text43_223; } inline String_t** get_address_of_text43_223() { return &___text43_223; } inline void set_text43_223(String_t* value) { ___text43_223 = value; Il2CppCodeGenWriteBarrier((void**)(&___text43_223), (void*)value); } inline static int32_t get_offset_of_text44_224() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text44_224)); } inline String_t* get_text44_224() const { return ___text44_224; } inline String_t** get_address_of_text44_224() { return &___text44_224; } inline void set_text44_224(String_t* value) { ___text44_224 = value; Il2CppCodeGenWriteBarrier((void**)(&___text44_224), (void*)value); } inline static int32_t get_offset_of_text45_225() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text45_225)); } inline String_t* get_text45_225() const { return ___text45_225; } inline String_t** get_address_of_text45_225() { return &___text45_225; } inline void set_text45_225(String_t* value) { ___text45_225 = value; Il2CppCodeGenWriteBarrier((void**)(&___text45_225), (void*)value); } inline static int32_t get_offset_of_text46_226() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text46_226)); } inline String_t* get_text46_226() const { return ___text46_226; } inline String_t** get_address_of_text46_226() { return &___text46_226; } inline void set_text46_226(String_t* value) { ___text46_226 = value; Il2CppCodeGenWriteBarrier((void**)(&___text46_226), (void*)value); } inline static int32_t get_offset_of_text47_227() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text47_227)); } inline String_t* get_text47_227() const { return ___text47_227; } inline String_t** get_address_of_text47_227() { return &___text47_227; } inline void set_text47_227(String_t* value) { ___text47_227 = value; Il2CppCodeGenWriteBarrier((void**)(&___text47_227), (void*)value); } inline static int32_t get_offset_of_text48_228() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text48_228)); } inline String_t* get_text48_228() const { return ___text48_228; } inline String_t** get_address_of_text48_228() { return &___text48_228; } inline void set_text48_228(String_t* value) { ___text48_228 = value; Il2CppCodeGenWriteBarrier((void**)(&___text48_228), (void*)value); } inline static int32_t get_offset_of_text49_229() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text49_229)); } inline String_t* get_text49_229() const { return ___text49_229; } inline String_t** get_address_of_text49_229() { return &___text49_229; } inline void set_text49_229(String_t* value) { ___text49_229 = value; Il2CppCodeGenWriteBarrier((void**)(&___text49_229), (void*)value); } inline static int32_t get_offset_of_text50_230() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text50_230)); } inline String_t* get_text50_230() const { return ___text50_230; } inline String_t** get_address_of_text50_230() { return &___text50_230; } inline void set_text50_230(String_t* value) { ___text50_230 = value; Il2CppCodeGenWriteBarrier((void**)(&___text50_230), (void*)value); } inline static int32_t get_offset_of_text51_231() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text51_231)); } inline String_t* get_text51_231() const { return ___text51_231; } inline String_t** get_address_of_text51_231() { return &___text51_231; } inline void set_text51_231(String_t* value) { ___text51_231 = value; Il2CppCodeGenWriteBarrier((void**)(&___text51_231), (void*)value); } inline static int32_t get_offset_of_text61_232() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text61_232)); } inline String_t* get_text61_232() const { return ___text61_232; } inline String_t** get_address_of_text61_232() { return &___text61_232; } inline void set_text61_232(String_t* value) { ___text61_232 = value; Il2CppCodeGenWriteBarrier((void**)(&___text61_232), (void*)value); } inline static int32_t get_offset_of_text62_233() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text62_233)); } inline String_t* get_text62_233() const { return ___text62_233; } inline String_t** get_address_of_text62_233() { return &___text62_233; } inline void set_text62_233(String_t* value) { ___text62_233 = value; Il2CppCodeGenWriteBarrier((void**)(&___text62_233), (void*)value); } inline static int32_t get_offset_of_text63_234() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text63_234)); } inline String_t* get_text63_234() const { return ___text63_234; } inline String_t** get_address_of_text63_234() { return &___text63_234; } inline void set_text63_234(String_t* value) { ___text63_234 = value; Il2CppCodeGenWriteBarrier((void**)(&___text63_234), (void*)value); } inline static int32_t get_offset_of_text64_235() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text64_235)); } inline String_t* get_text64_235() const { return ___text64_235; } inline String_t** get_address_of_text64_235() { return &___text64_235; } inline void set_text64_235(String_t* value) { ___text64_235 = value; Il2CppCodeGenWriteBarrier((void**)(&___text64_235), (void*)value); } inline static int32_t get_offset_of_text65_236() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text65_236)); } inline String_t* get_text65_236() const { return ___text65_236; } inline String_t** get_address_of_text65_236() { return &___text65_236; } inline void set_text65_236(String_t* value) { ___text65_236 = value; Il2CppCodeGenWriteBarrier((void**)(&___text65_236), (void*)value); } inline static int32_t get_offset_of_text66_237() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text66_237)); } inline String_t* get_text66_237() const { return ___text66_237; } inline String_t** get_address_of_text66_237() { return &___text66_237; } inline void set_text66_237(String_t* value) { ___text66_237 = value; Il2CppCodeGenWriteBarrier((void**)(&___text66_237), (void*)value); } inline static int32_t get_offset_of_text67_238() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text67_238)); } inline String_t* get_text67_238() const { return ___text67_238; } inline String_t** get_address_of_text67_238() { return &___text67_238; } inline void set_text67_238(String_t* value) { ___text67_238 = value; Il2CppCodeGenWriteBarrier((void**)(&___text67_238), (void*)value); } inline static int32_t get_offset_of_text68_239() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text68_239)); } inline String_t* get_text68_239() const { return ___text68_239; } inline String_t** get_address_of_text68_239() { return &___text68_239; } inline void set_text68_239(String_t* value) { ___text68_239 = value; Il2CppCodeGenWriteBarrier((void**)(&___text68_239), (void*)value); } inline static int32_t get_offset_of_text69_240() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text69_240)); } inline String_t* get_text69_240() const { return ___text69_240; } inline String_t** get_address_of_text69_240() { return &___text69_240; } inline void set_text69_240(String_t* value) { ___text69_240 = value; Il2CppCodeGenWriteBarrier((void**)(&___text69_240), (void*)value); } inline static int32_t get_offset_of_text70_241() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text70_241)); } inline String_t* get_text70_241() const { return ___text70_241; } inline String_t** get_address_of_text70_241() { return &___text70_241; } inline void set_text70_241(String_t* value) { ___text70_241 = value; Il2CppCodeGenWriteBarrier((void**)(&___text70_241), (void*)value); } inline static int32_t get_offset_of_text71_242() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text71_242)); } inline String_t* get_text71_242() const { return ___text71_242; } inline String_t** get_address_of_text71_242() { return &___text71_242; } inline void set_text71_242(String_t* value) { ___text71_242 = value; Il2CppCodeGenWriteBarrier((void**)(&___text71_242), (void*)value); } inline static int32_t get_offset_of_text72_243() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text72_243)); } inline String_t* get_text72_243() const { return ___text72_243; } inline String_t** get_address_of_text72_243() { return &___text72_243; } inline void set_text72_243(String_t* value) { ___text72_243 = value; Il2CppCodeGenWriteBarrier((void**)(&___text72_243), (void*)value); } inline static int32_t get_offset_of_text73_244() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text73_244)); } inline String_t* get_text73_244() const { return ___text73_244; } inline String_t** get_address_of_text73_244() { return &___text73_244; } inline void set_text73_244(String_t* value) { ___text73_244 = value; Il2CppCodeGenWriteBarrier((void**)(&___text73_244), (void*)value); } inline static int32_t get_offset_of_text74_245() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text74_245)); } inline String_t* get_text74_245() const { return ___text74_245; } inline String_t** get_address_of_text74_245() { return &___text74_245; } inline void set_text74_245(String_t* value) { ___text74_245 = value; Il2CppCodeGenWriteBarrier((void**)(&___text74_245), (void*)value); } inline static int32_t get_offset_of_text87_246() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text87_246)); } inline String_t* get_text87_246() const { return ___text87_246; } inline String_t** get_address_of_text87_246() { return &___text87_246; } inline void set_text87_246(String_t* value) { ___text87_246 = value; Il2CppCodeGenWriteBarrier((void**)(&___text87_246), (void*)value); } inline static int32_t get_offset_of_text88_247() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text88_247)); } inline String_t* get_text88_247() const { return ___text88_247; } inline String_t** get_address_of_text88_247() { return &___text88_247; } inline void set_text88_247(String_t* value) { ___text88_247 = value; Il2CppCodeGenWriteBarrier((void**)(&___text88_247), (void*)value); } inline static int32_t get_offset_of_text89_248() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text89_248)); } inline String_t* get_text89_248() const { return ___text89_248; } inline String_t** get_address_of_text89_248() { return &___text89_248; } inline void set_text89_248(String_t* value) { ___text89_248 = value; Il2CppCodeGenWriteBarrier((void**)(&___text89_248), (void*)value); } inline static int32_t get_offset_of_text90_249() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text90_249)); } inline String_t* get_text90_249() const { return ___text90_249; } inline String_t** get_address_of_text90_249() { return &___text90_249; } inline void set_text90_249(String_t* value) { ___text90_249 = value; Il2CppCodeGenWriteBarrier((void**)(&___text90_249), (void*)value); } inline static int32_t get_offset_of_text91_250() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text91_250)); } inline String_t* get_text91_250() const { return ___text91_250; } inline String_t** get_address_of_text91_250() { return &___text91_250; } inline void set_text91_250(String_t* value) { ___text91_250 = value; Il2CppCodeGenWriteBarrier((void**)(&___text91_250), (void*)value); } inline static int32_t get_offset_of_text92_251() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text92_251)); } inline String_t* get_text92_251() const { return ___text92_251; } inline String_t** get_address_of_text92_251() { return &___text92_251; } inline void set_text92_251(String_t* value) { ___text92_251 = value; Il2CppCodeGenWriteBarrier((void**)(&___text92_251), (void*)value); } inline static int32_t get_offset_of_text93_252() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text93_252)); } inline String_t* get_text93_252() const { return ___text93_252; } inline String_t** get_address_of_text93_252() { return &___text93_252; } inline void set_text93_252(String_t* value) { ___text93_252 = value; Il2CppCodeGenWriteBarrier((void**)(&___text93_252), (void*)value); } inline static int32_t get_offset_of_text94_253() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text94_253)); } inline String_t* get_text94_253() const { return ___text94_253; } inline String_t** get_address_of_text94_253() { return &___text94_253; } inline void set_text94_253(String_t* value) { ___text94_253 = value; Il2CppCodeGenWriteBarrier((void**)(&___text94_253), (void*)value); } inline static int32_t get_offset_of_text95_254() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text95_254)); } inline String_t* get_text95_254() const { return ___text95_254; } inline String_t** get_address_of_text95_254() { return &___text95_254; } inline void set_text95_254(String_t* value) { ___text95_254 = value; Il2CppCodeGenWriteBarrier((void**)(&___text95_254), (void*)value); } inline static int32_t get_offset_of_text96_255() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text96_255)); } inline String_t* get_text96_255() const { return ___text96_255; } inline String_t** get_address_of_text96_255() { return &___text96_255; } inline void set_text96_255(String_t* value) { ___text96_255 = value; Il2CppCodeGenWriteBarrier((void**)(&___text96_255), (void*)value); } inline static int32_t get_offset_of_text97_256() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text97_256)); } inline String_t* get_text97_256() const { return ___text97_256; } inline String_t** get_address_of_text97_256() { return &___text97_256; } inline void set_text97_256(String_t* value) { ___text97_256 = value; Il2CppCodeGenWriteBarrier((void**)(&___text97_256), (void*)value); } inline static int32_t get_offset_of_text98_257() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text98_257)); } inline String_t* get_text98_257() const { return ___text98_257; } inline String_t** get_address_of_text98_257() { return &___text98_257; } inline void set_text98_257(String_t* value) { ___text98_257 = value; Il2CppCodeGenWriteBarrier((void**)(&___text98_257), (void*)value); } inline static int32_t get_offset_of_text99_258() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text99_258)); } inline String_t* get_text99_258() const { return ___text99_258; } inline String_t** get_address_of_text99_258() { return &___text99_258; } inline void set_text99_258(String_t* value) { ___text99_258 = value; Il2CppCodeGenWriteBarrier((void**)(&___text99_258), (void*)value); } inline static int32_t get_offset_of_text100_259() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text100_259)); } inline String_t* get_text100_259() const { return ___text100_259; } inline String_t** get_address_of_text100_259() { return &___text100_259; } inline void set_text100_259(String_t* value) { ___text100_259 = value; Il2CppCodeGenWriteBarrier((void**)(&___text100_259), (void*)value); } inline static int32_t get_offset_of_text101_260() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text101_260)); } inline String_t* get_text101_260() const { return ___text101_260; } inline String_t** get_address_of_text101_260() { return &___text101_260; } inline void set_text101_260(String_t* value) { ___text101_260 = value; Il2CppCodeGenWriteBarrier((void**)(&___text101_260), (void*)value); } inline static int32_t get_offset_of_text102_261() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text102_261)); } inline String_t* get_text102_261() const { return ___text102_261; } inline String_t** get_address_of_text102_261() { return &___text102_261; } inline void set_text102_261(String_t* value) { ___text102_261 = value; Il2CppCodeGenWriteBarrier((void**)(&___text102_261), (void*)value); } inline static int32_t get_offset_of_text103_262() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text103_262)); } inline String_t* get_text103_262() const { return ___text103_262; } inline String_t** get_address_of_text103_262() { return &___text103_262; } inline void set_text103_262(String_t* value) { ___text103_262 = value; Il2CppCodeGenWriteBarrier((void**)(&___text103_262), (void*)value); } inline static int32_t get_offset_of_text104_263() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text104_263)); } inline String_t* get_text104_263() const { return ___text104_263; } inline String_t** get_address_of_text104_263() { return &___text104_263; } inline void set_text104_263(String_t* value) { ___text104_263 = value; Il2CppCodeGenWriteBarrier((void**)(&___text104_263), (void*)value); } inline static int32_t get_offset_of_text105_264() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text105_264)); } inline String_t* get_text105_264() const { return ___text105_264; } inline String_t** get_address_of_text105_264() { return &___text105_264; } inline void set_text105_264(String_t* value) { ___text105_264 = value; Il2CppCodeGenWriteBarrier((void**)(&___text105_264), (void*)value); } inline static int32_t get_offset_of_text106_265() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text106_265)); } inline String_t* get_text106_265() const { return ___text106_265; } inline String_t** get_address_of_text106_265() { return &___text106_265; } inline void set_text106_265(String_t* value) { ___text106_265 = value; Il2CppCodeGenWriteBarrier((void**)(&___text106_265), (void*)value); } inline static int32_t get_offset_of_text107_266() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text107_266)); } inline String_t* get_text107_266() const { return ___text107_266; } inline String_t** get_address_of_text107_266() { return &___text107_266; } inline void set_text107_266(String_t* value) { ___text107_266 = value; Il2CppCodeGenWriteBarrier((void**)(&___text107_266), (void*)value); } inline static int32_t get_offset_of_text108_267() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text108_267)); } inline String_t* get_text108_267() const { return ___text108_267; } inline String_t** get_address_of_text108_267() { return &___text108_267; } inline void set_text108_267(String_t* value) { ___text108_267 = value; Il2CppCodeGenWriteBarrier((void**)(&___text108_267), (void*)value); } inline static int32_t get_offset_of_text109_268() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text109_268)); } inline String_t* get_text109_268() const { return ___text109_268; } inline String_t** get_address_of_text109_268() { return &___text109_268; } inline void set_text109_268(String_t* value) { ___text109_268 = value; Il2CppCodeGenWriteBarrier((void**)(&___text109_268), (void*)value); } inline static int32_t get_offset_of_text110_269() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text110_269)); } inline String_t* get_text110_269() const { return ___text110_269; } inline String_t** get_address_of_text110_269() { return &___text110_269; } inline void set_text110_269(String_t* value) { ___text110_269 = value; Il2CppCodeGenWriteBarrier((void**)(&___text110_269), (void*)value); } inline static int32_t get_offset_of_text111_270() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text111_270)); } inline String_t* get_text111_270() const { return ___text111_270; } inline String_t** get_address_of_text111_270() { return &___text111_270; } inline void set_text111_270(String_t* value) { ___text111_270 = value; Il2CppCodeGenWriteBarrier((void**)(&___text111_270), (void*)value); } inline static int32_t get_offset_of_text112_271() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text112_271)); } inline String_t* get_text112_271() const { return ___text112_271; } inline String_t** get_address_of_text112_271() { return &___text112_271; } inline void set_text112_271(String_t* value) { ___text112_271 = value; Il2CppCodeGenWriteBarrier((void**)(&___text112_271), (void*)value); } inline static int32_t get_offset_of_text113_272() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text113_272)); } inline String_t* get_text113_272() const { return ___text113_272; } inline String_t** get_address_of_text113_272() { return &___text113_272; } inline void set_text113_272(String_t* value) { ___text113_272 = value; Il2CppCodeGenWriteBarrier((void**)(&___text113_272), (void*)value); } inline static int32_t get_offset_of_text114_273() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text114_273)); } inline String_t* get_text114_273() const { return ___text114_273; } inline String_t** get_address_of_text114_273() { return &___text114_273; } inline void set_text114_273(String_t* value) { ___text114_273 = value; Il2CppCodeGenWriteBarrier((void**)(&___text114_273), (void*)value); } inline static int32_t get_offset_of_text115_274() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text115_274)); } inline String_t* get_text115_274() const { return ___text115_274; } inline String_t** get_address_of_text115_274() { return &___text115_274; } inline void set_text115_274(String_t* value) { ___text115_274 = value; Il2CppCodeGenWriteBarrier((void**)(&___text115_274), (void*)value); } inline static int32_t get_offset_of_text117_275() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text117_275)); } inline String_t* get_text117_275() const { return ___text117_275; } inline String_t** get_address_of_text117_275() { return &___text117_275; } inline void set_text117_275(String_t* value) { ___text117_275 = value; Il2CppCodeGenWriteBarrier((void**)(&___text117_275), (void*)value); } inline static int32_t get_offset_of_text118_276() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text118_276)); } inline String_t* get_text118_276() const { return ___text118_276; } inline String_t** get_address_of_text118_276() { return &___text118_276; } inline void set_text118_276(String_t* value) { ___text118_276 = value; Il2CppCodeGenWriteBarrier((void**)(&___text118_276), (void*)value); } inline static int32_t get_offset_of_text119_277() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text119_277)); } inline String_t* get_text119_277() const { return ___text119_277; } inline String_t** get_address_of_text119_277() { return &___text119_277; } inline void set_text119_277(String_t* value) { ___text119_277 = value; Il2CppCodeGenWriteBarrier((void**)(&___text119_277), (void*)value); } inline static int32_t get_offset_of_text500_278() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text500_278)); } inline String_t* get_text500_278() const { return ___text500_278; } inline String_t** get_address_of_text500_278() { return &___text500_278; } inline void set_text500_278(String_t* value) { ___text500_278 = value; Il2CppCodeGenWriteBarrier((void**)(&___text500_278), (void*)value); } inline static int32_t get_offset_of_text501_279() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text501_279)); } inline String_t* get_text501_279() const { return ___text501_279; } inline String_t** get_address_of_text501_279() { return &___text501_279; } inline void set_text501_279(String_t* value) { ___text501_279 = value; Il2CppCodeGenWriteBarrier((void**)(&___text501_279), (void*)value); } inline static int32_t get_offset_of_text502_280() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text502_280)); } inline String_t* get_text502_280() const { return ___text502_280; } inline String_t** get_address_of_text502_280() { return &___text502_280; } inline void set_text502_280(String_t* value) { ___text502_280 = value; Il2CppCodeGenWriteBarrier((void**)(&___text502_280), (void*)value); } inline static int32_t get_offset_of_text503_281() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text503_281)); } inline String_t* get_text503_281() const { return ___text503_281; } inline String_t** get_address_of_text503_281() { return &___text503_281; } inline void set_text503_281(String_t* value) { ___text503_281 = value; Il2CppCodeGenWriteBarrier((void**)(&___text503_281), (void*)value); } inline static int32_t get_offset_of_text504_282() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text504_282)); } inline String_t* get_text504_282() const { return ___text504_282; } inline String_t** get_address_of_text504_282() { return &___text504_282; } inline void set_text504_282(String_t* value) { ___text504_282 = value; Il2CppCodeGenWriteBarrier((void**)(&___text504_282), (void*)value); } inline static int32_t get_offset_of_text122_283() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text122_283)); } inline String_t* get_text122_283() const { return ___text122_283; } inline String_t** get_address_of_text122_283() { return &___text122_283; } inline void set_text122_283(String_t* value) { ___text122_283 = value; Il2CppCodeGenWriteBarrier((void**)(&___text122_283), (void*)value); } inline static int32_t get_offset_of_text123_284() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text123_284)); } inline String_t* get_text123_284() const { return ___text123_284; } inline String_t** get_address_of_text123_284() { return &___text123_284; } inline void set_text123_284(String_t* value) { ___text123_284 = value; Il2CppCodeGenWriteBarrier((void**)(&___text123_284), (void*)value); } inline static int32_t get_offset_of_text124_285() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text124_285)); } inline String_t* get_text124_285() const { return ___text124_285; } inline String_t** get_address_of_text124_285() { return &___text124_285; } inline void set_text124_285(String_t* value) { ___text124_285 = value; Il2CppCodeGenWriteBarrier((void**)(&___text124_285), (void*)value); } inline static int32_t get_offset_of_text125_286() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text125_286)); } inline String_t* get_text125_286() const { return ___text125_286; } inline String_t** get_address_of_text125_286() { return &___text125_286; } inline void set_text125_286(String_t* value) { ___text125_286 = value; Il2CppCodeGenWriteBarrier((void**)(&___text125_286), (void*)value); } inline static int32_t get_offset_of_text126_287() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text126_287)); } inline String_t* get_text126_287() const { return ___text126_287; } inline String_t** get_address_of_text126_287() { return &___text126_287; } inline void set_text126_287(String_t* value) { ___text126_287 = value; Il2CppCodeGenWriteBarrier((void**)(&___text126_287), (void*)value); } inline static int32_t get_offset_of_text133_288() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text133_288)); } inline String_t* get_text133_288() const { return ___text133_288; } inline String_t** get_address_of_text133_288() { return &___text133_288; } inline void set_text133_288(String_t* value) { ___text133_288 = value; Il2CppCodeGenWriteBarrier((void**)(&___text133_288), (void*)value); } inline static int32_t get_offset_of_text127_289() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text127_289)); } inline String_t* get_text127_289() const { return ___text127_289; } inline String_t** get_address_of_text127_289() { return &___text127_289; } inline void set_text127_289(String_t* value) { ___text127_289 = value; Il2CppCodeGenWriteBarrier((void**)(&___text127_289), (void*)value); } inline static int32_t get_offset_of_text128_290() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text128_290)); } inline String_t* get_text128_290() const { return ___text128_290; } inline String_t** get_address_of_text128_290() { return &___text128_290; } inline void set_text128_290(String_t* value) { ___text128_290 = value; Il2CppCodeGenWriteBarrier((void**)(&___text128_290), (void*)value); } inline static int32_t get_offset_of_text129_291() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text129_291)); } inline String_t* get_text129_291() const { return ___text129_291; } inline String_t** get_address_of_text129_291() { return &___text129_291; } inline void set_text129_291(String_t* value) { ___text129_291 = value; Il2CppCodeGenWriteBarrier((void**)(&___text129_291), (void*)value); } inline static int32_t get_offset_of_text132_292() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text132_292)); } inline String_t* get_text132_292() const { return ___text132_292; } inline String_t** get_address_of_text132_292() { return &___text132_292; } inline void set_text132_292(String_t* value) { ___text132_292 = value; Il2CppCodeGenWriteBarrier((void**)(&___text132_292), (void*)value); } inline static int32_t get_offset_of_text130_293() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text130_293)); } inline String_t* get_text130_293() const { return ___text130_293; } inline String_t** get_address_of_text130_293() { return &___text130_293; } inline void set_text130_293(String_t* value) { ___text130_293 = value; Il2CppCodeGenWriteBarrier((void**)(&___text130_293), (void*)value); } inline static int32_t get_offset_of_text131_294() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text131_294)); } inline String_t* get_text131_294() const { return ___text131_294; } inline String_t** get_address_of_text131_294() { return &___text131_294; } inline void set_text131_294(String_t* value) { ___text131_294 = value; Il2CppCodeGenWriteBarrier((void**)(&___text131_294), (void*)value); } inline static int32_t get_offset_of_text401_295() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text401_295)); } inline String_t* get_text401_295() const { return ___text401_295; } inline String_t** get_address_of_text401_295() { return &___text401_295; } inline void set_text401_295(String_t* value) { ___text401_295 = value; Il2CppCodeGenWriteBarrier((void**)(&___text401_295), (void*)value); } inline static int32_t get_offset_of_text134_296() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text134_296)); } inline String_t* get_text134_296() const { return ___text134_296; } inline String_t** get_address_of_text134_296() { return &___text134_296; } inline void set_text134_296(String_t* value) { ___text134_296 = value; Il2CppCodeGenWriteBarrier((void**)(&___text134_296), (void*)value); } inline static int32_t get_offset_of_text135_297() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text135_297)); } inline String_t* get_text135_297() const { return ___text135_297; } inline String_t** get_address_of_text135_297() { return &___text135_297; } inline void set_text135_297(String_t* value) { ___text135_297 = value; Il2CppCodeGenWriteBarrier((void**)(&___text135_297), (void*)value); } inline static int32_t get_offset_of_text136_298() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text136_298)); } inline String_t* get_text136_298() const { return ___text136_298; } inline String_t** get_address_of_text136_298() { return &___text136_298; } inline void set_text136_298(String_t* value) { ___text136_298 = value; Il2CppCodeGenWriteBarrier((void**)(&___text136_298), (void*)value); } inline static int32_t get_offset_of_text137_299() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text137_299)); } inline String_t* get_text137_299() const { return ___text137_299; } inline String_t** get_address_of_text137_299() { return &___text137_299; } inline void set_text137_299(String_t* value) { ___text137_299 = value; Il2CppCodeGenWriteBarrier((void**)(&___text137_299), (void*)value); } inline static int32_t get_offset_of_text302_300() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text302_300)); } inline String_t* get_text302_300() const { return ___text302_300; } inline String_t** get_address_of_text302_300() { return &___text302_300; } inline void set_text302_300(String_t* value) { ___text302_300 = value; Il2CppCodeGenWriteBarrier((void**)(&___text302_300), (void*)value); } inline static int32_t get_offset_of_text303_301() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text303_301)); } inline String_t* get_text303_301() const { return ___text303_301; } inline String_t** get_address_of_text303_301() { return &___text303_301; } inline void set_text303_301(String_t* value) { ___text303_301 = value; Il2CppCodeGenWriteBarrier((void**)(&___text303_301), (void*)value); } inline static int32_t get_offset_of_text304_302() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text304_302)); } inline String_t* get_text304_302() const { return ___text304_302; } inline String_t** get_address_of_text304_302() { return &___text304_302; } inline void set_text304_302(String_t* value) { ___text304_302 = value; Il2CppCodeGenWriteBarrier((void**)(&___text304_302), (void*)value); } inline static int32_t get_offset_of_text305_303() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text305_303)); } inline String_t* get_text305_303() const { return ___text305_303; } inline String_t** get_address_of_text305_303() { return &___text305_303; } inline void set_text305_303(String_t* value) { ___text305_303 = value; Il2CppCodeGenWriteBarrier((void**)(&___text305_303), (void*)value); } inline static int32_t get_offset_of_text306_304() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text306_304)); } inline String_t* get_text306_304() const { return ___text306_304; } inline String_t** get_address_of_text306_304() { return &___text306_304; } inline void set_text306_304(String_t* value) { ___text306_304 = value; Il2CppCodeGenWriteBarrier((void**)(&___text306_304), (void*)value); } inline static int32_t get_offset_of_text307_305() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text307_305)); } inline String_t* get_text307_305() const { return ___text307_305; } inline String_t** get_address_of_text307_305() { return &___text307_305; } inline void set_text307_305(String_t* value) { ___text307_305 = value; Il2CppCodeGenWriteBarrier((void**)(&___text307_305), (void*)value); } inline static int32_t get_offset_of_text308_306() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text308_306)); } inline String_t* get_text308_306() const { return ___text308_306; } inline String_t** get_address_of_text308_306() { return &___text308_306; } inline void set_text308_306(String_t* value) { ___text308_306 = value; Il2CppCodeGenWriteBarrier((void**)(&___text308_306), (void*)value); } inline static int32_t get_offset_of_text309_307() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text309_307)); } inline String_t* get_text309_307() const { return ___text309_307; } inline String_t** get_address_of_text309_307() { return &___text309_307; } inline void set_text309_307(String_t* value) { ___text309_307 = value; Il2CppCodeGenWriteBarrier((void**)(&___text309_307), (void*)value); } inline static int32_t get_offset_of_text310_308() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text310_308)); } inline String_t* get_text310_308() const { return ___text310_308; } inline String_t** get_address_of_text310_308() { return &___text310_308; } inline void set_text310_308(String_t* value) { ___text310_308 = value; Il2CppCodeGenWriteBarrier((void**)(&___text310_308), (void*)value); } inline static int32_t get_offset_of_text311_309() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text311_309)); } inline String_t* get_text311_309() const { return ___text311_309; } inline String_t** get_address_of_text311_309() { return &___text311_309; } inline void set_text311_309(String_t* value) { ___text311_309 = value; Il2CppCodeGenWriteBarrier((void**)(&___text311_309), (void*)value); } inline static int32_t get_offset_of_text312_310() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text312_310)); } inline String_t* get_text312_310() const { return ___text312_310; } inline String_t** get_address_of_text312_310() { return &___text312_310; } inline void set_text312_310(String_t* value) { ___text312_310 = value; Il2CppCodeGenWriteBarrier((void**)(&___text312_310), (void*)value); } inline static int32_t get_offset_of_text313_311() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text313_311)); } inline String_t* get_text313_311() const { return ___text313_311; } inline String_t** get_address_of_text313_311() { return &___text313_311; } inline void set_text313_311(String_t* value) { ___text313_311 = value; Il2CppCodeGenWriteBarrier((void**)(&___text313_311), (void*)value); } inline static int32_t get_offset_of_text314_312() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text314_312)); } inline String_t* get_text314_312() const { return ___text314_312; } inline String_t** get_address_of_text314_312() { return &___text314_312; } inline void set_text314_312(String_t* value) { ___text314_312 = value; Il2CppCodeGenWriteBarrier((void**)(&___text314_312), (void*)value); } inline static int32_t get_offset_of_text315_313() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text315_313)); } inline String_t* get_text315_313() const { return ___text315_313; } inline String_t** get_address_of_text315_313() { return &___text315_313; } inline void set_text315_313(String_t* value) { ___text315_313 = value; Il2CppCodeGenWriteBarrier((void**)(&___text315_313), (void*)value); } inline static int32_t get_offset_of_text318_314() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text318_314)); } inline String_t* get_text318_314() const { return ___text318_314; } inline String_t** get_address_of_text318_314() { return &___text318_314; } inline void set_text318_314(String_t* value) { ___text318_314 = value; Il2CppCodeGenWriteBarrier((void**)(&___text318_314), (void*)value); } inline static int32_t get_offset_of_text301_315() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text301_315)); } inline String_t* get_text301_315() const { return ___text301_315; } inline String_t** get_address_of_text301_315() { return &___text301_315; } inline void set_text301_315(String_t* value) { ___text301_315 = value; Il2CppCodeGenWriteBarrier((void**)(&___text301_315), (void*)value); } inline static int32_t get_offset_of_text316_316() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text316_316)); } inline String_t* get_text316_316() const { return ___text316_316; } inline String_t** get_address_of_text316_316() { return &___text316_316; } inline void set_text316_316(String_t* value) { ___text316_316 = value; Il2CppCodeGenWriteBarrier((void**)(&___text316_316), (void*)value); } inline static int32_t get_offset_of_text317_317() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text317_317)); } inline String_t* get_text317_317() const { return ___text317_317; } inline String_t** get_address_of_text317_317() { return &___text317_317; } inline void set_text317_317(String_t* value) { ___text317_317 = value; Il2CppCodeGenWriteBarrier((void**)(&___text317_317), (void*)value); } inline static int32_t get_offset_of_text300_318() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text300_318)); } inline String_t* get_text300_318() const { return ___text300_318; } inline String_t** get_address_of_text300_318() { return &___text300_318; } inline void set_text300_318(String_t* value) { ___text300_318 = value; Il2CppCodeGenWriteBarrier((void**)(&___text300_318), (void*)value); } inline static int32_t get_offset_of_text400_319() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text400_319)); } inline String_t* get_text400_319() const { return ___text400_319; } inline String_t** get_address_of_text400_319() { return &___text400_319; } inline void set_text400_319(String_t* value) { ___text400_319 = value; Il2CppCodeGenWriteBarrier((void**)(&___text400_319), (void*)value); } inline static int32_t get_offset_of_text76_320() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text76_320)); } inline String_t* get_text76_320() const { return ___text76_320; } inline String_t** get_address_of_text76_320() { return &___text76_320; } inline void set_text76_320(String_t* value) { ___text76_320 = value; Il2CppCodeGenWriteBarrier((void**)(&___text76_320), (void*)value); } inline static int32_t get_offset_of_text77_321() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text77_321)); } inline String_t* get_text77_321() const { return ___text77_321; } inline String_t** get_address_of_text77_321() { return &___text77_321; } inline void set_text77_321(String_t* value) { ___text77_321 = value; Il2CppCodeGenWriteBarrier((void**)(&___text77_321), (void*)value); } inline static int32_t get_offset_of_text78_322() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text78_322)); } inline String_t* get_text78_322() const { return ___text78_322; } inline String_t** get_address_of_text78_322() { return &___text78_322; } inline void set_text78_322(String_t* value) { ___text78_322 = value; Il2CppCodeGenWriteBarrier((void**)(&___text78_322), (void*)value); } inline static int32_t get_offset_of_text79_323() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text79_323)); } inline String_t* get_text79_323() const { return ___text79_323; } inline String_t** get_address_of_text79_323() { return &___text79_323; } inline void set_text79_323(String_t* value) { ___text79_323 = value; Il2CppCodeGenWriteBarrier((void**)(&___text79_323), (void*)value); } inline static int32_t get_offset_of_text80_324() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text80_324)); } inline String_t* get_text80_324() const { return ___text80_324; } inline String_t** get_address_of_text80_324() { return &___text80_324; } inline void set_text80_324(String_t* value) { ___text80_324 = value; Il2CppCodeGenWriteBarrier((void**)(&___text80_324), (void*)value); } inline static int32_t get_offset_of_text81_325() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text81_325)); } inline String_t* get_text81_325() const { return ___text81_325; } inline String_t** get_address_of_text81_325() { return &___text81_325; } inline void set_text81_325(String_t* value) { ___text81_325 = value; Il2CppCodeGenWriteBarrier((void**)(&___text81_325), (void*)value); } inline static int32_t get_offset_of_text82_326() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text82_326)); } inline String_t* get_text82_326() const { return ___text82_326; } inline String_t** get_address_of_text82_326() { return &___text82_326; } inline void set_text82_326(String_t* value) { ___text82_326 = value; Il2CppCodeGenWriteBarrier((void**)(&___text82_326), (void*)value); } inline static int32_t get_offset_of_text83_327() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text83_327)); } inline String_t* get_text83_327() const { return ___text83_327; } inline String_t** get_address_of_text83_327() { return &___text83_327; } inline void set_text83_327(String_t* value) { ___text83_327 = value; Il2CppCodeGenWriteBarrier((void**)(&___text83_327), (void*)value); } inline static int32_t get_offset_of_text84_328() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text84_328)); } inline String_t* get_text84_328() const { return ___text84_328; } inline String_t** get_address_of_text84_328() { return &___text84_328; } inline void set_text84_328(String_t* value) { ___text84_328 = value; Il2CppCodeGenWriteBarrier((void**)(&___text84_328), (void*)value); } inline static int32_t get_offset_of_text85_329() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text85_329)); } inline String_t* get_text85_329() const { return ___text85_329; } inline String_t** get_address_of_text85_329() { return &___text85_329; } inline void set_text85_329(String_t* value) { ___text85_329 = value; Il2CppCodeGenWriteBarrier((void**)(&___text85_329), (void*)value); } inline static int32_t get_offset_of_text86_330() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text86_330)); } inline String_t* get_text86_330() const { return ___text86_330; } inline String_t** get_address_of_text86_330() { return &___text86_330; } inline void set_text86_330(String_t* value) { ___text86_330 = value; Il2CppCodeGenWriteBarrier((void**)(&___text86_330), (void*)value); } inline static int32_t get_offset_of_text116_331() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text116_331)); } inline String_t* get_text116_331() const { return ___text116_331; } inline String_t** get_address_of_text116_331() { return &___text116_331; } inline void set_text116_331(String_t* value) { ___text116_331 = value; Il2CppCodeGenWriteBarrier((void**)(&___text116_331), (void*)value); } inline static int32_t get_offset_of_text120_332() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text120_332)); } inline String_t* get_text120_332() const { return ___text120_332; } inline String_t** get_address_of_text120_332() { return &___text120_332; } inline void set_text120_332(String_t* value) { ___text120_332 = value; Il2CppCodeGenWriteBarrier((void**)(&___text120_332), (void*)value); } inline static int32_t get_offset_of_text121_333() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text121_333)); } inline String_t* get_text121_333() const { return ___text121_333; } inline String_t** get_address_of_text121_333() { return &___text121_333; } inline void set_text121_333(String_t* value) { ___text121_333 = value; Il2CppCodeGenWriteBarrier((void**)(&___text121_333), (void*)value); } inline static int32_t get_offset_of_text200_334() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text200_334)); } inline String_t* get_text200_334() const { return ___text200_334; } inline String_t** get_address_of_text200_334() { return &___text200_334; } inline void set_text200_334(String_t* value) { ___text200_334 = value; Il2CppCodeGenWriteBarrier((void**)(&___text200_334), (void*)value); } inline static int32_t get_offset_of_text201_335() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text201_335)); } inline String_t* get_text201_335() const { return ___text201_335; } inline String_t** get_address_of_text201_335() { return &___text201_335; } inline void set_text201_335(String_t* value) { ___text201_335 = value; Il2CppCodeGenWriteBarrier((void**)(&___text201_335), (void*)value); } inline static int32_t get_offset_of_text202_336() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text202_336)); } inline String_t* get_text202_336() const { return ___text202_336; } inline String_t** get_address_of_text202_336() { return &___text202_336; } inline void set_text202_336(String_t* value) { ___text202_336 = value; Il2CppCodeGenWriteBarrier((void**)(&___text202_336), (void*)value); } inline static int32_t get_offset_of_text203_337() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text203_337)); } inline String_t* get_text203_337() const { return ___text203_337; } inline String_t** get_address_of_text203_337() { return &___text203_337; } inline void set_text203_337(String_t* value) { ___text203_337 = value; Il2CppCodeGenWriteBarrier((void**)(&___text203_337), (void*)value); } inline static int32_t get_offset_of_text204_338() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text204_338)); } inline String_t* get_text204_338() const { return ___text204_338; } inline String_t** get_address_of_text204_338() { return &___text204_338; } inline void set_text204_338(String_t* value) { ___text204_338 = value; Il2CppCodeGenWriteBarrier((void**)(&___text204_338), (void*)value); } inline static int32_t get_offset_of_text205_339() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text205_339)); } inline String_t* get_text205_339() const { return ___text205_339; } inline String_t** get_address_of_text205_339() { return &___text205_339; } inline void set_text205_339(String_t* value) { ___text205_339 = value; Il2CppCodeGenWriteBarrier((void**)(&___text205_339), (void*)value); } inline static int32_t get_offset_of_text1000_340() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text1000_340)); } inline String_t* get_text1000_340() const { return ___text1000_340; } inline String_t** get_address_of_text1000_340() { return &___text1000_340; } inline void set_text1000_340(String_t* value) { ___text1000_340 = value; Il2CppCodeGenWriteBarrier((void**)(&___text1000_340), (void*)value); } inline static int32_t get_offset_of_text1001_341() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text1001_341)); } inline String_t* get_text1001_341() const { return ___text1001_341; } inline String_t** get_address_of_text1001_341() { return &___text1001_341; } inline void set_text1001_341(String_t* value) { ___text1001_341 = value; Il2CppCodeGenWriteBarrier((void**)(&___text1001_341), (void*)value); } inline static int32_t get_offset_of_text2000_342() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text2000_342)); } inline String_t* get_text2000_342() const { return ___text2000_342; } inline String_t** get_address_of_text2000_342() { return &___text2000_342; } inline void set_text2000_342(String_t* value) { ___text2000_342 = value; Il2CppCodeGenWriteBarrier((void**)(&___text2000_342), (void*)value); } inline static int32_t get_offset_of_text2001_343() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text2001_343)); } inline String_t* get_text2001_343() const { return ___text2001_343; } inline String_t** get_address_of_text2001_343() { return &___text2001_343; } inline void set_text2001_343(String_t* value) { ___text2001_343 = value; Il2CppCodeGenWriteBarrier((void**)(&___text2001_343), (void*)value); } inline static int32_t get_offset_of_text2002_344() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text2002_344)); } inline String_t* get_text2002_344() const { return ___text2002_344; } inline String_t** get_address_of_text2002_344() { return &___text2002_344; } inline void set_text2002_344(String_t* value) { ___text2002_344 = value; Il2CppCodeGenWriteBarrier((void**)(&___text2002_344), (void*)value); } inline static int32_t get_offset_of_text2003_345() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text2003_345)); } inline String_t* get_text2003_345() const { return ___text2003_345; } inline String_t** get_address_of_text2003_345() { return &___text2003_345; } inline void set_text2003_345(String_t* value) { ___text2003_345 = value; Il2CppCodeGenWriteBarrier((void**)(&___text2003_345), (void*)value); } inline static int32_t get_offset_of_text101000_346() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text101000_346)); } inline String_t* get_text101000_346() const { return ___text101000_346; } inline String_t** get_address_of_text101000_346() { return &___text101000_346; } inline void set_text101000_346(String_t* value) { ___text101000_346 = value; Il2CppCodeGenWriteBarrier((void**)(&___text101000_346), (void*)value); } inline static int32_t get_offset_of_text101001_347() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text101001_347)); } inline String_t* get_text101001_347() const { return ___text101001_347; } inline String_t** get_address_of_text101001_347() { return &___text101001_347; } inline void set_text101001_347(String_t* value) { ___text101001_347 = value; Il2CppCodeGenWriteBarrier((void**)(&___text101001_347), (void*)value); } inline static int32_t get_offset_of_text111000_348() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text111000_348)); } inline String_t* get_text111000_348() const { return ___text111000_348; } inline String_t** get_address_of_text111000_348() { return &___text111000_348; } inline void set_text111000_348(String_t* value) { ___text111000_348 = value; Il2CppCodeGenWriteBarrier((void**)(&___text111000_348), (void*)value); } inline static int32_t get_offset_of_text111001_349() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text111001_349)); } inline String_t* get_text111001_349() const { return ___text111001_349; } inline String_t** get_address_of_text111001_349() { return &___text111001_349; } inline void set_text111001_349(String_t* value) { ___text111001_349 = value; Il2CppCodeGenWriteBarrier((void**)(&___text111001_349), (void*)value); } inline static int32_t get_offset_of_text200000_350() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text200000_350)); } inline String_t* get_text200000_350() const { return ___text200000_350; } inline String_t** get_address_of_text200000_350() { return &___text200000_350; } inline void set_text200000_350(String_t* value) { ___text200000_350 = value; Il2CppCodeGenWriteBarrier((void**)(&___text200000_350), (void*)value); } inline static int32_t get_offset_of_text201000_351() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text201000_351)); } inline String_t* get_text201000_351() const { return ___text201000_351; } inline String_t** get_address_of_text201000_351() { return &___text201000_351; } inline void set_text201000_351(String_t* value) { ___text201000_351 = value; Il2CppCodeGenWriteBarrier((void**)(&___text201000_351), (void*)value); } inline static int32_t get_offset_of_text201001_352() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text201001_352)); } inline String_t* get_text201001_352() const { return ___text201001_352; } inline String_t** get_address_of_text201001_352() { return &___text201001_352; } inline void set_text201001_352(String_t* value) { ___text201001_352 = value; Il2CppCodeGenWriteBarrier((void**)(&___text201001_352), (void*)value); } inline static int32_t get_offset_of_text201002_353() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text201002_353)); } inline String_t* get_text201002_353() const { return ___text201002_353; } inline String_t** get_address_of_text201002_353() { return &___text201002_353; } inline void set_text201002_353(String_t* value) { ___text201002_353 = value; Il2CppCodeGenWriteBarrier((void**)(&___text201002_353), (void*)value); } inline static int32_t get_offset_of_text211000_354() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text211000_354)); } inline String_t* get_text211000_354() const { return ___text211000_354; } inline String_t** get_address_of_text211000_354() { return &___text211000_354; } inline void set_text211000_354(String_t* value) { ___text211000_354 = value; Il2CppCodeGenWriteBarrier((void**)(&___text211000_354), (void*)value); } inline static int32_t get_offset_of_text211001_355() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text211001_355)); } inline String_t* get_text211001_355() const { return ___text211001_355; } inline String_t** get_address_of_text211001_355() { return &___text211001_355; } inline void set_text211001_355(String_t* value) { ___text211001_355 = value; Il2CppCodeGenWriteBarrier((void**)(&___text211001_355), (void*)value); } inline static int32_t get_offset_of_text211002_356() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text211002_356)); } inline String_t* get_text211002_356() const { return ___text211002_356; } inline String_t** get_address_of_text211002_356() { return &___text211002_356; } inline void set_text211002_356(String_t* value) { ___text211002_356 = value; Il2CppCodeGenWriteBarrier((void**)(&___text211002_356), (void*)value); } inline static int32_t get_offset_of_text1234560_357() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text1234560_357)); } inline String_t* get_text1234560_357() const { return ___text1234560_357; } inline String_t** get_address_of_text1234560_357() { return &___text1234560_357; } inline void set_text1234560_357(String_t* value) { ___text1234560_357 = value; Il2CppCodeGenWriteBarrier((void**)(&___text1234560_357), (void*)value); } inline static int32_t get_offset_of_text1234561_358() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text1234561_358)); } inline String_t* get_text1234561_358() const { return ___text1234561_358; } inline String_t** get_address_of_text1234561_358() { return &___text1234561_358; } inline void set_text1234561_358(String_t* value) { ___text1234561_358 = value; Il2CppCodeGenWriteBarrier((void**)(&___text1234561_358), (void*)value); } inline static int32_t get_offset_of_text1234562_359() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text1234562_359)); } inline String_t* get_text1234562_359() const { return ___text1234562_359; } inline String_t** get_address_of_text1234562_359() { return &___text1234562_359; } inline void set_text1234562_359(String_t* value) { ___text1234562_359 = value; Il2CppCodeGenWriteBarrier((void**)(&___text1234562_359), (void*)value); } inline static int32_t get_offset_of_text1234563_360() { return static_cast(offsetof(LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249, ___text1234563_360)); } inline String_t* get_text1234563_360() const { return ___text1234563_360; } inline String_t** get_address_of_text1234563_360() { return &___text1234563_360; } inline void set_text1234563_360(String_t* value) { ___text1234563_360 = value; Il2CppCodeGenWriteBarrier((void**)(&___text1234563_360), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.Ecc.MQVuserKeyingMaterial struct MQVuserKeyingMaterial_t0321EDE63C88A779858E39E0D66B18497BCF6A42 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.OriginatorPublicKey BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.Ecc.MQVuserKeyingMaterial::ephemeralPublicKey OriginatorPublicKey_tCFBC1D4932A0818726AED8E4B91FFD9AE1C029F5 * ___ephemeralPublicKey_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.Ecc.MQVuserKeyingMaterial::addedukm Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * ___addedukm_3; public: inline static int32_t get_offset_of_ephemeralPublicKey_2() { return static_cast(offsetof(MQVuserKeyingMaterial_t0321EDE63C88A779858E39E0D66B18497BCF6A42, ___ephemeralPublicKey_2)); } inline OriginatorPublicKey_tCFBC1D4932A0818726AED8E4B91FFD9AE1C029F5 * get_ephemeralPublicKey_2() const { return ___ephemeralPublicKey_2; } inline OriginatorPublicKey_tCFBC1D4932A0818726AED8E4B91FFD9AE1C029F5 ** get_address_of_ephemeralPublicKey_2() { return &___ephemeralPublicKey_2; } inline void set_ephemeralPublicKey_2(OriginatorPublicKey_tCFBC1D4932A0818726AED8E4B91FFD9AE1C029F5 * value) { ___ephemeralPublicKey_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___ephemeralPublicKey_2), (void*)value); } inline static int32_t get_offset_of_addedukm_3() { return static_cast(offsetof(MQVuserKeyingMaterial_t0321EDE63C88A779858E39E0D66B18497BCF6A42, ___addedukm_3)); } inline Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * get_addedukm_3() const { return ___addedukm_3; } inline Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 ** get_address_of_addedukm_3() { return &___addedukm_3; } inline void set_addedukm_3(Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * value) { ___addedukm_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___addedukm_3), (void*)value); } }; // System.Reflection.MethodBase struct MethodBase_t : public MemberInfo_t { public: public: }; // LitJson.ObjectMetadata struct ObjectMetadata_tCC476FD33189C604471B5B5D5ECF7AF098B0DB62 { public: // System.Type LitJson.ObjectMetadata::element_type Type_t * ___element_type_0; // System.Boolean LitJson.ObjectMetadata::is_dictionary bool ___is_dictionary_1; // System.Collections.Generic.IDictionary`2 LitJson.ObjectMetadata::properties RuntimeObject* ___properties_2; public: inline static int32_t get_offset_of_element_type_0() { return static_cast(offsetof(ObjectMetadata_tCC476FD33189C604471B5B5D5ECF7AF098B0DB62, ___element_type_0)); } inline Type_t * get_element_type_0() const { return ___element_type_0; } inline Type_t ** get_address_of_element_type_0() { return &___element_type_0; } inline void set_element_type_0(Type_t * value) { ___element_type_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___element_type_0), (void*)value); } inline static int32_t get_offset_of_is_dictionary_1() { return static_cast(offsetof(ObjectMetadata_tCC476FD33189C604471B5B5D5ECF7AF098B0DB62, ___is_dictionary_1)); } inline bool get_is_dictionary_1() const { return ___is_dictionary_1; } inline bool* get_address_of_is_dictionary_1() { return &___is_dictionary_1; } inline void set_is_dictionary_1(bool value) { ___is_dictionary_1 = value; } inline static int32_t get_offset_of_properties_2() { return static_cast(offsetof(ObjectMetadata_tCC476FD33189C604471B5B5D5ECF7AF098B0DB62, ___properties_2)); } inline RuntimeObject* get_properties_2() const { return ___properties_2; } inline RuntimeObject** get_address_of_properties_2() { return &___properties_2; } inline void set_properties_2(RuntimeObject* value) { ___properties_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___properties_2), (void*)value); } }; // Native definition for P/Invoke marshalling of LitJson.ObjectMetadata struct ObjectMetadata_tCC476FD33189C604471B5B5D5ECF7AF098B0DB62_marshaled_pinvoke { Type_t * ___element_type_0; int32_t ___is_dictionary_1; RuntimeObject* ___properties_2; }; // Native definition for COM marshalling of LitJson.ObjectMetadata struct ObjectMetadata_tCC476FD33189C604471B5B5D5ECF7AF098B0DB62_marshaled_com { Type_t * ___element_type_0; int32_t ___is_dictionary_1; RuntimeObject* ___properties_2; }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.OriginatorID struct OriginatorID_tE315A79325108441760EEF76B4FC3A8E13B422B0 : public X509CertStoreSelector_tDC9D1189AE7E9E64F71CF541A2D316686E4E2996 { public: public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.OriginatorIdentifierOrKey struct OriginatorIdentifierOrKey_t391EC78D0FD29ED45DCF5BFF9AC5BABA8A005603 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.OriginatorIdentifierOrKey::id Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * ___id_2; public: inline static int32_t get_offset_of_id_2() { return static_cast(offsetof(OriginatorIdentifierOrKey_t391EC78D0FD29ED45DCF5BFF9AC5BABA8A005603, ___id_2)); } inline Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * get_id_2() const { return ___id_2; } inline Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC ** get_address_of_id_2() { return &___id_2; } inline void set_id_2(Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * value) { ___id_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___id_2), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.OriginatorPublicKey struct OriginatorPublicKey_tCFBC1D4932A0818726AED8E4B91FFD9AE1C029F5 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.OriginatorPublicKey::mAlgorithm AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___mAlgorithm_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.OriginatorPublicKey::mPublicKey DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * ___mPublicKey_3; public: inline static int32_t get_offset_of_mAlgorithm_2() { return static_cast(offsetof(OriginatorPublicKey_tCFBC1D4932A0818726AED8E4B91FFD9AE1C029F5, ___mAlgorithm_2)); } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * get_mAlgorithm_2() const { return ___mAlgorithm_2; } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 ** get_address_of_mAlgorithm_2() { return &___mAlgorithm_2; } inline void set_mAlgorithm_2(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * value) { ___mAlgorithm_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___mAlgorithm_2), (void*)value); } inline static int32_t get_offset_of_mPublicKey_3() { return static_cast(offsetof(OriginatorPublicKey_tCFBC1D4932A0818726AED8E4B91FFD9AE1C029F5, ___mPublicKey_3)); } inline DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * get_mPublicKey_3() const { return ___mPublicKey_3; } inline DerBitString_t305465793A47445626D3541AB8CEDE347D874524 ** get_address_of_mPublicKey_3() { return &___mPublicKey_3; } inline void set_mPublicKey_3(DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * value) { ___mPublicKey_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___mPublicKey_3), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.OtherKeyAttribute struct OtherKeyAttribute_tABF4FB6A6D942EF9F90E7BC0C092BFB0E154ABBB : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.OtherKeyAttribute::keyAttrId DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___keyAttrId_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.OtherKeyAttribute::keyAttr Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * ___keyAttr_3; public: inline static int32_t get_offset_of_keyAttrId_2() { return static_cast(offsetof(OtherKeyAttribute_tABF4FB6A6D942EF9F90E7BC0C092BFB0E154ABBB, ___keyAttrId_2)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_keyAttrId_2() const { return ___keyAttrId_2; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_keyAttrId_2() { return &___keyAttrId_2; } inline void set_keyAttrId_2(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___keyAttrId_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___keyAttrId_2), (void*)value); } inline static int32_t get_offset_of_keyAttr_3() { return static_cast(offsetof(OtherKeyAttribute_tABF4FB6A6D942EF9F90E7BC0C092BFB0E154ABBB, ___keyAttr_3)); } inline Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * get_keyAttr_3() const { return ___keyAttr_3; } inline Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC ** get_address_of_keyAttr_3() { return &___keyAttr_3; } inline void set_keyAttr_3(Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * value) { ___keyAttr_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___keyAttr_3), (void*)value); } }; // BestHTTP.SignalRCore.Messages.PingMessage struct PingMessage_t05D03F8804B9C5668F98CFEB5761D5AE95CD63AA { public: union { struct { }; uint8_t PingMessage_t05D03F8804B9C5668F98CFEB5761D5AE95CD63AA__padding[1]; }; public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo struct PkiStatusInfo_t599558AC728FCD067FBBCD19778BE6228EBA3A17 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo::status DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * ___status_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.PkiFreeText BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo::statusString PkiFreeText_tD9C534FF15BDF5CB7B46DADD7DDC6A443045DF74 * ___statusString_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo::failInfo DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * ___failInfo_4; public: inline static int32_t get_offset_of_status_2() { return static_cast(offsetof(PkiStatusInfo_t599558AC728FCD067FBBCD19778BE6228EBA3A17, ___status_2)); } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * get_status_2() const { return ___status_2; } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 ** get_address_of_status_2() { return &___status_2; } inline void set_status_2(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * value) { ___status_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___status_2), (void*)value); } inline static int32_t get_offset_of_statusString_3() { return static_cast(offsetof(PkiStatusInfo_t599558AC728FCD067FBBCD19778BE6228EBA3A17, ___statusString_3)); } inline PkiFreeText_tD9C534FF15BDF5CB7B46DADD7DDC6A443045DF74 * get_statusString_3() const { return ___statusString_3; } inline PkiFreeText_tD9C534FF15BDF5CB7B46DADD7DDC6A443045DF74 ** get_address_of_statusString_3() { return &___statusString_3; } inline void set_statusString_3(PkiFreeText_tD9C534FF15BDF5CB7B46DADD7DDC6A443045DF74 * value) { ___statusString_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___statusString_3), (void*)value); } inline static int32_t get_offset_of_failInfo_4() { return static_cast(offsetof(PkiStatusInfo_t599558AC728FCD067FBBCD19778BE6228EBA3A17, ___failInfo_4)); } inline DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * get_failInfo_4() const { return ___failInfo_4; } inline DerBitString_t305465793A47445626D3541AB8CEDE347D874524 ** get_address_of_failInfo_4() { return &___failInfo_4; } inline void set_failInfo_4(DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * value) { ___failInfo_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___failInfo_4), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo struct PrivateKeyInfo_t2C1C0514E07F6048B5892B9D988A1CEFE90975AA : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo::version DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * ___version_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo::privateKeyAlgorithm AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___privateKeyAlgorithm_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo::privateKey Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * ___privateKey_4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Set BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo::attributes Asn1Set_t9EBB628AB5FBF1FCC866DC7AEA45C59A72698F49 * ___attributes_5; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo::publicKey DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * ___publicKey_6; public: inline static int32_t get_offset_of_version_2() { return static_cast(offsetof(PrivateKeyInfo_t2C1C0514E07F6048B5892B9D988A1CEFE90975AA, ___version_2)); } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * get_version_2() const { return ___version_2; } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 ** get_address_of_version_2() { return &___version_2; } inline void set_version_2(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * value) { ___version_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_2), (void*)value); } inline static int32_t get_offset_of_privateKeyAlgorithm_3() { return static_cast(offsetof(PrivateKeyInfo_t2C1C0514E07F6048B5892B9D988A1CEFE90975AA, ___privateKeyAlgorithm_3)); } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * get_privateKeyAlgorithm_3() const { return ___privateKeyAlgorithm_3; } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 ** get_address_of_privateKeyAlgorithm_3() { return &___privateKeyAlgorithm_3; } inline void set_privateKeyAlgorithm_3(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * value) { ___privateKeyAlgorithm_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___privateKeyAlgorithm_3), (void*)value); } inline static int32_t get_offset_of_privateKey_4() { return static_cast(offsetof(PrivateKeyInfo_t2C1C0514E07F6048B5892B9D988A1CEFE90975AA, ___privateKey_4)); } inline Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * get_privateKey_4() const { return ___privateKey_4; } inline Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 ** get_address_of_privateKey_4() { return &___privateKey_4; } inline void set_privateKey_4(Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * value) { ___privateKey_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___privateKey_4), (void*)value); } inline static int32_t get_offset_of_attributes_5() { return static_cast(offsetof(PrivateKeyInfo_t2C1C0514E07F6048B5892B9D988A1CEFE90975AA, ___attributes_5)); } inline Asn1Set_t9EBB628AB5FBF1FCC866DC7AEA45C59A72698F49 * get_attributes_5() const { return ___attributes_5; } inline Asn1Set_t9EBB628AB5FBF1FCC866DC7AEA45C59A72698F49 ** get_address_of_attributes_5() { return &___attributes_5; } inline void set_attributes_5(Asn1Set_t9EBB628AB5FBF1FCC866DC7AEA45C59A72698F49 * value) { ___attributes_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___attributes_5), (void*)value); } inline static int32_t get_offset_of_publicKey_6() { return static_cast(offsetof(PrivateKeyInfo_t2C1C0514E07F6048B5892B9D988A1CEFE90975AA, ___publicKey_6)); } inline DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * get_publicKey_6() const { return ___publicKey_6; } inline DerBitString_t305465793A47445626D3541AB8CEDE347D874524 ** get_address_of_publicKey_6() { return &___publicKey_6; } inline void set_publicKey_6(DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * value) { ___publicKey_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___publicKey_6), (void*)value); } }; // System.Reflection.PropertyInfo struct PropertyInfo_t : public MemberInfo_t { public: public: }; // LitJson.PropertyMetadata struct PropertyMetadata_t82F32770B33750701D575D2F6E092A8F1EA7858F { public: // System.Reflection.MemberInfo LitJson.PropertyMetadata::Info MemberInfo_t * ___Info_0; // System.Boolean LitJson.PropertyMetadata::IsField bool ___IsField_1; // System.Type LitJson.PropertyMetadata::Type Type_t * ___Type_2; public: inline static int32_t get_offset_of_Info_0() { return static_cast(offsetof(PropertyMetadata_t82F32770B33750701D575D2F6E092A8F1EA7858F, ___Info_0)); } inline MemberInfo_t * get_Info_0() const { return ___Info_0; } inline MemberInfo_t ** get_address_of_Info_0() { return &___Info_0; } inline void set_Info_0(MemberInfo_t * value) { ___Info_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Info_0), (void*)value); } inline static int32_t get_offset_of_IsField_1() { return static_cast(offsetof(PropertyMetadata_t82F32770B33750701D575D2F6E092A8F1EA7858F, ___IsField_1)); } inline bool get_IsField_1() const { return ___IsField_1; } inline bool* get_address_of_IsField_1() { return &___IsField_1; } inline void set_IsField_1(bool value) { ___IsField_1 = value; } inline static int32_t get_offset_of_Type_2() { return static_cast(offsetof(PropertyMetadata_t82F32770B33750701D575D2F6E092A8F1EA7858F, ___Type_2)); } inline Type_t * get_Type_2() const { return ___Type_2; } inline Type_t ** get_address_of_Type_2() { return &___Type_2; } inline void set_Type_2(Type_t * value) { ___Type_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___Type_2), (void*)value); } }; // Native definition for P/Invoke marshalling of LitJson.PropertyMetadata struct PropertyMetadata_t82F32770B33750701D575D2F6E092A8F1EA7858F_marshaled_pinvoke { MemberInfo_t * ___Info_0; int32_t ___IsField_1; Type_t * ___Type_2; }; // Native definition for COM marshalling of LitJson.PropertyMetadata struct PropertyMetadata_t82F32770B33750701D575D2F6E092A8F1EA7858F_marshaled_com { MemberInfo_t * ___Info_0; int32_t ___IsField_1; Type_t * ___Type_2; }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.RecipientEncryptedKey struct RecipientEncryptedKey_tED14E5C321F7687BA4201D41E15DE457A7D56BE2 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.RecipientEncryptedKey::identifier KeyAgreeRecipientIdentifier_tBA5E98B2A6C72F3799020F0A9D1C465116A7A28A * ___identifier_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.RecipientEncryptedKey::encryptedKey Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * ___encryptedKey_3; public: inline static int32_t get_offset_of_identifier_2() { return static_cast(offsetof(RecipientEncryptedKey_tED14E5C321F7687BA4201D41E15DE457A7D56BE2, ___identifier_2)); } inline KeyAgreeRecipientIdentifier_tBA5E98B2A6C72F3799020F0A9D1C465116A7A28A * get_identifier_2() const { return ___identifier_2; } inline KeyAgreeRecipientIdentifier_tBA5E98B2A6C72F3799020F0A9D1C465116A7A28A ** get_address_of_identifier_2() { return &___identifier_2; } inline void set_identifier_2(KeyAgreeRecipientIdentifier_tBA5E98B2A6C72F3799020F0A9D1C465116A7A28A * value) { ___identifier_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___identifier_2), (void*)value); } inline static int32_t get_offset_of_encryptedKey_3() { return static_cast(offsetof(RecipientEncryptedKey_tED14E5C321F7687BA4201D41E15DE457A7D56BE2, ___encryptedKey_3)); } inline Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * get_encryptedKey_3() const { return ___encryptedKey_3; } inline Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 ** get_address_of_encryptedKey_3() { return &___encryptedKey_3; } inline void set_encryptedKey_3(Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * value) { ___encryptedKey_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___encryptedKey_3), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.RecipientID struct RecipientID_t744700C1480DE017B5D0AB81C6A1044A8C400125 : public X509CertStoreSelector_tDC9D1189AE7E9E64F71CF541A2D316686E4E2996 { public: // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.RecipientID::keyIdentifier ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___keyIdentifier_15; public: inline static int32_t get_offset_of_keyIdentifier_15() { return static_cast(offsetof(RecipientID_t744700C1480DE017B5D0AB81C6A1044A8C400125, ___keyIdentifier_15)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_keyIdentifier_15() const { return ___keyIdentifier_15; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_keyIdentifier_15() { return &___keyIdentifier_15; } inline void set_keyIdentifier_15(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___keyIdentifier_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___keyIdentifier_15), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.RecipientIdentifier struct RecipientIdentifier_tBC500D2CDE60B57F8CB815C4599D2EE019A2E5C1 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.RecipientIdentifier::id Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * ___id_2; public: inline static int32_t get_offset_of_id_2() { return static_cast(offsetof(RecipientIdentifier_tBC500D2CDE60B57F8CB815C4599D2EE019A2E5C1, ___id_2)); } inline Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * get_id_2() const { return ___id_2; } inline Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC ** get_address_of_id_2() { return &___id_2; } inline void set_id_2(Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * value) { ___id_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___id_2), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.RecipientInfo struct RecipientInfo_tAD4CBFD604399F45BD0D23A4C028E0FC88C19829 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.RecipientInfo::info Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * ___info_2; public: inline static int32_t get_offset_of_info_2() { return static_cast(offsetof(RecipientInfo_tAD4CBFD604399F45BD0D23A4C028E0FC88C19829, ___info_2)); } inline Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * get_info_2() const { return ___info_2; } inline Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC ** get_address_of_info_2() { return &___info_2; } inline void set_info_2(Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * value) { ___info_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___info_2), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.RecipientKeyIdentifier struct RecipientKeyIdentifier_tCDD2B03857B94474CBA49C1E4FDC30DA4C26F492 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.RecipientKeyIdentifier::subjectKeyIdentifier Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * ___subjectKeyIdentifier_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerGeneralizedTime BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.RecipientKeyIdentifier::date DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 * ___date_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.OtherKeyAttribute BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.RecipientKeyIdentifier::other OtherKeyAttribute_tABF4FB6A6D942EF9F90E7BC0C092BFB0E154ABBB * ___other_4; public: inline static int32_t get_offset_of_subjectKeyIdentifier_2() { return static_cast(offsetof(RecipientKeyIdentifier_tCDD2B03857B94474CBA49C1E4FDC30DA4C26F492, ___subjectKeyIdentifier_2)); } inline Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * get_subjectKeyIdentifier_2() const { return ___subjectKeyIdentifier_2; } inline Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 ** get_address_of_subjectKeyIdentifier_2() { return &___subjectKeyIdentifier_2; } inline void set_subjectKeyIdentifier_2(Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * value) { ___subjectKeyIdentifier_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___subjectKeyIdentifier_2), (void*)value); } inline static int32_t get_offset_of_date_3() { return static_cast(offsetof(RecipientKeyIdentifier_tCDD2B03857B94474CBA49C1E4FDC30DA4C26F492, ___date_3)); } inline DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 * get_date_3() const { return ___date_3; } inline DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 ** get_address_of_date_3() { return &___date_3; } inline void set_date_3(DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 * value) { ___date_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___date_3), (void*)value); } inline static int32_t get_offset_of_other_4() { return static_cast(offsetof(RecipientKeyIdentifier_tCDD2B03857B94474CBA49C1E4FDC30DA4C26F492, ___other_4)); } inline OtherKeyAttribute_tABF4FB6A6D942EF9F90E7BC0C092BFB0E154ABBB * get_other_4() const { return ___other_4; } inline OtherKeyAttribute_tABF4FB6A6D942EF9F90E7BC0C092BFB0E154ABBB ** get_address_of_other_4() { return &___other_4; } inline void set_other_4(OtherKeyAttribute_tABF4FB6A6D942EF9F90E7BC0C092BFB0E154ABBB * value) { ___other_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___other_4), (void*)value); } }; // UnityEngine.Rect struct Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 { public: // System.Single UnityEngine.Rect::m_XMin float ___m_XMin_0; // System.Single UnityEngine.Rect::m_YMin float ___m_YMin_1; // System.Single UnityEngine.Rect::m_Width float ___m_Width_2; // System.Single UnityEngine.Rect::m_Height float ___m_Height_3; public: inline static int32_t get_offset_of_m_XMin_0() { return static_cast(offsetof(Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878, ___m_XMin_0)); } inline float get_m_XMin_0() const { return ___m_XMin_0; } inline float* get_address_of_m_XMin_0() { return &___m_XMin_0; } inline void set_m_XMin_0(float value) { ___m_XMin_0 = value; } inline static int32_t get_offset_of_m_YMin_1() { return static_cast(offsetof(Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878, ___m_YMin_1)); } inline float get_m_YMin_1() const { return ___m_YMin_1; } inline float* get_address_of_m_YMin_1() { return &___m_YMin_1; } inline void set_m_YMin_1(float value) { ___m_YMin_1 = value; } inline static int32_t get_offset_of_m_Width_2() { return static_cast(offsetof(Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878, ___m_Width_2)); } inline float get_m_Width_2() const { return ___m_Width_2; } inline float* get_address_of_m_Width_2() { return &___m_Width_2; } inline void set_m_Width_2(float value) { ___m_Width_2 = value; } inline static int32_t get_offset_of_m_Height_3() { return static_cast(offsetof(Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878, ___m_Height_3)); } inline float get_m_Height_3() const { return ___m_Height_3; } inline float* get_address_of_m_Height_3() { return &___m_Height_3; } inline void set_m_Height_3(float value) { ___m_Height_3 = value; } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom struct SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 : public Random_t6C9E9775A149D0ADCFEB4B252C408F03EE870118 { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.IRandomGenerator BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom::generator RuntimeObject* ___generator_5; public: inline static int32_t get_offset_of_generator_5() { return static_cast(offsetof(SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28, ___generator_5)); } inline RuntimeObject* get_generator_5() const { return ___generator_5; } inline RuntimeObject** get_address_of_generator_5() { return &___generator_5; } inline void set_generator_5(RuntimeObject* value) { ___generator_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___generator_5), (void*)value); } }; struct SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28_StaticFields { public: // System.Int64 BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom::counter int64_t ___counter_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom::master SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * ___master_4; // System.Double BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom::DoubleScale double ___DoubleScale_6; public: inline static int32_t get_offset_of_counter_3() { return static_cast(offsetof(SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28_StaticFields, ___counter_3)); } inline int64_t get_counter_3() const { return ___counter_3; } inline int64_t* get_address_of_counter_3() { return &___counter_3; } inline void set_counter_3(int64_t value) { ___counter_3 = value; } inline static int32_t get_offset_of_master_4() { return static_cast(offsetof(SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28_StaticFields, ___master_4)); } inline SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * get_master_4() const { return ___master_4; } inline SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 ** get_address_of_master_4() { return &___master_4; } inline void set_master_4(SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * value) { ___master_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___master_4), (void*)value); } inline static int32_t get_offset_of_DoubleScale_6() { return static_cast(offsetof(SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28_StaticFields, ___DoubleScale_6)); } inline double get_DoubleScale_6() const { return ___DoubleScale_6; } inline double* get_address_of_DoubleScale_6() { return &___DoubleScale_6; } inline void set_DoubleScale_6(double value) { ___DoubleScale_6 = value; } }; // System.Single struct Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E { public: // System.Single System.Single::m_value float ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E, ___m_value_0)); } inline float get_m_value_0() const { return ___m_value_0; } inline float* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(float value) { ___m_value_0 = value; } }; // System.IO.Stream struct Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB : public MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 { public: // System.IO.Stream/ReadWriteTask System.IO.Stream::_activeReadWriteTask ReadWriteTask_t32CD2C230786712954C1DB518DBE420A1F4C7974 * ____activeReadWriteTask_3; // System.Threading.SemaphoreSlim System.IO.Stream::_asyncActiveSemaphore SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385 * ____asyncActiveSemaphore_4; public: inline static int32_t get_offset_of__activeReadWriteTask_3() { return static_cast(offsetof(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB, ____activeReadWriteTask_3)); } inline ReadWriteTask_t32CD2C230786712954C1DB518DBE420A1F4C7974 * get__activeReadWriteTask_3() const { return ____activeReadWriteTask_3; } inline ReadWriteTask_t32CD2C230786712954C1DB518DBE420A1F4C7974 ** get_address_of__activeReadWriteTask_3() { return &____activeReadWriteTask_3; } inline void set__activeReadWriteTask_3(ReadWriteTask_t32CD2C230786712954C1DB518DBE420A1F4C7974 * value) { ____activeReadWriteTask_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____activeReadWriteTask_3), (void*)value); } inline static int32_t get_offset_of__asyncActiveSemaphore_4() { return static_cast(offsetof(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB, ____asyncActiveSemaphore_4)); } inline SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385 * get__asyncActiveSemaphore_4() const { return ____asyncActiveSemaphore_4; } inline SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385 ** get_address_of__asyncActiveSemaphore_4() { return &____asyncActiveSemaphore_4; } inline void set__asyncActiveSemaphore_4(SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385 * value) { ____asyncActiveSemaphore_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____asyncActiveSemaphore_4), (void*)value); } }; struct Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_StaticFields { public: // System.IO.Stream System.IO.Stream::Null Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___Null_1; public: inline static int32_t get_offset_of_Null_1() { return static_cast(offsetof(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_StaticFields, ___Null_1)); } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_Null_1() const { return ___Null_1; } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_Null_1() { return &___Null_1; } inline void set_Null_1(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value) { ___Null_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Null_1), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.SubjectKeyIdentifier struct SubjectKeyIdentifier_t572BF9E7277584519251C3E26F9015A145A7FF62 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.SubjectKeyIdentifier::keyIdentifier ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___keyIdentifier_2; public: inline static int32_t get_offset_of_keyIdentifier_2() { return static_cast(offsetof(SubjectKeyIdentifier_t572BF9E7277584519251C3E26F9015A145A7FF62, ___keyIdentifier_2)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_keyIdentifier_2() const { return ___keyIdentifier_2; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_keyIdentifier_2() { return &___keyIdentifier_2; } inline void set_keyIdentifier_2(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___keyIdentifier_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___keyIdentifier_2), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo struct SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo::algID AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___algID_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo::keyData DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * ___keyData_3; public: inline static int32_t get_offset_of_algID_2() { return static_cast(offsetof(SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB, ___algID_2)); } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * get_algID_2() const { return ___algID_2; } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 ** get_address_of_algID_2() { return &___algID_2; } inline void set_algID_2(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * value) { ___algID_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___algID_2), (void*)value); } inline static int32_t get_offset_of_keyData_3() { return static_cast(offsetof(SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB, ___keyData_3)); } inline DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * get_keyData_3() const { return ___keyData_3; } inline DerBitString_t305465793A47445626D3541AB8CEDE347D874524 ** get_address_of_keyData_3() { return &___keyData_3; } inline void set_keyData_3(DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * value) { ___keyData_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___keyData_3), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateStructure struct TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateStructure::seq Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * ___seq_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateStructure::version DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * ___version_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateStructure::serialNumber DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * ___serialNumber_4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateStructure::signature AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___signature_5; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateStructure::issuer X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * ___issuer_6; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.Time BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateStructure::startDate Time_tD684B1785E755395701D46F89A97609911CD6DDE * ___startDate_7; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.Time BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateStructure::endDate Time_tD684B1785E755395701D46F89A97609911CD6DDE * ___endDate_8; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateStructure::subject X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * ___subject_9; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateStructure::subjectPublicKeyInfo SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB * ___subjectPublicKeyInfo_10; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateStructure::issuerUniqueID DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * ___issuerUniqueID_11; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateStructure::subjectUniqueID DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * ___subjectUniqueID_12; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateStructure::extensions X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F * ___extensions_13; public: inline static int32_t get_offset_of_seq_2() { return static_cast(offsetof(TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3, ___seq_2)); } inline Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * get_seq_2() const { return ___seq_2; } inline Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 ** get_address_of_seq_2() { return &___seq_2; } inline void set_seq_2(Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * value) { ___seq_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___seq_2), (void*)value); } inline static int32_t get_offset_of_version_3() { return static_cast(offsetof(TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3, ___version_3)); } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * get_version_3() const { return ___version_3; } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 ** get_address_of_version_3() { return &___version_3; } inline void set_version_3(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * value) { ___version_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_3), (void*)value); } inline static int32_t get_offset_of_serialNumber_4() { return static_cast(offsetof(TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3, ___serialNumber_4)); } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * get_serialNumber_4() const { return ___serialNumber_4; } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 ** get_address_of_serialNumber_4() { return &___serialNumber_4; } inline void set_serialNumber_4(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * value) { ___serialNumber_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___serialNumber_4), (void*)value); } inline static int32_t get_offset_of_signature_5() { return static_cast(offsetof(TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3, ___signature_5)); } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * get_signature_5() const { return ___signature_5; } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 ** get_address_of_signature_5() { return &___signature_5; } inline void set_signature_5(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * value) { ___signature_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___signature_5), (void*)value); } inline static int32_t get_offset_of_issuer_6() { return static_cast(offsetof(TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3, ___issuer_6)); } inline X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * get_issuer_6() const { return ___issuer_6; } inline X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 ** get_address_of_issuer_6() { return &___issuer_6; } inline void set_issuer_6(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * value) { ___issuer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___issuer_6), (void*)value); } inline static int32_t get_offset_of_startDate_7() { return static_cast(offsetof(TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3, ___startDate_7)); } inline Time_tD684B1785E755395701D46F89A97609911CD6DDE * get_startDate_7() const { return ___startDate_7; } inline Time_tD684B1785E755395701D46F89A97609911CD6DDE ** get_address_of_startDate_7() { return &___startDate_7; } inline void set_startDate_7(Time_tD684B1785E755395701D46F89A97609911CD6DDE * value) { ___startDate_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___startDate_7), (void*)value); } inline static int32_t get_offset_of_endDate_8() { return static_cast(offsetof(TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3, ___endDate_8)); } inline Time_tD684B1785E755395701D46F89A97609911CD6DDE * get_endDate_8() const { return ___endDate_8; } inline Time_tD684B1785E755395701D46F89A97609911CD6DDE ** get_address_of_endDate_8() { return &___endDate_8; } inline void set_endDate_8(Time_tD684B1785E755395701D46F89A97609911CD6DDE * value) { ___endDate_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___endDate_8), (void*)value); } inline static int32_t get_offset_of_subject_9() { return static_cast(offsetof(TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3, ___subject_9)); } inline X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * get_subject_9() const { return ___subject_9; } inline X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 ** get_address_of_subject_9() { return &___subject_9; } inline void set_subject_9(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * value) { ___subject_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___subject_9), (void*)value); } inline static int32_t get_offset_of_subjectPublicKeyInfo_10() { return static_cast(offsetof(TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3, ___subjectPublicKeyInfo_10)); } inline SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB * get_subjectPublicKeyInfo_10() const { return ___subjectPublicKeyInfo_10; } inline SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB ** get_address_of_subjectPublicKeyInfo_10() { return &___subjectPublicKeyInfo_10; } inline void set_subjectPublicKeyInfo_10(SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB * value) { ___subjectPublicKeyInfo_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___subjectPublicKeyInfo_10), (void*)value); } inline static int32_t get_offset_of_issuerUniqueID_11() { return static_cast(offsetof(TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3, ___issuerUniqueID_11)); } inline DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * get_issuerUniqueID_11() const { return ___issuerUniqueID_11; } inline DerBitString_t305465793A47445626D3541AB8CEDE347D874524 ** get_address_of_issuerUniqueID_11() { return &___issuerUniqueID_11; } inline void set_issuerUniqueID_11(DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * value) { ___issuerUniqueID_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___issuerUniqueID_11), (void*)value); } inline static int32_t get_offset_of_subjectUniqueID_12() { return static_cast(offsetof(TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3, ___subjectUniqueID_12)); } inline DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * get_subjectUniqueID_12() const { return ___subjectUniqueID_12; } inline DerBitString_t305465793A47445626D3541AB8CEDE347D874524 ** get_address_of_subjectUniqueID_12() { return &___subjectUniqueID_12; } inline void set_subjectUniqueID_12(DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * value) { ___subjectUniqueID_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___subjectUniqueID_12), (void*)value); } inline static int32_t get_offset_of_extensions_13() { return static_cast(offsetof(TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3, ___extensions_13)); } inline X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F * get_extensions_13() const { return ___extensions_13; } inline X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F ** get_address_of_extensions_13() { return &___extensions_13; } inline void set_extensions_13(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F * value) { ___extensions_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___extensions_13), (void*)value); } }; // System.IO.TextReader struct TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F : public MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 { public: public: }; struct TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F_StaticFields { public: // System.Func`2 System.IO.TextReader::_ReadLineDelegate Func_2_t060A650AB95DEF14D4F579FA5999ACEFEEE0FD82 * ____ReadLineDelegate_1; // System.Func`2 System.IO.TextReader::_ReadDelegate Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C * ____ReadDelegate_2; // System.IO.TextReader System.IO.TextReader::Null TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * ___Null_3; public: inline static int32_t get_offset_of__ReadLineDelegate_1() { return static_cast(offsetof(TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F_StaticFields, ____ReadLineDelegate_1)); } inline Func_2_t060A650AB95DEF14D4F579FA5999ACEFEEE0FD82 * get__ReadLineDelegate_1() const { return ____ReadLineDelegate_1; } inline Func_2_t060A650AB95DEF14D4F579FA5999ACEFEEE0FD82 ** get_address_of__ReadLineDelegate_1() { return &____ReadLineDelegate_1; } inline void set__ReadLineDelegate_1(Func_2_t060A650AB95DEF14D4F579FA5999ACEFEEE0FD82 * value) { ____ReadLineDelegate_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____ReadLineDelegate_1), (void*)value); } inline static int32_t get_offset_of__ReadDelegate_2() { return static_cast(offsetof(TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F_StaticFields, ____ReadDelegate_2)); } inline Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C * get__ReadDelegate_2() const { return ____ReadDelegate_2; } inline Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C ** get_address_of__ReadDelegate_2() { return &____ReadDelegate_2; } inline void set__ReadDelegate_2(Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C * value) { ____ReadDelegate_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____ReadDelegate_2), (void*)value); } inline static int32_t get_offset_of_Null_3() { return static_cast(offsetof(TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F_StaticFields, ___Null_3)); } inline TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * get_Null_3() const { return ___Null_3; } inline TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F ** get_address_of_Null_3() { return &___Null_3; } inline void set_Null_3(TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * value) { ___Null_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___Null_3), (void*)value); } }; // System.IO.TextWriter struct TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 : public MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 { public: // System.Char[] System.IO.TextWriter::CoreNewLine CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___CoreNewLine_9; // System.IFormatProvider System.IO.TextWriter::InternalFormatProvider RuntimeObject* ___InternalFormatProvider_10; public: inline static int32_t get_offset_of_CoreNewLine_9() { return static_cast(offsetof(TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643, ___CoreNewLine_9)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_CoreNewLine_9() const { return ___CoreNewLine_9; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_CoreNewLine_9() { return &___CoreNewLine_9; } inline void set_CoreNewLine_9(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___CoreNewLine_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___CoreNewLine_9), (void*)value); } inline static int32_t get_offset_of_InternalFormatProvider_10() { return static_cast(offsetof(TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643, ___InternalFormatProvider_10)); } inline RuntimeObject* get_InternalFormatProvider_10() const { return ___InternalFormatProvider_10; } inline RuntimeObject** get_address_of_InternalFormatProvider_10() { return &___InternalFormatProvider_10; } inline void set_InternalFormatProvider_10(RuntimeObject* value) { ___InternalFormatProvider_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___InternalFormatProvider_10), (void*)value); } }; struct TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643_StaticFields { public: // System.IO.TextWriter System.IO.TextWriter::Null TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * ___Null_1; // System.Action`1 System.IO.TextWriter::_WriteCharDelegate Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ____WriteCharDelegate_2; // System.Action`1 System.IO.TextWriter::_WriteStringDelegate Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ____WriteStringDelegate_3; // System.Action`1 System.IO.TextWriter::_WriteCharArrayRangeDelegate Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ____WriteCharArrayRangeDelegate_4; // System.Action`1 System.IO.TextWriter::_WriteLineCharDelegate Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ____WriteLineCharDelegate_5; // System.Action`1 System.IO.TextWriter::_WriteLineStringDelegate Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ____WriteLineStringDelegate_6; // System.Action`1 System.IO.TextWriter::_WriteLineCharArrayRangeDelegate Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ____WriteLineCharArrayRangeDelegate_7; // System.Action`1 System.IO.TextWriter::_FlushDelegate Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ____FlushDelegate_8; public: inline static int32_t get_offset_of_Null_1() { return static_cast(offsetof(TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643_StaticFields, ___Null_1)); } inline TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * get_Null_1() const { return ___Null_1; } inline TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 ** get_address_of_Null_1() { return &___Null_1; } inline void set_Null_1(TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * value) { ___Null_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Null_1), (void*)value); } inline static int32_t get_offset_of__WriteCharDelegate_2() { return static_cast(offsetof(TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643_StaticFields, ____WriteCharDelegate_2)); } inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * get__WriteCharDelegate_2() const { return ____WriteCharDelegate_2; } inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC ** get_address_of__WriteCharDelegate_2() { return &____WriteCharDelegate_2; } inline void set__WriteCharDelegate_2(Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * value) { ____WriteCharDelegate_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____WriteCharDelegate_2), (void*)value); } inline static int32_t get_offset_of__WriteStringDelegate_3() { return static_cast(offsetof(TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643_StaticFields, ____WriteStringDelegate_3)); } inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * get__WriteStringDelegate_3() const { return ____WriteStringDelegate_3; } inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC ** get_address_of__WriteStringDelegate_3() { return &____WriteStringDelegate_3; } inline void set__WriteStringDelegate_3(Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * value) { ____WriteStringDelegate_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____WriteStringDelegate_3), (void*)value); } inline static int32_t get_offset_of__WriteCharArrayRangeDelegate_4() { return static_cast(offsetof(TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643_StaticFields, ____WriteCharArrayRangeDelegate_4)); } inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * get__WriteCharArrayRangeDelegate_4() const { return ____WriteCharArrayRangeDelegate_4; } inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC ** get_address_of__WriteCharArrayRangeDelegate_4() { return &____WriteCharArrayRangeDelegate_4; } inline void set__WriteCharArrayRangeDelegate_4(Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * value) { ____WriteCharArrayRangeDelegate_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____WriteCharArrayRangeDelegate_4), (void*)value); } inline static int32_t get_offset_of__WriteLineCharDelegate_5() { return static_cast(offsetof(TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643_StaticFields, ____WriteLineCharDelegate_5)); } inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * get__WriteLineCharDelegate_5() const { return ____WriteLineCharDelegate_5; } inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC ** get_address_of__WriteLineCharDelegate_5() { return &____WriteLineCharDelegate_5; } inline void set__WriteLineCharDelegate_5(Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * value) { ____WriteLineCharDelegate_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____WriteLineCharDelegate_5), (void*)value); } inline static int32_t get_offset_of__WriteLineStringDelegate_6() { return static_cast(offsetof(TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643_StaticFields, ____WriteLineStringDelegate_6)); } inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * get__WriteLineStringDelegate_6() const { return ____WriteLineStringDelegate_6; } inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC ** get_address_of__WriteLineStringDelegate_6() { return &____WriteLineStringDelegate_6; } inline void set__WriteLineStringDelegate_6(Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * value) { ____WriteLineStringDelegate_6 = value; Il2CppCodeGenWriteBarrier((void**)(&____WriteLineStringDelegate_6), (void*)value); } inline static int32_t get_offset_of__WriteLineCharArrayRangeDelegate_7() { return static_cast(offsetof(TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643_StaticFields, ____WriteLineCharArrayRangeDelegate_7)); } inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * get__WriteLineCharArrayRangeDelegate_7() const { return ____WriteLineCharArrayRangeDelegate_7; } inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC ** get_address_of__WriteLineCharArrayRangeDelegate_7() { return &____WriteLineCharArrayRangeDelegate_7; } inline void set__WriteLineCharArrayRangeDelegate_7(Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * value) { ____WriteLineCharArrayRangeDelegate_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____WriteLineCharArrayRangeDelegate_7), (void*)value); } inline static int32_t get_offset_of__FlushDelegate_8() { return static_cast(offsetof(TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643_StaticFields, ____FlushDelegate_8)); } inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * get__FlushDelegate_8() const { return ____FlushDelegate_8; } inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC ** get_address_of__FlushDelegate_8() { return &____FlushDelegate_8; } inline void set__FlushDelegate_8(Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * value) { ____FlushDelegate_8 = value; Il2CppCodeGenWriteBarrier((void**)(&____FlushDelegate_8), (void*)value); } }; // System.UInt64 struct UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281 { public: // System.UInt64 System.UInt64::m_value uint64_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281, ___m_value_0)); } inline uint64_t get_m_value_0() const { return ___m_value_0; } inline uint64_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint64_t value) { ___m_value_0 = value; } }; // UnityEngine.Vector2 struct Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 { public: // System.Single UnityEngine.Vector2::x float ___x_0; // System.Single UnityEngine.Vector2::y float ___y_1; public: inline static int32_t get_offset_of_x_0() { return static_cast(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9, ___x_0)); } inline float get_x_0() const { return ___x_0; } inline float* get_address_of_x_0() { return &___x_0; } inline void set_x_0(float value) { ___x_0 = value; } inline static int32_t get_offset_of_y_1() { return static_cast(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9, ___y_1)); } inline float get_y_1() const { return ___y_1; } inline float* get_address_of_y_1() { return &___y_1; } inline void set_y_1(float value) { ___y_1 = value; } }; struct Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields { public: // UnityEngine.Vector2 UnityEngine.Vector2::zeroVector Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___zeroVector_2; // UnityEngine.Vector2 UnityEngine.Vector2::oneVector Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___oneVector_3; // UnityEngine.Vector2 UnityEngine.Vector2::upVector Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___upVector_4; // UnityEngine.Vector2 UnityEngine.Vector2::downVector Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___downVector_5; // UnityEngine.Vector2 UnityEngine.Vector2::leftVector Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___leftVector_6; // UnityEngine.Vector2 UnityEngine.Vector2::rightVector Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___rightVector_7; // UnityEngine.Vector2 UnityEngine.Vector2::positiveInfinityVector Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___positiveInfinityVector_8; // UnityEngine.Vector2 UnityEngine.Vector2::negativeInfinityVector Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___negativeInfinityVector_9; public: inline static int32_t get_offset_of_zeroVector_2() { return static_cast(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___zeroVector_2)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_zeroVector_2() const { return ___zeroVector_2; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_zeroVector_2() { return &___zeroVector_2; } inline void set_zeroVector_2(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___zeroVector_2 = value; } inline static int32_t get_offset_of_oneVector_3() { return static_cast(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___oneVector_3)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_oneVector_3() const { return ___oneVector_3; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_oneVector_3() { return &___oneVector_3; } inline void set_oneVector_3(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___oneVector_3 = value; } inline static int32_t get_offset_of_upVector_4() { return static_cast(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___upVector_4)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_upVector_4() const { return ___upVector_4; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_upVector_4() { return &___upVector_4; } inline void set_upVector_4(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___upVector_4 = value; } inline static int32_t get_offset_of_downVector_5() { return static_cast(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___downVector_5)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_downVector_5() const { return ___downVector_5; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_downVector_5() { return &___downVector_5; } inline void set_downVector_5(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___downVector_5 = value; } inline static int32_t get_offset_of_leftVector_6() { return static_cast(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___leftVector_6)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_leftVector_6() const { return ___leftVector_6; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_leftVector_6() { return &___leftVector_6; } inline void set_leftVector_6(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___leftVector_6 = value; } inline static int32_t get_offset_of_rightVector_7() { return static_cast(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___rightVector_7)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_rightVector_7() const { return ___rightVector_7; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_rightVector_7() { return &___rightVector_7; } inline void set_rightVector_7(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___rightVector_7 = value; } inline static int32_t get_offset_of_positiveInfinityVector_8() { return static_cast(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___positiveInfinityVector_8)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_positiveInfinityVector_8() const { return ___positiveInfinityVector_8; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_positiveInfinityVector_8() { return &___positiveInfinityVector_8; } inline void set_positiveInfinityVector_8(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___positiveInfinityVector_8 = value; } inline static int32_t get_offset_of_negativeInfinityVector_9() { return static_cast(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___negativeInfinityVector_9)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_negativeInfinityVector_9() const { return ___negativeInfinityVector_9; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_negativeInfinityVector_9() { return &___negativeInfinityVector_9; } inline void set_negativeInfinityVector_9(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___negativeInfinityVector_9 = value; } }; // UnityEngine.Vector3 struct Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E { public: // System.Single UnityEngine.Vector3::x float ___x_2; // System.Single UnityEngine.Vector3::y float ___y_3; // System.Single UnityEngine.Vector3::z float ___z_4; public: inline static int32_t get_offset_of_x_2() { return static_cast(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E, ___x_2)); } inline float get_x_2() const { return ___x_2; } inline float* get_address_of_x_2() { return &___x_2; } inline void set_x_2(float value) { ___x_2 = value; } inline static int32_t get_offset_of_y_3() { return static_cast(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E, ___y_3)); } inline float get_y_3() const { return ___y_3; } inline float* get_address_of_y_3() { return &___y_3; } inline void set_y_3(float value) { ___y_3 = value; } inline static int32_t get_offset_of_z_4() { return static_cast(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E, ___z_4)); } inline float get_z_4() const { return ___z_4; } inline float* get_address_of_z_4() { return &___z_4; } inline void set_z_4(float value) { ___z_4 = value; } }; struct Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields { public: // UnityEngine.Vector3 UnityEngine.Vector3::zeroVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___zeroVector_5; // UnityEngine.Vector3 UnityEngine.Vector3::oneVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___oneVector_6; // UnityEngine.Vector3 UnityEngine.Vector3::upVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___upVector_7; // UnityEngine.Vector3 UnityEngine.Vector3::downVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___downVector_8; // UnityEngine.Vector3 UnityEngine.Vector3::leftVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___leftVector_9; // UnityEngine.Vector3 UnityEngine.Vector3::rightVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___rightVector_10; // UnityEngine.Vector3 UnityEngine.Vector3::forwardVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___forwardVector_11; // UnityEngine.Vector3 UnityEngine.Vector3::backVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___backVector_12; // UnityEngine.Vector3 UnityEngine.Vector3::positiveInfinityVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___positiveInfinityVector_13; // UnityEngine.Vector3 UnityEngine.Vector3::negativeInfinityVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___negativeInfinityVector_14; public: inline static int32_t get_offset_of_zeroVector_5() { return static_cast(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___zeroVector_5)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_zeroVector_5() const { return ___zeroVector_5; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_zeroVector_5() { return &___zeroVector_5; } inline void set_zeroVector_5(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___zeroVector_5 = value; } inline static int32_t get_offset_of_oneVector_6() { return static_cast(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___oneVector_6)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_oneVector_6() const { return ___oneVector_6; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_oneVector_6() { return &___oneVector_6; } inline void set_oneVector_6(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___oneVector_6 = value; } inline static int32_t get_offset_of_upVector_7() { return static_cast(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___upVector_7)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_upVector_7() const { return ___upVector_7; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_upVector_7() { return &___upVector_7; } inline void set_upVector_7(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___upVector_7 = value; } inline static int32_t get_offset_of_downVector_8() { return static_cast(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___downVector_8)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_downVector_8() const { return ___downVector_8; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_downVector_8() { return &___downVector_8; } inline void set_downVector_8(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___downVector_8 = value; } inline static int32_t get_offset_of_leftVector_9() { return static_cast(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___leftVector_9)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_leftVector_9() const { return ___leftVector_9; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_leftVector_9() { return &___leftVector_9; } inline void set_leftVector_9(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___leftVector_9 = value; } inline static int32_t get_offset_of_rightVector_10() { return static_cast(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___rightVector_10)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_rightVector_10() const { return ___rightVector_10; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_rightVector_10() { return &___rightVector_10; } inline void set_rightVector_10(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___rightVector_10 = value; } inline static int32_t get_offset_of_forwardVector_11() { return static_cast(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___forwardVector_11)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_forwardVector_11() const { return ___forwardVector_11; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_forwardVector_11() { return &___forwardVector_11; } inline void set_forwardVector_11(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___forwardVector_11 = value; } inline static int32_t get_offset_of_backVector_12() { return static_cast(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___backVector_12)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_backVector_12() const { return ___backVector_12; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_backVector_12() { return &___backVector_12; } inline void set_backVector_12(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___backVector_12 = value; } inline static int32_t get_offset_of_positiveInfinityVector_13() { return static_cast(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___positiveInfinityVector_13)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_positiveInfinityVector_13() const { return ___positiveInfinityVector_13; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_positiveInfinityVector_13() { return &___positiveInfinityVector_13; } inline void set_positiveInfinityVector_13(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___positiveInfinityVector_13 = value; } inline static int32_t get_offset_of_negativeInfinityVector_14() { return static_cast(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___negativeInfinityVector_14)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_negativeInfinityVector_14() const { return ___negativeInfinityVector_14; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_negativeInfinityVector_14() { return &___negativeInfinityVector_14; } inline void set_negativeInfinityVector_14(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___negativeInfinityVector_14 = value; } }; // System.Void struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5 { public: union { struct { }; uint8_t Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5__padding[1]; }; public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Certificate struct X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06 : public X509ExtensionBase_t91B691B9E834F516C9CE847F2B900B019A37CCE7 { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509CertificateStructure BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Certificate::c X509CertificateStructure_tD48237F907D1001604C98590613EFD6D720BEDE1 * ___c_0; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.BasicConstraints BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Certificate::basicConstraints BasicConstraints_t726ADB92F5098B7B4A50C44450B9A219DD48AA7C * ___basicConstraints_1; // System.Boolean[] BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Certificate::keyUsage BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* ___keyUsage_2; // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Certificate::hashValueSet bool ___hashValueSet_3; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Certificate::hashValue int32_t ___hashValue_4; public: inline static int32_t get_offset_of_c_0() { return static_cast(offsetof(X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06, ___c_0)); } inline X509CertificateStructure_tD48237F907D1001604C98590613EFD6D720BEDE1 * get_c_0() const { return ___c_0; } inline X509CertificateStructure_tD48237F907D1001604C98590613EFD6D720BEDE1 ** get_address_of_c_0() { return &___c_0; } inline void set_c_0(X509CertificateStructure_tD48237F907D1001604C98590613EFD6D720BEDE1 * value) { ___c_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_0), (void*)value); } inline static int32_t get_offset_of_basicConstraints_1() { return static_cast(offsetof(X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06, ___basicConstraints_1)); } inline BasicConstraints_t726ADB92F5098B7B4A50C44450B9A219DD48AA7C * get_basicConstraints_1() const { return ___basicConstraints_1; } inline BasicConstraints_t726ADB92F5098B7B4A50C44450B9A219DD48AA7C ** get_address_of_basicConstraints_1() { return &___basicConstraints_1; } inline void set_basicConstraints_1(BasicConstraints_t726ADB92F5098B7B4A50C44450B9A219DD48AA7C * value) { ___basicConstraints_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___basicConstraints_1), (void*)value); } inline static int32_t get_offset_of_keyUsage_2() { return static_cast(offsetof(X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06, ___keyUsage_2)); } inline BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* get_keyUsage_2() const { return ___keyUsage_2; } inline BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C** get_address_of_keyUsage_2() { return &___keyUsage_2; } inline void set_keyUsage_2(BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* value) { ___keyUsage_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___keyUsage_2), (void*)value); } inline static int32_t get_offset_of_hashValueSet_3() { return static_cast(offsetof(X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06, ___hashValueSet_3)); } inline bool get_hashValueSet_3() const { return ___hashValueSet_3; } inline bool* get_address_of_hashValueSet_3() { return &___hashValueSet_3; } inline void set_hashValueSet_3(bool value) { ___hashValueSet_3 = value; } inline static int32_t get_offset_of_hashValue_4() { return static_cast(offsetof(X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06, ___hashValue_4)); } inline int32_t get_hashValue_4() const { return ___hashValue_4; } inline int32_t* get_address_of_hashValue_4() { return &___hashValue_4; } inline void set_hashValue_4(int32_t value) { ___hashValue_4 = value; } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions struct X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // System.Collections.IDictionary BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::extensions RuntimeObject* ___extensions_34; // System.Collections.IList BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::ordering RuntimeObject* ___ordering_35; public: inline static int32_t get_offset_of_extensions_34() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F, ___extensions_34)); } inline RuntimeObject* get_extensions_34() const { return ___extensions_34; } inline RuntimeObject** get_address_of_extensions_34() { return &___extensions_34; } inline void set_extensions_34(RuntimeObject* value) { ___extensions_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___extensions_34), (void*)value); } inline static int32_t get_offset_of_ordering_35() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F, ___ordering_35)); } inline RuntimeObject* get_ordering_35() const { return ___ordering_35; } inline RuntimeObject** get_address_of_ordering_35() { return &___ordering_35; } inline void set_ordering_35(RuntimeObject* value) { ___ordering_35 = value; Il2CppCodeGenWriteBarrier((void**)(&___ordering_35), (void*)value); } }; struct X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::SubjectDirectoryAttributes DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___SubjectDirectoryAttributes_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::SubjectKeyIdentifier DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___SubjectKeyIdentifier_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::KeyUsage DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___KeyUsage_4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::PrivateKeyUsagePeriod DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___PrivateKeyUsagePeriod_5; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::SubjectAlternativeName DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___SubjectAlternativeName_6; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::IssuerAlternativeName DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IssuerAlternativeName_7; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::BasicConstraints DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___BasicConstraints_8; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::CrlNumber DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___CrlNumber_9; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::ReasonCode DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___ReasonCode_10; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::InstructionCode DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___InstructionCode_11; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::InvalidityDate DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___InvalidityDate_12; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::DeltaCrlIndicator DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DeltaCrlIndicator_13; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::IssuingDistributionPoint DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IssuingDistributionPoint_14; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::CertificateIssuer DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___CertificateIssuer_15; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::NameConstraints DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___NameConstraints_16; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::CrlDistributionPoints DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___CrlDistributionPoints_17; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::CertificatePolicies DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___CertificatePolicies_18; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::PolicyMappings DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___PolicyMappings_19; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::AuthorityKeyIdentifier DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___AuthorityKeyIdentifier_20; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::PolicyConstraints DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___PolicyConstraints_21; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::ExtendedKeyUsage DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___ExtendedKeyUsage_22; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::FreshestCrl DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___FreshestCrl_23; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::InhibitAnyPolicy DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___InhibitAnyPolicy_24; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::AuthorityInfoAccess DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___AuthorityInfoAccess_25; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::SubjectInfoAccess DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___SubjectInfoAccess_26; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::LogoType DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___LogoType_27; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::BiometricInfo DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___BiometricInfo_28; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::QCStatements DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___QCStatements_29; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::AuditIdentity DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___AuditIdentity_30; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::NoRevAvail DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___NoRevAvail_31; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::TargetInformation DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___TargetInformation_32; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::ExpiredCertsOnCrl DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___ExpiredCertsOnCrl_33; public: inline static int32_t get_offset_of_SubjectDirectoryAttributes_2() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___SubjectDirectoryAttributes_2)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_SubjectDirectoryAttributes_2() const { return ___SubjectDirectoryAttributes_2; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_SubjectDirectoryAttributes_2() { return &___SubjectDirectoryAttributes_2; } inline void set_SubjectDirectoryAttributes_2(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___SubjectDirectoryAttributes_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___SubjectDirectoryAttributes_2), (void*)value); } inline static int32_t get_offset_of_SubjectKeyIdentifier_3() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___SubjectKeyIdentifier_3)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_SubjectKeyIdentifier_3() const { return ___SubjectKeyIdentifier_3; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_SubjectKeyIdentifier_3() { return &___SubjectKeyIdentifier_3; } inline void set_SubjectKeyIdentifier_3(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___SubjectKeyIdentifier_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___SubjectKeyIdentifier_3), (void*)value); } inline static int32_t get_offset_of_KeyUsage_4() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___KeyUsage_4)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_KeyUsage_4() const { return ___KeyUsage_4; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_KeyUsage_4() { return &___KeyUsage_4; } inline void set_KeyUsage_4(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___KeyUsage_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___KeyUsage_4), (void*)value); } inline static int32_t get_offset_of_PrivateKeyUsagePeriod_5() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___PrivateKeyUsagePeriod_5)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_PrivateKeyUsagePeriod_5() const { return ___PrivateKeyUsagePeriod_5; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_PrivateKeyUsagePeriod_5() { return &___PrivateKeyUsagePeriod_5; } inline void set_PrivateKeyUsagePeriod_5(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___PrivateKeyUsagePeriod_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___PrivateKeyUsagePeriod_5), (void*)value); } inline static int32_t get_offset_of_SubjectAlternativeName_6() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___SubjectAlternativeName_6)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_SubjectAlternativeName_6() const { return ___SubjectAlternativeName_6; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_SubjectAlternativeName_6() { return &___SubjectAlternativeName_6; } inline void set_SubjectAlternativeName_6(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___SubjectAlternativeName_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___SubjectAlternativeName_6), (void*)value); } inline static int32_t get_offset_of_IssuerAlternativeName_7() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___IssuerAlternativeName_7)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IssuerAlternativeName_7() const { return ___IssuerAlternativeName_7; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IssuerAlternativeName_7() { return &___IssuerAlternativeName_7; } inline void set_IssuerAlternativeName_7(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IssuerAlternativeName_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___IssuerAlternativeName_7), (void*)value); } inline static int32_t get_offset_of_BasicConstraints_8() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___BasicConstraints_8)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_BasicConstraints_8() const { return ___BasicConstraints_8; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_BasicConstraints_8() { return &___BasicConstraints_8; } inline void set_BasicConstraints_8(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___BasicConstraints_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___BasicConstraints_8), (void*)value); } inline static int32_t get_offset_of_CrlNumber_9() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___CrlNumber_9)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_CrlNumber_9() const { return ___CrlNumber_9; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_CrlNumber_9() { return &___CrlNumber_9; } inline void set_CrlNumber_9(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___CrlNumber_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___CrlNumber_9), (void*)value); } inline static int32_t get_offset_of_ReasonCode_10() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___ReasonCode_10)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_ReasonCode_10() const { return ___ReasonCode_10; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_ReasonCode_10() { return &___ReasonCode_10; } inline void set_ReasonCode_10(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___ReasonCode_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___ReasonCode_10), (void*)value); } inline static int32_t get_offset_of_InstructionCode_11() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___InstructionCode_11)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_InstructionCode_11() const { return ___InstructionCode_11; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_InstructionCode_11() { return &___InstructionCode_11; } inline void set_InstructionCode_11(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___InstructionCode_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___InstructionCode_11), (void*)value); } inline static int32_t get_offset_of_InvalidityDate_12() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___InvalidityDate_12)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_InvalidityDate_12() const { return ___InvalidityDate_12; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_InvalidityDate_12() { return &___InvalidityDate_12; } inline void set_InvalidityDate_12(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___InvalidityDate_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___InvalidityDate_12), (void*)value); } inline static int32_t get_offset_of_DeltaCrlIndicator_13() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___DeltaCrlIndicator_13)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DeltaCrlIndicator_13() const { return ___DeltaCrlIndicator_13; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DeltaCrlIndicator_13() { return &___DeltaCrlIndicator_13; } inline void set_DeltaCrlIndicator_13(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DeltaCrlIndicator_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___DeltaCrlIndicator_13), (void*)value); } inline static int32_t get_offset_of_IssuingDistributionPoint_14() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___IssuingDistributionPoint_14)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IssuingDistributionPoint_14() const { return ___IssuingDistributionPoint_14; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IssuingDistributionPoint_14() { return &___IssuingDistributionPoint_14; } inline void set_IssuingDistributionPoint_14(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IssuingDistributionPoint_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___IssuingDistributionPoint_14), (void*)value); } inline static int32_t get_offset_of_CertificateIssuer_15() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___CertificateIssuer_15)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_CertificateIssuer_15() const { return ___CertificateIssuer_15; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_CertificateIssuer_15() { return &___CertificateIssuer_15; } inline void set_CertificateIssuer_15(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___CertificateIssuer_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___CertificateIssuer_15), (void*)value); } inline static int32_t get_offset_of_NameConstraints_16() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___NameConstraints_16)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_NameConstraints_16() const { return ___NameConstraints_16; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_NameConstraints_16() { return &___NameConstraints_16; } inline void set_NameConstraints_16(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___NameConstraints_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___NameConstraints_16), (void*)value); } inline static int32_t get_offset_of_CrlDistributionPoints_17() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___CrlDistributionPoints_17)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_CrlDistributionPoints_17() const { return ___CrlDistributionPoints_17; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_CrlDistributionPoints_17() { return &___CrlDistributionPoints_17; } inline void set_CrlDistributionPoints_17(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___CrlDistributionPoints_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___CrlDistributionPoints_17), (void*)value); } inline static int32_t get_offset_of_CertificatePolicies_18() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___CertificatePolicies_18)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_CertificatePolicies_18() const { return ___CertificatePolicies_18; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_CertificatePolicies_18() { return &___CertificatePolicies_18; } inline void set_CertificatePolicies_18(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___CertificatePolicies_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___CertificatePolicies_18), (void*)value); } inline static int32_t get_offset_of_PolicyMappings_19() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___PolicyMappings_19)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_PolicyMappings_19() const { return ___PolicyMappings_19; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_PolicyMappings_19() { return &___PolicyMappings_19; } inline void set_PolicyMappings_19(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___PolicyMappings_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___PolicyMappings_19), (void*)value); } inline static int32_t get_offset_of_AuthorityKeyIdentifier_20() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___AuthorityKeyIdentifier_20)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_AuthorityKeyIdentifier_20() const { return ___AuthorityKeyIdentifier_20; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_AuthorityKeyIdentifier_20() { return &___AuthorityKeyIdentifier_20; } inline void set_AuthorityKeyIdentifier_20(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___AuthorityKeyIdentifier_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___AuthorityKeyIdentifier_20), (void*)value); } inline static int32_t get_offset_of_PolicyConstraints_21() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___PolicyConstraints_21)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_PolicyConstraints_21() const { return ___PolicyConstraints_21; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_PolicyConstraints_21() { return &___PolicyConstraints_21; } inline void set_PolicyConstraints_21(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___PolicyConstraints_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___PolicyConstraints_21), (void*)value); } inline static int32_t get_offset_of_ExtendedKeyUsage_22() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___ExtendedKeyUsage_22)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_ExtendedKeyUsage_22() const { return ___ExtendedKeyUsage_22; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_ExtendedKeyUsage_22() { return &___ExtendedKeyUsage_22; } inline void set_ExtendedKeyUsage_22(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___ExtendedKeyUsage_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___ExtendedKeyUsage_22), (void*)value); } inline static int32_t get_offset_of_FreshestCrl_23() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___FreshestCrl_23)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_FreshestCrl_23() const { return ___FreshestCrl_23; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_FreshestCrl_23() { return &___FreshestCrl_23; } inline void set_FreshestCrl_23(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___FreshestCrl_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___FreshestCrl_23), (void*)value); } inline static int32_t get_offset_of_InhibitAnyPolicy_24() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___InhibitAnyPolicy_24)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_InhibitAnyPolicy_24() const { return ___InhibitAnyPolicy_24; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_InhibitAnyPolicy_24() { return &___InhibitAnyPolicy_24; } inline void set_InhibitAnyPolicy_24(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___InhibitAnyPolicy_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___InhibitAnyPolicy_24), (void*)value); } inline static int32_t get_offset_of_AuthorityInfoAccess_25() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___AuthorityInfoAccess_25)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_AuthorityInfoAccess_25() const { return ___AuthorityInfoAccess_25; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_AuthorityInfoAccess_25() { return &___AuthorityInfoAccess_25; } inline void set_AuthorityInfoAccess_25(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___AuthorityInfoAccess_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___AuthorityInfoAccess_25), (void*)value); } inline static int32_t get_offset_of_SubjectInfoAccess_26() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___SubjectInfoAccess_26)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_SubjectInfoAccess_26() const { return ___SubjectInfoAccess_26; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_SubjectInfoAccess_26() { return &___SubjectInfoAccess_26; } inline void set_SubjectInfoAccess_26(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___SubjectInfoAccess_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___SubjectInfoAccess_26), (void*)value); } inline static int32_t get_offset_of_LogoType_27() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___LogoType_27)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_LogoType_27() const { return ___LogoType_27; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_LogoType_27() { return &___LogoType_27; } inline void set_LogoType_27(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___LogoType_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___LogoType_27), (void*)value); } inline static int32_t get_offset_of_BiometricInfo_28() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___BiometricInfo_28)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_BiometricInfo_28() const { return ___BiometricInfo_28; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_BiometricInfo_28() { return &___BiometricInfo_28; } inline void set_BiometricInfo_28(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___BiometricInfo_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___BiometricInfo_28), (void*)value); } inline static int32_t get_offset_of_QCStatements_29() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___QCStatements_29)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_QCStatements_29() const { return ___QCStatements_29; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_QCStatements_29() { return &___QCStatements_29; } inline void set_QCStatements_29(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___QCStatements_29 = value; Il2CppCodeGenWriteBarrier((void**)(&___QCStatements_29), (void*)value); } inline static int32_t get_offset_of_AuditIdentity_30() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___AuditIdentity_30)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_AuditIdentity_30() const { return ___AuditIdentity_30; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_AuditIdentity_30() { return &___AuditIdentity_30; } inline void set_AuditIdentity_30(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___AuditIdentity_30 = value; Il2CppCodeGenWriteBarrier((void**)(&___AuditIdentity_30), (void*)value); } inline static int32_t get_offset_of_NoRevAvail_31() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___NoRevAvail_31)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_NoRevAvail_31() const { return ___NoRevAvail_31; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_NoRevAvail_31() { return &___NoRevAvail_31; } inline void set_NoRevAvail_31(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___NoRevAvail_31 = value; Il2CppCodeGenWriteBarrier((void**)(&___NoRevAvail_31), (void*)value); } inline static int32_t get_offset_of_TargetInformation_32() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___TargetInformation_32)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_TargetInformation_32() const { return ___TargetInformation_32; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_TargetInformation_32() { return &___TargetInformation_32; } inline void set_TargetInformation_32(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___TargetInformation_32 = value; Il2CppCodeGenWriteBarrier((void**)(&___TargetInformation_32), (void*)value); } inline static int32_t get_offset_of_ExpiredCertsOnCrl_33() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___ExpiredCertsOnCrl_33)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_ExpiredCertsOnCrl_33() const { return ___ExpiredCertsOnCrl_33; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_ExpiredCertsOnCrl_33() { return &___ExpiredCertsOnCrl_33; } inline void set_ExpiredCertsOnCrl_33(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___ExpiredCertsOnCrl_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___ExpiredCertsOnCrl_33), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name struct X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // System.Collections.IList BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::ordering RuntimeObject* ___ordering_42; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509NameEntryConverter BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::converter X509NameEntryConverter_tB7E7BD9119CAFF57159A4641EEF350B6A5111351 * ___converter_43; // System.Collections.IList BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::values RuntimeObject* ___values_44; // System.Collections.IList BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::added RuntimeObject* ___added_45; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::seq Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * ___seq_46; public: inline static int32_t get_offset_of_ordering_42() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630, ___ordering_42)); } inline RuntimeObject* get_ordering_42() const { return ___ordering_42; } inline RuntimeObject** get_address_of_ordering_42() { return &___ordering_42; } inline void set_ordering_42(RuntimeObject* value) { ___ordering_42 = value; Il2CppCodeGenWriteBarrier((void**)(&___ordering_42), (void*)value); } inline static int32_t get_offset_of_converter_43() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630, ___converter_43)); } inline X509NameEntryConverter_tB7E7BD9119CAFF57159A4641EEF350B6A5111351 * get_converter_43() const { return ___converter_43; } inline X509NameEntryConverter_tB7E7BD9119CAFF57159A4641EEF350B6A5111351 ** get_address_of_converter_43() { return &___converter_43; } inline void set_converter_43(X509NameEntryConverter_tB7E7BD9119CAFF57159A4641EEF350B6A5111351 * value) { ___converter_43 = value; Il2CppCodeGenWriteBarrier((void**)(&___converter_43), (void*)value); } inline static int32_t get_offset_of_values_44() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630, ___values_44)); } inline RuntimeObject* get_values_44() const { return ___values_44; } inline RuntimeObject** get_address_of_values_44() { return &___values_44; } inline void set_values_44(RuntimeObject* value) { ___values_44 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_44), (void*)value); } inline static int32_t get_offset_of_added_45() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630, ___added_45)); } inline RuntimeObject* get_added_45() const { return ___added_45; } inline RuntimeObject** get_address_of_added_45() { return &___added_45; } inline void set_added_45(RuntimeObject* value) { ___added_45 = value; Il2CppCodeGenWriteBarrier((void**)(&___added_45), (void*)value); } inline static int32_t get_offset_of_seq_46() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630, ___seq_46)); } inline Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * get_seq_46() const { return ___seq_46; } inline Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 ** get_address_of_seq_46() { return &___seq_46; } inline void set_seq_46(Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * value) { ___seq_46 = value; Il2CppCodeGenWriteBarrier((void**)(&___seq_46), (void*)value); } }; struct X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::C DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___C_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::O DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___O_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::OU DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___OU_4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::T DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___T_5; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::CN DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___CN_6; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::Street DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Street_7; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::SerialNumber DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___SerialNumber_8; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::L DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___L_9; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::ST DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___ST_10; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::Surname DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Surname_11; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::GivenName DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___GivenName_12; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::Initials DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Initials_13; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::Generation DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Generation_14; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::UniqueIdentifier DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___UniqueIdentifier_15; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::BusinessCategory DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___BusinessCategory_16; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::PostalCode DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___PostalCode_17; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::DnQualifier DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DnQualifier_18; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::Pseudonym DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Pseudonym_19; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::DateOfBirth DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DateOfBirth_20; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::PlaceOfBirth DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___PlaceOfBirth_21; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::Gender DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Gender_22; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::CountryOfCitizenship DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___CountryOfCitizenship_23; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::CountryOfResidence DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___CountryOfResidence_24; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::NameAtBirth DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___NameAtBirth_25; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::PostalAddress DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___PostalAddress_26; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::DmdName DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DmdName_27; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::TelephoneNumber DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___TelephoneNumber_28; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::OrganizationIdentifier DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___OrganizationIdentifier_29; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::Name DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Name_30; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::EmailAddress DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___EmailAddress_31; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::UnstructuredName DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___UnstructuredName_32; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::UnstructuredAddress DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___UnstructuredAddress_33; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::E DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___E_34; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::DC DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DC_35; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::UID DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___UID_36; // System.Boolean[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::defaultReverse BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* ___defaultReverse_37; // System.Collections.Hashtable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::DefaultSymbols Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___DefaultSymbols_38; // System.Collections.Hashtable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::RFC2253Symbols Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___RFC2253Symbols_39; // System.Collections.Hashtable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::RFC1779Symbols Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___RFC1779Symbols_40; // System.Collections.Hashtable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::DefaultLookup Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___DefaultLookup_41; public: inline static int32_t get_offset_of_C_2() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___C_2)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_C_2() const { return ___C_2; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_C_2() { return &___C_2; } inline void set_C_2(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___C_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___C_2), (void*)value); } inline static int32_t get_offset_of_O_3() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___O_3)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_O_3() const { return ___O_3; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_O_3() { return &___O_3; } inline void set_O_3(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___O_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___O_3), (void*)value); } inline static int32_t get_offset_of_OU_4() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___OU_4)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_OU_4() const { return ___OU_4; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_OU_4() { return &___OU_4; } inline void set_OU_4(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___OU_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___OU_4), (void*)value); } inline static int32_t get_offset_of_T_5() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___T_5)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_T_5() const { return ___T_5; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_T_5() { return &___T_5; } inline void set_T_5(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___T_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___T_5), (void*)value); } inline static int32_t get_offset_of_CN_6() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___CN_6)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_CN_6() const { return ___CN_6; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_CN_6() { return &___CN_6; } inline void set_CN_6(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___CN_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___CN_6), (void*)value); } inline static int32_t get_offset_of_Street_7() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___Street_7)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Street_7() const { return ___Street_7; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Street_7() { return &___Street_7; } inline void set_Street_7(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Street_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___Street_7), (void*)value); } inline static int32_t get_offset_of_SerialNumber_8() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___SerialNumber_8)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_SerialNumber_8() const { return ___SerialNumber_8; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_SerialNumber_8() { return &___SerialNumber_8; } inline void set_SerialNumber_8(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___SerialNumber_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___SerialNumber_8), (void*)value); } inline static int32_t get_offset_of_L_9() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___L_9)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_L_9() const { return ___L_9; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_L_9() { return &___L_9; } inline void set_L_9(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___L_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___L_9), (void*)value); } inline static int32_t get_offset_of_ST_10() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___ST_10)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_ST_10() const { return ___ST_10; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_ST_10() { return &___ST_10; } inline void set_ST_10(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___ST_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___ST_10), (void*)value); } inline static int32_t get_offset_of_Surname_11() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___Surname_11)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Surname_11() const { return ___Surname_11; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Surname_11() { return &___Surname_11; } inline void set_Surname_11(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Surname_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___Surname_11), (void*)value); } inline static int32_t get_offset_of_GivenName_12() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___GivenName_12)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_GivenName_12() const { return ___GivenName_12; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_GivenName_12() { return &___GivenName_12; } inline void set_GivenName_12(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___GivenName_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___GivenName_12), (void*)value); } inline static int32_t get_offset_of_Initials_13() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___Initials_13)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Initials_13() const { return ___Initials_13; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Initials_13() { return &___Initials_13; } inline void set_Initials_13(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Initials_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___Initials_13), (void*)value); } inline static int32_t get_offset_of_Generation_14() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___Generation_14)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Generation_14() const { return ___Generation_14; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Generation_14() { return &___Generation_14; } inline void set_Generation_14(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Generation_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___Generation_14), (void*)value); } inline static int32_t get_offset_of_UniqueIdentifier_15() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___UniqueIdentifier_15)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_UniqueIdentifier_15() const { return ___UniqueIdentifier_15; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_UniqueIdentifier_15() { return &___UniqueIdentifier_15; } inline void set_UniqueIdentifier_15(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___UniqueIdentifier_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___UniqueIdentifier_15), (void*)value); } inline static int32_t get_offset_of_BusinessCategory_16() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___BusinessCategory_16)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_BusinessCategory_16() const { return ___BusinessCategory_16; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_BusinessCategory_16() { return &___BusinessCategory_16; } inline void set_BusinessCategory_16(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___BusinessCategory_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___BusinessCategory_16), (void*)value); } inline static int32_t get_offset_of_PostalCode_17() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___PostalCode_17)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_PostalCode_17() const { return ___PostalCode_17; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_PostalCode_17() { return &___PostalCode_17; } inline void set_PostalCode_17(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___PostalCode_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___PostalCode_17), (void*)value); } inline static int32_t get_offset_of_DnQualifier_18() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___DnQualifier_18)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DnQualifier_18() const { return ___DnQualifier_18; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DnQualifier_18() { return &___DnQualifier_18; } inline void set_DnQualifier_18(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DnQualifier_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___DnQualifier_18), (void*)value); } inline static int32_t get_offset_of_Pseudonym_19() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___Pseudonym_19)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Pseudonym_19() const { return ___Pseudonym_19; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Pseudonym_19() { return &___Pseudonym_19; } inline void set_Pseudonym_19(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Pseudonym_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___Pseudonym_19), (void*)value); } inline static int32_t get_offset_of_DateOfBirth_20() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___DateOfBirth_20)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DateOfBirth_20() const { return ___DateOfBirth_20; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DateOfBirth_20() { return &___DateOfBirth_20; } inline void set_DateOfBirth_20(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DateOfBirth_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___DateOfBirth_20), (void*)value); } inline static int32_t get_offset_of_PlaceOfBirth_21() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___PlaceOfBirth_21)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_PlaceOfBirth_21() const { return ___PlaceOfBirth_21; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_PlaceOfBirth_21() { return &___PlaceOfBirth_21; } inline void set_PlaceOfBirth_21(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___PlaceOfBirth_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___PlaceOfBirth_21), (void*)value); } inline static int32_t get_offset_of_Gender_22() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___Gender_22)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Gender_22() const { return ___Gender_22; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Gender_22() { return &___Gender_22; } inline void set_Gender_22(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Gender_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___Gender_22), (void*)value); } inline static int32_t get_offset_of_CountryOfCitizenship_23() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___CountryOfCitizenship_23)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_CountryOfCitizenship_23() const { return ___CountryOfCitizenship_23; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_CountryOfCitizenship_23() { return &___CountryOfCitizenship_23; } inline void set_CountryOfCitizenship_23(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___CountryOfCitizenship_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___CountryOfCitizenship_23), (void*)value); } inline static int32_t get_offset_of_CountryOfResidence_24() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___CountryOfResidence_24)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_CountryOfResidence_24() const { return ___CountryOfResidence_24; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_CountryOfResidence_24() { return &___CountryOfResidence_24; } inline void set_CountryOfResidence_24(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___CountryOfResidence_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___CountryOfResidence_24), (void*)value); } inline static int32_t get_offset_of_NameAtBirth_25() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___NameAtBirth_25)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_NameAtBirth_25() const { return ___NameAtBirth_25; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_NameAtBirth_25() { return &___NameAtBirth_25; } inline void set_NameAtBirth_25(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___NameAtBirth_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___NameAtBirth_25), (void*)value); } inline static int32_t get_offset_of_PostalAddress_26() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___PostalAddress_26)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_PostalAddress_26() const { return ___PostalAddress_26; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_PostalAddress_26() { return &___PostalAddress_26; } inline void set_PostalAddress_26(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___PostalAddress_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___PostalAddress_26), (void*)value); } inline static int32_t get_offset_of_DmdName_27() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___DmdName_27)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DmdName_27() const { return ___DmdName_27; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DmdName_27() { return &___DmdName_27; } inline void set_DmdName_27(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DmdName_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___DmdName_27), (void*)value); } inline static int32_t get_offset_of_TelephoneNumber_28() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___TelephoneNumber_28)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_TelephoneNumber_28() const { return ___TelephoneNumber_28; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_TelephoneNumber_28() { return &___TelephoneNumber_28; } inline void set_TelephoneNumber_28(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___TelephoneNumber_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___TelephoneNumber_28), (void*)value); } inline static int32_t get_offset_of_OrganizationIdentifier_29() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___OrganizationIdentifier_29)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_OrganizationIdentifier_29() const { return ___OrganizationIdentifier_29; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_OrganizationIdentifier_29() { return &___OrganizationIdentifier_29; } inline void set_OrganizationIdentifier_29(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___OrganizationIdentifier_29 = value; Il2CppCodeGenWriteBarrier((void**)(&___OrganizationIdentifier_29), (void*)value); } inline static int32_t get_offset_of_Name_30() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___Name_30)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Name_30() const { return ___Name_30; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Name_30() { return &___Name_30; } inline void set_Name_30(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Name_30 = value; Il2CppCodeGenWriteBarrier((void**)(&___Name_30), (void*)value); } inline static int32_t get_offset_of_EmailAddress_31() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___EmailAddress_31)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_EmailAddress_31() const { return ___EmailAddress_31; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_EmailAddress_31() { return &___EmailAddress_31; } inline void set_EmailAddress_31(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___EmailAddress_31 = value; Il2CppCodeGenWriteBarrier((void**)(&___EmailAddress_31), (void*)value); } inline static int32_t get_offset_of_UnstructuredName_32() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___UnstructuredName_32)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_UnstructuredName_32() const { return ___UnstructuredName_32; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_UnstructuredName_32() { return &___UnstructuredName_32; } inline void set_UnstructuredName_32(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___UnstructuredName_32 = value; Il2CppCodeGenWriteBarrier((void**)(&___UnstructuredName_32), (void*)value); } inline static int32_t get_offset_of_UnstructuredAddress_33() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___UnstructuredAddress_33)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_UnstructuredAddress_33() const { return ___UnstructuredAddress_33; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_UnstructuredAddress_33() { return &___UnstructuredAddress_33; } inline void set_UnstructuredAddress_33(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___UnstructuredAddress_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___UnstructuredAddress_33), (void*)value); } inline static int32_t get_offset_of_E_34() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___E_34)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_E_34() const { return ___E_34; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_E_34() { return &___E_34; } inline void set_E_34(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___E_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___E_34), (void*)value); } inline static int32_t get_offset_of_DC_35() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___DC_35)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DC_35() const { return ___DC_35; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DC_35() { return &___DC_35; } inline void set_DC_35(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DC_35 = value; Il2CppCodeGenWriteBarrier((void**)(&___DC_35), (void*)value); } inline static int32_t get_offset_of_UID_36() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___UID_36)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_UID_36() const { return ___UID_36; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_UID_36() { return &___UID_36; } inline void set_UID_36(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___UID_36 = value; Il2CppCodeGenWriteBarrier((void**)(&___UID_36), (void*)value); } inline static int32_t get_offset_of_defaultReverse_37() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___defaultReverse_37)); } inline BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* get_defaultReverse_37() const { return ___defaultReverse_37; } inline BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C** get_address_of_defaultReverse_37() { return &___defaultReverse_37; } inline void set_defaultReverse_37(BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* value) { ___defaultReverse_37 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultReverse_37), (void*)value); } inline static int32_t get_offset_of_DefaultSymbols_38() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___DefaultSymbols_38)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_DefaultSymbols_38() const { return ___DefaultSymbols_38; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_DefaultSymbols_38() { return &___DefaultSymbols_38; } inline void set_DefaultSymbols_38(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ___DefaultSymbols_38 = value; Il2CppCodeGenWriteBarrier((void**)(&___DefaultSymbols_38), (void*)value); } inline static int32_t get_offset_of_RFC2253Symbols_39() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___RFC2253Symbols_39)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_RFC2253Symbols_39() const { return ___RFC2253Symbols_39; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_RFC2253Symbols_39() { return &___RFC2253Symbols_39; } inline void set_RFC2253Symbols_39(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ___RFC2253Symbols_39 = value; Il2CppCodeGenWriteBarrier((void**)(&___RFC2253Symbols_39), (void*)value); } inline static int32_t get_offset_of_RFC1779Symbols_40() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___RFC1779Symbols_40)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_RFC1779Symbols_40() const { return ___RFC1779Symbols_40; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_RFC1779Symbols_40() { return &___RFC1779Symbols_40; } inline void set_RFC1779Symbols_40(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ___RFC1779Symbols_40 = value; Il2CppCodeGenWriteBarrier((void**)(&___RFC1779Symbols_40), (void*)value); } inline static int32_t get_offset_of_DefaultLookup_41() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___DefaultLookup_41)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_DefaultLookup_41() const { return ___DefaultLookup_41; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_DefaultLookup_41() { return &___DefaultLookup_41; } inline void set_DefaultLookup_41(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ___DefaultLookup_41 = value; Il2CppCodeGenWriteBarrier((void**)(&___DefaultLookup_41), (void*)value); } }; // /__StaticArrayInitTypeSize=1024 struct __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665__padding[1024]; }; public: }; // /__StaticArrayInitTypeSize=112 struct __StaticArrayInitTypeSizeU3D112_t366701DE02350ED8C8A65F92A137F54409B95542 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D112_t366701DE02350ED8C8A65F92A137F54409B95542__padding[112]; }; public: }; // /__StaticArrayInitTypeSize=1152 struct __StaticArrayInitTypeSizeU3D1152_t2104B5740ABD2FB36896B62E02098A1B196E493F { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D1152_t2104B5740ABD2FB36896B62E02098A1B196E493F__padding[1152]; }; public: }; // /__StaticArrayInitTypeSize=116 struct __StaticArrayInitTypeSizeU3D116_t9020B92E8453BBAFE2519A469C0893F630E8D2C9 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D116_t9020B92E8453BBAFE2519A469C0893F630E8D2C9__padding[116]; }; public: }; // /__StaticArrayInitTypeSize=12 struct __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794__padding[12]; }; public: }; // /__StaticArrayInitTypeSize=120 struct __StaticArrayInitTypeSizeU3D120_tD78937C26C99B5FDF514E7F2EB4F8F2367B4C05A { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D120_tD78937C26C99B5FDF514E7F2EB4F8F2367B4C05A__padding[120]; }; public: }; // /__StaticArrayInitTypeSize=124 struct __StaticArrayInitTypeSizeU3D124_t4DC490DCE9056B4FDAA27442CBBA7F0F499B0451 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D124_t4DC490DCE9056B4FDAA27442CBBA7F0F499B0451__padding[124]; }; public: }; // /__StaticArrayInitTypeSize=128 struct __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C__padding[128]; }; public: }; // /__StaticArrayInitTypeSize=16 struct __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66__padding[16]; }; public: }; // /__StaticArrayInitTypeSize=160 struct __StaticArrayInitTypeSizeU3D160_t01D8A735071F3884433FD17606956ED602F11B27 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D160_t01D8A735071F3884433FD17606956ED602F11B27__padding[160]; }; public: }; // /__StaticArrayInitTypeSize=19 struct __StaticArrayInitTypeSizeU3D19_t6F47B190498106B49FE59B8EC484EB7D61D348D4 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D19_t6F47B190498106B49FE59B8EC484EB7D61D348D4__padding[19]; }; public: }; // /__StaticArrayInitTypeSize=192 struct __StaticArrayInitTypeSizeU3D192_tC7D23024B2AD7A4D301599706A49B8C87DAA353D { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D192_tC7D23024B2AD7A4D301599706A49B8C87DAA353D__padding[192]; }; public: }; // /__StaticArrayInitTypeSize=20 struct __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598__padding[20]; }; public: }; // /__StaticArrayInitTypeSize=2048 struct __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E__padding[2048]; }; public: }; // /__StaticArrayInitTypeSize=24 struct __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2__padding[24]; }; public: }; // /__StaticArrayInitTypeSize=256 struct __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449__padding[256]; }; public: }; // /__StaticArrayInitTypeSize=28 struct __StaticArrayInitTypeSizeU3D28_tB9DE54DF41ABC27805509271A10177513906BF30 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D28_tB9DE54DF41ABC27805509271A10177513906BF30__padding[28]; }; public: }; // /__StaticArrayInitTypeSize=3 struct __StaticArrayInitTypeSizeU3D3_t4D94CFD4A1D337F535123BB0BD49F9DDB4392C7F { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D3_t4D94CFD4A1D337F535123BB0BD49F9DDB4392C7F__padding[3]; }; public: }; // /__StaticArrayInitTypeSize=30 struct __StaticArrayInitTypeSizeU3D30_tD08FD0996F882530B072EF52BF88556C13AF0306 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D30_tD08FD0996F882530B072EF52BF88556C13AF0306__padding[30]; }; public: }; // /__StaticArrayInitTypeSize=32 struct __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F__padding[32]; }; public: }; // /__StaticArrayInitTypeSize=36 struct __StaticArrayInitTypeSizeU3D36_t5A0F5FAC8609C11AC407745154F17247010BD4A1 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D36_t5A0F5FAC8609C11AC407745154F17247010BD4A1__padding[36]; }; public: }; // /__StaticArrayInitTypeSize=38 struct __StaticArrayInitTypeSizeU3D38_tA06FFB58ABD95EAC48139C4ABFED36B1C69D0B92 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D38_tA06FFB58ABD95EAC48139C4ABFED36B1C69D0B92__padding[38]; }; public: }; // /__StaticArrayInitTypeSize=384 struct __StaticArrayInitTypeSizeU3D384_t46003A58CA4B346F0AB7AB5EE6A64AA08241F97E { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D384_t46003A58CA4B346F0AB7AB5EE6A64AA08241F97E__padding[384]; }; public: }; // /__StaticArrayInitTypeSize=40 struct __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F__padding[40]; }; public: }; // /__StaticArrayInitTypeSize=404 struct __StaticArrayInitTypeSizeU3D404_t02BA5FC25140F7864B3B45D3DD9D4D8B9E93A333 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D404_t02BA5FC25140F7864B3B45D3DD9D4D8B9E93A333__padding[404]; }; public: }; // /__StaticArrayInitTypeSize=4096 struct __StaticArrayInitTypeSizeU3D4096_t194B799136AD31D58B9179637D7756F00A1E35D5 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D4096_t194B799136AD31D58B9179637D7756F00A1E35D5__padding[4096]; }; public: }; // /__StaticArrayInitTypeSize=44 struct __StaticArrayInitTypeSizeU3D44_tB4E85CA0F7D90D00E66285BECB46250AA72356B5 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D44_tB4E85CA0F7D90D00E66285BECB46250AA72356B5__padding[44]; }; public: }; // /__StaticArrayInitTypeSize=48 struct __StaticArrayInitTypeSizeU3D48_tFD8B246DD801288DF862F996D7F0915222433AD7 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D48_tFD8B246DD801288DF862F996D7F0915222433AD7__padding[48]; }; public: }; // /__StaticArrayInitTypeSize=5 struct __StaticArrayInitTypeSizeU3D5_t4860E7B6EA3ACC966F04D8598CE9F606264B9EE9 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D5_t4860E7B6EA3ACC966F04D8598CE9F606264B9EE9__padding[5]; }; public: }; // /__StaticArrayInitTypeSize=511 struct __StaticArrayInitTypeSizeU3D511_t740CF3C9FEBB9CC89BA68C0F8EC83A7BB47394C3 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D511_t740CF3C9FEBB9CC89BA68C0F8EC83A7BB47394C3__padding[511]; }; public: }; // /__StaticArrayInitTypeSize=512 struct __StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE__padding[512]; }; public: }; // /__StaticArrayInitTypeSize=56 struct __StaticArrayInitTypeSizeU3D56_tEBF9CCD8C2A1E8B12AE6EDE1B31598793DD01186 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D56_tEBF9CCD8C2A1E8B12AE6EDE1B31598793DD01186__padding[56]; }; public: }; // /__StaticArrayInitTypeSize=6 struct __StaticArrayInitTypeSizeU3D6_tDD3535E2AB0E3D46629D397042D7A7D5F52F2E77 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D6_tDD3535E2AB0E3D46629D397042D7A7D5F52F2E77__padding[6]; }; public: }; // /__StaticArrayInitTypeSize=6144 struct __StaticArrayInitTypeSizeU3D6144_tC7D0B4030CC1B8F5E770AE916BB72D42FCBE5DBD { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D6144_tC7D0B4030CC1B8F5E770AE916BB72D42FCBE5DBD__padding[6144]; }; public: }; // /__StaticArrayInitTypeSize=64 struct __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C__padding[64]; }; public: }; // /__StaticArrayInitTypeSize=640 struct __StaticArrayInitTypeSizeU3D640_tBB1E788DFDEFA4D1C43D13F2427E9BEECC2CE517 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D640_tBB1E788DFDEFA4D1C43D13F2427E9BEECC2CE517__padding[640]; }; public: }; // /__StaticArrayInitTypeSize=68 struct __StaticArrayInitTypeSizeU3D68_tE431405C001EFCAA99F9D46276BFEAF7F5AF4E0F { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D68_tE431405C001EFCAA99F9D46276BFEAF7F5AF4E0F__padding[68]; }; public: }; // /__StaticArrayInitTypeSize=72 struct __StaticArrayInitTypeSizeU3D72_t2005207C3F6F7C1227A5084885E3320B238A2489 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D72_t2005207C3F6F7C1227A5084885E3320B238A2489__padding[72]; }; public: }; // /__StaticArrayInitTypeSize=76 struct __StaticArrayInitTypeSizeU3D76_t6572A863E37652A3D016260FBD2285807BDD3823 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D76_t6572A863E37652A3D016260FBD2285807BDD3823__padding[76]; }; public: }; // /__StaticArrayInitTypeSize=96 struct __StaticArrayInitTypeSizeU3D96_tADB23F3DA94DC89452F2BC0884B51C90615CDCD5 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D96_tADB23F3DA94DC89452F2BC0884B51C90615CDCD5__padding[96]; }; public: }; // struct U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528 : public RuntimeObject { public: public: }; struct U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields { public: // /__StaticArrayInitTypeSize=20 ::02D050046D7A21C15C1A6D6755439B5EDAD147FABD9152C932359BA3A4E82039 __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 ___02D050046D7A21C15C1A6D6755439B5EDAD147FABD9152C932359BA3A4E82039_0; // /__StaticArrayInitTypeSize=1024 ::037BE04C4468BC2A186CC905D1F673CDFAAC254CEBEB545465B53F83A97830C5 __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___037BE04C4468BC2A186CC905D1F673CDFAAC254CEBEB545465B53F83A97830C5_1; // /__StaticArrayInitTypeSize=3 ::039058C6F2C0CB492C533B0A4D14EF77CC0F78ABCCCED5287D84A1A2011CFB81 __StaticArrayInitTypeSizeU3D3_t4D94CFD4A1D337F535123BB0BD49F9DDB4392C7F ___039058C6F2C0CB492C533B0A4D14EF77CC0F78ABCCCED5287D84A1A2011CFB81_2; // /__StaticArrayInitTypeSize=128 ::04801C5DAE2B089F05A4334CFE18CCBD987A6EDE98113B9499E8D7054DC38252 __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C ___04801C5DAE2B089F05A4334CFE18CCBD987A6EDE98113B9499E8D7054DC38252_3; // /__StaticArrayInitTypeSize=160 ::064CACC4978353DFD6979BF0975E06366B0F3E9C5631CFFF32EC2184BCF492E5 __StaticArrayInitTypeSizeU3D160_t01D8A735071F3884433FD17606956ED602F11B27 ___064CACC4978353DFD6979BF0975E06366B0F3E9C5631CFFF32EC2184BCF492E5_4; // /__StaticArrayInitTypeSize=68 ::07F8694A8F96DEE5EE4007B7B9102D4969129F0FB6FF3731434ED8CAF3C32D00 __StaticArrayInitTypeSizeU3D68_tE431405C001EFCAA99F9D46276BFEAF7F5AF4E0F ___07F8694A8F96DEE5EE4007B7B9102D4969129F0FB6FF3731434ED8CAF3C32D00_5; // /__StaticArrayInitTypeSize=56 ::07FA6E88C946B2528C09C16C2FB8E9CDA49AFFAFC601774C437FD9F2DF3ECE01 __StaticArrayInitTypeSizeU3D56_tEBF9CCD8C2A1E8B12AE6EDE1B31598793DD01186 ___07FA6E88C946B2528C09C16C2FB8E9CDA49AFFAFC601774C437FD9F2DF3ECE01_6; // /__StaticArrayInitTypeSize=5 ::08BB5E5D6EAAC1049EDE0893D30ED022B1A4D9B5B48DB414871F51C9CB35283D __StaticArrayInitTypeSizeU3D5_t4860E7B6EA3ACC966F04D8598CE9F606264B9EE9 ___08BB5E5D6EAAC1049EDE0893D30ED022B1A4D9B5B48DB414871F51C9CB35283D_7; // /__StaticArrayInitTypeSize=20 ::0A1413707CFE8C78578CA0BB50414B63B0BF76D33A73C9AADCEED38BB8CD28A8 __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 ___0A1413707CFE8C78578CA0BB50414B63B0BF76D33A73C9AADCEED38BB8CD28A8_8; // /__StaticArrayInitTypeSize=6 ::0A29D64AE97E7FBAAE0678A4F4F9364668E9827F23F305D51DF55D902CF19C4D __StaticArrayInitTypeSizeU3D6_tDD3535E2AB0E3D46629D397042D7A7D5F52F2E77 ___0A29D64AE97E7FBAAE0678A4F4F9364668E9827F23F305D51DF55D902CF19C4D_9; // /__StaticArrayInitTypeSize=72 ::0A4E21484641E9782ED1A1B3410F9F2DDC54F0F6D8807BF52C299807D9C4DF5C __StaticArrayInitTypeSizeU3D72_t2005207C3F6F7C1227A5084885E3320B238A2489 ___0A4E21484641E9782ED1A1B3410F9F2DDC54F0F6D8807BF52C299807D9C4DF5C_10; // /__StaticArrayInitTypeSize=56 ::0AEC099C87E7062A57D1C79734EDDD28A07A1684746EE8640132BB252E6BF5A1 __StaticArrayInitTypeSizeU3D56_tEBF9CCD8C2A1E8B12AE6EDE1B31598793DD01186 ___0AEC099C87E7062A57D1C79734EDDD28A07A1684746EE8640132BB252E6BF5A1_11; // /__StaticArrayInitTypeSize=256 ::0AFCFE448EEBA81468EDE42DD0B9A0C17F1A006F43E0BE503CA27E8FBA2F05DC __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___0AFCFE448EEBA81468EDE42DD0B9A0C17F1A006F43E0BE503CA27E8FBA2F05DC_12; // /__StaticArrayInitTypeSize=1024 ::0C9B53D0417CF5539EA98A771F400E930B4B4F55363A296A9E5A5F941AB71C86 __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___0C9B53D0417CF5539EA98A771F400E930B4B4F55363A296A9E5A5F941AB71C86_13; // /__StaticArrayInitTypeSize=256 ::0CF9F5E38BA692F10436AAC17AC6DCB62396F9AFC9CA013B3D640C1C95E31A39 __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___0CF9F5E38BA692F10436AAC17AC6DCB62396F9AFC9CA013B3D640C1C95E31A39_14; // /__StaticArrayInitTypeSize=128 ::10D88DF8B06E47788DBE42F876B642A928A3AD8EEFFE352C59F031CCFFECD49D __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C ___10D88DF8B06E47788DBE42F876B642A928A3AD8EEFFE352C59F031CCFFECD49D_15; // /__StaticArrayInitTypeSize=19 ::111B15B20E0428A22EEAA1E54B0D3B008A7A3E79C8F7F4E783710F569E9CEF15 __StaticArrayInitTypeSizeU3D19_t6F47B190498106B49FE59B8EC484EB7D61D348D4 ___111B15B20E0428A22EEAA1E54B0D3B008A7A3E79C8F7F4E783710F569E9CEF15_16; // /__StaticArrayInitTypeSize=64 ::120918433B634757ADE589703127976B7C5C2009E8DB37632123F45FA2B87F2E __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___120918433B634757ADE589703127976B7C5C2009E8DB37632123F45FA2B87F2E_17; // /__StaticArrayInitTypeSize=640 ::125CF2084D7EEC18DC9795BE4BAA221655C0EABAB89E90A74FB0370378A60293 __StaticArrayInitTypeSizeU3D640_tBB1E788DFDEFA4D1C43D13F2427E9BEECC2CE517 ___125CF2084D7EEC18DC9795BE4BAA221655C0EABAB89E90A74FB0370378A60293_18; // /__StaticArrayInitTypeSize=12 ::12F486CDF1F8927BF7289003288EFE6D3B6C674279639905EEEE24D0B6EA9688 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___12F486CDF1F8927BF7289003288EFE6D3B6C674279639905EEEE24D0B6EA9688_19; // /__StaticArrayInitTypeSize=12 ::1313B2EF301CE83F294FFD8C012777CAA44B3F5F35B6CC5232786F43AEE29084 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___1313B2EF301CE83F294FFD8C012777CAA44B3F5F35B6CC5232786F43AEE29084_20; // /__StaticArrayInitTypeSize=2048 ::13F3BEDA950D7627802C21F7681A2553BBC40FDD07FCA3F52FAB662EE65B6F90 __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E ___13F3BEDA950D7627802C21F7681A2553BBC40FDD07FCA3F52FAB662EE65B6F90_21; // /__StaticArrayInitTypeSize=12 ::141785EC78A7C41133C5B71ACBF4AA8735D3C599E0EA82B1AFA2C71A46FAD265 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___141785EC78A7C41133C5B71ACBF4AA8735D3C599E0EA82B1AFA2C71A46FAD265_22; // /__StaticArrayInitTypeSize=32 ::14A03AA4516FE146356EF9D4F549B8662F9C50A467974D3BFAC45B474D65B864 __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F ___14A03AA4516FE146356EF9D4F549B8662F9C50A467974D3BFAC45B474D65B864_23; // /__StaticArrayInitTypeSize=256 ::14A5D850C255623F9472E3C650ABCE0C78D32F0276B315B3A276A0462D97A1AC __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___14A5D850C255623F9472E3C650ABCE0C78D32F0276B315B3A276A0462D97A1AC_24; // /__StaticArrayInitTypeSize=56 ::16599A4F9A12ECCBFC361B547840304B9E48CBC431F387243C6859C475427D16 __StaticArrayInitTypeSizeU3D56_tEBF9CCD8C2A1E8B12AE6EDE1B31598793DD01186 ___16599A4F9A12ECCBFC361B547840304B9E48CBC431F387243C6859C475427D16_25; // /__StaticArrayInitTypeSize=256 ::1674D0631A2E37B60EC748BC3899FEE1550C108AF30B85CE96A70C5CA4682D03 __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___1674D0631A2E37B60EC748BC3899FEE1550C108AF30B85CE96A70C5CA4682D03_26; // /__StaticArrayInitTypeSize=1024 ::1A0C6D8588AD2BCC8FE37D32AAD70981DD42ECA259D570799BEB531448D25ECE __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___1A0C6D8588AD2BCC8FE37D32AAD70981DD42ECA259D570799BEB531448D25ECE_27; // /__StaticArrayInitTypeSize=64 ::1B3C6BD02D7D3A67EDF7C2E78CB65DA169834118F6971D8912211D3032BC4D18 __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___1B3C6BD02D7D3A67EDF7C2E78CB65DA169834118F6971D8912211D3032BC4D18_28; // /__StaticArrayInitTypeSize=16 ::1B897DDDD4C151E2A2E6E3E91B7EA0F7FC4FD5ED00EF1C9669E8566393A02586 __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 ___1B897DDDD4C151E2A2E6E3E91B7EA0F7FC4FD5ED00EF1C9669E8566393A02586_29; // /__StaticArrayInitTypeSize=1024 ::1B993D34192A33EB10CEE61C1093A6FE7D3D4B41F751F550CF8515DC4A215207 __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___1B993D34192A33EB10CEE61C1093A6FE7D3D4B41F751F550CF8515DC4A215207_30; // /__StaticArrayInitTypeSize=32 ::1BF78E8BF7F2EF0965437D77FD7CA3B2C80F27F8ABE4123F2207CB112D516AC4 __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F ___1BF78E8BF7F2EF0965437D77FD7CA3B2C80F27F8ABE4123F2207CB112D516AC4_31; // /__StaticArrayInitTypeSize=12 ::1C200EEC7E0EAFD19F23190A1ED9B95D60EDE114EDE39BD917D1565839CB48DC __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___1C200EEC7E0EAFD19F23190A1ED9B95D60EDE114EDE39BD917D1565839CB48DC_32; // /__StaticArrayInitTypeSize=12 ::1C3EF802E30F355C14A57C8AFAF6BFC22F3E40631D30059D87C30496D784EC9B __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___1C3EF802E30F355C14A57C8AFAF6BFC22F3E40631D30059D87C30496D784EC9B_33; // /__StaticArrayInitTypeSize=16 ::20EC21674E2CB9D3BA7B2F74AA5874381BAD58B7EDF526BDE000F175D1C5E5F1 __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 ___20EC21674E2CB9D3BA7B2F74AA5874381BAD58B7EDF526BDE000F175D1C5E5F1_34; // System.Int32 ::21B0817029E06E75D6C5BE22BC57089FD89B468AA7C549604EB9483F978CAD5B int32_t ___21B0817029E06E75D6C5BE22BC57089FD89B468AA7C549604EB9483F978CAD5B_35; // /__StaticArrayInitTypeSize=128 ::2338F1330733829B7EA276F350452E34DC02E35AEA142145F1294F417A412FE5 __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C ___2338F1330733829B7EA276F350452E34DC02E35AEA142145F1294F417A412FE5_36; // /__StaticArrayInitTypeSize=1024 ::23DB15B6CAC9F0BF9102DAD4E3569A3208841F38E80BB37F8A0D9D70B77779F6 __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___23DB15B6CAC9F0BF9102DAD4E3569A3208841F38E80BB37F8A0D9D70B77779F6_37; // /__StaticArrayInitTypeSize=12 ::241460699808ED5F8D48C6B09EED448CDAE597EBF52B010901CD6F75A767B047 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___241460699808ED5F8D48C6B09EED448CDAE597EBF52B010901CD6F75A767B047_38; // System.Int64 ::24B7E3A490F64223F93EC177ED5A641984B68F0783A289AC1F2C94D1D92DA684 int64_t ___24B7E3A490F64223F93EC177ED5A641984B68F0783A289AC1F2C94D1D92DA684_39; // /__StaticArrayInitTypeSize=16 ::24CB9F17C8326D8BB8EC908716519DF7F265AE825F0DD13BB04E03A90B07D90E __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 ___24CB9F17C8326D8BB8EC908716519DF7F265AE825F0DD13BB04E03A90B07D90E_40; // /__StaticArrayInitTypeSize=256 ::252A0A8312BC1F5202CB599BCF172BEFA6F2A40195E72E2410AF5D81AC8B69D5 __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___252A0A8312BC1F5202CB599BCF172BEFA6F2A40195E72E2410AF5D81AC8B69D5_41; // /__StaticArrayInitTypeSize=40 ::265DD563A3E754D1DA09E056E784DF1550AD6EFA252EDC9A8B6F2F537C4D98A9 __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F ___265DD563A3E754D1DA09E056E784DF1550AD6EFA252EDC9A8B6F2F537C4D98A9_42; // /__StaticArrayInitTypeSize=72 ::27EB8EA2323F674F4BFE35F3C75FA0609EB3D887842FFDC2B776F7FED82D7EA8 __StaticArrayInitTypeSizeU3D72_t2005207C3F6F7C1227A5084885E3320B238A2489 ___27EB8EA2323F674F4BFE35F3C75FA0609EB3D887842FFDC2B776F7FED82D7EA8_43; // /__StaticArrayInitTypeSize=1024 ::2A1FE1596DB0F5D1893C1AF50592965E1C09B1EE1E35A8A87C181A9EB2F391F5 __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___2A1FE1596DB0F5D1893C1AF50592965E1C09B1EE1E35A8A87C181A9EB2F391F5_44; // /__StaticArrayInitTypeSize=2048 ::2B371DA34C2A942BAF37EBEF498C2EE84813B4AB0266066695C4152B6E3FF082 __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E ___2B371DA34C2A942BAF37EBEF498C2EE84813B4AB0266066695C4152B6E3FF082_45; // /__StaticArrayInitTypeSize=64 ::2C9D6B105EC78E8E02279FB1266932E3468A575B0EB9818985DBE9468B991CCE __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___2C9D6B105EC78E8E02279FB1266932E3468A575B0EB9818985DBE9468B991CCE_46; // /__StaticArrayInitTypeSize=16 ::2DE8C8D0A909D9D152B7752E0C1650FB43AFEBF9F20DF52091B69C394BD9F0FB __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 ___2DE8C8D0A909D9D152B7752E0C1650FB43AFEBF9F20DF52091B69C394BD9F0FB_47; // /__StaticArrayInitTypeSize=64 ::2DEB754CF447D0DE35ACB7F4311F9AAB1D4CFC0638E101CCAA8A0A4948AB3600 __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___2DEB754CF447D0DE35ACB7F4311F9AAB1D4CFC0638E101CCAA8A0A4948AB3600_48; // /__StaticArrayInitTypeSize=68 ::2EE1A8E6F4E2FE0BB69872A9C314399B1B0FDEE75772244F204ABF4D6DEC2F97 __StaticArrayInitTypeSizeU3D68_tE431405C001EFCAA99F9D46276BFEAF7F5AF4E0F ___2EE1A8E6F4E2FE0BB69872A9C314399B1B0FDEE75772244F204ABF4D6DEC2F97_49; // /__StaticArrayInitTypeSize=32 ::2EF83B43314F8CD03190EEE30ECCF048DA37791237F27C62A579F23EACE9FD70 __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F ___2EF83B43314F8CD03190EEE30ECCF048DA37791237F27C62A579F23EACE9FD70_50; // /__StaticArrayInitTypeSize=32 ::2F2C71B5B311BF139FD4B797EF2308F928EFE5092D7E11DC070CF41038A079B9 __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F ___2F2C71B5B311BF139FD4B797EF2308F928EFE5092D7E11DC070CF41038A079B9_51; // /__StaticArrayInitTypeSize=64 ::301841C47353B7791BE25BC1F60F93D0EB2090AB5714FA5CA3939E8DFF75D218 __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___301841C47353B7791BE25BC1F60F93D0EB2090AB5714FA5CA3939E8DFF75D218_52; // /__StaticArrayInitTypeSize=1024 ::304E6CE4B8A999F5B114DD940B655029F8F60AFE4EE0731B111996B6B59BC3A9 __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___304E6CE4B8A999F5B114DD940B655029F8F60AFE4EE0731B111996B6B59BC3A9_53; // /__StaticArrayInitTypeSize=128 ::3106DB6422088B231F12C749BC9CC57B08BBDE65695641C166393B42EFF14871 __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C ___3106DB6422088B231F12C749BC9CC57B08BBDE65695641C166393B42EFF14871_54; // /__StaticArrayInitTypeSize=1024 ::31A50A6B8C571138DD6EA37B040389216B779C1ED712CB7980DD199E3BEBEFEC __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___31A50A6B8C571138DD6EA37B040389216B779C1ED712CB7980DD199E3BEBEFEC_55; // /__StaticArrayInitTypeSize=256 ::325BFEE33A593E28E54E20F8520E5DFEE122F719EF08FFE096A2AD31C4DC316F __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___325BFEE33A593E28E54E20F8520E5DFEE122F719EF08FFE096A2AD31C4DC316F_56; // /__StaticArrayInitTypeSize=48 ::343E404502DABEA303159A8C37BB2A4405B20A9B230D1C3BA9D496F05879019E __StaticArrayInitTypeSizeU3D48_tFD8B246DD801288DF862F996D7F0915222433AD7 ___343E404502DABEA303159A8C37BB2A4405B20A9B230D1C3BA9D496F05879019E_57; // /__StaticArrayInitTypeSize=12 ::356608BFA95B39A5AA624D4852D37A19FCFB1302C897E1A4B7EA5EFD1A20120E __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___356608BFA95B39A5AA624D4852D37A19FCFB1302C897E1A4B7EA5EFD1A20120E_58; // /__StaticArrayInitTypeSize=12 ::36003BEAAFC125A5D50EBAE8C98A6971BE6134DD89E286DD699E012687422A22 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___36003BEAAFC125A5D50EBAE8C98A6971BE6134DD89E286DD699E012687422A22_59; // /__StaticArrayInitTypeSize=511 ::360294D82A77697405846183BBB96E548B586D0710C5E2322E2CEF23E88C4122 __StaticArrayInitTypeSizeU3D511_t740CF3C9FEBB9CC89BA68C0F8EC83A7BB47394C3 ___360294D82A77697405846183BBB96E548B586D0710C5E2322E2CEF23E88C4122_60; // /__StaticArrayInitTypeSize=1152 ::36B8FDA0BFB1D93A07326EE7CAC8EB99FF1AF237D234FFA3210F64D3EB774C38 __StaticArrayInitTypeSizeU3D1152_t2104B5740ABD2FB36896B62E02098A1B196E493F ___36B8FDA0BFB1D93A07326EE7CAC8EB99FF1AF237D234FFA3210F64D3EB774C38_61; // /__StaticArrayInitTypeSize=12 ::3936FEF22F74028ACFB35A545386FE1C4F4A2C8CE55E88B5DF4FF605D474D8B4 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___3936FEF22F74028ACFB35A545386FE1C4F4A2C8CE55E88B5DF4FF605D474D8B4_62; // /__StaticArrayInitTypeSize=24 ::394D174022AB9D27D329C8DE3DADB69831311870F91A3896EFFB406411F7472C __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 ___394D174022AB9D27D329C8DE3DADB69831311870F91A3896EFFB406411F7472C_63; // /__StaticArrayInitTypeSize=40 ::3AF2ACD8D2D27336879BC958CFB6B4271FA89EC7C3EC62B7AD1E0E20B7AF303D __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F ___3AF2ACD8D2D27336879BC958CFB6B4271FA89EC7C3EC62B7AD1E0E20B7AF303D_64; // /__StaticArrayInitTypeSize=28 ::3B520286F14349D61645FDE2088337584857AF213F1E9694D9DA4F5C489E6A0E __StaticArrayInitTypeSizeU3D28_tB9DE54DF41ABC27805509271A10177513906BF30 ___3B520286F14349D61645FDE2088337584857AF213F1E9694D9DA4F5C489E6A0E_65; // /__StaticArrayInitTypeSize=64 ::3B721FB05904288533A0C3F44162AA4631530BCFEBD22C3E57DBC4994E38F83D __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___3B721FB05904288533A0C3F44162AA4631530BCFEBD22C3E57DBC4994E38F83D_66; // /__StaticArrayInitTypeSize=512 ::3BC7BBAE9618E2066112B9F16B3CDBB856ADE0020C732ED2D56FD0D0E38E1FC3 __StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE ___3BC7BBAE9618E2066112B9F16B3CDBB856ADE0020C732ED2D56FD0D0E38E1FC3_67; // /__StaticArrayInitTypeSize=2048 ::3CA024F96B6FA0D283063E7C2B60A83C2B07F26AE1788CDFAEEB231C7725ED92 __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E ___3CA024F96B6FA0D283063E7C2B60A83C2B07F26AE1788CDFAEEB231C7725ED92_68; // /__StaticArrayInitTypeSize=512 ::3E4FB5FE52BF269D6EE955711016291D6D327A4AAC39B2464C53C6BD0D73242A __StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE ___3E4FB5FE52BF269D6EE955711016291D6D327A4AAC39B2464C53C6BD0D73242A_69; // /__StaticArrayInitTypeSize=1024 ::3EAA30E2BB2D4FF7221734E2CFBD2A94F0A3D8EB435634724DBF207AFE0DE24B __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___3EAA30E2BB2D4FF7221734E2CFBD2A94F0A3D8EB435634724DBF207AFE0DE24B_70; // /__StaticArrayInitTypeSize=16 ::3F580014EE7F27F024FC40AE120394FAC1A8E4CD1B40FD0F0089E89856152138 __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 ___3F580014EE7F27F024FC40AE120394FAC1A8E4CD1B40FD0F0089E89856152138_71; // /__StaticArrayInitTypeSize=44 ::405634CB2F08D8E4A65CF85762D7BE4356E6DE1C0C941DA950F3034F3F8C6ED0 __StaticArrayInitTypeSizeU3D44_tB4E85CA0F7D90D00E66285BECB46250AA72356B5 ___405634CB2F08D8E4A65CF85762D7BE4356E6DE1C0C941DA950F3034F3F8C6ED0_72; // /__StaticArrayInitTypeSize=256 ::40866F3E76BC07D89281D2593C42AD252FB2D84E0A91FA3C78CA3C1FCC17643D __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___40866F3E76BC07D89281D2593C42AD252FB2D84E0A91FA3C78CA3C1FCC17643D_73; // /__StaticArrayInitTypeSize=1024 ::427C844BAD080C6008BDA87BD6ACA4F6F342F6FCA9472A6D63C31B69F6F85054 __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___427C844BAD080C6008BDA87BD6ACA4F6F342F6FCA9472A6D63C31B69F6F85054_74; // /__StaticArrayInitTypeSize=256 ::42E57F5A26F7D53A24B69FF9F56FA7550A23B8BAB2F5993357E4C53EA06141E9 __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___42E57F5A26F7D53A24B69FF9F56FA7550A23B8BAB2F5993357E4C53EA06141E9_75; // /__StaticArrayInitTypeSize=128 ::439231575950B2ADCDE8DC0E470192ADA8DDC05EB55836596636563B6403A6B5 __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C ___439231575950B2ADCDE8DC0E470192ADA8DDC05EB55836596636563B6403A6B5_76; // /__StaticArrayInitTypeSize=12 ::43B9A42341477A51FB3329FA943298FB43910D3EDCAB69BFB04D0E68D84C0247 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___43B9A42341477A51FB3329FA943298FB43910D3EDCAB69BFB04D0E68D84C0247_77; // /__StaticArrayInitTypeSize=24 ::43C8B8D4786B6331EFC85B21E235E3E39940C427680D2C6B73ABF19738EF5186 __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 ___43C8B8D4786B6331EFC85B21E235E3E39940C427680D2C6B73ABF19738EF5186_78; // /__StaticArrayInitTypeSize=1024 ::463BE4A1C16EB914C411F194E1F87BEF5A9081C49888860A682E8543D4B35F58 __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___463BE4A1C16EB914C411F194E1F87BEF5A9081C49888860A682E8543D4B35F58_79; // /__StaticArrayInitTypeSize=24 ::4654FB5A717A0EB7C9078754B15F325C2F156519CFF821AAA495495741FF153A __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 ___4654FB5A717A0EB7C9078754B15F325C2F156519CFF821AAA495495741FF153A_80; // /__StaticArrayInitTypeSize=256 ::4867A63842B7AFBF7A120C1310940F29048D0B73EF1747E15AD67A3AA0D9AF9D __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___4867A63842B7AFBF7A120C1310940F29048D0B73EF1747E15AD67A3AA0D9AF9D_81; // /__StaticArrayInitTypeSize=64 ::490FE1E40F08589851422F9DAF5012280352D005653B5D2CE872268A1A743ACF __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___490FE1E40F08589851422F9DAF5012280352D005653B5D2CE872268A1A743ACF_82; // /__StaticArrayInitTypeSize=12 ::4993FAA5B9060FAAFC80E9F6CE26AF291965C0B1E8F5BBDC87C6CE9AEF6FFA24 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___4993FAA5B9060FAAFC80E9F6CE26AF291965C0B1E8F5BBDC87C6CE9AEF6FFA24_83; // /__StaticArrayInitTypeSize=12 ::49D826830B5D920448F74BBBEDB361F17C9DD461E0DC3DED114E6E13E0173981 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___49D826830B5D920448F74BBBEDB361F17C9DD461E0DC3DED114E6E13E0173981_84; // /__StaticArrayInitTypeSize=12 ::49FC72E2BC139CDC89193D013C3CBAD8CB75E78CA254B8466A03D26581D08BE4 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___49FC72E2BC139CDC89193D013C3CBAD8CB75E78CA254B8466A03D26581D08BE4_85; // /__StaticArrayInitTypeSize=32 ::4ADFA71AB9AF20C1C372C92FF8D26609A11DA05E167BBA62C0ABFD18F4C1EAF8 __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F ___4ADFA71AB9AF20C1C372C92FF8D26609A11DA05E167BBA62C0ABFD18F4C1EAF8_86; // /__StaticArrayInitTypeSize=24 ::4D30B965ABF4D17A678F232D7C2491E37B61B203A6E807BB9E09C4BA2614F72D __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 ___4D30B965ABF4D17A678F232D7C2491E37B61B203A6E807BB9E09C4BA2614F72D_87; // /__StaticArrayInitTypeSize=256 ::4D487DD66D80886D292C3C7B64CC41FEBA1E313A26A9D05333B42E895741FF81 __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___4D487DD66D80886D292C3C7B64CC41FEBA1E313A26A9D05333B42E895741FF81_88; // /__StaticArrayInitTypeSize=12 ::4D7CAD3DEBDBD349390304F3A59AD3F66B4A1FB02F88749C4E393FF3A1EDD411 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___4D7CAD3DEBDBD349390304F3A59AD3F66B4A1FB02F88749C4E393FF3A1EDD411_89; // /__StaticArrayInitTypeSize=256 ::4F1B8E1CB953EA2DC9E5B3B1A88872BD0BF97BD1091B00456F43F1DFE4A0C976 __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___4F1B8E1CB953EA2DC9E5B3B1A88872BD0BF97BD1091B00456F43F1DFE4A0C976_90; // /__StaticArrayInitTypeSize=12 ::4FDCD793D71BE141D8E85C48B61B68F00848ACEF69905D47D935786C44D07D92 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___4FDCD793D71BE141D8E85C48B61B68F00848ACEF69905D47D935786C44D07D92_91; // /__StaticArrayInitTypeSize=16 ::507B1EFA9C696556B36957CBA8E6B8517AC8CD457424F04C7EF34363FC3B7F8F __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 ___507B1EFA9C696556B36957CBA8E6B8517AC8CD457424F04C7EF34363FC3B7F8F_92; // /__StaticArrayInitTypeSize=20 ::513BA924C2DC996CAF3DC690D42BEB815316271C0CDAC0812BC0F2C2ED45DEA4 __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 ___513BA924C2DC996CAF3DC690D42BEB815316271C0CDAC0812BC0F2C2ED45DEA4_93; // /__StaticArrayInitTypeSize=12 ::5218271C2AB140CF1F8F18D070924F6EA8F08F5FB59C9E4F05AF36C0740D172A __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___5218271C2AB140CF1F8F18D070924F6EA8F08F5FB59C9E4F05AF36C0740D172A_94; // /__StaticArrayInitTypeSize=2048 ::542A4AD813E0CA853A400A4DC81182DB6803BEC6EA63ED0D54E0E90660DFDC2B __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E ___542A4AD813E0CA853A400A4DC81182DB6803BEC6EA63ED0D54E0E90660DFDC2B_95; // /__StaticArrayInitTypeSize=256 ::55D0BF716B334D123E0088CFB3F8E2FEA17AF5025BB527F95EEB09BA978EA329 __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___55D0BF716B334D123E0088CFB3F8E2FEA17AF5025BB527F95EEB09BA978EA329_96; // /__StaticArrayInitTypeSize=12 ::55D90ED526CE6FF4309EE00834C4060B1A37CB6D5E65BAA01366C72FB2A68CB4 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___55D90ED526CE6FF4309EE00834C4060B1A37CB6D5E65BAA01366C72FB2A68CB4_97; // /__StaticArrayInitTypeSize=1024 ::5686DFA3DBAE1C40758CFEA05B267DAC2FAF6CCDFADBC08A75D81088B777C751 __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___5686DFA3DBAE1C40758CFEA05B267DAC2FAF6CCDFADBC08A75D81088B777C751_98; // /__StaticArrayInitTypeSize=256 ::58693A8E9871A51CE017A5CCB2219B320C7893E49E1761EF867DEB94E0466F4D __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___58693A8E9871A51CE017A5CCB2219B320C7893E49E1761EF867DEB94E0466F4D_99; // /__StaticArrayInitTypeSize=2048 ::586CB2936F35105D4A71FF1186E81528F1980A2E5BB1E2719E0D86809CB1080A __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E ___586CB2936F35105D4A71FF1186E81528F1980A2E5BB1E2719E0D86809CB1080A_100; // /__StaticArrayInitTypeSize=120 ::5961BF1FCF83803CE7775E15E9DB8D21AF741539B85CCFDD643F9E22CC7820D6 __StaticArrayInitTypeSizeU3D120_tD78937C26C99B5FDF514E7F2EB4F8F2367B4C05A ___5961BF1FCF83803CE7775E15E9DB8D21AF741539B85CCFDD643F9E22CC7820D6_101; // /__StaticArrayInitTypeSize=12 ::59B7E757844D3BF9299877BD1C17451611BFBAB493374D6B18D973FDE534151A __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___59B7E757844D3BF9299877BD1C17451611BFBAB493374D6B18D973FDE534151A_102; // /__StaticArrayInitTypeSize=32 ::5A33FCFEC23C49D91BCF58CE2472DC9F3662CD086BD29FC44AF2E14567238A30 __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F ___5A33FCFEC23C49D91BCF58CE2472DC9F3662CD086BD29FC44AF2E14567238A30_103; // /__StaticArrayInitTypeSize=12 ::5B979F69B96A61586A09DD4ED26F20534C629B08732AE32FA34B6F8A0049ACDD __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___5B979F69B96A61586A09DD4ED26F20534C629B08732AE32FA34B6F8A0049ACDD_104; // /__StaticArrayInitTypeSize=40 ::5BBB9265FCB4E834C68440328645B1A187F68D3275881FC46B21564B11326DA5 __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F ___5BBB9265FCB4E834C68440328645B1A187F68D3275881FC46B21564B11326DA5_105; // /__StaticArrayInitTypeSize=1024 ::5D2BCB56850200B2EDECD280A83B6F489E2DE5771E609FABA8A5C4816206CB7A __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___5D2BCB56850200B2EDECD280A83B6F489E2DE5771E609FABA8A5C4816206CB7A_106; // /__StaticArrayInitTypeSize=384 ::5D34088B4ABB1F3FE88DCF84DD5C145EFD5EA01DF1B05BB8FEAD12305B0979B7 __StaticArrayInitTypeSizeU3D384_t46003A58CA4B346F0AB7AB5EE6A64AA08241F97E ___5D34088B4ABB1F3FE88DCF84DD5C145EFD5EA01DF1B05BB8FEAD12305B0979B7_107; // /__StaticArrayInitTypeSize=124 ::5D6878AD6E68B2CCB04A7CD7942BE07C15F947CCA8824203021DD465D90712AD __StaticArrayInitTypeSizeU3D124_t4DC490DCE9056B4FDAA27442CBBA7F0F499B0451 ___5D6878AD6E68B2CCB04A7CD7942BE07C15F947CCA8824203021DD465D90712AD_108; // /__StaticArrayInitTypeSize=36 ::5DCC8698D4E5400BC54B6A6E36FB1F5E060B2CE6A676F4FC474015F9A0FC7CB0 __StaticArrayInitTypeSizeU3D36_t5A0F5FAC8609C11AC407745154F17247010BD4A1 ___5DCC8698D4E5400BC54B6A6E36FB1F5E060B2CE6A676F4FC474015F9A0FC7CB0_109; // /__StaticArrayInitTypeSize=32 ::5DF5DA3512C124C2BB3C3676FFEDA4E6CC5E902C2A6027D37EB4B5AB64ED4382 __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F ___5DF5DA3512C124C2BB3C3676FFEDA4E6CC5E902C2A6027D37EB4B5AB64ED4382_110; // /__StaticArrayInitTypeSize=28 ::5F2BD6104C620DE24A78538B659D1218F81A8DC50ED6645B5A040194E0CDC663 __StaticArrayInitTypeSizeU3D28_tB9DE54DF41ABC27805509271A10177513906BF30 ___5F2BD6104C620DE24A78538B659D1218F81A8DC50ED6645B5A040194E0CDC663_111; // /__StaticArrayInitTypeSize=124 ::61358F81002F15B87F2746D4CD7FE28FD2CB45B8F0840B807B18C5A23F791CB1 __StaticArrayInitTypeSizeU3D124_t4DC490DCE9056B4FDAA27442CBBA7F0F499B0451 ___61358F81002F15B87F2746D4CD7FE28FD2CB45B8F0840B807B18C5A23F791CB1_112; // /__StaticArrayInitTypeSize=48 ::6164463B7C304A53288FDCF4DD2136E0E9A441D9930215FB691E3D2F692C3993 __StaticArrayInitTypeSizeU3D48_tFD8B246DD801288DF862F996D7F0915222433AD7 ___6164463B7C304A53288FDCF4DD2136E0E9A441D9930215FB691E3D2F692C3993_113; // /__StaticArrayInitTypeSize=1024 ::624B1BC8BE6B6F8CF39572731AD0E5BDF2AAB137D0AB4A0F473B3D00666D766B __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___624B1BC8BE6B6F8CF39572731AD0E5BDF2AAB137D0AB4A0F473B3D00666D766B_114; // /__StaticArrayInitTypeSize=64 ::62A191EC74B0F281659DD81132751B7656F065A2AD5A8E892CAE1A8E4DBFD0B5 __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___62A191EC74B0F281659DD81132751B7656F065A2AD5A8E892CAE1A8E4DBFD0B5_115; // /__StaticArrayInitTypeSize=64 ::663A2D6435FFB6C16D9382D8E22490E109514E59C03574E825F6B491AD8C8AAC __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___663A2D6435FFB6C16D9382D8E22490E109514E59C03574E825F6B491AD8C8AAC_116; // /__StaticArrayInitTypeSize=48 ::6708B572BDBE5D5E79701DBB9744AF74B50FED7608218F2D7BF1B5D87E5A53ED __StaticArrayInitTypeSizeU3D48_tFD8B246DD801288DF862F996D7F0915222433AD7 ___6708B572BDBE5D5E79701DBB9744AF74B50FED7608218F2D7BF1B5D87E5A53ED_117; // /__StaticArrayInitTypeSize=12 ::684F74091FEFCDCDE9B282E317592631CA48B75F46340A11B95A474700E656D4 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___684F74091FEFCDCDE9B282E317592631CA48B75F46340A11B95A474700E656D4_118; // /__StaticArrayInitTypeSize=32 ::6965AC9D48CA477E9A17658D33A217051648138AD7024514DE014D8001B533C3 __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F ___6965AC9D48CA477E9A17658D33A217051648138AD7024514DE014D8001B533C3_119; // /__StaticArrayInitTypeSize=40 ::6A5953C1A0D67EA77DC8A5D34D0055B3D6A7A3C4CA3F6FE599471C40B9B017FC __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F ___6A5953C1A0D67EA77DC8A5D34D0055B3D6A7A3C4CA3F6FE599471C40B9B017FC_120; // /__StaticArrayInitTypeSize=64 ::6A5EAF956411330E0B28CAD097D9698CBF4098D268AD1C0E04FE294F0607E53D __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___6A5EAF956411330E0B28CAD097D9698CBF4098D268AD1C0E04FE294F0607E53D_121; // /__StaticArrayInitTypeSize=24 ::6C99A25F0D00AE5BC45EE7F62CFC963F5DFC8FE4F7CE82ACEB0B5A1CDB51E3AB __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 ___6C99A25F0D00AE5BC45EE7F62CFC963F5DFC8FE4F7CE82ACEB0B5A1CDB51E3AB_122; // /__StaticArrayInitTypeSize=12 ::6CB004567F6DA8572C921962EDECA8ABB063258E4B378E85E52017698A655056 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___6CB004567F6DA8572C921962EDECA8ABB063258E4B378E85E52017698A655056_123; // /__StaticArrayInitTypeSize=64 ::6D4410134564FFF8B73800035CA093523750DF325139D004701C67D97488B8D5 __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___6D4410134564FFF8B73800035CA093523750DF325139D004701C67D97488B8D5_124; // /__StaticArrayInitTypeSize=16 ::6DDD174356763393334AE30B2B3860AEBC30900BEA96E515EF3174C1DBF9E395 __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 ___6DDD174356763393334AE30B2B3860AEBC30900BEA96E515EF3174C1DBF9E395_125; // /__StaticArrayInitTypeSize=28 ::6F055E07140AF36F1C17E348B39AB7ACB0647B788E869F4236E285C89C2C89EF __StaticArrayInitTypeSizeU3D28_tB9DE54DF41ABC27805509271A10177513906BF30 ___6F055E07140AF36F1C17E348B39AB7ACB0647B788E869F4236E285C89C2C89EF_126; // /__StaticArrayInitTypeSize=12 ::7017794F4FA285E1AA4C6FF9994A3DC0EDC472CB13D08BCA7B5CC287C51E0E3E __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___7017794F4FA285E1AA4C6FF9994A3DC0EDC472CB13D08BCA7B5CC287C51E0E3E_127; // /__StaticArrayInitTypeSize=16 ::712618256BB5287925AAF70FA8EA2EBFFB72DF72B5D29A339CC9B8DB464EFC14 __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 ___712618256BB5287925AAF70FA8EA2EBFFB72DF72B5D29A339CC9B8DB464EFC14_128; // /__StaticArrayInitTypeSize=256 ::715F5EB09E6B0F8E87AD50BDAB729CF129E723B95990CE21DF233461DC29304E __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___715F5EB09E6B0F8E87AD50BDAB729CF129E723B95990CE21DF233461DC29304E_129; // System.Int32 ::72B8B8D3A6D4A8C2F9364B2F944B36201C7D8A2B43DBF558D1A09883E969D74D int32_t ___72B8B8D3A6D4A8C2F9364B2F944B36201C7D8A2B43DBF558D1A09883E969D74D_130; // /__StaticArrayInitTypeSize=256 ::74EF7306E7452D6859B6463CE496B8DF30925F69E1B2969E1F3F34BBC9C6AF04 __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___74EF7306E7452D6859B6463CE496B8DF30925F69E1B2969E1F3F34BBC9C6AF04_131; // /__StaticArrayInitTypeSize=64 ::7543B37FA53FDE2C84F07FD39F368555966AA1C0EB2F2FD26B294D79966E290E __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___7543B37FA53FDE2C84F07FD39F368555966AA1C0EB2F2FD26B294D79966E290E_132; // /__StaticArrayInitTypeSize=12 ::76387D5ADFE12720EE7A21E3C30296DE8356BE159BD422D9900C8146F914CADE __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___76387D5ADFE12720EE7A21E3C30296DE8356BE159BD422D9900C8146F914CADE_133; // /__StaticArrayInitTypeSize=12 ::7650DB5F7D0AD39E75A5BB512A98F9763E302328E120F06230159AC1AD1C6B5D __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___7650DB5F7D0AD39E75A5BB512A98F9763E302328E120F06230159AC1AD1C6B5D_134; // /__StaticArrayInitTypeSize=12 ::7854BA783A61F0B4D74198AF22A2D285EF70C526BDE4BE78FEDF180436FB621D __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___7854BA783A61F0B4D74198AF22A2D285EF70C526BDE4BE78FEDF180436FB621D_135; // /__StaticArrayInitTypeSize=12 ::78A70FA0E21C85F13BDFA3D7B70E095EC5B61E51F34D2C1D531142B0634B30E5 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___78A70FA0E21C85F13BDFA3D7B70E095EC5B61E51F34D2C1D531142B0634B30E5_136; // /__StaticArrayInitTypeSize=24 ::78F6DA256B470C65DC4A98A23DC5F1FBF7ED3CCDE0E93EA0D97363328810055D __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 ___78F6DA256B470C65DC4A98A23DC5F1FBF7ED3CCDE0E93EA0D97363328810055D_137; // /__StaticArrayInitTypeSize=512 ::7919EF601386C08FC5EFB981B4A1E478D8413596173FC159B15739E87EE1BA50 __StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE ___7919EF601386C08FC5EFB981B4A1E478D8413596173FC159B15739E87EE1BA50_138; // /__StaticArrayInitTypeSize=68 ::79478AF14CB42EC0951669D5D1D864E43C211CBA631D8FFE7F6CD79FF60756C6 __StaticArrayInitTypeSizeU3D68_tE431405C001EFCAA99F9D46276BFEAF7F5AF4E0F ___79478AF14CB42EC0951669D5D1D864E43C211CBA631D8FFE7F6CD79FF60756C6_139; // /__StaticArrayInitTypeSize=12 ::7A36979350F6A229EB7206BEE580F51563EE52B71CD2132680B0AC33B3C31E27 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___7A36979350F6A229EB7206BEE580F51563EE52B71CD2132680B0AC33B3C31E27_140; // /__StaticArrayInitTypeSize=16 ::7BDD3F08BE488F1D6DCBF05D01C69BA80DF49A9E9E415F0205D575B4B5F32A34 __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 ___7BDD3F08BE488F1D6DCBF05D01C69BA80DF49A9E9E415F0205D575B4B5F32A34_141; // /__StaticArrayInitTypeSize=64 ::7C8975E1E60A5C8337F28EDF8C33C3B180360B7279644A9BC1AF3C51E6220BF5 __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___7C8975E1E60A5C8337F28EDF8C33C3B180360B7279644A9BC1AF3C51E6220BF5_142; // /__StaticArrayInitTypeSize=30 ::7C97C06F982D2F598F71BCF85A27244685EC039BC414EB391EC3EC449A619F37 __StaticArrayInitTypeSizeU3D30_tD08FD0996F882530B072EF52BF88556C13AF0306 ___7C97C06F982D2F598F71BCF85A27244685EC039BC414EB391EC3EC449A619F37_143; // /__StaticArrayInitTypeSize=116 ::7DDF88204E7E265240211841F0AB290A5E77EE4F9223EB2E39F9B89C30C41B9D __StaticArrayInitTypeSizeU3D116_t9020B92E8453BBAFE2519A469C0893F630E8D2C9 ___7DDF88204E7E265240211841F0AB290A5E77EE4F9223EB2E39F9B89C30C41B9D_144; // /__StaticArrayInitTypeSize=64 ::7F034CF9D8AC0293D0C9535AF26B5452C6E916CE62FBBF765077BD958E69B7B9 __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___7F034CF9D8AC0293D0C9535AF26B5452C6E916CE62FBBF765077BD958E69B7B9_145; // System.Int32 ::7FBDBBC598B2DE18BB5191FF9D66727F552A54412C9314CA5782824A150B3CD3 int32_t ___7FBDBBC598B2DE18BB5191FF9D66727F552A54412C9314CA5782824A150B3CD3_146; // /__StaticArrayInitTypeSize=12 ::7FCA397EF25DB53B2C58A05F9BBFA4E8E0685FDBC8AAF39536123447056895C0 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___7FCA397EF25DB53B2C58A05F9BBFA4E8E0685FDBC8AAF39536123447056895C0_147; // /__StaticArrayInitTypeSize=20 ::81C0F0D213E5735AED08C328CC9CC2E61B3AB83C9BF016A666B4144F8BF64457 __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 ___81C0F0D213E5735AED08C328CC9CC2E61B3AB83C9BF016A666B4144F8BF64457_148; // /__StaticArrayInitTypeSize=512 ::8271B98A74E2ED3AC4E690289279C25841A5617BE3D992BED6CB7486F95060D9 __StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE ___8271B98A74E2ED3AC4E690289279C25841A5617BE3D992BED6CB7486F95060D9_149; // /__StaticArrayInitTypeSize=32 ::83E8FA01EECEC207D12DA40AEFC466B15F6412FFE2C30DBEF0C65B9B7FF01672 __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F ___83E8FA01EECEC207D12DA40AEFC466B15F6412FFE2C30DBEF0C65B9B7FF01672_150; // /__StaticArrayInitTypeSize=512 ::84EBACB335F7FB2D4C6AF94256B2DD565EFFE552C9A1CB725C5B5C338914412D __StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE ___84EBACB335F7FB2D4C6AF94256B2DD565EFFE552C9A1CB725C5B5C338914412D_151; // /__StaticArrayInitTypeSize=1024 ::85332E00AFFFDBE44E7421AA4236274F9495AC6C2204C59B9ADFC872D4215E12 __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___85332E00AFFFDBE44E7421AA4236274F9495AC6C2204C59B9ADFC872D4215E12_152; // /__StaticArrayInitTypeSize=12 ::8688D249E9D047B4FC2FB89CE05AFE9EC89252FFCCDD969DE6EEF260DD7FFB21 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___8688D249E9D047B4FC2FB89CE05AFE9EC89252FFCCDD969DE6EEF260DD7FFB21_153; // /__StaticArrayInitTypeSize=48 ::86ECB4ABD964707BAF5ABF589057FBB2ED63DB1D7F0115A7DA45921043B6A96F __StaticArrayInitTypeSizeU3D48_tFD8B246DD801288DF862F996D7F0915222433AD7 ___86ECB4ABD964707BAF5ABF589057FBB2ED63DB1D7F0115A7DA45921043B6A96F_154; // /__StaticArrayInitTypeSize=16 ::874805F2B76BD7887959F02FE0B2A8C07C1E1D41F41AAD4D2AA1D0AB21A1780F __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 ___874805F2B76BD7887959F02FE0B2A8C07C1E1D41F41AAD4D2AA1D0AB21A1780F_155; // /__StaticArrayInitTypeSize=12 ::88362588448C0D67AC6A928BB97FBFA93C92ED574E09AEAED174B8EFFB876F86 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___88362588448C0D67AC6A928BB97FBFA93C92ED574E09AEAED174B8EFFB876F86_156; // /__StaticArrayInitTypeSize=128 ::896FB86C1BE3DBE6C3CC4FBE122562D75A4EBC6616D3393CF1AFE12377908B95 __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C ___896FB86C1BE3DBE6C3CC4FBE122562D75A4EBC6616D3393CF1AFE12377908B95_157; // /__StaticArrayInitTypeSize=6144 ::8AE83CF30C3CEAC5F4B9F025200D65EFAEC851DE0098817DB69F0E547407C095 __StaticArrayInitTypeSizeU3D6144_tC7D0B4030CC1B8F5E770AE916BB72D42FCBE5DBD ___8AE83CF30C3CEAC5F4B9F025200D65EFAEC851DE0098817DB69F0E547407C095_158; // /__StaticArrayInitTypeSize=1024 ::8B3E4AD98E68D077C6A580E0CE5B8BEA476668CC2303A9845D8EC347A4035FB8 __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___8B3E4AD98E68D077C6A580E0CE5B8BEA476668CC2303A9845D8EC347A4035FB8_159; // /__StaticArrayInitTypeSize=12 ::8CB850AC259DD215242199AD8F1B0BC74C182B564124B84C0D56BDB7A8FF7286 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___8CB850AC259DD215242199AD8F1B0BC74C182B564124B84C0D56BDB7A8FF7286_160; // /__StaticArrayInitTypeSize=256 ::8CC38DAE7E1F854FB74E0A2910E4781DABC17BFB28C0E2759599F647024FB680 __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___8CC38DAE7E1F854FB74E0A2910E4781DABC17BFB28C0E2759599F647024FB680_161; // System.Int32 ::8DE58994BA1BCCA412DBAD0B7F71CC1C77CFA1303F3224FA5371B5BE8A27AB5E int32_t ___8DE58994BA1BCCA412DBAD0B7F71CC1C77CFA1303F3224FA5371B5BE8A27AB5E_162; // /__StaticArrayInitTypeSize=12 ::8E508E3CF36A04D2980525060B4220A361C941343EDDD8B43A28CF8001D0CA40 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___8E508E3CF36A04D2980525060B4220A361C941343EDDD8B43A28CF8001D0CA40_163; // /__StaticArrayInitTypeSize=76 ::8FC498A953A183E1FE81A183AE59047435BB9B33D657C625FAB03D38BE19F92E __StaticArrayInitTypeSizeU3D76_t6572A863E37652A3D016260FBD2285807BDD3823 ___8FC498A953A183E1FE81A183AE59047435BB9B33D657C625FAB03D38BE19F92E_164; // /__StaticArrayInitTypeSize=1024 ::910514B7D874CD3C180F8F1F94486233CCF5BB70A7C24F815644F5CD5A02F3AB __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___910514B7D874CD3C180F8F1F94486233CCF5BB70A7C24F815644F5CD5A02F3AB_165; // /__StaticArrayInitTypeSize=256 ::93631B0726F6FE6629DAA743EE51B49F4477ED07391B68EEEA0672A4A90018AA __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___93631B0726F6FE6629DAA743EE51B49F4477ED07391B68EEEA0672A4A90018AA_166; // /__StaticArrayInitTypeSize=120 ::9476220840D3CE82203B4A722E278773B1DA458A22F49FCB9FC45B851DF7D503 __StaticArrayInitTypeSizeU3D120_tD78937C26C99B5FDF514E7F2EB4F8F2367B4C05A ___9476220840D3CE82203B4A722E278773B1DA458A22F49FCB9FC45B851DF7D503_167; // /__StaticArrayInitTypeSize=12 ::960F02F165C0EF9AC4C160FC98BE9273C245853BA32663BB1B6F1588077F95F4 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___960F02F165C0EF9AC4C160FC98BE9273C245853BA32663BB1B6F1588077F95F4_168; // /__StaticArrayInitTypeSize=20 ::9642574237E8981F70B1583D403A33EB8B583E5EA5DD61B9468AD47874A90296 __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 ___9642574237E8981F70B1583D403A33EB8B583E5EA5DD61B9468AD47874A90296_169; // /__StaticArrayInitTypeSize=40 ::96883F56416393F42C830BCD6033BE079690C482BC73119EBBE5DC98834BACBF __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F ___96883F56416393F42C830BCD6033BE079690C482BC73119EBBE5DC98834BACBF_170; // /__StaticArrayInitTypeSize=20 ::96CC5BD90B96CA8BCD838F7ABD590F9979E8C636016554F8431A696204812853 __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 ___96CC5BD90B96CA8BCD838F7ABD590F9979E8C636016554F8431A696204812853_171; // /__StaticArrayInitTypeSize=64 ::971488BE36A194DB27CE385237DEA12A31333F2FBD2BB3B60701BE542B27AAE2 __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___971488BE36A194DB27CE385237DEA12A31333F2FBD2BB3B60701BE542B27AAE2_172; // /__StaticArrayInitTypeSize=12 ::97467041703B2DF5571DCACC6A702C0C6DE68CE9A9470AA240F57D69C09AF7D3 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___97467041703B2DF5571DCACC6A702C0C6DE68CE9A9470AA240F57D69C09AF7D3_173; // /__StaticArrayInitTypeSize=1024 ::97C49ABA628782D4FE08840F38539E305C52D0A9C0E0882E77C23DECAB6BDBA6 __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___97C49ABA628782D4FE08840F38539E305C52D0A9C0E0882E77C23DECAB6BDBA6_174; // /__StaticArrayInitTypeSize=40 ::97CAAC7D5BE7722352C1AB556BFE01D3F3CCA0F50B5A648195D6415006620C8F __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F ___97CAAC7D5BE7722352C1AB556BFE01D3F3CCA0F50B5A648195D6415006620C8F_175; // /__StaticArrayInitTypeSize=256 ::9829726FEA4FBE8836ADA2143950510D3C214E70A13B9BF48009D97CD8485670 __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___9829726FEA4FBE8836ADA2143950510D3C214E70A13B9BF48009D97CD8485670_176; // /__StaticArrayInitTypeSize=1024 ::99010FBF800B50867080A66CB97A60E8D7B61251655C9E945DC0505EEB70AC95 __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___99010FBF800B50867080A66CB97A60E8D7B61251655C9E945DC0505EEB70AC95_177; // /__StaticArrayInitTypeSize=256 ::99FD541BFD4CF8DD3C18069CA1D5F4B622333DDBA412F00D5A6B642626034EDF __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___99FD541BFD4CF8DD3C18069CA1D5F4B622333DDBA412F00D5A6B642626034EDF_178; // /__StaticArrayInitTypeSize=512 ::9AC0C32A73444A448170AE1EFE7F69A0D3A7F6E1335FA0E112D9F96EB7EE3CC7 __StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE ___9AC0C32A73444A448170AE1EFE7F69A0D3A7F6E1335FA0E112D9F96EB7EE3CC7_179; // /__StaticArrayInitTypeSize=32 ::9B29692916637801E748ABDF9CE9D3A8AED3F375C84C7346C11C2BB150BD720B __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F ___9B29692916637801E748ABDF9CE9D3A8AED3F375C84C7346C11C2BB150BD720B_180; // /__StaticArrayInitTypeSize=1024 ::9C28EF1A620E00413BBFC7E6ED40092033A3C250583DD7FAD355D2A306A7427B __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___9C28EF1A620E00413BBFC7E6ED40092033A3C250583DD7FAD355D2A306A7427B_181; // /__StaticArrayInitTypeSize=32 ::9CB8BF99E695FF4E0E3E01770F3E96060FC79466F1325C60B375349C591ADF02 __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F ___9CB8BF99E695FF4E0E3E01770F3E96060FC79466F1325C60B375349C591ADF02_182; // /__StaticArrayInitTypeSize=48 ::9CCC11CED0AD12118416B3C3C73453E6480B671C0EF2F753B6900DA2060F5B44 __StaticArrayInitTypeSizeU3D48_tFD8B246DD801288DF862F996D7F0915222433AD7 ___9CCC11CED0AD12118416B3C3C73453E6480B671C0EF2F753B6900DA2060F5B44_183; // /__StaticArrayInitTypeSize=12 ::9CFF23020B5A7E24467474237978D4CB52A601FBC0B3E504B9ABC64C062A499C __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___9CFF23020B5A7E24467474237978D4CB52A601FBC0B3E504B9ABC64C062A499C_184; // /__StaticArrayInitTypeSize=256 ::9DA5D1DADE776A467199AC96E9412AD7A5CA1E62BCDAC527079912B1185A5C63 __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___9DA5D1DADE776A467199AC96E9412AD7A5CA1E62BCDAC527079912B1185A5C63_185; // /__StaticArrayInitTypeSize=12 ::9DA6DC3BEB35D0E411A5D1E407E011542CC032FD6BD76CFFEB5EF327331840FD __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___9DA6DC3BEB35D0E411A5D1E407E011542CC032FD6BD76CFFEB5EF327331840FD_186; // /__StaticArrayInitTypeSize=28 ::9DC840E2F2B5B0E9B3B12C6585295C61986721911DA7AE18C9B18EFF2F01ABE5 __StaticArrayInitTypeSizeU3D28_tB9DE54DF41ABC27805509271A10177513906BF30 ___9DC840E2F2B5B0E9B3B12C6585295C61986721911DA7AE18C9B18EFF2F01ABE5_187; // /__StaticArrayInitTypeSize=12 ::9DDE3528C5CCCCD4D7C730403ABE54766C6645E371ED7ACB70584C320D87F670 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___9DDE3528C5CCCCD4D7C730403ABE54766C6645E371ED7ACB70584C320D87F670_188; // /__StaticArrayInitTypeSize=32 ::9EF35AA995725D55C515A807B1D2BE31B36269235146245330CFB2683FA9A840 __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F ___9EF35AA995725D55C515A807B1D2BE31B36269235146245330CFB2683FA9A840_189; // /__StaticArrayInitTypeSize=16 ::9F9F5111F7B27A781F1F1DDDE5EBC2DD2B796BFC7365C9C28B548E564176929F __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 ___9F9F5111F7B27A781F1F1DDDE5EBC2DD2B796BFC7365C9C28B548E564176929F_190; // /__StaticArrayInitTypeSize=32 ::A08110AAECF4B88CA5A7F070B68E448ED895A5DE752B84C57651DA54D9BB5814 __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F ___A08110AAECF4B88CA5A7F070B68E448ED895A5DE752B84C57651DA54D9BB5814_191; // /__StaticArrayInitTypeSize=64 ::A1486177999A77F2FD76EAB02D2517803BFF5B0C5A01CFB95B3F1DA7B7D6DCE8 __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___A1486177999A77F2FD76EAB02D2517803BFF5B0C5A01CFB95B3F1DA7B7D6DCE8_192; // /__StaticArrayInitTypeSize=64 ::A39EF033189E647DDABF6324B79FCD143D3FD7DFF7B247086B02EC33B9E3B15E __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___A39EF033189E647DDABF6324B79FCD143D3FD7DFF7B247086B02EC33B9E3B15E_193; // /__StaticArrayInitTypeSize=12 ::A4241EDCB474331DF94C96B4F24A3A8773452488FD0458F8C0C30F7C24B89E07 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___A4241EDCB474331DF94C96B4F24A3A8773452488FD0458F8C0C30F7C24B89E07_194; // /__StaticArrayInitTypeSize=38 ::A45AA8042E89D23F821D2E22C9EBAFCEC4D3B1291072EA6A49D9D8A490839689 __StaticArrayInitTypeSizeU3D38_tA06FFB58ABD95EAC48139C4ABFED36B1C69D0B92 ___A45AA8042E89D23F821D2E22C9EBAFCEC4D3B1291072EA6A49D9D8A490839689_195; // /__StaticArrayInitTypeSize=128 ::A589B8F1C215FA773BA2724EB825E8B2D1792FB955349574454E18C63537F2A6 __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C ___A589B8F1C215FA773BA2724EB825E8B2D1792FB955349574454E18C63537F2A6_196; // /__StaticArrayInitTypeSize=64 ::A5A95A17B27BD47489B7BEB4A8AA145D08C838C183CD5A77A1A5EFD96AA3AB99 __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___A5A95A17B27BD47489B7BEB4A8AA145D08C838C183CD5A77A1A5EFD96AA3AB99_197; // /__StaticArrayInitTypeSize=12 ::A719D1E9DB9C1628AF05DD49B4AA5D095CF0AD06D01C396B1777588A04D9D13E __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___A719D1E9DB9C1628AF05DD49B4AA5D095CF0AD06D01C396B1777588A04D9D13E_198; // /__StaticArrayInitTypeSize=16 ::A80010A555E14F5B5B3D967E0F1621742AC2048F40EBF73EB76AD8991448EE21 __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 ___A80010A555E14F5B5B3D967E0F1621742AC2048F40EBF73EB76AD8991448EE21_199; // /__StaticArrayInitTypeSize=12 ::A935391692FCA9A4CF6CE823B9DBED3DB708352BB4ACEDDA9EADCA78ADD23DB7 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___A935391692FCA9A4CF6CE823B9DBED3DB708352BB4ACEDDA9EADCA78ADD23DB7_200; // System.Int32 ::A9DD1527A5845A7B2E82F3427251AD622D570D0B8CDA4A0AF9644EB34E69B2FC int32_t ___A9DD1527A5845A7B2E82F3427251AD622D570D0B8CDA4A0AF9644EB34E69B2FC_201; // /__StaticArrayInitTypeSize=1024 ::AA5D3053E53FEC67956EC1D2AA6F57CC52342FFEA91E9B7BEAF9ED8E6FCEEC23 __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___AA5D3053E53FEC67956EC1D2AA6F57CC52342FFEA91E9B7BEAF9ED8E6FCEEC23_202; // /__StaticArrayInitTypeSize=56 ::AB3F6EE9927AC1C89E7F3D250F8DAC9A070249930D4A758B98F4D5B9A8E202B3 __StaticArrayInitTypeSizeU3D56_tEBF9CCD8C2A1E8B12AE6EDE1B31598793DD01186 ___AB3F6EE9927AC1C89E7F3D250F8DAC9A070249930D4A758B98F4D5B9A8E202B3_203; // /__StaticArrayInitTypeSize=1024 ::AB60EEBC1B8BF85AD5AF219745EEA4317E0C780D22675F7A33A0929A34D17DE5 __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___AB60EEBC1B8BF85AD5AF219745EEA4317E0C780D22675F7A33A0929A34D17DE5_204; // /__StaticArrayInitTypeSize=2048 ::AC7FC16C704375F0F1DB433E70C6C2B90B1D797B17806DD74E7664CAD8BFA778 __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E ___AC7FC16C704375F0F1DB433E70C6C2B90B1D797B17806DD74E7664CAD8BFA778_205; // /__StaticArrayInitTypeSize=12 ::AD220A499D7A196B0FE1E8BCDAA020369A8BA1C4CF21B15A3E21935ED7B09D54 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___AD220A499D7A196B0FE1E8BCDAA020369A8BA1C4CF21B15A3E21935ED7B09D54_206; // /__StaticArrayInitTypeSize=24 ::ADA8FCF87AF641D309489525EC896153F79D2AFEA9622C0BDCEDB7F8EAADD77F __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 ___ADA8FCF87AF641D309489525EC896153F79D2AFEA9622C0BDCEDB7F8EAADD77F_207; // /__StaticArrayInitTypeSize=32 ::AF0312129020B258B5B582D3F8EA8A3DAB35467AE93C8C6DBE5D6681CCD7D489 __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F ___AF0312129020B258B5B582D3F8EA8A3DAB35467AE93C8C6DBE5D6681CCD7D489_208; // /__StaticArrayInitTypeSize=40 ::B09C22565E577648AD57A0C5D1F44C38D4C01E2BF7727269A1E20A3717CC77D0 __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F ___B09C22565E577648AD57A0C5D1F44C38D4C01E2BF7727269A1E20A3717CC77D0_209; // /__StaticArrayInitTypeSize=12 ::B17AF625BB8EA7C85766DBFB60A73BAE2A82560C68B4F03D08B576CD43E911DA __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___B17AF625BB8EA7C85766DBFB60A73BAE2A82560C68B4F03D08B576CD43E911DA_210; // /__StaticArrayInitTypeSize=16 ::B1FFCD775449513A059F2F3A2DF44C39E6542C6474D6BAE3DC3FA1BC256255F0 __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 ___B1FFCD775449513A059F2F3A2DF44C39E6542C6474D6BAE3DC3FA1BC256255F0_211; // /__StaticArrayInitTypeSize=120 ::B23D510F520CB4BA8AFA847F8A40E757C40CB6A55B237EFA1AC6D3984911B114 __StaticArrayInitTypeSizeU3D120_tD78937C26C99B5FDF514E7F2EB4F8F2367B4C05A ___B23D510F520CB4BA8AFA847F8A40E757C40CB6A55B237EFA1AC6D3984911B114_212; // /__StaticArrayInitTypeSize=12 ::B257E85A5D3CAB5E738D5A0FD1A7AE96624BFE92CB7915726CBBE1518C3225CF __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___B257E85A5D3CAB5E738D5A0FD1A7AE96624BFE92CB7915726CBBE1518C3225CF_213; // /__StaticArrayInitTypeSize=12 ::B2A10F44FFEE5755DDFA6587F62D7F83F24AF24429D3ACA46E56F3F295251DEB __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___B2A10F44FFEE5755DDFA6587F62D7F83F24AF24429D3ACA46E56F3F295251DEB_214; // /__StaticArrayInitTypeSize=64 ::B3985439AEF8A4DF51A3369D7C0211EEF12CB0E510F6630E110C6DCC10B11A8E __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___B3985439AEF8A4DF51A3369D7C0211EEF12CB0E510F6630E110C6DCC10B11A8E_215; // /__StaticArrayInitTypeSize=12 ::B48C3FCBDCCF3473EF494DC9D3E37B24CF9202AB511EEEB8FCBB48B626340059 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___B48C3FCBDCCF3473EF494DC9D3E37B24CF9202AB511EEEB8FCBB48B626340059_216; // /__StaticArrayInitTypeSize=24 ::B57A705E01AAAEA098AD619DAA1A7220B6AB16C81F633CD5F40116160334CD05 __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 ___B57A705E01AAAEA098AD619DAA1A7220B6AB16C81F633CD5F40116160334CD05_217; // /__StaticArrayInitTypeSize=20 ::B6338EE68F3FD438E03D596B6D76554714958953358DF7320F5073C3CB779758 __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 ___B6338EE68F3FD438E03D596B6D76554714958953358DF7320F5073C3CB779758_218; // /__StaticArrayInitTypeSize=256 ::B67F32BB12BAA41BEAF505F53EECD4F1409EF3E782F8CD077B511553999CE297 __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___B67F32BB12BAA41BEAF505F53EECD4F1409EF3E782F8CD077B511553999CE297_219; // /__StaticArrayInitTypeSize=12 ::B68ACFAD2A3D93FE2B8963E29978E6D3FADFFF5E7FE6C13590E8888CCA7AD7DD __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___B68ACFAD2A3D93FE2B8963E29978E6D3FADFFF5E7FE6C13590E8888CCA7AD7DD_220; // /__StaticArrayInitTypeSize=36 ::B698262446F5CFFF6CD492B8DBB1298BC61F0135EEE69366BD94E81ADE1D5C5A __StaticArrayInitTypeSizeU3D36_t5A0F5FAC8609C11AC407745154F17247010BD4A1 ___B698262446F5CFFF6CD492B8DBB1298BC61F0135EEE69366BD94E81ADE1D5C5A_221; // /__StaticArrayInitTypeSize=36 ::B6FF5DB8C0FA699CD97E8EDF68219F0D1D9E509B4911710791D74AD7DF2DA1AD __StaticArrayInitTypeSizeU3D36_t5A0F5FAC8609C11AC407745154F17247010BD4A1 ___B6FF5DB8C0FA699CD97E8EDF68219F0D1D9E509B4911710791D74AD7DF2DA1AD_222; // /__StaticArrayInitTypeSize=16 ::B77E3D4019880A0C0F03E4214418983FD00C0107BB2632899FE6C3230F97B82C __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 ___B77E3D4019880A0C0F03E4214418983FD00C0107BB2632899FE6C3230F97B82C_223; // /__StaticArrayInitTypeSize=12 ::B7A918F6F138CA8137025633559198B529D28CCEC5A51B005376CC69A5B83D85 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___B7A918F6F138CA8137025633559198B529D28CCEC5A51B005376CC69A5B83D85_224; // System.Int32 ::B8A899AEBE8BCC739D363C17DD8CA885653263A59843BF7B7C85DE4DB10A9C92 int32_t ___B8A899AEBE8BCC739D363C17DD8CA885653263A59843BF7B7C85DE4DB10A9C92_225; // /__StaticArrayInitTypeSize=64 ::B93B37392B6BF36325C2B8E6047E7EF31B87C67E59B16D30A60CAF2E18D9C73C __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___B93B37392B6BF36325C2B8E6047E7EF31B87C67E59B16D30A60CAF2E18D9C73C_226; // /__StaticArrayInitTypeSize=256 ::B9D4AF390AFC6A0F149B843D651CFEBC1C4EC496A0263B72207836F9C525E1C4 __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___B9D4AF390AFC6A0F149B843D651CFEBC1C4EC496A0263B72207836F9C525E1C4_227; // /__StaticArrayInitTypeSize=40 ::BABB01CD1E2AD140F7D2AF35515DA38E8936F0BA0298BCF0245EB5692A3F69CC __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F ___BABB01CD1E2AD140F7D2AF35515DA38E8936F0BA0298BCF0245EB5692A3F69CC_228; // /__StaticArrayInitTypeSize=1024 ::BB288FA00D4BBE2546E0D29F7D8BC6AF483CD4275D692B451B2E39A404E33EBF __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___BB288FA00D4BBE2546E0D29F7D8BC6AF483CD4275D692B451B2E39A404E33EBF_229; // /__StaticArrayInitTypeSize=12 ::BD01644841E6B289961C01E9D8319807BB25F791DB6A990F60D44DA36533D5AD __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___BD01644841E6B289961C01E9D8319807BB25F791DB6A990F60D44DA36533D5AD_230; // /__StaticArrayInitTypeSize=32 ::BD6174A7C16E1AF07272966A9C071C8A3CF16B2726C50D672A09F60636B08901 __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F ___BD6174A7C16E1AF07272966A9C071C8A3CF16B2726C50D672A09F60636B08901_231; // System.Int32 ::BDB11C99D6418180156EEA47B9EB755F8736055603C19E57F9DFB4CDFFCF8C3A int32_t ___BDB11C99D6418180156EEA47B9EB755F8736055603C19E57F9DFB4CDFFCF8C3A_232; // /__StaticArrayInitTypeSize=96 ::BDB6BB299E50984399E0FD8F6BA60FC85EF8CAF6AD5154D53E6DAC34E2E0B381 __StaticArrayInitTypeSizeU3D96_tADB23F3DA94DC89452F2BC0884B51C90615CDCD5 ___BDB6BB299E50984399E0FD8F6BA60FC85EF8CAF6AD5154D53E6DAC34E2E0B381_233; // /__StaticArrayInitTypeSize=1024 ::BDBC02F2D0A2A74757905F71BEC91DE96906C2FB70018166887D85BEB84B7957 __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___BDBC02F2D0A2A74757905F71BEC91DE96906C2FB70018166887D85BEB84B7957_234; // /__StaticArrayInitTypeSize=12 ::BEDA989D5939125AA1831BFE35ED2E4F0F05DD63851049C646ACE173A2D0827C __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___BEDA989D5939125AA1831BFE35ED2E4F0F05DD63851049C646ACE173A2D0827C_235; // /__StaticArrayInitTypeSize=12 ::BF3DB37CB55FF90EEE410403506E7AFB17B3B6ED163AEC657F4E4F47532D1E85 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___BF3DB37CB55FF90EEE410403506E7AFB17B3B6ED163AEC657F4E4F47532D1E85_236; // /__StaticArrayInitTypeSize=192 ::C0BCAD52BB24771C2430DFC75321628F5503FDDC5A0E05E93F3DD624A60B10BD __StaticArrayInitTypeSizeU3D192_tC7D23024B2AD7A4D301599706A49B8C87DAA353D ___C0BCAD52BB24771C2430DFC75321628F5503FDDC5A0E05E93F3DD624A60B10BD_237; // /__StaticArrayInitTypeSize=20 ::C0EE00302C997F25F7963B42E53EA31C48A41E1D5D50F1DAC01F6350AE1FF443 __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 ___C0EE00302C997F25F7963B42E53EA31C48A41E1D5D50F1DAC01F6350AE1FF443_238; // /__StaticArrayInitTypeSize=76 ::C133E473E5E653C5C4AEDB8BCC1C1A3A44D384FC0B6C0FCF04672B1B325EC01B __StaticArrayInitTypeSizeU3D76_t6572A863E37652A3D016260FBD2285807BDD3823 ___C133E473E5E653C5C4AEDB8BCC1C1A3A44D384FC0B6C0FCF04672B1B325EC01B_239; // /__StaticArrayInitTypeSize=1024 ::C199D37D9A06A0F4C75F70A8ABD3D0C2FAEB17B255174C5E67392D81CF5FF0EC __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___C199D37D9A06A0F4C75F70A8ABD3D0C2FAEB17B255174C5E67392D81CF5FF0EC_240; // /__StaticArrayInitTypeSize=256 ::C2D8E5EED6CBEBD8625FC18F81486A7733C04F9B0129FFBE974C68B90308B4F2 __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___C2D8E5EED6CBEBD8625FC18F81486A7733C04F9B0129FFBE974C68B90308B4F2_241; // /__StaticArrayInitTypeSize=1024 ::C4A6802D24BD0B4979A486C462DA989CD54F8816365BC0635A8A499FF421201C __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___C4A6802D24BD0B4979A486C462DA989CD54F8816365BC0635A8A499FF421201C_242; // /__StaticArrayInitTypeSize=2048 ::C4E613C844059E36B3D4EE786C4236B8E641E7D49F520B003540BB274F7E12F7 __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E ___C4E613C844059E36B3D4EE786C4236B8E641E7D49F520B003540BB274F7E12F7_243; // /__StaticArrayInitTypeSize=32 ::C51FEE572495EE6ED75353FC262F765FF558EED94FCB9EE64987AEE6C8548E12 __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F ___C51FEE572495EE6ED75353FC262F765FF558EED94FCB9EE64987AEE6C8548E12_244; // /__StaticArrayInitTypeSize=12 ::C65D6ACE28C7ABEB56A3809EBDF84987B4FD0B0EB2C34FEA90394A0A5E10DC55 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___C65D6ACE28C7ABEB56A3809EBDF84987B4FD0B0EB2C34FEA90394A0A5E10DC55_245; // System.Int32 ::C71C8ED7041ABE0B7FD161D726857C18705285A9F1B478A006310909B4A6D900 int32_t ___C71C8ED7041ABE0B7FD161D726857C18705285A9F1B478A006310909B4A6D900_246; // /__StaticArrayInitTypeSize=12 ::C7B696E5CE2020FEC8F611D5047339850FECC787C3DBC5D36589354D8ADF98C1 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___C7B696E5CE2020FEC8F611D5047339850FECC787C3DBC5D36589354D8ADF98C1_247; // /__StaticArrayInitTypeSize=112 ::C84227140A8A7787B30DFF8BD5693C19AA5A430C4E89FFD0256D7F77B3FEAD82 __StaticArrayInitTypeSizeU3D112_t366701DE02350ED8C8A65F92A137F54409B95542 ___C84227140A8A7787B30DFF8BD5693C19AA5A430C4E89FFD0256D7F77B3FEAD82_248; // /__StaticArrayInitTypeSize=1024 ::C854B091EA9394BFC39C4324F63BF827E324ABA5F68693B00E4DB8B247ED2023 __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___C854B091EA9394BFC39C4324F63BF827E324ABA5F68693B00E4DB8B247ED2023_249; // /__StaticArrayInitTypeSize=64 ::C90D4186D61A339F3078D8C7A6CBB1F005BFF5039C44C37F526BDCE2E00200BE __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___C90D4186D61A339F3078D8C7A6CBB1F005BFF5039C44C37F526BDCE2E00200BE_250; // /__StaticArrayInitTypeSize=32 ::C9E595B3F656D2DCA3D18330FD3EB05010FD9D445BE304E4FA5F4AB7B335494D __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F ___C9E595B3F656D2DCA3D18330FD3EB05010FD9D445BE304E4FA5F4AB7B335494D_251; // /__StaticArrayInitTypeSize=96 ::CB11E26FF20D3318A5A76F5FC0E725883F81ED29DAD7E32947BA8779AA3DE37F __StaticArrayInitTypeSizeU3D96_tADB23F3DA94DC89452F2BC0884B51C90615CDCD5 ___CB11E26FF20D3318A5A76F5FC0E725883F81ED29DAD7E32947BA8779AA3DE37F_252; // /__StaticArrayInitTypeSize=512 ::CB6DED39AE0C25F0748B553A13DCA00F6B77780B9F34B0B0F4C56BB7BF768C82 __StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE ___CB6DED39AE0C25F0748B553A13DCA00F6B77780B9F34B0B0F4C56BB7BF768C82_253; // /__StaticArrayInitTypeSize=12 ::CC9BD9D64572985ECFB6E2A723B6DD347BB34F5AFECDBFB98444028D2DF4844D __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___CC9BD9D64572985ECFB6E2A723B6DD347BB34F5AFECDBFB98444028D2DF4844D_254; // /__StaticArrayInitTypeSize=2048 ::CCD83CF06E3CE2D4A938C42BAEA101B30335EAF483F59E5EDCB41DF7C4807E1B __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E ___CCD83CF06E3CE2D4A938C42BAEA101B30335EAF483F59E5EDCB41DF7C4807E1B_255; // /__StaticArrayInitTypeSize=32 ::CDAEE7E50DA05783C75D649650C5CDC6ABB06447D6A9CFBB2E7212421547E53B __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F ___CDAEE7E50DA05783C75D649650C5CDC6ABB06447D6A9CFBB2E7212421547E53B_256; // /__StaticArrayInitTypeSize=68 ::CF64D219C0BA56CECE4E41E0C8BF3AF538F4510FA9A2B00F38DA09E548270E5C __StaticArrayInitTypeSizeU3D68_tE431405C001EFCAA99F9D46276BFEAF7F5AF4E0F ___CF64D219C0BA56CECE4E41E0C8BF3AF538F4510FA9A2B00F38DA09E548270E5C_257; // /__StaticArrayInitTypeSize=32 ::D15388770BF0AB6F544906F0A1A3375BE05BB7FEB2B215CED8A8E41C42972549 __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F ___D15388770BF0AB6F544906F0A1A3375BE05BB7FEB2B215CED8A8E41C42972549_258; // /__StaticArrayInitTypeSize=12 ::D1FAE5443A715D6F96387473C649F557670B8A92E175272491DFC646754F4A9D __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___D1FAE5443A715D6F96387473C649F557670B8A92E175272491DFC646754F4A9D_259; // /__StaticArrayInitTypeSize=2048 ::D38868B99B6C1AB9F2E65E75D07BA90CAF6DA7F4D74F9142A44413647473B362 __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E ___D38868B99B6C1AB9F2E65E75D07BA90CAF6DA7F4D74F9142A44413647473B362_260; // /__StaticArrayInitTypeSize=12 ::D3ADE9315DD51AE00C4C2D80ED119F3D1B1743E64ADC7FDDDE505286274C877D __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___D3ADE9315DD51AE00C4C2D80ED119F3D1B1743E64ADC7FDDDE505286274C877D_261; // /__StaticArrayInitTypeSize=40 ::D6380FB2FF2DD88C9290D88B81E78BCA13AAAB4BE827B103062AFBB1085B0793 __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F ___D6380FB2FF2DD88C9290D88B81E78BCA13AAAB4BE827B103062AFBB1085B0793_262; // /__StaticArrayInitTypeSize=12 ::D916EBA7A5A5D84BB85D26EE65A08CC18219FACEB615519209ABB469C0B35D32 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___D916EBA7A5A5D84BB85D26EE65A08CC18219FACEB615519209ABB469C0B35D32_263; // /__StaticArrayInitTypeSize=56 ::D9388FECE7A168D1EFFA85FA9C8DA1AEED48DDCE2E3799E07F41A9B60E389722 __StaticArrayInitTypeSizeU3D56_tEBF9CCD8C2A1E8B12AE6EDE1B31598793DD01186 ___D9388FECE7A168D1EFFA85FA9C8DA1AEED48DDCE2E3799E07F41A9B60E389722_264; // /__StaticArrayInitTypeSize=12 ::DB1CCE19AFD5123D31DCDAC6656A6DB5AF929CA39192511B8C042DD0513E7497 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___DB1CCE19AFD5123D31DCDAC6656A6DB5AF929CA39192511B8C042DD0513E7497_265; // /__StaticArrayInitTypeSize=64 ::DC196B5ACC67550E50DDC963D9192AEB816537E6A74CFB7DFE3A0453E5F4FB82 __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___DC196B5ACC67550E50DDC963D9192AEB816537E6A74CFB7DFE3A0453E5F4FB82_266; // /__StaticArrayInitTypeSize=24 ::DC1CDED6204DF70AC5C64ED2C9958FE75479400FE1E1A80F77C3A5BC6FFAF0A5 __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 ___DC1CDED6204DF70AC5C64ED2C9958FE75479400FE1E1A80F77C3A5BC6FFAF0A5_267; // /__StaticArrayInitTypeSize=64 ::DD2B2ACED61DA9A12AEE4F581C0D33D6D76A9722CDC6355B23FB5DF6B2032B18 __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___DD2B2ACED61DA9A12AEE4F581C0D33D6D76A9722CDC6355B23FB5DF6B2032B18_268; // /__StaticArrayInitTypeSize=12 ::DDA4EDB734C11C20B2D8A7BE67E2BB03E2F67B7928B0DAEB15EBF2EDD9A5150B __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___DDA4EDB734C11C20B2D8A7BE67E2BB03E2F67B7928B0DAEB15EBF2EDD9A5150B_269; // System.Int32 ::DE422551A0E0EF2710E43824DEFE8B2204F5FB76F83D7A496BA3F8D7D66569EB int32_t ___DE422551A0E0EF2710E43824DEFE8B2204F5FB76F83D7A496BA3F8D7D66569EB_270; // /__StaticArrayInitTypeSize=64 ::DE56C9263420A7B28A6286EB62AFBE2C1D5164698C518792FD8CEAAF2CB2CD03 __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___DE56C9263420A7B28A6286EB62AFBE2C1D5164698C518792FD8CEAAF2CB2CD03_271; // /__StaticArrayInitTypeSize=128 ::DE65050FB26A30C376E77EC7E5BE136721540CCE3760EAA1E14854746CADF7E8 __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C ___DE65050FB26A30C376E77EC7E5BE136721540CCE3760EAA1E14854746CADF7E8_272; // /__StaticArrayInitTypeSize=12 ::DE9FD94010C5C932FEB066B288CE65EBEB81EDE0E87B31B900BF855BFA2A2B5D __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___DE9FD94010C5C932FEB066B288CE65EBEB81EDE0E87B31B900BF855BFA2A2B5D_273; // /__StaticArrayInitTypeSize=4096 ::E0750D3E8FE41BBC5838F6D34CF434A4C764652CDC4BDC7DE6CE8393DE3C53A8 __StaticArrayInitTypeSizeU3D4096_t194B799136AD31D58B9179637D7756F00A1E35D5 ___E0750D3E8FE41BBC5838F6D34CF434A4C764652CDC4BDC7DE6CE8393DE3C53A8_274; // /__StaticArrayInitTypeSize=12 ::E09120C0E7B92A532558D22D44D52452DFE460D6205D1009963B69AABD0F8185 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___E09120C0E7B92A532558D22D44D52452DFE460D6205D1009963B69AABD0F8185_275; // System.Int64 ::E0E3CF58E8EBD3158219B64F434304727B1C71307D99BC27D059966A854CB749 int64_t ___E0E3CF58E8EBD3158219B64F434304727B1C71307D99BC27D059966A854CB749_276; // /__StaticArrayInitTypeSize=64 ::E27F6E9719BC23F7138A27009F35243C6F94F6530A37FC26DE498AB64784DDDA __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___E27F6E9719BC23F7138A27009F35243C6F94F6530A37FC26DE498AB64784DDDA_277; // /__StaticArrayInitTypeSize=16 ::E2D43ACAA664F37C9C7876F34F62AAC2D9B43D18817E629D34861AAB1B13388A __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 ___E2D43ACAA664F37C9C7876F34F62AAC2D9B43D18817E629D34861AAB1B13388A_278; // /__StaticArrayInitTypeSize=12 ::E3668879E09A70694ED6FEE919E303D7EA1266D783955D4DEEDC99CCC5AA6A8D __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___E3668879E09A70694ED6FEE919E303D7EA1266D783955D4DEEDC99CCC5AA6A8D_279; // /__StaticArrayInitTypeSize=64 ::E3B4E767F318263A8E7A64E1D61F6D3368A3B59AF34CBB94E657E7FCC58F5BA5 __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___E3B4E767F318263A8E7A64E1D61F6D3368A3B59AF34CBB94E657E7FCC58F5BA5_280; // /__StaticArrayInitTypeSize=2048 ::E45C3F86EC68FBD407D74FAEC9A50DFBAA5589A6FB63CCC5F7AA901D2ACA48B6 __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E ___E45C3F86EC68FBD407D74FAEC9A50DFBAA5589A6FB63CCC5F7AA901D2ACA48B6_281; // /__StaticArrayInitTypeSize=2048 ::E5325952F9FF2214CCE24E320F2BCD6A71C6EB4127F6069352CE065883AE80D0 __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E ___E5325952F9FF2214CCE24E320F2BCD6A71C6EB4127F6069352CE065883AE80D0_282; // /__StaticArrayInitTypeSize=256 ::E75B7154F674F25D54E89CB7D91F35CC111C8A67EE585938E07D12CB4761637F __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___E75B7154F674F25D54E89CB7D91F35CC111C8A67EE585938E07D12CB4761637F_283; // /__StaticArrayInitTypeSize=28 ::E7C6C4296C6C2B00D1062AA69054CAB58A57C3ACCE5ECFA4084E7E94CF805F87 __StaticArrayInitTypeSizeU3D28_tB9DE54DF41ABC27805509271A10177513906BF30 ___E7C6C4296C6C2B00D1062AA69054CAB58A57C3ACCE5ECFA4084E7E94CF805F87_284; // /__StaticArrayInitTypeSize=12 ::E87A3B2C4C5D7247B7E149126C3503D3AE2878A02155EA6153E057FE35D9656C __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___E87A3B2C4C5D7247B7E149126C3503D3AE2878A02155EA6153E057FE35D9656C_285; // /__StaticArrayInitTypeSize=5 ::E8A5F21A65A81B3BA202AE5DC3791797B0E7271A4923BCD6B124CA062D886C5A __StaticArrayInitTypeSizeU3D5_t4860E7B6EA3ACC966F04D8598CE9F606264B9EE9 ___E8A5F21A65A81B3BA202AE5DC3791797B0E7271A4923BCD6B124CA062D886C5A_286; // /__StaticArrayInitTypeSize=1024 ::E8D46701532BBEB9F3FF8A63C0D74D8C417C782DEE2C085A6D940A8B5B38DA18 __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___E8D46701532BBEB9F3FF8A63C0D74D8C417C782DEE2C085A6D940A8B5B38DA18_287; // /__StaticArrayInitTypeSize=12 ::EA648521F3A332BAB2FB6494AA2262B4C66E9EC54FBC6380D1BEADFBA8F7D9CD __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___EA648521F3A332BAB2FB6494AA2262B4C66E9EC54FBC6380D1BEADFBA8F7D9CD_288; // System.Int32 ::EB6B70CC36DAA15B37C45E6D0AE3CB7E8A9B1BA69E6BC44762F886192C725A5A int32_t ___EB6B70CC36DAA15B37C45E6D0AE3CB7E8A9B1BA69E6BC44762F886192C725A5A_289; // /__StaticArrayInitTypeSize=1024 ::EC103A6146A987638687685583404F2C172DE3138C47B820021673AD5DA00660 __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___EC103A6146A987638687685583404F2C172DE3138C47B820021673AD5DA00660_290; // /__StaticArrayInitTypeSize=40 ::ECA151F23D399F9FE976255B143D0691D0BE043E033B0E2814C0A547336D6545 __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F ___ECA151F23D399F9FE976255B143D0691D0BE043E033B0E2814C0A547336D6545_291; // /__StaticArrayInitTypeSize=1024 ::EE83363C7267157642FFDAC294D9028B3BCD964F62596706A5A94C92C8FCDE6C __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___EE83363C7267157642FFDAC294D9028B3BCD964F62596706A5A94C92C8FCDE6C_292; // /__StaticArrayInitTypeSize=256 ::EF39C5A882F9477B2A250BA257247825CEB07FC53C3C984385F2C2E5F8222431 __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___EF39C5A882F9477B2A250BA257247825CEB07FC53C3C984385F2C2E5F8222431_293; // /__StaticArrayInitTypeSize=16 ::EF7F3D1F9F5FC7985E4AE3D48BF986867BA544C1D2FEA6A7745FEA4A2FCAB381 __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 ___EF7F3D1F9F5FC7985E4AE3D48BF986867BA544C1D2FEA6A7745FEA4A2FCAB381_294; // /__StaticArrayInitTypeSize=12 ::F2CD85BDEF1E84E95EA92E2B686CEEC9FC518118A4342FAB46BECECE253D71F4 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___F2CD85BDEF1E84E95EA92E2B686CEEC9FC518118A4342FAB46BECECE253D71F4_295; // /__StaticArrayInitTypeSize=404 ::F30ADE318602BE9DC38E68CA7E1FE366A1F173330197F71AFD9D555F765D47A7 __StaticArrayInitTypeSizeU3D404_t02BA5FC25140F7864B3B45D3DD9D4D8B9E93A333 ___F30ADE318602BE9DC38E68CA7E1FE366A1F173330197F71AFD9D555F765D47A7_296; // /__StaticArrayInitTypeSize=64 ::F509AE84659919EA56BFF8D829ED41E971314D3D46ED9B0F8F5670D72EB1688B __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___F509AE84659919EA56BFF8D829ED41E971314D3D46ED9B0F8F5670D72EB1688B_297; // /__StaticArrayInitTypeSize=116 ::F8D7861760C88CC514F66095AF0AED47ECBA063ADB65F47125ED07BCC2CF9842 __StaticArrayInitTypeSizeU3D116_t9020B92E8453BBAFE2519A469C0893F630E8D2C9 ___F8D7861760C88CC514F66095AF0AED47ECBA063ADB65F47125ED07BCC2CF9842_298; // /__StaticArrayInitTypeSize=192 ::F8E6964ADFFC257265537256D21E93496A17B9271DC5D64F40869EEEAAFF6FBB __StaticArrayInitTypeSizeU3D192_tC7D23024B2AD7A4D301599706A49B8C87DAA353D ___F8E6964ADFFC257265537256D21E93496A17B9271DC5D64F40869EEEAAFF6FBB_299; // /__StaticArrayInitTypeSize=256 ::F915BC5619C5EB2C4D315B5409BC531F55FA3E3A6167F57B7A4F5F7F9C5F022B __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___F915BC5619C5EB2C4D315B5409BC531F55FA3E3A6167F57B7A4F5F7F9C5F022B_300; // /__StaticArrayInitTypeSize=64 ::F93A6E9A709B14FD05706C119D157EEE96F24DE3FDFA34F6D0AFF9537DE8ACC0 __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___F93A6E9A709B14FD05706C119D157EEE96F24DE3FDFA34F6D0AFF9537DE8ACC0_301; // /__StaticArrayInitTypeSize=72 ::FA1AD270B23BA640E88EE7F51CC9C0C1A6C6BB1F2B9025682A7D30FB3BDA64F0 __StaticArrayInitTypeSizeU3D72_t2005207C3F6F7C1227A5084885E3320B238A2489 ___FA1AD270B23BA640E88EE7F51CC9C0C1A6C6BB1F2B9025682A7D30FB3BDA64F0_302; // /__StaticArrayInitTypeSize=12 ::FA624E5847BD2E5A00CCA1B3515D315FA5C3450C3E832077935CEBA18E9F5571 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___FA624E5847BD2E5A00CCA1B3515D315FA5C3450C3E832077935CEBA18E9F5571_303; // /__StaticArrayInitTypeSize=32 ::FA902FDBDFBCC8763875D512059F3073294FE8C37A17ED9F7AF4D83791E194BF __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F ___FA902FDBDFBCC8763875D512059F3073294FE8C37A17ED9F7AF4D83791E194BF_304; // /__StaticArrayInitTypeSize=256 ::FA9320F15F87607CD9E1033E6DD907B11EEDF491D7EBBFD29EC8D07E12A822CD __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___FA9320F15F87607CD9E1033E6DD907B11EEDF491D7EBBFD29EC8D07E12A822CD_305; // /__StaticArrayInitTypeSize=16 ::FAA254BE6E65E3D60D934C74D9863DEDABBBB96FD00229D46B6AE6D108392089 __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 ___FAA254BE6E65E3D60D934C74D9863DEDABBBB96FD00229D46B6AE6D108392089_306; // /__StaticArrayInitTypeSize=2048 ::FB7A6532989D730F69E4757D690D25A43E71041FCFF7355747E274F956BB03E9 __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E ___FB7A6532989D730F69E4757D690D25A43E71041FCFF7355747E274F956BB03E9_307; // /__StaticArrayInitTypeSize=12 ::FC03ECB1D62767A5B31230F548FA4D4C02F01E3DA8CA1FC66C7C332EA16BF206 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___FC03ECB1D62767A5B31230F548FA4D4C02F01E3DA8CA1FC66C7C332EA16BF206_308; // /__StaticArrayInitTypeSize=120 ::FC216F5C5AE2947D800794ECD5F752EE8381073C2E5D0D095FDA040F541702F3 __StaticArrayInitTypeSizeU3D120_tD78937C26C99B5FDF514E7F2EB4F8F2367B4C05A ___FC216F5C5AE2947D800794ECD5F752EE8381073C2E5D0D095FDA040F541702F3_309; // /__StaticArrayInitTypeSize=16 ::FD85B0A9251A04B1D271AF14FD041B4606FA95DDB116F92CB14470653A62AD19 __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 ___FD85B0A9251A04B1D271AF14FD041B4606FA95DDB116F92CB14470653A62AD19_310; // /__StaticArrayInitTypeSize=32 ::FF1F6EE5D67458CFAC950F62E93042E21FCB867E2234DCC8721801231064AD40 __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F ___FF1F6EE5D67458CFAC950F62E93042E21FCB867E2234DCC8721801231064AD40_311; // /__StaticArrayInitTypeSize=128 ::FF4D5896EDB9E12991ECB7FA7807EEB0F7ACD30F57ECB63DD9943F5245752A0F __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C ___FF4D5896EDB9E12991ECB7FA7807EEB0F7ACD30F57ECB63DD9943F5245752A0F_312; // /__StaticArrayInitTypeSize=16 ::FFC55B79B9BE7817954A4672A75C8603D1D1FE85A61786D63BD3B0AA239FFA58 __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 ___FFC55B79B9BE7817954A4672A75C8603D1D1FE85A61786D63BD3B0AA239FFA58_313; public: inline static int32_t get_offset_of_U302D050046D7A21C15C1A6D6755439B5EDAD147FABD9152C932359BA3A4E82039_0() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___02D050046D7A21C15C1A6D6755439B5EDAD147FABD9152C932359BA3A4E82039_0)); } inline __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 get_U302D050046D7A21C15C1A6D6755439B5EDAD147FABD9152C932359BA3A4E82039_0() const { return ___02D050046D7A21C15C1A6D6755439B5EDAD147FABD9152C932359BA3A4E82039_0; } inline __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 * get_address_of_U302D050046D7A21C15C1A6D6755439B5EDAD147FABD9152C932359BA3A4E82039_0() { return &___02D050046D7A21C15C1A6D6755439B5EDAD147FABD9152C932359BA3A4E82039_0; } inline void set_U302D050046D7A21C15C1A6D6755439B5EDAD147FABD9152C932359BA3A4E82039_0(__StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 value) { ___02D050046D7A21C15C1A6D6755439B5EDAD147FABD9152C932359BA3A4E82039_0 = value; } inline static int32_t get_offset_of_U3037BE04C4468BC2A186CC905D1F673CDFAAC254CEBEB545465B53F83A97830C5_1() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___037BE04C4468BC2A186CC905D1F673CDFAAC254CEBEB545465B53F83A97830C5_1)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_U3037BE04C4468BC2A186CC905D1F673CDFAAC254CEBEB545465B53F83A97830C5_1() const { return ___037BE04C4468BC2A186CC905D1F673CDFAAC254CEBEB545465B53F83A97830C5_1; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_U3037BE04C4468BC2A186CC905D1F673CDFAAC254CEBEB545465B53F83A97830C5_1() { return &___037BE04C4468BC2A186CC905D1F673CDFAAC254CEBEB545465B53F83A97830C5_1; } inline void set_U3037BE04C4468BC2A186CC905D1F673CDFAAC254CEBEB545465B53F83A97830C5_1(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___037BE04C4468BC2A186CC905D1F673CDFAAC254CEBEB545465B53F83A97830C5_1 = value; } inline static int32_t get_offset_of_U3039058C6F2C0CB492C533B0A4D14EF77CC0F78ABCCCED5287D84A1A2011CFB81_2() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___039058C6F2C0CB492C533B0A4D14EF77CC0F78ABCCCED5287D84A1A2011CFB81_2)); } inline __StaticArrayInitTypeSizeU3D3_t4D94CFD4A1D337F535123BB0BD49F9DDB4392C7F get_U3039058C6F2C0CB492C533B0A4D14EF77CC0F78ABCCCED5287D84A1A2011CFB81_2() const { return ___039058C6F2C0CB492C533B0A4D14EF77CC0F78ABCCCED5287D84A1A2011CFB81_2; } inline __StaticArrayInitTypeSizeU3D3_t4D94CFD4A1D337F535123BB0BD49F9DDB4392C7F * get_address_of_U3039058C6F2C0CB492C533B0A4D14EF77CC0F78ABCCCED5287D84A1A2011CFB81_2() { return &___039058C6F2C0CB492C533B0A4D14EF77CC0F78ABCCCED5287D84A1A2011CFB81_2; } inline void set_U3039058C6F2C0CB492C533B0A4D14EF77CC0F78ABCCCED5287D84A1A2011CFB81_2(__StaticArrayInitTypeSizeU3D3_t4D94CFD4A1D337F535123BB0BD49F9DDB4392C7F value) { ___039058C6F2C0CB492C533B0A4D14EF77CC0F78ABCCCED5287D84A1A2011CFB81_2 = value; } inline static int32_t get_offset_of_U304801C5DAE2B089F05A4334CFE18CCBD987A6EDE98113B9499E8D7054DC38252_3() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___04801C5DAE2B089F05A4334CFE18CCBD987A6EDE98113B9499E8D7054DC38252_3)); } inline __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C get_U304801C5DAE2B089F05A4334CFE18CCBD987A6EDE98113B9499E8D7054DC38252_3() const { return ___04801C5DAE2B089F05A4334CFE18CCBD987A6EDE98113B9499E8D7054DC38252_3; } inline __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C * get_address_of_U304801C5DAE2B089F05A4334CFE18CCBD987A6EDE98113B9499E8D7054DC38252_3() { return &___04801C5DAE2B089F05A4334CFE18CCBD987A6EDE98113B9499E8D7054DC38252_3; } inline void set_U304801C5DAE2B089F05A4334CFE18CCBD987A6EDE98113B9499E8D7054DC38252_3(__StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C value) { ___04801C5DAE2B089F05A4334CFE18CCBD987A6EDE98113B9499E8D7054DC38252_3 = value; } inline static int32_t get_offset_of_U3064CACC4978353DFD6979BF0975E06366B0F3E9C5631CFFF32EC2184BCF492E5_4() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___064CACC4978353DFD6979BF0975E06366B0F3E9C5631CFFF32EC2184BCF492E5_4)); } inline __StaticArrayInitTypeSizeU3D160_t01D8A735071F3884433FD17606956ED602F11B27 get_U3064CACC4978353DFD6979BF0975E06366B0F3E9C5631CFFF32EC2184BCF492E5_4() const { return ___064CACC4978353DFD6979BF0975E06366B0F3E9C5631CFFF32EC2184BCF492E5_4; } inline __StaticArrayInitTypeSizeU3D160_t01D8A735071F3884433FD17606956ED602F11B27 * get_address_of_U3064CACC4978353DFD6979BF0975E06366B0F3E9C5631CFFF32EC2184BCF492E5_4() { return &___064CACC4978353DFD6979BF0975E06366B0F3E9C5631CFFF32EC2184BCF492E5_4; } inline void set_U3064CACC4978353DFD6979BF0975E06366B0F3E9C5631CFFF32EC2184BCF492E5_4(__StaticArrayInitTypeSizeU3D160_t01D8A735071F3884433FD17606956ED602F11B27 value) { ___064CACC4978353DFD6979BF0975E06366B0F3E9C5631CFFF32EC2184BCF492E5_4 = value; } inline static int32_t get_offset_of_U307F8694A8F96DEE5EE4007B7B9102D4969129F0FB6FF3731434ED8CAF3C32D00_5() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___07F8694A8F96DEE5EE4007B7B9102D4969129F0FB6FF3731434ED8CAF3C32D00_5)); } inline __StaticArrayInitTypeSizeU3D68_tE431405C001EFCAA99F9D46276BFEAF7F5AF4E0F get_U307F8694A8F96DEE5EE4007B7B9102D4969129F0FB6FF3731434ED8CAF3C32D00_5() const { return ___07F8694A8F96DEE5EE4007B7B9102D4969129F0FB6FF3731434ED8CAF3C32D00_5; } inline __StaticArrayInitTypeSizeU3D68_tE431405C001EFCAA99F9D46276BFEAF7F5AF4E0F * get_address_of_U307F8694A8F96DEE5EE4007B7B9102D4969129F0FB6FF3731434ED8CAF3C32D00_5() { return &___07F8694A8F96DEE5EE4007B7B9102D4969129F0FB6FF3731434ED8CAF3C32D00_5; } inline void set_U307F8694A8F96DEE5EE4007B7B9102D4969129F0FB6FF3731434ED8CAF3C32D00_5(__StaticArrayInitTypeSizeU3D68_tE431405C001EFCAA99F9D46276BFEAF7F5AF4E0F value) { ___07F8694A8F96DEE5EE4007B7B9102D4969129F0FB6FF3731434ED8CAF3C32D00_5 = value; } inline static int32_t get_offset_of_U307FA6E88C946B2528C09C16C2FB8E9CDA49AFFAFC601774C437FD9F2DF3ECE01_6() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___07FA6E88C946B2528C09C16C2FB8E9CDA49AFFAFC601774C437FD9F2DF3ECE01_6)); } inline __StaticArrayInitTypeSizeU3D56_tEBF9CCD8C2A1E8B12AE6EDE1B31598793DD01186 get_U307FA6E88C946B2528C09C16C2FB8E9CDA49AFFAFC601774C437FD9F2DF3ECE01_6() const { return ___07FA6E88C946B2528C09C16C2FB8E9CDA49AFFAFC601774C437FD9F2DF3ECE01_6; } inline __StaticArrayInitTypeSizeU3D56_tEBF9CCD8C2A1E8B12AE6EDE1B31598793DD01186 * get_address_of_U307FA6E88C946B2528C09C16C2FB8E9CDA49AFFAFC601774C437FD9F2DF3ECE01_6() { return &___07FA6E88C946B2528C09C16C2FB8E9CDA49AFFAFC601774C437FD9F2DF3ECE01_6; } inline void set_U307FA6E88C946B2528C09C16C2FB8E9CDA49AFFAFC601774C437FD9F2DF3ECE01_6(__StaticArrayInitTypeSizeU3D56_tEBF9CCD8C2A1E8B12AE6EDE1B31598793DD01186 value) { ___07FA6E88C946B2528C09C16C2FB8E9CDA49AFFAFC601774C437FD9F2DF3ECE01_6 = value; } inline static int32_t get_offset_of_U308BB5E5D6EAAC1049EDE0893D30ED022B1A4D9B5B48DB414871F51C9CB35283D_7() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___08BB5E5D6EAAC1049EDE0893D30ED022B1A4D9B5B48DB414871F51C9CB35283D_7)); } inline __StaticArrayInitTypeSizeU3D5_t4860E7B6EA3ACC966F04D8598CE9F606264B9EE9 get_U308BB5E5D6EAAC1049EDE0893D30ED022B1A4D9B5B48DB414871F51C9CB35283D_7() const { return ___08BB5E5D6EAAC1049EDE0893D30ED022B1A4D9B5B48DB414871F51C9CB35283D_7; } inline __StaticArrayInitTypeSizeU3D5_t4860E7B6EA3ACC966F04D8598CE9F606264B9EE9 * get_address_of_U308BB5E5D6EAAC1049EDE0893D30ED022B1A4D9B5B48DB414871F51C9CB35283D_7() { return &___08BB5E5D6EAAC1049EDE0893D30ED022B1A4D9B5B48DB414871F51C9CB35283D_7; } inline void set_U308BB5E5D6EAAC1049EDE0893D30ED022B1A4D9B5B48DB414871F51C9CB35283D_7(__StaticArrayInitTypeSizeU3D5_t4860E7B6EA3ACC966F04D8598CE9F606264B9EE9 value) { ___08BB5E5D6EAAC1049EDE0893D30ED022B1A4D9B5B48DB414871F51C9CB35283D_7 = value; } inline static int32_t get_offset_of_U30A1413707CFE8C78578CA0BB50414B63B0BF76D33A73C9AADCEED38BB8CD28A8_8() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___0A1413707CFE8C78578CA0BB50414B63B0BF76D33A73C9AADCEED38BB8CD28A8_8)); } inline __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 get_U30A1413707CFE8C78578CA0BB50414B63B0BF76D33A73C9AADCEED38BB8CD28A8_8() const { return ___0A1413707CFE8C78578CA0BB50414B63B0BF76D33A73C9AADCEED38BB8CD28A8_8; } inline __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 * get_address_of_U30A1413707CFE8C78578CA0BB50414B63B0BF76D33A73C9AADCEED38BB8CD28A8_8() { return &___0A1413707CFE8C78578CA0BB50414B63B0BF76D33A73C9AADCEED38BB8CD28A8_8; } inline void set_U30A1413707CFE8C78578CA0BB50414B63B0BF76D33A73C9AADCEED38BB8CD28A8_8(__StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 value) { ___0A1413707CFE8C78578CA0BB50414B63B0BF76D33A73C9AADCEED38BB8CD28A8_8 = value; } inline static int32_t get_offset_of_U30A29D64AE97E7FBAAE0678A4F4F9364668E9827F23F305D51DF55D902CF19C4D_9() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___0A29D64AE97E7FBAAE0678A4F4F9364668E9827F23F305D51DF55D902CF19C4D_9)); } inline __StaticArrayInitTypeSizeU3D6_tDD3535E2AB0E3D46629D397042D7A7D5F52F2E77 get_U30A29D64AE97E7FBAAE0678A4F4F9364668E9827F23F305D51DF55D902CF19C4D_9() const { return ___0A29D64AE97E7FBAAE0678A4F4F9364668E9827F23F305D51DF55D902CF19C4D_9; } inline __StaticArrayInitTypeSizeU3D6_tDD3535E2AB0E3D46629D397042D7A7D5F52F2E77 * get_address_of_U30A29D64AE97E7FBAAE0678A4F4F9364668E9827F23F305D51DF55D902CF19C4D_9() { return &___0A29D64AE97E7FBAAE0678A4F4F9364668E9827F23F305D51DF55D902CF19C4D_9; } inline void set_U30A29D64AE97E7FBAAE0678A4F4F9364668E9827F23F305D51DF55D902CF19C4D_9(__StaticArrayInitTypeSizeU3D6_tDD3535E2AB0E3D46629D397042D7A7D5F52F2E77 value) { ___0A29D64AE97E7FBAAE0678A4F4F9364668E9827F23F305D51DF55D902CF19C4D_9 = value; } inline static int32_t get_offset_of_U30A4E21484641E9782ED1A1B3410F9F2DDC54F0F6D8807BF52C299807D9C4DF5C_10() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___0A4E21484641E9782ED1A1B3410F9F2DDC54F0F6D8807BF52C299807D9C4DF5C_10)); } inline __StaticArrayInitTypeSizeU3D72_t2005207C3F6F7C1227A5084885E3320B238A2489 get_U30A4E21484641E9782ED1A1B3410F9F2DDC54F0F6D8807BF52C299807D9C4DF5C_10() const { return ___0A4E21484641E9782ED1A1B3410F9F2DDC54F0F6D8807BF52C299807D9C4DF5C_10; } inline __StaticArrayInitTypeSizeU3D72_t2005207C3F6F7C1227A5084885E3320B238A2489 * get_address_of_U30A4E21484641E9782ED1A1B3410F9F2DDC54F0F6D8807BF52C299807D9C4DF5C_10() { return &___0A4E21484641E9782ED1A1B3410F9F2DDC54F0F6D8807BF52C299807D9C4DF5C_10; } inline void set_U30A4E21484641E9782ED1A1B3410F9F2DDC54F0F6D8807BF52C299807D9C4DF5C_10(__StaticArrayInitTypeSizeU3D72_t2005207C3F6F7C1227A5084885E3320B238A2489 value) { ___0A4E21484641E9782ED1A1B3410F9F2DDC54F0F6D8807BF52C299807D9C4DF5C_10 = value; } inline static int32_t get_offset_of_U30AEC099C87E7062A57D1C79734EDDD28A07A1684746EE8640132BB252E6BF5A1_11() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___0AEC099C87E7062A57D1C79734EDDD28A07A1684746EE8640132BB252E6BF5A1_11)); } inline __StaticArrayInitTypeSizeU3D56_tEBF9CCD8C2A1E8B12AE6EDE1B31598793DD01186 get_U30AEC099C87E7062A57D1C79734EDDD28A07A1684746EE8640132BB252E6BF5A1_11() const { return ___0AEC099C87E7062A57D1C79734EDDD28A07A1684746EE8640132BB252E6BF5A1_11; } inline __StaticArrayInitTypeSizeU3D56_tEBF9CCD8C2A1E8B12AE6EDE1B31598793DD01186 * get_address_of_U30AEC099C87E7062A57D1C79734EDDD28A07A1684746EE8640132BB252E6BF5A1_11() { return &___0AEC099C87E7062A57D1C79734EDDD28A07A1684746EE8640132BB252E6BF5A1_11; } inline void set_U30AEC099C87E7062A57D1C79734EDDD28A07A1684746EE8640132BB252E6BF5A1_11(__StaticArrayInitTypeSizeU3D56_tEBF9CCD8C2A1E8B12AE6EDE1B31598793DD01186 value) { ___0AEC099C87E7062A57D1C79734EDDD28A07A1684746EE8640132BB252E6BF5A1_11 = value; } inline static int32_t get_offset_of_U30AFCFE448EEBA81468EDE42DD0B9A0C17F1A006F43E0BE503CA27E8FBA2F05DC_12() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___0AFCFE448EEBA81468EDE42DD0B9A0C17F1A006F43E0BE503CA27E8FBA2F05DC_12)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_U30AFCFE448EEBA81468EDE42DD0B9A0C17F1A006F43E0BE503CA27E8FBA2F05DC_12() const { return ___0AFCFE448EEBA81468EDE42DD0B9A0C17F1A006F43E0BE503CA27E8FBA2F05DC_12; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_U30AFCFE448EEBA81468EDE42DD0B9A0C17F1A006F43E0BE503CA27E8FBA2F05DC_12() { return &___0AFCFE448EEBA81468EDE42DD0B9A0C17F1A006F43E0BE503CA27E8FBA2F05DC_12; } inline void set_U30AFCFE448EEBA81468EDE42DD0B9A0C17F1A006F43E0BE503CA27E8FBA2F05DC_12(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___0AFCFE448EEBA81468EDE42DD0B9A0C17F1A006F43E0BE503CA27E8FBA2F05DC_12 = value; } inline static int32_t get_offset_of_U30C9B53D0417CF5539EA98A771F400E930B4B4F55363A296A9E5A5F941AB71C86_13() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___0C9B53D0417CF5539EA98A771F400E930B4B4F55363A296A9E5A5F941AB71C86_13)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_U30C9B53D0417CF5539EA98A771F400E930B4B4F55363A296A9E5A5F941AB71C86_13() const { return ___0C9B53D0417CF5539EA98A771F400E930B4B4F55363A296A9E5A5F941AB71C86_13; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_U30C9B53D0417CF5539EA98A771F400E930B4B4F55363A296A9E5A5F941AB71C86_13() { return &___0C9B53D0417CF5539EA98A771F400E930B4B4F55363A296A9E5A5F941AB71C86_13; } inline void set_U30C9B53D0417CF5539EA98A771F400E930B4B4F55363A296A9E5A5F941AB71C86_13(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___0C9B53D0417CF5539EA98A771F400E930B4B4F55363A296A9E5A5F941AB71C86_13 = value; } inline static int32_t get_offset_of_U30CF9F5E38BA692F10436AAC17AC6DCB62396F9AFC9CA013B3D640C1C95E31A39_14() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___0CF9F5E38BA692F10436AAC17AC6DCB62396F9AFC9CA013B3D640C1C95E31A39_14)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_U30CF9F5E38BA692F10436AAC17AC6DCB62396F9AFC9CA013B3D640C1C95E31A39_14() const { return ___0CF9F5E38BA692F10436AAC17AC6DCB62396F9AFC9CA013B3D640C1C95E31A39_14; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_U30CF9F5E38BA692F10436AAC17AC6DCB62396F9AFC9CA013B3D640C1C95E31A39_14() { return &___0CF9F5E38BA692F10436AAC17AC6DCB62396F9AFC9CA013B3D640C1C95E31A39_14; } inline void set_U30CF9F5E38BA692F10436AAC17AC6DCB62396F9AFC9CA013B3D640C1C95E31A39_14(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___0CF9F5E38BA692F10436AAC17AC6DCB62396F9AFC9CA013B3D640C1C95E31A39_14 = value; } inline static int32_t get_offset_of_U310D88DF8B06E47788DBE42F876B642A928A3AD8EEFFE352C59F031CCFFECD49D_15() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___10D88DF8B06E47788DBE42F876B642A928A3AD8EEFFE352C59F031CCFFECD49D_15)); } inline __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C get_U310D88DF8B06E47788DBE42F876B642A928A3AD8EEFFE352C59F031CCFFECD49D_15() const { return ___10D88DF8B06E47788DBE42F876B642A928A3AD8EEFFE352C59F031CCFFECD49D_15; } inline __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C * get_address_of_U310D88DF8B06E47788DBE42F876B642A928A3AD8EEFFE352C59F031CCFFECD49D_15() { return &___10D88DF8B06E47788DBE42F876B642A928A3AD8EEFFE352C59F031CCFFECD49D_15; } inline void set_U310D88DF8B06E47788DBE42F876B642A928A3AD8EEFFE352C59F031CCFFECD49D_15(__StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C value) { ___10D88DF8B06E47788DBE42F876B642A928A3AD8EEFFE352C59F031CCFFECD49D_15 = value; } inline static int32_t get_offset_of_U3111B15B20E0428A22EEAA1E54B0D3B008A7A3E79C8F7F4E783710F569E9CEF15_16() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___111B15B20E0428A22EEAA1E54B0D3B008A7A3E79C8F7F4E783710F569E9CEF15_16)); } inline __StaticArrayInitTypeSizeU3D19_t6F47B190498106B49FE59B8EC484EB7D61D348D4 get_U3111B15B20E0428A22EEAA1E54B0D3B008A7A3E79C8F7F4E783710F569E9CEF15_16() const { return ___111B15B20E0428A22EEAA1E54B0D3B008A7A3E79C8F7F4E783710F569E9CEF15_16; } inline __StaticArrayInitTypeSizeU3D19_t6F47B190498106B49FE59B8EC484EB7D61D348D4 * get_address_of_U3111B15B20E0428A22EEAA1E54B0D3B008A7A3E79C8F7F4E783710F569E9CEF15_16() { return &___111B15B20E0428A22EEAA1E54B0D3B008A7A3E79C8F7F4E783710F569E9CEF15_16; } inline void set_U3111B15B20E0428A22EEAA1E54B0D3B008A7A3E79C8F7F4E783710F569E9CEF15_16(__StaticArrayInitTypeSizeU3D19_t6F47B190498106B49FE59B8EC484EB7D61D348D4 value) { ___111B15B20E0428A22EEAA1E54B0D3B008A7A3E79C8F7F4E783710F569E9CEF15_16 = value; } inline static int32_t get_offset_of_U3120918433B634757ADE589703127976B7C5C2009E8DB37632123F45FA2B87F2E_17() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___120918433B634757ADE589703127976B7C5C2009E8DB37632123F45FA2B87F2E_17)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_U3120918433B634757ADE589703127976B7C5C2009E8DB37632123F45FA2B87F2E_17() const { return ___120918433B634757ADE589703127976B7C5C2009E8DB37632123F45FA2B87F2E_17; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_U3120918433B634757ADE589703127976B7C5C2009E8DB37632123F45FA2B87F2E_17() { return &___120918433B634757ADE589703127976B7C5C2009E8DB37632123F45FA2B87F2E_17; } inline void set_U3120918433B634757ADE589703127976B7C5C2009E8DB37632123F45FA2B87F2E_17(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___120918433B634757ADE589703127976B7C5C2009E8DB37632123F45FA2B87F2E_17 = value; } inline static int32_t get_offset_of_U3125CF2084D7EEC18DC9795BE4BAA221655C0EABAB89E90A74FB0370378A60293_18() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___125CF2084D7EEC18DC9795BE4BAA221655C0EABAB89E90A74FB0370378A60293_18)); } inline __StaticArrayInitTypeSizeU3D640_tBB1E788DFDEFA4D1C43D13F2427E9BEECC2CE517 get_U3125CF2084D7EEC18DC9795BE4BAA221655C0EABAB89E90A74FB0370378A60293_18() const { return ___125CF2084D7EEC18DC9795BE4BAA221655C0EABAB89E90A74FB0370378A60293_18; } inline __StaticArrayInitTypeSizeU3D640_tBB1E788DFDEFA4D1C43D13F2427E9BEECC2CE517 * get_address_of_U3125CF2084D7EEC18DC9795BE4BAA221655C0EABAB89E90A74FB0370378A60293_18() { return &___125CF2084D7EEC18DC9795BE4BAA221655C0EABAB89E90A74FB0370378A60293_18; } inline void set_U3125CF2084D7EEC18DC9795BE4BAA221655C0EABAB89E90A74FB0370378A60293_18(__StaticArrayInitTypeSizeU3D640_tBB1E788DFDEFA4D1C43D13F2427E9BEECC2CE517 value) { ___125CF2084D7EEC18DC9795BE4BAA221655C0EABAB89E90A74FB0370378A60293_18 = value; } inline static int32_t get_offset_of_U312F486CDF1F8927BF7289003288EFE6D3B6C674279639905EEEE24D0B6EA9688_19() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___12F486CDF1F8927BF7289003288EFE6D3B6C674279639905EEEE24D0B6EA9688_19)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U312F486CDF1F8927BF7289003288EFE6D3B6C674279639905EEEE24D0B6EA9688_19() const { return ___12F486CDF1F8927BF7289003288EFE6D3B6C674279639905EEEE24D0B6EA9688_19; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U312F486CDF1F8927BF7289003288EFE6D3B6C674279639905EEEE24D0B6EA9688_19() { return &___12F486CDF1F8927BF7289003288EFE6D3B6C674279639905EEEE24D0B6EA9688_19; } inline void set_U312F486CDF1F8927BF7289003288EFE6D3B6C674279639905EEEE24D0B6EA9688_19(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___12F486CDF1F8927BF7289003288EFE6D3B6C674279639905EEEE24D0B6EA9688_19 = value; } inline static int32_t get_offset_of_U31313B2EF301CE83F294FFD8C012777CAA44B3F5F35B6CC5232786F43AEE29084_20() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___1313B2EF301CE83F294FFD8C012777CAA44B3F5F35B6CC5232786F43AEE29084_20)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U31313B2EF301CE83F294FFD8C012777CAA44B3F5F35B6CC5232786F43AEE29084_20() const { return ___1313B2EF301CE83F294FFD8C012777CAA44B3F5F35B6CC5232786F43AEE29084_20; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U31313B2EF301CE83F294FFD8C012777CAA44B3F5F35B6CC5232786F43AEE29084_20() { return &___1313B2EF301CE83F294FFD8C012777CAA44B3F5F35B6CC5232786F43AEE29084_20; } inline void set_U31313B2EF301CE83F294FFD8C012777CAA44B3F5F35B6CC5232786F43AEE29084_20(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___1313B2EF301CE83F294FFD8C012777CAA44B3F5F35B6CC5232786F43AEE29084_20 = value; } inline static int32_t get_offset_of_U313F3BEDA950D7627802C21F7681A2553BBC40FDD07FCA3F52FAB662EE65B6F90_21() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___13F3BEDA950D7627802C21F7681A2553BBC40FDD07FCA3F52FAB662EE65B6F90_21)); } inline __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E get_U313F3BEDA950D7627802C21F7681A2553BBC40FDD07FCA3F52FAB662EE65B6F90_21() const { return ___13F3BEDA950D7627802C21F7681A2553BBC40FDD07FCA3F52FAB662EE65B6F90_21; } inline __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E * get_address_of_U313F3BEDA950D7627802C21F7681A2553BBC40FDD07FCA3F52FAB662EE65B6F90_21() { return &___13F3BEDA950D7627802C21F7681A2553BBC40FDD07FCA3F52FAB662EE65B6F90_21; } inline void set_U313F3BEDA950D7627802C21F7681A2553BBC40FDD07FCA3F52FAB662EE65B6F90_21(__StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E value) { ___13F3BEDA950D7627802C21F7681A2553BBC40FDD07FCA3F52FAB662EE65B6F90_21 = value; } inline static int32_t get_offset_of_U3141785EC78A7C41133C5B71ACBF4AA8735D3C599E0EA82B1AFA2C71A46FAD265_22() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___141785EC78A7C41133C5B71ACBF4AA8735D3C599E0EA82B1AFA2C71A46FAD265_22)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U3141785EC78A7C41133C5B71ACBF4AA8735D3C599E0EA82B1AFA2C71A46FAD265_22() const { return ___141785EC78A7C41133C5B71ACBF4AA8735D3C599E0EA82B1AFA2C71A46FAD265_22; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U3141785EC78A7C41133C5B71ACBF4AA8735D3C599E0EA82B1AFA2C71A46FAD265_22() { return &___141785EC78A7C41133C5B71ACBF4AA8735D3C599E0EA82B1AFA2C71A46FAD265_22; } inline void set_U3141785EC78A7C41133C5B71ACBF4AA8735D3C599E0EA82B1AFA2C71A46FAD265_22(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___141785EC78A7C41133C5B71ACBF4AA8735D3C599E0EA82B1AFA2C71A46FAD265_22 = value; } inline static int32_t get_offset_of_U314A03AA4516FE146356EF9D4F549B8662F9C50A467974D3BFAC45B474D65B864_23() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___14A03AA4516FE146356EF9D4F549B8662F9C50A467974D3BFAC45B474D65B864_23)); } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F get_U314A03AA4516FE146356EF9D4F549B8662F9C50A467974D3BFAC45B474D65B864_23() const { return ___14A03AA4516FE146356EF9D4F549B8662F9C50A467974D3BFAC45B474D65B864_23; } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F * get_address_of_U314A03AA4516FE146356EF9D4F549B8662F9C50A467974D3BFAC45B474D65B864_23() { return &___14A03AA4516FE146356EF9D4F549B8662F9C50A467974D3BFAC45B474D65B864_23; } inline void set_U314A03AA4516FE146356EF9D4F549B8662F9C50A467974D3BFAC45B474D65B864_23(__StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F value) { ___14A03AA4516FE146356EF9D4F549B8662F9C50A467974D3BFAC45B474D65B864_23 = value; } inline static int32_t get_offset_of_U314A5D850C255623F9472E3C650ABCE0C78D32F0276B315B3A276A0462D97A1AC_24() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___14A5D850C255623F9472E3C650ABCE0C78D32F0276B315B3A276A0462D97A1AC_24)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_U314A5D850C255623F9472E3C650ABCE0C78D32F0276B315B3A276A0462D97A1AC_24() const { return ___14A5D850C255623F9472E3C650ABCE0C78D32F0276B315B3A276A0462D97A1AC_24; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_U314A5D850C255623F9472E3C650ABCE0C78D32F0276B315B3A276A0462D97A1AC_24() { return &___14A5D850C255623F9472E3C650ABCE0C78D32F0276B315B3A276A0462D97A1AC_24; } inline void set_U314A5D850C255623F9472E3C650ABCE0C78D32F0276B315B3A276A0462D97A1AC_24(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___14A5D850C255623F9472E3C650ABCE0C78D32F0276B315B3A276A0462D97A1AC_24 = value; } inline static int32_t get_offset_of_U316599A4F9A12ECCBFC361B547840304B9E48CBC431F387243C6859C475427D16_25() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___16599A4F9A12ECCBFC361B547840304B9E48CBC431F387243C6859C475427D16_25)); } inline __StaticArrayInitTypeSizeU3D56_tEBF9CCD8C2A1E8B12AE6EDE1B31598793DD01186 get_U316599A4F9A12ECCBFC361B547840304B9E48CBC431F387243C6859C475427D16_25() const { return ___16599A4F9A12ECCBFC361B547840304B9E48CBC431F387243C6859C475427D16_25; } inline __StaticArrayInitTypeSizeU3D56_tEBF9CCD8C2A1E8B12AE6EDE1B31598793DD01186 * get_address_of_U316599A4F9A12ECCBFC361B547840304B9E48CBC431F387243C6859C475427D16_25() { return &___16599A4F9A12ECCBFC361B547840304B9E48CBC431F387243C6859C475427D16_25; } inline void set_U316599A4F9A12ECCBFC361B547840304B9E48CBC431F387243C6859C475427D16_25(__StaticArrayInitTypeSizeU3D56_tEBF9CCD8C2A1E8B12AE6EDE1B31598793DD01186 value) { ___16599A4F9A12ECCBFC361B547840304B9E48CBC431F387243C6859C475427D16_25 = value; } inline static int32_t get_offset_of_U31674D0631A2E37B60EC748BC3899FEE1550C108AF30B85CE96A70C5CA4682D03_26() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___1674D0631A2E37B60EC748BC3899FEE1550C108AF30B85CE96A70C5CA4682D03_26)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_U31674D0631A2E37B60EC748BC3899FEE1550C108AF30B85CE96A70C5CA4682D03_26() const { return ___1674D0631A2E37B60EC748BC3899FEE1550C108AF30B85CE96A70C5CA4682D03_26; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_U31674D0631A2E37B60EC748BC3899FEE1550C108AF30B85CE96A70C5CA4682D03_26() { return &___1674D0631A2E37B60EC748BC3899FEE1550C108AF30B85CE96A70C5CA4682D03_26; } inline void set_U31674D0631A2E37B60EC748BC3899FEE1550C108AF30B85CE96A70C5CA4682D03_26(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___1674D0631A2E37B60EC748BC3899FEE1550C108AF30B85CE96A70C5CA4682D03_26 = value; } inline static int32_t get_offset_of_U31A0C6D8588AD2BCC8FE37D32AAD70981DD42ECA259D570799BEB531448D25ECE_27() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___1A0C6D8588AD2BCC8FE37D32AAD70981DD42ECA259D570799BEB531448D25ECE_27)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_U31A0C6D8588AD2BCC8FE37D32AAD70981DD42ECA259D570799BEB531448D25ECE_27() const { return ___1A0C6D8588AD2BCC8FE37D32AAD70981DD42ECA259D570799BEB531448D25ECE_27; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_U31A0C6D8588AD2BCC8FE37D32AAD70981DD42ECA259D570799BEB531448D25ECE_27() { return &___1A0C6D8588AD2BCC8FE37D32AAD70981DD42ECA259D570799BEB531448D25ECE_27; } inline void set_U31A0C6D8588AD2BCC8FE37D32AAD70981DD42ECA259D570799BEB531448D25ECE_27(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___1A0C6D8588AD2BCC8FE37D32AAD70981DD42ECA259D570799BEB531448D25ECE_27 = value; } inline static int32_t get_offset_of_U31B3C6BD02D7D3A67EDF7C2E78CB65DA169834118F6971D8912211D3032BC4D18_28() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___1B3C6BD02D7D3A67EDF7C2E78CB65DA169834118F6971D8912211D3032BC4D18_28)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_U31B3C6BD02D7D3A67EDF7C2E78CB65DA169834118F6971D8912211D3032BC4D18_28() const { return ___1B3C6BD02D7D3A67EDF7C2E78CB65DA169834118F6971D8912211D3032BC4D18_28; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_U31B3C6BD02D7D3A67EDF7C2E78CB65DA169834118F6971D8912211D3032BC4D18_28() { return &___1B3C6BD02D7D3A67EDF7C2E78CB65DA169834118F6971D8912211D3032BC4D18_28; } inline void set_U31B3C6BD02D7D3A67EDF7C2E78CB65DA169834118F6971D8912211D3032BC4D18_28(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___1B3C6BD02D7D3A67EDF7C2E78CB65DA169834118F6971D8912211D3032BC4D18_28 = value; } inline static int32_t get_offset_of_U31B897DDDD4C151E2A2E6E3E91B7EA0F7FC4FD5ED00EF1C9669E8566393A02586_29() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___1B897DDDD4C151E2A2E6E3E91B7EA0F7FC4FD5ED00EF1C9669E8566393A02586_29)); } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 get_U31B897DDDD4C151E2A2E6E3E91B7EA0F7FC4FD5ED00EF1C9669E8566393A02586_29() const { return ___1B897DDDD4C151E2A2E6E3E91B7EA0F7FC4FD5ED00EF1C9669E8566393A02586_29; } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 * get_address_of_U31B897DDDD4C151E2A2E6E3E91B7EA0F7FC4FD5ED00EF1C9669E8566393A02586_29() { return &___1B897DDDD4C151E2A2E6E3E91B7EA0F7FC4FD5ED00EF1C9669E8566393A02586_29; } inline void set_U31B897DDDD4C151E2A2E6E3E91B7EA0F7FC4FD5ED00EF1C9669E8566393A02586_29(__StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 value) { ___1B897DDDD4C151E2A2E6E3E91B7EA0F7FC4FD5ED00EF1C9669E8566393A02586_29 = value; } inline static int32_t get_offset_of_U31B993D34192A33EB10CEE61C1093A6FE7D3D4B41F751F550CF8515DC4A215207_30() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___1B993D34192A33EB10CEE61C1093A6FE7D3D4B41F751F550CF8515DC4A215207_30)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_U31B993D34192A33EB10CEE61C1093A6FE7D3D4B41F751F550CF8515DC4A215207_30() const { return ___1B993D34192A33EB10CEE61C1093A6FE7D3D4B41F751F550CF8515DC4A215207_30; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_U31B993D34192A33EB10CEE61C1093A6FE7D3D4B41F751F550CF8515DC4A215207_30() { return &___1B993D34192A33EB10CEE61C1093A6FE7D3D4B41F751F550CF8515DC4A215207_30; } inline void set_U31B993D34192A33EB10CEE61C1093A6FE7D3D4B41F751F550CF8515DC4A215207_30(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___1B993D34192A33EB10CEE61C1093A6FE7D3D4B41F751F550CF8515DC4A215207_30 = value; } inline static int32_t get_offset_of_U31BF78E8BF7F2EF0965437D77FD7CA3B2C80F27F8ABE4123F2207CB112D516AC4_31() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___1BF78E8BF7F2EF0965437D77FD7CA3B2C80F27F8ABE4123F2207CB112D516AC4_31)); } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F get_U31BF78E8BF7F2EF0965437D77FD7CA3B2C80F27F8ABE4123F2207CB112D516AC4_31() const { return ___1BF78E8BF7F2EF0965437D77FD7CA3B2C80F27F8ABE4123F2207CB112D516AC4_31; } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F * get_address_of_U31BF78E8BF7F2EF0965437D77FD7CA3B2C80F27F8ABE4123F2207CB112D516AC4_31() { return &___1BF78E8BF7F2EF0965437D77FD7CA3B2C80F27F8ABE4123F2207CB112D516AC4_31; } inline void set_U31BF78E8BF7F2EF0965437D77FD7CA3B2C80F27F8ABE4123F2207CB112D516AC4_31(__StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F value) { ___1BF78E8BF7F2EF0965437D77FD7CA3B2C80F27F8ABE4123F2207CB112D516AC4_31 = value; } inline static int32_t get_offset_of_U31C200EEC7E0EAFD19F23190A1ED9B95D60EDE114EDE39BD917D1565839CB48DC_32() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___1C200EEC7E0EAFD19F23190A1ED9B95D60EDE114EDE39BD917D1565839CB48DC_32)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U31C200EEC7E0EAFD19F23190A1ED9B95D60EDE114EDE39BD917D1565839CB48DC_32() const { return ___1C200EEC7E0EAFD19F23190A1ED9B95D60EDE114EDE39BD917D1565839CB48DC_32; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U31C200EEC7E0EAFD19F23190A1ED9B95D60EDE114EDE39BD917D1565839CB48DC_32() { return &___1C200EEC7E0EAFD19F23190A1ED9B95D60EDE114EDE39BD917D1565839CB48DC_32; } inline void set_U31C200EEC7E0EAFD19F23190A1ED9B95D60EDE114EDE39BD917D1565839CB48DC_32(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___1C200EEC7E0EAFD19F23190A1ED9B95D60EDE114EDE39BD917D1565839CB48DC_32 = value; } inline static int32_t get_offset_of_U31C3EF802E30F355C14A57C8AFAF6BFC22F3E40631D30059D87C30496D784EC9B_33() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___1C3EF802E30F355C14A57C8AFAF6BFC22F3E40631D30059D87C30496D784EC9B_33)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U31C3EF802E30F355C14A57C8AFAF6BFC22F3E40631D30059D87C30496D784EC9B_33() const { return ___1C3EF802E30F355C14A57C8AFAF6BFC22F3E40631D30059D87C30496D784EC9B_33; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U31C3EF802E30F355C14A57C8AFAF6BFC22F3E40631D30059D87C30496D784EC9B_33() { return &___1C3EF802E30F355C14A57C8AFAF6BFC22F3E40631D30059D87C30496D784EC9B_33; } inline void set_U31C3EF802E30F355C14A57C8AFAF6BFC22F3E40631D30059D87C30496D784EC9B_33(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___1C3EF802E30F355C14A57C8AFAF6BFC22F3E40631D30059D87C30496D784EC9B_33 = value; } inline static int32_t get_offset_of_U320EC21674E2CB9D3BA7B2F74AA5874381BAD58B7EDF526BDE000F175D1C5E5F1_34() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___20EC21674E2CB9D3BA7B2F74AA5874381BAD58B7EDF526BDE000F175D1C5E5F1_34)); } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 get_U320EC21674E2CB9D3BA7B2F74AA5874381BAD58B7EDF526BDE000F175D1C5E5F1_34() const { return ___20EC21674E2CB9D3BA7B2F74AA5874381BAD58B7EDF526BDE000F175D1C5E5F1_34; } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 * get_address_of_U320EC21674E2CB9D3BA7B2F74AA5874381BAD58B7EDF526BDE000F175D1C5E5F1_34() { return &___20EC21674E2CB9D3BA7B2F74AA5874381BAD58B7EDF526BDE000F175D1C5E5F1_34; } inline void set_U320EC21674E2CB9D3BA7B2F74AA5874381BAD58B7EDF526BDE000F175D1C5E5F1_34(__StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 value) { ___20EC21674E2CB9D3BA7B2F74AA5874381BAD58B7EDF526BDE000F175D1C5E5F1_34 = value; } inline static int32_t get_offset_of_U321B0817029E06E75D6C5BE22BC57089FD89B468AA7C549604EB9483F978CAD5B_35() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___21B0817029E06E75D6C5BE22BC57089FD89B468AA7C549604EB9483F978CAD5B_35)); } inline int32_t get_U321B0817029E06E75D6C5BE22BC57089FD89B468AA7C549604EB9483F978CAD5B_35() const { return ___21B0817029E06E75D6C5BE22BC57089FD89B468AA7C549604EB9483F978CAD5B_35; } inline int32_t* get_address_of_U321B0817029E06E75D6C5BE22BC57089FD89B468AA7C549604EB9483F978CAD5B_35() { return &___21B0817029E06E75D6C5BE22BC57089FD89B468AA7C549604EB9483F978CAD5B_35; } inline void set_U321B0817029E06E75D6C5BE22BC57089FD89B468AA7C549604EB9483F978CAD5B_35(int32_t value) { ___21B0817029E06E75D6C5BE22BC57089FD89B468AA7C549604EB9483F978CAD5B_35 = value; } inline static int32_t get_offset_of_U32338F1330733829B7EA276F350452E34DC02E35AEA142145F1294F417A412FE5_36() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___2338F1330733829B7EA276F350452E34DC02E35AEA142145F1294F417A412FE5_36)); } inline __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C get_U32338F1330733829B7EA276F350452E34DC02E35AEA142145F1294F417A412FE5_36() const { return ___2338F1330733829B7EA276F350452E34DC02E35AEA142145F1294F417A412FE5_36; } inline __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C * get_address_of_U32338F1330733829B7EA276F350452E34DC02E35AEA142145F1294F417A412FE5_36() { return &___2338F1330733829B7EA276F350452E34DC02E35AEA142145F1294F417A412FE5_36; } inline void set_U32338F1330733829B7EA276F350452E34DC02E35AEA142145F1294F417A412FE5_36(__StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C value) { ___2338F1330733829B7EA276F350452E34DC02E35AEA142145F1294F417A412FE5_36 = value; } inline static int32_t get_offset_of_U323DB15B6CAC9F0BF9102DAD4E3569A3208841F38E80BB37F8A0D9D70B77779F6_37() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___23DB15B6CAC9F0BF9102DAD4E3569A3208841F38E80BB37F8A0D9D70B77779F6_37)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_U323DB15B6CAC9F0BF9102DAD4E3569A3208841F38E80BB37F8A0D9D70B77779F6_37() const { return ___23DB15B6CAC9F0BF9102DAD4E3569A3208841F38E80BB37F8A0D9D70B77779F6_37; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_U323DB15B6CAC9F0BF9102DAD4E3569A3208841F38E80BB37F8A0D9D70B77779F6_37() { return &___23DB15B6CAC9F0BF9102DAD4E3569A3208841F38E80BB37F8A0D9D70B77779F6_37; } inline void set_U323DB15B6CAC9F0BF9102DAD4E3569A3208841F38E80BB37F8A0D9D70B77779F6_37(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___23DB15B6CAC9F0BF9102DAD4E3569A3208841F38E80BB37F8A0D9D70B77779F6_37 = value; } inline static int32_t get_offset_of_U3241460699808ED5F8D48C6B09EED448CDAE597EBF52B010901CD6F75A767B047_38() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___241460699808ED5F8D48C6B09EED448CDAE597EBF52B010901CD6F75A767B047_38)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U3241460699808ED5F8D48C6B09EED448CDAE597EBF52B010901CD6F75A767B047_38() const { return ___241460699808ED5F8D48C6B09EED448CDAE597EBF52B010901CD6F75A767B047_38; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U3241460699808ED5F8D48C6B09EED448CDAE597EBF52B010901CD6F75A767B047_38() { return &___241460699808ED5F8D48C6B09EED448CDAE597EBF52B010901CD6F75A767B047_38; } inline void set_U3241460699808ED5F8D48C6B09EED448CDAE597EBF52B010901CD6F75A767B047_38(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___241460699808ED5F8D48C6B09EED448CDAE597EBF52B010901CD6F75A767B047_38 = value; } inline static int32_t get_offset_of_U324B7E3A490F64223F93EC177ED5A641984B68F0783A289AC1F2C94D1D92DA684_39() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___24B7E3A490F64223F93EC177ED5A641984B68F0783A289AC1F2C94D1D92DA684_39)); } inline int64_t get_U324B7E3A490F64223F93EC177ED5A641984B68F0783A289AC1F2C94D1D92DA684_39() const { return ___24B7E3A490F64223F93EC177ED5A641984B68F0783A289AC1F2C94D1D92DA684_39; } inline int64_t* get_address_of_U324B7E3A490F64223F93EC177ED5A641984B68F0783A289AC1F2C94D1D92DA684_39() { return &___24B7E3A490F64223F93EC177ED5A641984B68F0783A289AC1F2C94D1D92DA684_39; } inline void set_U324B7E3A490F64223F93EC177ED5A641984B68F0783A289AC1F2C94D1D92DA684_39(int64_t value) { ___24B7E3A490F64223F93EC177ED5A641984B68F0783A289AC1F2C94D1D92DA684_39 = value; } inline static int32_t get_offset_of_U324CB9F17C8326D8BB8EC908716519DF7F265AE825F0DD13BB04E03A90B07D90E_40() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___24CB9F17C8326D8BB8EC908716519DF7F265AE825F0DD13BB04E03A90B07D90E_40)); } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 get_U324CB9F17C8326D8BB8EC908716519DF7F265AE825F0DD13BB04E03A90B07D90E_40() const { return ___24CB9F17C8326D8BB8EC908716519DF7F265AE825F0DD13BB04E03A90B07D90E_40; } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 * get_address_of_U324CB9F17C8326D8BB8EC908716519DF7F265AE825F0DD13BB04E03A90B07D90E_40() { return &___24CB9F17C8326D8BB8EC908716519DF7F265AE825F0DD13BB04E03A90B07D90E_40; } inline void set_U324CB9F17C8326D8BB8EC908716519DF7F265AE825F0DD13BB04E03A90B07D90E_40(__StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 value) { ___24CB9F17C8326D8BB8EC908716519DF7F265AE825F0DD13BB04E03A90B07D90E_40 = value; } inline static int32_t get_offset_of_U3252A0A8312BC1F5202CB599BCF172BEFA6F2A40195E72E2410AF5D81AC8B69D5_41() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___252A0A8312BC1F5202CB599BCF172BEFA6F2A40195E72E2410AF5D81AC8B69D5_41)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_U3252A0A8312BC1F5202CB599BCF172BEFA6F2A40195E72E2410AF5D81AC8B69D5_41() const { return ___252A0A8312BC1F5202CB599BCF172BEFA6F2A40195E72E2410AF5D81AC8B69D5_41; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_U3252A0A8312BC1F5202CB599BCF172BEFA6F2A40195E72E2410AF5D81AC8B69D5_41() { return &___252A0A8312BC1F5202CB599BCF172BEFA6F2A40195E72E2410AF5D81AC8B69D5_41; } inline void set_U3252A0A8312BC1F5202CB599BCF172BEFA6F2A40195E72E2410AF5D81AC8B69D5_41(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___252A0A8312BC1F5202CB599BCF172BEFA6F2A40195E72E2410AF5D81AC8B69D5_41 = value; } inline static int32_t get_offset_of_U3265DD563A3E754D1DA09E056E784DF1550AD6EFA252EDC9A8B6F2F537C4D98A9_42() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___265DD563A3E754D1DA09E056E784DF1550AD6EFA252EDC9A8B6F2F537C4D98A9_42)); } inline __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F get_U3265DD563A3E754D1DA09E056E784DF1550AD6EFA252EDC9A8B6F2F537C4D98A9_42() const { return ___265DD563A3E754D1DA09E056E784DF1550AD6EFA252EDC9A8B6F2F537C4D98A9_42; } inline __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F * get_address_of_U3265DD563A3E754D1DA09E056E784DF1550AD6EFA252EDC9A8B6F2F537C4D98A9_42() { return &___265DD563A3E754D1DA09E056E784DF1550AD6EFA252EDC9A8B6F2F537C4D98A9_42; } inline void set_U3265DD563A3E754D1DA09E056E784DF1550AD6EFA252EDC9A8B6F2F537C4D98A9_42(__StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F value) { ___265DD563A3E754D1DA09E056E784DF1550AD6EFA252EDC9A8B6F2F537C4D98A9_42 = value; } inline static int32_t get_offset_of_U327EB8EA2323F674F4BFE35F3C75FA0609EB3D887842FFDC2B776F7FED82D7EA8_43() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___27EB8EA2323F674F4BFE35F3C75FA0609EB3D887842FFDC2B776F7FED82D7EA8_43)); } inline __StaticArrayInitTypeSizeU3D72_t2005207C3F6F7C1227A5084885E3320B238A2489 get_U327EB8EA2323F674F4BFE35F3C75FA0609EB3D887842FFDC2B776F7FED82D7EA8_43() const { return ___27EB8EA2323F674F4BFE35F3C75FA0609EB3D887842FFDC2B776F7FED82D7EA8_43; } inline __StaticArrayInitTypeSizeU3D72_t2005207C3F6F7C1227A5084885E3320B238A2489 * get_address_of_U327EB8EA2323F674F4BFE35F3C75FA0609EB3D887842FFDC2B776F7FED82D7EA8_43() { return &___27EB8EA2323F674F4BFE35F3C75FA0609EB3D887842FFDC2B776F7FED82D7EA8_43; } inline void set_U327EB8EA2323F674F4BFE35F3C75FA0609EB3D887842FFDC2B776F7FED82D7EA8_43(__StaticArrayInitTypeSizeU3D72_t2005207C3F6F7C1227A5084885E3320B238A2489 value) { ___27EB8EA2323F674F4BFE35F3C75FA0609EB3D887842FFDC2B776F7FED82D7EA8_43 = value; } inline static int32_t get_offset_of_U32A1FE1596DB0F5D1893C1AF50592965E1C09B1EE1E35A8A87C181A9EB2F391F5_44() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___2A1FE1596DB0F5D1893C1AF50592965E1C09B1EE1E35A8A87C181A9EB2F391F5_44)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_U32A1FE1596DB0F5D1893C1AF50592965E1C09B1EE1E35A8A87C181A9EB2F391F5_44() const { return ___2A1FE1596DB0F5D1893C1AF50592965E1C09B1EE1E35A8A87C181A9EB2F391F5_44; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_U32A1FE1596DB0F5D1893C1AF50592965E1C09B1EE1E35A8A87C181A9EB2F391F5_44() { return &___2A1FE1596DB0F5D1893C1AF50592965E1C09B1EE1E35A8A87C181A9EB2F391F5_44; } inline void set_U32A1FE1596DB0F5D1893C1AF50592965E1C09B1EE1E35A8A87C181A9EB2F391F5_44(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___2A1FE1596DB0F5D1893C1AF50592965E1C09B1EE1E35A8A87C181A9EB2F391F5_44 = value; } inline static int32_t get_offset_of_U32B371DA34C2A942BAF37EBEF498C2EE84813B4AB0266066695C4152B6E3FF082_45() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___2B371DA34C2A942BAF37EBEF498C2EE84813B4AB0266066695C4152B6E3FF082_45)); } inline __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E get_U32B371DA34C2A942BAF37EBEF498C2EE84813B4AB0266066695C4152B6E3FF082_45() const { return ___2B371DA34C2A942BAF37EBEF498C2EE84813B4AB0266066695C4152B6E3FF082_45; } inline __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E * get_address_of_U32B371DA34C2A942BAF37EBEF498C2EE84813B4AB0266066695C4152B6E3FF082_45() { return &___2B371DA34C2A942BAF37EBEF498C2EE84813B4AB0266066695C4152B6E3FF082_45; } inline void set_U32B371DA34C2A942BAF37EBEF498C2EE84813B4AB0266066695C4152B6E3FF082_45(__StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E value) { ___2B371DA34C2A942BAF37EBEF498C2EE84813B4AB0266066695C4152B6E3FF082_45 = value; } inline static int32_t get_offset_of_U32C9D6B105EC78E8E02279FB1266932E3468A575B0EB9818985DBE9468B991CCE_46() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___2C9D6B105EC78E8E02279FB1266932E3468A575B0EB9818985DBE9468B991CCE_46)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_U32C9D6B105EC78E8E02279FB1266932E3468A575B0EB9818985DBE9468B991CCE_46() const { return ___2C9D6B105EC78E8E02279FB1266932E3468A575B0EB9818985DBE9468B991CCE_46; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_U32C9D6B105EC78E8E02279FB1266932E3468A575B0EB9818985DBE9468B991CCE_46() { return &___2C9D6B105EC78E8E02279FB1266932E3468A575B0EB9818985DBE9468B991CCE_46; } inline void set_U32C9D6B105EC78E8E02279FB1266932E3468A575B0EB9818985DBE9468B991CCE_46(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___2C9D6B105EC78E8E02279FB1266932E3468A575B0EB9818985DBE9468B991CCE_46 = value; } inline static int32_t get_offset_of_U32DE8C8D0A909D9D152B7752E0C1650FB43AFEBF9F20DF52091B69C394BD9F0FB_47() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___2DE8C8D0A909D9D152B7752E0C1650FB43AFEBF9F20DF52091B69C394BD9F0FB_47)); } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 get_U32DE8C8D0A909D9D152B7752E0C1650FB43AFEBF9F20DF52091B69C394BD9F0FB_47() const { return ___2DE8C8D0A909D9D152B7752E0C1650FB43AFEBF9F20DF52091B69C394BD9F0FB_47; } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 * get_address_of_U32DE8C8D0A909D9D152B7752E0C1650FB43AFEBF9F20DF52091B69C394BD9F0FB_47() { return &___2DE8C8D0A909D9D152B7752E0C1650FB43AFEBF9F20DF52091B69C394BD9F0FB_47; } inline void set_U32DE8C8D0A909D9D152B7752E0C1650FB43AFEBF9F20DF52091B69C394BD9F0FB_47(__StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 value) { ___2DE8C8D0A909D9D152B7752E0C1650FB43AFEBF9F20DF52091B69C394BD9F0FB_47 = value; } inline static int32_t get_offset_of_U32DEB754CF447D0DE35ACB7F4311F9AAB1D4CFC0638E101CCAA8A0A4948AB3600_48() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___2DEB754CF447D0DE35ACB7F4311F9AAB1D4CFC0638E101CCAA8A0A4948AB3600_48)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_U32DEB754CF447D0DE35ACB7F4311F9AAB1D4CFC0638E101CCAA8A0A4948AB3600_48() const { return ___2DEB754CF447D0DE35ACB7F4311F9AAB1D4CFC0638E101CCAA8A0A4948AB3600_48; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_U32DEB754CF447D0DE35ACB7F4311F9AAB1D4CFC0638E101CCAA8A0A4948AB3600_48() { return &___2DEB754CF447D0DE35ACB7F4311F9AAB1D4CFC0638E101CCAA8A0A4948AB3600_48; } inline void set_U32DEB754CF447D0DE35ACB7F4311F9AAB1D4CFC0638E101CCAA8A0A4948AB3600_48(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___2DEB754CF447D0DE35ACB7F4311F9AAB1D4CFC0638E101CCAA8A0A4948AB3600_48 = value; } inline static int32_t get_offset_of_U32EE1A8E6F4E2FE0BB69872A9C314399B1B0FDEE75772244F204ABF4D6DEC2F97_49() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___2EE1A8E6F4E2FE0BB69872A9C314399B1B0FDEE75772244F204ABF4D6DEC2F97_49)); } inline __StaticArrayInitTypeSizeU3D68_tE431405C001EFCAA99F9D46276BFEAF7F5AF4E0F get_U32EE1A8E6F4E2FE0BB69872A9C314399B1B0FDEE75772244F204ABF4D6DEC2F97_49() const { return ___2EE1A8E6F4E2FE0BB69872A9C314399B1B0FDEE75772244F204ABF4D6DEC2F97_49; } inline __StaticArrayInitTypeSizeU3D68_tE431405C001EFCAA99F9D46276BFEAF7F5AF4E0F * get_address_of_U32EE1A8E6F4E2FE0BB69872A9C314399B1B0FDEE75772244F204ABF4D6DEC2F97_49() { return &___2EE1A8E6F4E2FE0BB69872A9C314399B1B0FDEE75772244F204ABF4D6DEC2F97_49; } inline void set_U32EE1A8E6F4E2FE0BB69872A9C314399B1B0FDEE75772244F204ABF4D6DEC2F97_49(__StaticArrayInitTypeSizeU3D68_tE431405C001EFCAA99F9D46276BFEAF7F5AF4E0F value) { ___2EE1A8E6F4E2FE0BB69872A9C314399B1B0FDEE75772244F204ABF4D6DEC2F97_49 = value; } inline static int32_t get_offset_of_U32EF83B43314F8CD03190EEE30ECCF048DA37791237F27C62A579F23EACE9FD70_50() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___2EF83B43314F8CD03190EEE30ECCF048DA37791237F27C62A579F23EACE9FD70_50)); } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F get_U32EF83B43314F8CD03190EEE30ECCF048DA37791237F27C62A579F23EACE9FD70_50() const { return ___2EF83B43314F8CD03190EEE30ECCF048DA37791237F27C62A579F23EACE9FD70_50; } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F * get_address_of_U32EF83B43314F8CD03190EEE30ECCF048DA37791237F27C62A579F23EACE9FD70_50() { return &___2EF83B43314F8CD03190EEE30ECCF048DA37791237F27C62A579F23EACE9FD70_50; } inline void set_U32EF83B43314F8CD03190EEE30ECCF048DA37791237F27C62A579F23EACE9FD70_50(__StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F value) { ___2EF83B43314F8CD03190EEE30ECCF048DA37791237F27C62A579F23EACE9FD70_50 = value; } inline static int32_t get_offset_of_U32F2C71B5B311BF139FD4B797EF2308F928EFE5092D7E11DC070CF41038A079B9_51() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___2F2C71B5B311BF139FD4B797EF2308F928EFE5092D7E11DC070CF41038A079B9_51)); } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F get_U32F2C71B5B311BF139FD4B797EF2308F928EFE5092D7E11DC070CF41038A079B9_51() const { return ___2F2C71B5B311BF139FD4B797EF2308F928EFE5092D7E11DC070CF41038A079B9_51; } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F * get_address_of_U32F2C71B5B311BF139FD4B797EF2308F928EFE5092D7E11DC070CF41038A079B9_51() { return &___2F2C71B5B311BF139FD4B797EF2308F928EFE5092D7E11DC070CF41038A079B9_51; } inline void set_U32F2C71B5B311BF139FD4B797EF2308F928EFE5092D7E11DC070CF41038A079B9_51(__StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F value) { ___2F2C71B5B311BF139FD4B797EF2308F928EFE5092D7E11DC070CF41038A079B9_51 = value; } inline static int32_t get_offset_of_U3301841C47353B7791BE25BC1F60F93D0EB2090AB5714FA5CA3939E8DFF75D218_52() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___301841C47353B7791BE25BC1F60F93D0EB2090AB5714FA5CA3939E8DFF75D218_52)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_U3301841C47353B7791BE25BC1F60F93D0EB2090AB5714FA5CA3939E8DFF75D218_52() const { return ___301841C47353B7791BE25BC1F60F93D0EB2090AB5714FA5CA3939E8DFF75D218_52; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_U3301841C47353B7791BE25BC1F60F93D0EB2090AB5714FA5CA3939E8DFF75D218_52() { return &___301841C47353B7791BE25BC1F60F93D0EB2090AB5714FA5CA3939E8DFF75D218_52; } inline void set_U3301841C47353B7791BE25BC1F60F93D0EB2090AB5714FA5CA3939E8DFF75D218_52(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___301841C47353B7791BE25BC1F60F93D0EB2090AB5714FA5CA3939E8DFF75D218_52 = value; } inline static int32_t get_offset_of_U3304E6CE4B8A999F5B114DD940B655029F8F60AFE4EE0731B111996B6B59BC3A9_53() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___304E6CE4B8A999F5B114DD940B655029F8F60AFE4EE0731B111996B6B59BC3A9_53)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_U3304E6CE4B8A999F5B114DD940B655029F8F60AFE4EE0731B111996B6B59BC3A9_53() const { return ___304E6CE4B8A999F5B114DD940B655029F8F60AFE4EE0731B111996B6B59BC3A9_53; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_U3304E6CE4B8A999F5B114DD940B655029F8F60AFE4EE0731B111996B6B59BC3A9_53() { return &___304E6CE4B8A999F5B114DD940B655029F8F60AFE4EE0731B111996B6B59BC3A9_53; } inline void set_U3304E6CE4B8A999F5B114DD940B655029F8F60AFE4EE0731B111996B6B59BC3A9_53(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___304E6CE4B8A999F5B114DD940B655029F8F60AFE4EE0731B111996B6B59BC3A9_53 = value; } inline static int32_t get_offset_of_U33106DB6422088B231F12C749BC9CC57B08BBDE65695641C166393B42EFF14871_54() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___3106DB6422088B231F12C749BC9CC57B08BBDE65695641C166393B42EFF14871_54)); } inline __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C get_U33106DB6422088B231F12C749BC9CC57B08BBDE65695641C166393B42EFF14871_54() const { return ___3106DB6422088B231F12C749BC9CC57B08BBDE65695641C166393B42EFF14871_54; } inline __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C * get_address_of_U33106DB6422088B231F12C749BC9CC57B08BBDE65695641C166393B42EFF14871_54() { return &___3106DB6422088B231F12C749BC9CC57B08BBDE65695641C166393B42EFF14871_54; } inline void set_U33106DB6422088B231F12C749BC9CC57B08BBDE65695641C166393B42EFF14871_54(__StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C value) { ___3106DB6422088B231F12C749BC9CC57B08BBDE65695641C166393B42EFF14871_54 = value; } inline static int32_t get_offset_of_U331A50A6B8C571138DD6EA37B040389216B779C1ED712CB7980DD199E3BEBEFEC_55() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___31A50A6B8C571138DD6EA37B040389216B779C1ED712CB7980DD199E3BEBEFEC_55)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_U331A50A6B8C571138DD6EA37B040389216B779C1ED712CB7980DD199E3BEBEFEC_55() const { return ___31A50A6B8C571138DD6EA37B040389216B779C1ED712CB7980DD199E3BEBEFEC_55; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_U331A50A6B8C571138DD6EA37B040389216B779C1ED712CB7980DD199E3BEBEFEC_55() { return &___31A50A6B8C571138DD6EA37B040389216B779C1ED712CB7980DD199E3BEBEFEC_55; } inline void set_U331A50A6B8C571138DD6EA37B040389216B779C1ED712CB7980DD199E3BEBEFEC_55(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___31A50A6B8C571138DD6EA37B040389216B779C1ED712CB7980DD199E3BEBEFEC_55 = value; } inline static int32_t get_offset_of_U3325BFEE33A593E28E54E20F8520E5DFEE122F719EF08FFE096A2AD31C4DC316F_56() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___325BFEE33A593E28E54E20F8520E5DFEE122F719EF08FFE096A2AD31C4DC316F_56)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_U3325BFEE33A593E28E54E20F8520E5DFEE122F719EF08FFE096A2AD31C4DC316F_56() const { return ___325BFEE33A593E28E54E20F8520E5DFEE122F719EF08FFE096A2AD31C4DC316F_56; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_U3325BFEE33A593E28E54E20F8520E5DFEE122F719EF08FFE096A2AD31C4DC316F_56() { return &___325BFEE33A593E28E54E20F8520E5DFEE122F719EF08FFE096A2AD31C4DC316F_56; } inline void set_U3325BFEE33A593E28E54E20F8520E5DFEE122F719EF08FFE096A2AD31C4DC316F_56(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___325BFEE33A593E28E54E20F8520E5DFEE122F719EF08FFE096A2AD31C4DC316F_56 = value; } inline static int32_t get_offset_of_U3343E404502DABEA303159A8C37BB2A4405B20A9B230D1C3BA9D496F05879019E_57() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___343E404502DABEA303159A8C37BB2A4405B20A9B230D1C3BA9D496F05879019E_57)); } inline __StaticArrayInitTypeSizeU3D48_tFD8B246DD801288DF862F996D7F0915222433AD7 get_U3343E404502DABEA303159A8C37BB2A4405B20A9B230D1C3BA9D496F05879019E_57() const { return ___343E404502DABEA303159A8C37BB2A4405B20A9B230D1C3BA9D496F05879019E_57; } inline __StaticArrayInitTypeSizeU3D48_tFD8B246DD801288DF862F996D7F0915222433AD7 * get_address_of_U3343E404502DABEA303159A8C37BB2A4405B20A9B230D1C3BA9D496F05879019E_57() { return &___343E404502DABEA303159A8C37BB2A4405B20A9B230D1C3BA9D496F05879019E_57; } inline void set_U3343E404502DABEA303159A8C37BB2A4405B20A9B230D1C3BA9D496F05879019E_57(__StaticArrayInitTypeSizeU3D48_tFD8B246DD801288DF862F996D7F0915222433AD7 value) { ___343E404502DABEA303159A8C37BB2A4405B20A9B230D1C3BA9D496F05879019E_57 = value; } inline static int32_t get_offset_of_U3356608BFA95B39A5AA624D4852D37A19FCFB1302C897E1A4B7EA5EFD1A20120E_58() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___356608BFA95B39A5AA624D4852D37A19FCFB1302C897E1A4B7EA5EFD1A20120E_58)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U3356608BFA95B39A5AA624D4852D37A19FCFB1302C897E1A4B7EA5EFD1A20120E_58() const { return ___356608BFA95B39A5AA624D4852D37A19FCFB1302C897E1A4B7EA5EFD1A20120E_58; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U3356608BFA95B39A5AA624D4852D37A19FCFB1302C897E1A4B7EA5EFD1A20120E_58() { return &___356608BFA95B39A5AA624D4852D37A19FCFB1302C897E1A4B7EA5EFD1A20120E_58; } inline void set_U3356608BFA95B39A5AA624D4852D37A19FCFB1302C897E1A4B7EA5EFD1A20120E_58(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___356608BFA95B39A5AA624D4852D37A19FCFB1302C897E1A4B7EA5EFD1A20120E_58 = value; } inline static int32_t get_offset_of_U336003BEAAFC125A5D50EBAE8C98A6971BE6134DD89E286DD699E012687422A22_59() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___36003BEAAFC125A5D50EBAE8C98A6971BE6134DD89E286DD699E012687422A22_59)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U336003BEAAFC125A5D50EBAE8C98A6971BE6134DD89E286DD699E012687422A22_59() const { return ___36003BEAAFC125A5D50EBAE8C98A6971BE6134DD89E286DD699E012687422A22_59; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U336003BEAAFC125A5D50EBAE8C98A6971BE6134DD89E286DD699E012687422A22_59() { return &___36003BEAAFC125A5D50EBAE8C98A6971BE6134DD89E286DD699E012687422A22_59; } inline void set_U336003BEAAFC125A5D50EBAE8C98A6971BE6134DD89E286DD699E012687422A22_59(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___36003BEAAFC125A5D50EBAE8C98A6971BE6134DD89E286DD699E012687422A22_59 = value; } inline static int32_t get_offset_of_U3360294D82A77697405846183BBB96E548B586D0710C5E2322E2CEF23E88C4122_60() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___360294D82A77697405846183BBB96E548B586D0710C5E2322E2CEF23E88C4122_60)); } inline __StaticArrayInitTypeSizeU3D511_t740CF3C9FEBB9CC89BA68C0F8EC83A7BB47394C3 get_U3360294D82A77697405846183BBB96E548B586D0710C5E2322E2CEF23E88C4122_60() const { return ___360294D82A77697405846183BBB96E548B586D0710C5E2322E2CEF23E88C4122_60; } inline __StaticArrayInitTypeSizeU3D511_t740CF3C9FEBB9CC89BA68C0F8EC83A7BB47394C3 * get_address_of_U3360294D82A77697405846183BBB96E548B586D0710C5E2322E2CEF23E88C4122_60() { return &___360294D82A77697405846183BBB96E548B586D0710C5E2322E2CEF23E88C4122_60; } inline void set_U3360294D82A77697405846183BBB96E548B586D0710C5E2322E2CEF23E88C4122_60(__StaticArrayInitTypeSizeU3D511_t740CF3C9FEBB9CC89BA68C0F8EC83A7BB47394C3 value) { ___360294D82A77697405846183BBB96E548B586D0710C5E2322E2CEF23E88C4122_60 = value; } inline static int32_t get_offset_of_U336B8FDA0BFB1D93A07326EE7CAC8EB99FF1AF237D234FFA3210F64D3EB774C38_61() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___36B8FDA0BFB1D93A07326EE7CAC8EB99FF1AF237D234FFA3210F64D3EB774C38_61)); } inline __StaticArrayInitTypeSizeU3D1152_t2104B5740ABD2FB36896B62E02098A1B196E493F get_U336B8FDA0BFB1D93A07326EE7CAC8EB99FF1AF237D234FFA3210F64D3EB774C38_61() const { return ___36B8FDA0BFB1D93A07326EE7CAC8EB99FF1AF237D234FFA3210F64D3EB774C38_61; } inline __StaticArrayInitTypeSizeU3D1152_t2104B5740ABD2FB36896B62E02098A1B196E493F * get_address_of_U336B8FDA0BFB1D93A07326EE7CAC8EB99FF1AF237D234FFA3210F64D3EB774C38_61() { return &___36B8FDA0BFB1D93A07326EE7CAC8EB99FF1AF237D234FFA3210F64D3EB774C38_61; } inline void set_U336B8FDA0BFB1D93A07326EE7CAC8EB99FF1AF237D234FFA3210F64D3EB774C38_61(__StaticArrayInitTypeSizeU3D1152_t2104B5740ABD2FB36896B62E02098A1B196E493F value) { ___36B8FDA0BFB1D93A07326EE7CAC8EB99FF1AF237D234FFA3210F64D3EB774C38_61 = value; } inline static int32_t get_offset_of_U33936FEF22F74028ACFB35A545386FE1C4F4A2C8CE55E88B5DF4FF605D474D8B4_62() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___3936FEF22F74028ACFB35A545386FE1C4F4A2C8CE55E88B5DF4FF605D474D8B4_62)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U33936FEF22F74028ACFB35A545386FE1C4F4A2C8CE55E88B5DF4FF605D474D8B4_62() const { return ___3936FEF22F74028ACFB35A545386FE1C4F4A2C8CE55E88B5DF4FF605D474D8B4_62; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U33936FEF22F74028ACFB35A545386FE1C4F4A2C8CE55E88B5DF4FF605D474D8B4_62() { return &___3936FEF22F74028ACFB35A545386FE1C4F4A2C8CE55E88B5DF4FF605D474D8B4_62; } inline void set_U33936FEF22F74028ACFB35A545386FE1C4F4A2C8CE55E88B5DF4FF605D474D8B4_62(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___3936FEF22F74028ACFB35A545386FE1C4F4A2C8CE55E88B5DF4FF605D474D8B4_62 = value; } inline static int32_t get_offset_of_U3394D174022AB9D27D329C8DE3DADB69831311870F91A3896EFFB406411F7472C_63() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___394D174022AB9D27D329C8DE3DADB69831311870F91A3896EFFB406411F7472C_63)); } inline __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 get_U3394D174022AB9D27D329C8DE3DADB69831311870F91A3896EFFB406411F7472C_63() const { return ___394D174022AB9D27D329C8DE3DADB69831311870F91A3896EFFB406411F7472C_63; } inline __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 * get_address_of_U3394D174022AB9D27D329C8DE3DADB69831311870F91A3896EFFB406411F7472C_63() { return &___394D174022AB9D27D329C8DE3DADB69831311870F91A3896EFFB406411F7472C_63; } inline void set_U3394D174022AB9D27D329C8DE3DADB69831311870F91A3896EFFB406411F7472C_63(__StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 value) { ___394D174022AB9D27D329C8DE3DADB69831311870F91A3896EFFB406411F7472C_63 = value; } inline static int32_t get_offset_of_U33AF2ACD8D2D27336879BC958CFB6B4271FA89EC7C3EC62B7AD1E0E20B7AF303D_64() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___3AF2ACD8D2D27336879BC958CFB6B4271FA89EC7C3EC62B7AD1E0E20B7AF303D_64)); } inline __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F get_U33AF2ACD8D2D27336879BC958CFB6B4271FA89EC7C3EC62B7AD1E0E20B7AF303D_64() const { return ___3AF2ACD8D2D27336879BC958CFB6B4271FA89EC7C3EC62B7AD1E0E20B7AF303D_64; } inline __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F * get_address_of_U33AF2ACD8D2D27336879BC958CFB6B4271FA89EC7C3EC62B7AD1E0E20B7AF303D_64() { return &___3AF2ACD8D2D27336879BC958CFB6B4271FA89EC7C3EC62B7AD1E0E20B7AF303D_64; } inline void set_U33AF2ACD8D2D27336879BC958CFB6B4271FA89EC7C3EC62B7AD1E0E20B7AF303D_64(__StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F value) { ___3AF2ACD8D2D27336879BC958CFB6B4271FA89EC7C3EC62B7AD1E0E20B7AF303D_64 = value; } inline static int32_t get_offset_of_U33B520286F14349D61645FDE2088337584857AF213F1E9694D9DA4F5C489E6A0E_65() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___3B520286F14349D61645FDE2088337584857AF213F1E9694D9DA4F5C489E6A0E_65)); } inline __StaticArrayInitTypeSizeU3D28_tB9DE54DF41ABC27805509271A10177513906BF30 get_U33B520286F14349D61645FDE2088337584857AF213F1E9694D9DA4F5C489E6A0E_65() const { return ___3B520286F14349D61645FDE2088337584857AF213F1E9694D9DA4F5C489E6A0E_65; } inline __StaticArrayInitTypeSizeU3D28_tB9DE54DF41ABC27805509271A10177513906BF30 * get_address_of_U33B520286F14349D61645FDE2088337584857AF213F1E9694D9DA4F5C489E6A0E_65() { return &___3B520286F14349D61645FDE2088337584857AF213F1E9694D9DA4F5C489E6A0E_65; } inline void set_U33B520286F14349D61645FDE2088337584857AF213F1E9694D9DA4F5C489E6A0E_65(__StaticArrayInitTypeSizeU3D28_tB9DE54DF41ABC27805509271A10177513906BF30 value) { ___3B520286F14349D61645FDE2088337584857AF213F1E9694D9DA4F5C489E6A0E_65 = value; } inline static int32_t get_offset_of_U33B721FB05904288533A0C3F44162AA4631530BCFEBD22C3E57DBC4994E38F83D_66() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___3B721FB05904288533A0C3F44162AA4631530BCFEBD22C3E57DBC4994E38F83D_66)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_U33B721FB05904288533A0C3F44162AA4631530BCFEBD22C3E57DBC4994E38F83D_66() const { return ___3B721FB05904288533A0C3F44162AA4631530BCFEBD22C3E57DBC4994E38F83D_66; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_U33B721FB05904288533A0C3F44162AA4631530BCFEBD22C3E57DBC4994E38F83D_66() { return &___3B721FB05904288533A0C3F44162AA4631530BCFEBD22C3E57DBC4994E38F83D_66; } inline void set_U33B721FB05904288533A0C3F44162AA4631530BCFEBD22C3E57DBC4994E38F83D_66(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___3B721FB05904288533A0C3F44162AA4631530BCFEBD22C3E57DBC4994E38F83D_66 = value; } inline static int32_t get_offset_of_U33BC7BBAE9618E2066112B9F16B3CDBB856ADE0020C732ED2D56FD0D0E38E1FC3_67() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___3BC7BBAE9618E2066112B9F16B3CDBB856ADE0020C732ED2D56FD0D0E38E1FC3_67)); } inline __StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE get_U33BC7BBAE9618E2066112B9F16B3CDBB856ADE0020C732ED2D56FD0D0E38E1FC3_67() const { return ___3BC7BBAE9618E2066112B9F16B3CDBB856ADE0020C732ED2D56FD0D0E38E1FC3_67; } inline __StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE * get_address_of_U33BC7BBAE9618E2066112B9F16B3CDBB856ADE0020C732ED2D56FD0D0E38E1FC3_67() { return &___3BC7BBAE9618E2066112B9F16B3CDBB856ADE0020C732ED2D56FD0D0E38E1FC3_67; } inline void set_U33BC7BBAE9618E2066112B9F16B3CDBB856ADE0020C732ED2D56FD0D0E38E1FC3_67(__StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE value) { ___3BC7BBAE9618E2066112B9F16B3CDBB856ADE0020C732ED2D56FD0D0E38E1FC3_67 = value; } inline static int32_t get_offset_of_U33CA024F96B6FA0D283063E7C2B60A83C2B07F26AE1788CDFAEEB231C7725ED92_68() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___3CA024F96B6FA0D283063E7C2B60A83C2B07F26AE1788CDFAEEB231C7725ED92_68)); } inline __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E get_U33CA024F96B6FA0D283063E7C2B60A83C2B07F26AE1788CDFAEEB231C7725ED92_68() const { return ___3CA024F96B6FA0D283063E7C2B60A83C2B07F26AE1788CDFAEEB231C7725ED92_68; } inline __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E * get_address_of_U33CA024F96B6FA0D283063E7C2B60A83C2B07F26AE1788CDFAEEB231C7725ED92_68() { return &___3CA024F96B6FA0D283063E7C2B60A83C2B07F26AE1788CDFAEEB231C7725ED92_68; } inline void set_U33CA024F96B6FA0D283063E7C2B60A83C2B07F26AE1788CDFAEEB231C7725ED92_68(__StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E value) { ___3CA024F96B6FA0D283063E7C2B60A83C2B07F26AE1788CDFAEEB231C7725ED92_68 = value; } inline static int32_t get_offset_of_U33E4FB5FE52BF269D6EE955711016291D6D327A4AAC39B2464C53C6BD0D73242A_69() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___3E4FB5FE52BF269D6EE955711016291D6D327A4AAC39B2464C53C6BD0D73242A_69)); } inline __StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE get_U33E4FB5FE52BF269D6EE955711016291D6D327A4AAC39B2464C53C6BD0D73242A_69() const { return ___3E4FB5FE52BF269D6EE955711016291D6D327A4AAC39B2464C53C6BD0D73242A_69; } inline __StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE * get_address_of_U33E4FB5FE52BF269D6EE955711016291D6D327A4AAC39B2464C53C6BD0D73242A_69() { return &___3E4FB5FE52BF269D6EE955711016291D6D327A4AAC39B2464C53C6BD0D73242A_69; } inline void set_U33E4FB5FE52BF269D6EE955711016291D6D327A4AAC39B2464C53C6BD0D73242A_69(__StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE value) { ___3E4FB5FE52BF269D6EE955711016291D6D327A4AAC39B2464C53C6BD0D73242A_69 = value; } inline static int32_t get_offset_of_U33EAA30E2BB2D4FF7221734E2CFBD2A94F0A3D8EB435634724DBF207AFE0DE24B_70() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___3EAA30E2BB2D4FF7221734E2CFBD2A94F0A3D8EB435634724DBF207AFE0DE24B_70)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_U33EAA30E2BB2D4FF7221734E2CFBD2A94F0A3D8EB435634724DBF207AFE0DE24B_70() const { return ___3EAA30E2BB2D4FF7221734E2CFBD2A94F0A3D8EB435634724DBF207AFE0DE24B_70; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_U33EAA30E2BB2D4FF7221734E2CFBD2A94F0A3D8EB435634724DBF207AFE0DE24B_70() { return &___3EAA30E2BB2D4FF7221734E2CFBD2A94F0A3D8EB435634724DBF207AFE0DE24B_70; } inline void set_U33EAA30E2BB2D4FF7221734E2CFBD2A94F0A3D8EB435634724DBF207AFE0DE24B_70(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___3EAA30E2BB2D4FF7221734E2CFBD2A94F0A3D8EB435634724DBF207AFE0DE24B_70 = value; } inline static int32_t get_offset_of_U33F580014EE7F27F024FC40AE120394FAC1A8E4CD1B40FD0F0089E89856152138_71() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___3F580014EE7F27F024FC40AE120394FAC1A8E4CD1B40FD0F0089E89856152138_71)); } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 get_U33F580014EE7F27F024FC40AE120394FAC1A8E4CD1B40FD0F0089E89856152138_71() const { return ___3F580014EE7F27F024FC40AE120394FAC1A8E4CD1B40FD0F0089E89856152138_71; } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 * get_address_of_U33F580014EE7F27F024FC40AE120394FAC1A8E4CD1B40FD0F0089E89856152138_71() { return &___3F580014EE7F27F024FC40AE120394FAC1A8E4CD1B40FD0F0089E89856152138_71; } inline void set_U33F580014EE7F27F024FC40AE120394FAC1A8E4CD1B40FD0F0089E89856152138_71(__StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 value) { ___3F580014EE7F27F024FC40AE120394FAC1A8E4CD1B40FD0F0089E89856152138_71 = value; } inline static int32_t get_offset_of_U3405634CB2F08D8E4A65CF85762D7BE4356E6DE1C0C941DA950F3034F3F8C6ED0_72() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___405634CB2F08D8E4A65CF85762D7BE4356E6DE1C0C941DA950F3034F3F8C6ED0_72)); } inline __StaticArrayInitTypeSizeU3D44_tB4E85CA0F7D90D00E66285BECB46250AA72356B5 get_U3405634CB2F08D8E4A65CF85762D7BE4356E6DE1C0C941DA950F3034F3F8C6ED0_72() const { return ___405634CB2F08D8E4A65CF85762D7BE4356E6DE1C0C941DA950F3034F3F8C6ED0_72; } inline __StaticArrayInitTypeSizeU3D44_tB4E85CA0F7D90D00E66285BECB46250AA72356B5 * get_address_of_U3405634CB2F08D8E4A65CF85762D7BE4356E6DE1C0C941DA950F3034F3F8C6ED0_72() { return &___405634CB2F08D8E4A65CF85762D7BE4356E6DE1C0C941DA950F3034F3F8C6ED0_72; } inline void set_U3405634CB2F08D8E4A65CF85762D7BE4356E6DE1C0C941DA950F3034F3F8C6ED0_72(__StaticArrayInitTypeSizeU3D44_tB4E85CA0F7D90D00E66285BECB46250AA72356B5 value) { ___405634CB2F08D8E4A65CF85762D7BE4356E6DE1C0C941DA950F3034F3F8C6ED0_72 = value; } inline static int32_t get_offset_of_U340866F3E76BC07D89281D2593C42AD252FB2D84E0A91FA3C78CA3C1FCC17643D_73() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___40866F3E76BC07D89281D2593C42AD252FB2D84E0A91FA3C78CA3C1FCC17643D_73)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_U340866F3E76BC07D89281D2593C42AD252FB2D84E0A91FA3C78CA3C1FCC17643D_73() const { return ___40866F3E76BC07D89281D2593C42AD252FB2D84E0A91FA3C78CA3C1FCC17643D_73; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_U340866F3E76BC07D89281D2593C42AD252FB2D84E0A91FA3C78CA3C1FCC17643D_73() { return &___40866F3E76BC07D89281D2593C42AD252FB2D84E0A91FA3C78CA3C1FCC17643D_73; } inline void set_U340866F3E76BC07D89281D2593C42AD252FB2D84E0A91FA3C78CA3C1FCC17643D_73(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___40866F3E76BC07D89281D2593C42AD252FB2D84E0A91FA3C78CA3C1FCC17643D_73 = value; } inline static int32_t get_offset_of_U3427C844BAD080C6008BDA87BD6ACA4F6F342F6FCA9472A6D63C31B69F6F85054_74() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___427C844BAD080C6008BDA87BD6ACA4F6F342F6FCA9472A6D63C31B69F6F85054_74)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_U3427C844BAD080C6008BDA87BD6ACA4F6F342F6FCA9472A6D63C31B69F6F85054_74() const { return ___427C844BAD080C6008BDA87BD6ACA4F6F342F6FCA9472A6D63C31B69F6F85054_74; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_U3427C844BAD080C6008BDA87BD6ACA4F6F342F6FCA9472A6D63C31B69F6F85054_74() { return &___427C844BAD080C6008BDA87BD6ACA4F6F342F6FCA9472A6D63C31B69F6F85054_74; } inline void set_U3427C844BAD080C6008BDA87BD6ACA4F6F342F6FCA9472A6D63C31B69F6F85054_74(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___427C844BAD080C6008BDA87BD6ACA4F6F342F6FCA9472A6D63C31B69F6F85054_74 = value; } inline static int32_t get_offset_of_U342E57F5A26F7D53A24B69FF9F56FA7550A23B8BAB2F5993357E4C53EA06141E9_75() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___42E57F5A26F7D53A24B69FF9F56FA7550A23B8BAB2F5993357E4C53EA06141E9_75)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_U342E57F5A26F7D53A24B69FF9F56FA7550A23B8BAB2F5993357E4C53EA06141E9_75() const { return ___42E57F5A26F7D53A24B69FF9F56FA7550A23B8BAB2F5993357E4C53EA06141E9_75; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_U342E57F5A26F7D53A24B69FF9F56FA7550A23B8BAB2F5993357E4C53EA06141E9_75() { return &___42E57F5A26F7D53A24B69FF9F56FA7550A23B8BAB2F5993357E4C53EA06141E9_75; } inline void set_U342E57F5A26F7D53A24B69FF9F56FA7550A23B8BAB2F5993357E4C53EA06141E9_75(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___42E57F5A26F7D53A24B69FF9F56FA7550A23B8BAB2F5993357E4C53EA06141E9_75 = value; } inline static int32_t get_offset_of_U3439231575950B2ADCDE8DC0E470192ADA8DDC05EB55836596636563B6403A6B5_76() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___439231575950B2ADCDE8DC0E470192ADA8DDC05EB55836596636563B6403A6B5_76)); } inline __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C get_U3439231575950B2ADCDE8DC0E470192ADA8DDC05EB55836596636563B6403A6B5_76() const { return ___439231575950B2ADCDE8DC0E470192ADA8DDC05EB55836596636563B6403A6B5_76; } inline __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C * get_address_of_U3439231575950B2ADCDE8DC0E470192ADA8DDC05EB55836596636563B6403A6B5_76() { return &___439231575950B2ADCDE8DC0E470192ADA8DDC05EB55836596636563B6403A6B5_76; } inline void set_U3439231575950B2ADCDE8DC0E470192ADA8DDC05EB55836596636563B6403A6B5_76(__StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C value) { ___439231575950B2ADCDE8DC0E470192ADA8DDC05EB55836596636563B6403A6B5_76 = value; } inline static int32_t get_offset_of_U343B9A42341477A51FB3329FA943298FB43910D3EDCAB69BFB04D0E68D84C0247_77() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___43B9A42341477A51FB3329FA943298FB43910D3EDCAB69BFB04D0E68D84C0247_77)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U343B9A42341477A51FB3329FA943298FB43910D3EDCAB69BFB04D0E68D84C0247_77() const { return ___43B9A42341477A51FB3329FA943298FB43910D3EDCAB69BFB04D0E68D84C0247_77; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U343B9A42341477A51FB3329FA943298FB43910D3EDCAB69BFB04D0E68D84C0247_77() { return &___43B9A42341477A51FB3329FA943298FB43910D3EDCAB69BFB04D0E68D84C0247_77; } inline void set_U343B9A42341477A51FB3329FA943298FB43910D3EDCAB69BFB04D0E68D84C0247_77(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___43B9A42341477A51FB3329FA943298FB43910D3EDCAB69BFB04D0E68D84C0247_77 = value; } inline static int32_t get_offset_of_U343C8B8D4786B6331EFC85B21E235E3E39940C427680D2C6B73ABF19738EF5186_78() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___43C8B8D4786B6331EFC85B21E235E3E39940C427680D2C6B73ABF19738EF5186_78)); } inline __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 get_U343C8B8D4786B6331EFC85B21E235E3E39940C427680D2C6B73ABF19738EF5186_78() const { return ___43C8B8D4786B6331EFC85B21E235E3E39940C427680D2C6B73ABF19738EF5186_78; } inline __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 * get_address_of_U343C8B8D4786B6331EFC85B21E235E3E39940C427680D2C6B73ABF19738EF5186_78() { return &___43C8B8D4786B6331EFC85B21E235E3E39940C427680D2C6B73ABF19738EF5186_78; } inline void set_U343C8B8D4786B6331EFC85B21E235E3E39940C427680D2C6B73ABF19738EF5186_78(__StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 value) { ___43C8B8D4786B6331EFC85B21E235E3E39940C427680D2C6B73ABF19738EF5186_78 = value; } inline static int32_t get_offset_of_U3463BE4A1C16EB914C411F194E1F87BEF5A9081C49888860A682E8543D4B35F58_79() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___463BE4A1C16EB914C411F194E1F87BEF5A9081C49888860A682E8543D4B35F58_79)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_U3463BE4A1C16EB914C411F194E1F87BEF5A9081C49888860A682E8543D4B35F58_79() const { return ___463BE4A1C16EB914C411F194E1F87BEF5A9081C49888860A682E8543D4B35F58_79; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_U3463BE4A1C16EB914C411F194E1F87BEF5A9081C49888860A682E8543D4B35F58_79() { return &___463BE4A1C16EB914C411F194E1F87BEF5A9081C49888860A682E8543D4B35F58_79; } inline void set_U3463BE4A1C16EB914C411F194E1F87BEF5A9081C49888860A682E8543D4B35F58_79(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___463BE4A1C16EB914C411F194E1F87BEF5A9081C49888860A682E8543D4B35F58_79 = value; } inline static int32_t get_offset_of_U34654FB5A717A0EB7C9078754B15F325C2F156519CFF821AAA495495741FF153A_80() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___4654FB5A717A0EB7C9078754B15F325C2F156519CFF821AAA495495741FF153A_80)); } inline __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 get_U34654FB5A717A0EB7C9078754B15F325C2F156519CFF821AAA495495741FF153A_80() const { return ___4654FB5A717A0EB7C9078754B15F325C2F156519CFF821AAA495495741FF153A_80; } inline __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 * get_address_of_U34654FB5A717A0EB7C9078754B15F325C2F156519CFF821AAA495495741FF153A_80() { return &___4654FB5A717A0EB7C9078754B15F325C2F156519CFF821AAA495495741FF153A_80; } inline void set_U34654FB5A717A0EB7C9078754B15F325C2F156519CFF821AAA495495741FF153A_80(__StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 value) { ___4654FB5A717A0EB7C9078754B15F325C2F156519CFF821AAA495495741FF153A_80 = value; } inline static int32_t get_offset_of_U34867A63842B7AFBF7A120C1310940F29048D0B73EF1747E15AD67A3AA0D9AF9D_81() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___4867A63842B7AFBF7A120C1310940F29048D0B73EF1747E15AD67A3AA0D9AF9D_81)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_U34867A63842B7AFBF7A120C1310940F29048D0B73EF1747E15AD67A3AA0D9AF9D_81() const { return ___4867A63842B7AFBF7A120C1310940F29048D0B73EF1747E15AD67A3AA0D9AF9D_81; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_U34867A63842B7AFBF7A120C1310940F29048D0B73EF1747E15AD67A3AA0D9AF9D_81() { return &___4867A63842B7AFBF7A120C1310940F29048D0B73EF1747E15AD67A3AA0D9AF9D_81; } inline void set_U34867A63842B7AFBF7A120C1310940F29048D0B73EF1747E15AD67A3AA0D9AF9D_81(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___4867A63842B7AFBF7A120C1310940F29048D0B73EF1747E15AD67A3AA0D9AF9D_81 = value; } inline static int32_t get_offset_of_U3490FE1E40F08589851422F9DAF5012280352D005653B5D2CE872268A1A743ACF_82() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___490FE1E40F08589851422F9DAF5012280352D005653B5D2CE872268A1A743ACF_82)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_U3490FE1E40F08589851422F9DAF5012280352D005653B5D2CE872268A1A743ACF_82() const { return ___490FE1E40F08589851422F9DAF5012280352D005653B5D2CE872268A1A743ACF_82; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_U3490FE1E40F08589851422F9DAF5012280352D005653B5D2CE872268A1A743ACF_82() { return &___490FE1E40F08589851422F9DAF5012280352D005653B5D2CE872268A1A743ACF_82; } inline void set_U3490FE1E40F08589851422F9DAF5012280352D005653B5D2CE872268A1A743ACF_82(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___490FE1E40F08589851422F9DAF5012280352D005653B5D2CE872268A1A743ACF_82 = value; } inline static int32_t get_offset_of_U34993FAA5B9060FAAFC80E9F6CE26AF291965C0B1E8F5BBDC87C6CE9AEF6FFA24_83() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___4993FAA5B9060FAAFC80E9F6CE26AF291965C0B1E8F5BBDC87C6CE9AEF6FFA24_83)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U34993FAA5B9060FAAFC80E9F6CE26AF291965C0B1E8F5BBDC87C6CE9AEF6FFA24_83() const { return ___4993FAA5B9060FAAFC80E9F6CE26AF291965C0B1E8F5BBDC87C6CE9AEF6FFA24_83; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U34993FAA5B9060FAAFC80E9F6CE26AF291965C0B1E8F5BBDC87C6CE9AEF6FFA24_83() { return &___4993FAA5B9060FAAFC80E9F6CE26AF291965C0B1E8F5BBDC87C6CE9AEF6FFA24_83; } inline void set_U34993FAA5B9060FAAFC80E9F6CE26AF291965C0B1E8F5BBDC87C6CE9AEF6FFA24_83(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___4993FAA5B9060FAAFC80E9F6CE26AF291965C0B1E8F5BBDC87C6CE9AEF6FFA24_83 = value; } inline static int32_t get_offset_of_U349D826830B5D920448F74BBBEDB361F17C9DD461E0DC3DED114E6E13E0173981_84() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___49D826830B5D920448F74BBBEDB361F17C9DD461E0DC3DED114E6E13E0173981_84)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U349D826830B5D920448F74BBBEDB361F17C9DD461E0DC3DED114E6E13E0173981_84() const { return ___49D826830B5D920448F74BBBEDB361F17C9DD461E0DC3DED114E6E13E0173981_84; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U349D826830B5D920448F74BBBEDB361F17C9DD461E0DC3DED114E6E13E0173981_84() { return &___49D826830B5D920448F74BBBEDB361F17C9DD461E0DC3DED114E6E13E0173981_84; } inline void set_U349D826830B5D920448F74BBBEDB361F17C9DD461E0DC3DED114E6E13E0173981_84(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___49D826830B5D920448F74BBBEDB361F17C9DD461E0DC3DED114E6E13E0173981_84 = value; } inline static int32_t get_offset_of_U349FC72E2BC139CDC89193D013C3CBAD8CB75E78CA254B8466A03D26581D08BE4_85() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___49FC72E2BC139CDC89193D013C3CBAD8CB75E78CA254B8466A03D26581D08BE4_85)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U349FC72E2BC139CDC89193D013C3CBAD8CB75E78CA254B8466A03D26581D08BE4_85() const { return ___49FC72E2BC139CDC89193D013C3CBAD8CB75E78CA254B8466A03D26581D08BE4_85; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U349FC72E2BC139CDC89193D013C3CBAD8CB75E78CA254B8466A03D26581D08BE4_85() { return &___49FC72E2BC139CDC89193D013C3CBAD8CB75E78CA254B8466A03D26581D08BE4_85; } inline void set_U349FC72E2BC139CDC89193D013C3CBAD8CB75E78CA254B8466A03D26581D08BE4_85(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___49FC72E2BC139CDC89193D013C3CBAD8CB75E78CA254B8466A03D26581D08BE4_85 = value; } inline static int32_t get_offset_of_U34ADFA71AB9AF20C1C372C92FF8D26609A11DA05E167BBA62C0ABFD18F4C1EAF8_86() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___4ADFA71AB9AF20C1C372C92FF8D26609A11DA05E167BBA62C0ABFD18F4C1EAF8_86)); } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F get_U34ADFA71AB9AF20C1C372C92FF8D26609A11DA05E167BBA62C0ABFD18F4C1EAF8_86() const { return ___4ADFA71AB9AF20C1C372C92FF8D26609A11DA05E167BBA62C0ABFD18F4C1EAF8_86; } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F * get_address_of_U34ADFA71AB9AF20C1C372C92FF8D26609A11DA05E167BBA62C0ABFD18F4C1EAF8_86() { return &___4ADFA71AB9AF20C1C372C92FF8D26609A11DA05E167BBA62C0ABFD18F4C1EAF8_86; } inline void set_U34ADFA71AB9AF20C1C372C92FF8D26609A11DA05E167BBA62C0ABFD18F4C1EAF8_86(__StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F value) { ___4ADFA71AB9AF20C1C372C92FF8D26609A11DA05E167BBA62C0ABFD18F4C1EAF8_86 = value; } inline static int32_t get_offset_of_U34D30B965ABF4D17A678F232D7C2491E37B61B203A6E807BB9E09C4BA2614F72D_87() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___4D30B965ABF4D17A678F232D7C2491E37B61B203A6E807BB9E09C4BA2614F72D_87)); } inline __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 get_U34D30B965ABF4D17A678F232D7C2491E37B61B203A6E807BB9E09C4BA2614F72D_87() const { return ___4D30B965ABF4D17A678F232D7C2491E37B61B203A6E807BB9E09C4BA2614F72D_87; } inline __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 * get_address_of_U34D30B965ABF4D17A678F232D7C2491E37B61B203A6E807BB9E09C4BA2614F72D_87() { return &___4D30B965ABF4D17A678F232D7C2491E37B61B203A6E807BB9E09C4BA2614F72D_87; } inline void set_U34D30B965ABF4D17A678F232D7C2491E37B61B203A6E807BB9E09C4BA2614F72D_87(__StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 value) { ___4D30B965ABF4D17A678F232D7C2491E37B61B203A6E807BB9E09C4BA2614F72D_87 = value; } inline static int32_t get_offset_of_U34D487DD66D80886D292C3C7B64CC41FEBA1E313A26A9D05333B42E895741FF81_88() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___4D487DD66D80886D292C3C7B64CC41FEBA1E313A26A9D05333B42E895741FF81_88)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_U34D487DD66D80886D292C3C7B64CC41FEBA1E313A26A9D05333B42E895741FF81_88() const { return ___4D487DD66D80886D292C3C7B64CC41FEBA1E313A26A9D05333B42E895741FF81_88; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_U34D487DD66D80886D292C3C7B64CC41FEBA1E313A26A9D05333B42E895741FF81_88() { return &___4D487DD66D80886D292C3C7B64CC41FEBA1E313A26A9D05333B42E895741FF81_88; } inline void set_U34D487DD66D80886D292C3C7B64CC41FEBA1E313A26A9D05333B42E895741FF81_88(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___4D487DD66D80886D292C3C7B64CC41FEBA1E313A26A9D05333B42E895741FF81_88 = value; } inline static int32_t get_offset_of_U34D7CAD3DEBDBD349390304F3A59AD3F66B4A1FB02F88749C4E393FF3A1EDD411_89() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___4D7CAD3DEBDBD349390304F3A59AD3F66B4A1FB02F88749C4E393FF3A1EDD411_89)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U34D7CAD3DEBDBD349390304F3A59AD3F66B4A1FB02F88749C4E393FF3A1EDD411_89() const { return ___4D7CAD3DEBDBD349390304F3A59AD3F66B4A1FB02F88749C4E393FF3A1EDD411_89; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U34D7CAD3DEBDBD349390304F3A59AD3F66B4A1FB02F88749C4E393FF3A1EDD411_89() { return &___4D7CAD3DEBDBD349390304F3A59AD3F66B4A1FB02F88749C4E393FF3A1EDD411_89; } inline void set_U34D7CAD3DEBDBD349390304F3A59AD3F66B4A1FB02F88749C4E393FF3A1EDD411_89(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___4D7CAD3DEBDBD349390304F3A59AD3F66B4A1FB02F88749C4E393FF3A1EDD411_89 = value; } inline static int32_t get_offset_of_U34F1B8E1CB953EA2DC9E5B3B1A88872BD0BF97BD1091B00456F43F1DFE4A0C976_90() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___4F1B8E1CB953EA2DC9E5B3B1A88872BD0BF97BD1091B00456F43F1DFE4A0C976_90)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_U34F1B8E1CB953EA2DC9E5B3B1A88872BD0BF97BD1091B00456F43F1DFE4A0C976_90() const { return ___4F1B8E1CB953EA2DC9E5B3B1A88872BD0BF97BD1091B00456F43F1DFE4A0C976_90; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_U34F1B8E1CB953EA2DC9E5B3B1A88872BD0BF97BD1091B00456F43F1DFE4A0C976_90() { return &___4F1B8E1CB953EA2DC9E5B3B1A88872BD0BF97BD1091B00456F43F1DFE4A0C976_90; } inline void set_U34F1B8E1CB953EA2DC9E5B3B1A88872BD0BF97BD1091B00456F43F1DFE4A0C976_90(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___4F1B8E1CB953EA2DC9E5B3B1A88872BD0BF97BD1091B00456F43F1DFE4A0C976_90 = value; } inline static int32_t get_offset_of_U34FDCD793D71BE141D8E85C48B61B68F00848ACEF69905D47D935786C44D07D92_91() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___4FDCD793D71BE141D8E85C48B61B68F00848ACEF69905D47D935786C44D07D92_91)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U34FDCD793D71BE141D8E85C48B61B68F00848ACEF69905D47D935786C44D07D92_91() const { return ___4FDCD793D71BE141D8E85C48B61B68F00848ACEF69905D47D935786C44D07D92_91; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U34FDCD793D71BE141D8E85C48B61B68F00848ACEF69905D47D935786C44D07D92_91() { return &___4FDCD793D71BE141D8E85C48B61B68F00848ACEF69905D47D935786C44D07D92_91; } inline void set_U34FDCD793D71BE141D8E85C48B61B68F00848ACEF69905D47D935786C44D07D92_91(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___4FDCD793D71BE141D8E85C48B61B68F00848ACEF69905D47D935786C44D07D92_91 = value; } inline static int32_t get_offset_of_U3507B1EFA9C696556B36957CBA8E6B8517AC8CD457424F04C7EF34363FC3B7F8F_92() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___507B1EFA9C696556B36957CBA8E6B8517AC8CD457424F04C7EF34363FC3B7F8F_92)); } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 get_U3507B1EFA9C696556B36957CBA8E6B8517AC8CD457424F04C7EF34363FC3B7F8F_92() const { return ___507B1EFA9C696556B36957CBA8E6B8517AC8CD457424F04C7EF34363FC3B7F8F_92; } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 * get_address_of_U3507B1EFA9C696556B36957CBA8E6B8517AC8CD457424F04C7EF34363FC3B7F8F_92() { return &___507B1EFA9C696556B36957CBA8E6B8517AC8CD457424F04C7EF34363FC3B7F8F_92; } inline void set_U3507B1EFA9C696556B36957CBA8E6B8517AC8CD457424F04C7EF34363FC3B7F8F_92(__StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 value) { ___507B1EFA9C696556B36957CBA8E6B8517AC8CD457424F04C7EF34363FC3B7F8F_92 = value; } inline static int32_t get_offset_of_U3513BA924C2DC996CAF3DC690D42BEB815316271C0CDAC0812BC0F2C2ED45DEA4_93() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___513BA924C2DC996CAF3DC690D42BEB815316271C0CDAC0812BC0F2C2ED45DEA4_93)); } inline __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 get_U3513BA924C2DC996CAF3DC690D42BEB815316271C0CDAC0812BC0F2C2ED45DEA4_93() const { return ___513BA924C2DC996CAF3DC690D42BEB815316271C0CDAC0812BC0F2C2ED45DEA4_93; } inline __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 * get_address_of_U3513BA924C2DC996CAF3DC690D42BEB815316271C0CDAC0812BC0F2C2ED45DEA4_93() { return &___513BA924C2DC996CAF3DC690D42BEB815316271C0CDAC0812BC0F2C2ED45DEA4_93; } inline void set_U3513BA924C2DC996CAF3DC690D42BEB815316271C0CDAC0812BC0F2C2ED45DEA4_93(__StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 value) { ___513BA924C2DC996CAF3DC690D42BEB815316271C0CDAC0812BC0F2C2ED45DEA4_93 = value; } inline static int32_t get_offset_of_U35218271C2AB140CF1F8F18D070924F6EA8F08F5FB59C9E4F05AF36C0740D172A_94() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___5218271C2AB140CF1F8F18D070924F6EA8F08F5FB59C9E4F05AF36C0740D172A_94)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U35218271C2AB140CF1F8F18D070924F6EA8F08F5FB59C9E4F05AF36C0740D172A_94() const { return ___5218271C2AB140CF1F8F18D070924F6EA8F08F5FB59C9E4F05AF36C0740D172A_94; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U35218271C2AB140CF1F8F18D070924F6EA8F08F5FB59C9E4F05AF36C0740D172A_94() { return &___5218271C2AB140CF1F8F18D070924F6EA8F08F5FB59C9E4F05AF36C0740D172A_94; } inline void set_U35218271C2AB140CF1F8F18D070924F6EA8F08F5FB59C9E4F05AF36C0740D172A_94(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___5218271C2AB140CF1F8F18D070924F6EA8F08F5FB59C9E4F05AF36C0740D172A_94 = value; } inline static int32_t get_offset_of_U3542A4AD813E0CA853A400A4DC81182DB6803BEC6EA63ED0D54E0E90660DFDC2B_95() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___542A4AD813E0CA853A400A4DC81182DB6803BEC6EA63ED0D54E0E90660DFDC2B_95)); } inline __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E get_U3542A4AD813E0CA853A400A4DC81182DB6803BEC6EA63ED0D54E0E90660DFDC2B_95() const { return ___542A4AD813E0CA853A400A4DC81182DB6803BEC6EA63ED0D54E0E90660DFDC2B_95; } inline __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E * get_address_of_U3542A4AD813E0CA853A400A4DC81182DB6803BEC6EA63ED0D54E0E90660DFDC2B_95() { return &___542A4AD813E0CA853A400A4DC81182DB6803BEC6EA63ED0D54E0E90660DFDC2B_95; } inline void set_U3542A4AD813E0CA853A400A4DC81182DB6803BEC6EA63ED0D54E0E90660DFDC2B_95(__StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E value) { ___542A4AD813E0CA853A400A4DC81182DB6803BEC6EA63ED0D54E0E90660DFDC2B_95 = value; } inline static int32_t get_offset_of_U355D0BF716B334D123E0088CFB3F8E2FEA17AF5025BB527F95EEB09BA978EA329_96() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___55D0BF716B334D123E0088CFB3F8E2FEA17AF5025BB527F95EEB09BA978EA329_96)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_U355D0BF716B334D123E0088CFB3F8E2FEA17AF5025BB527F95EEB09BA978EA329_96() const { return ___55D0BF716B334D123E0088CFB3F8E2FEA17AF5025BB527F95EEB09BA978EA329_96; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_U355D0BF716B334D123E0088CFB3F8E2FEA17AF5025BB527F95EEB09BA978EA329_96() { return &___55D0BF716B334D123E0088CFB3F8E2FEA17AF5025BB527F95EEB09BA978EA329_96; } inline void set_U355D0BF716B334D123E0088CFB3F8E2FEA17AF5025BB527F95EEB09BA978EA329_96(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___55D0BF716B334D123E0088CFB3F8E2FEA17AF5025BB527F95EEB09BA978EA329_96 = value; } inline static int32_t get_offset_of_U355D90ED526CE6FF4309EE00834C4060B1A37CB6D5E65BAA01366C72FB2A68CB4_97() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___55D90ED526CE6FF4309EE00834C4060B1A37CB6D5E65BAA01366C72FB2A68CB4_97)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U355D90ED526CE6FF4309EE00834C4060B1A37CB6D5E65BAA01366C72FB2A68CB4_97() const { return ___55D90ED526CE6FF4309EE00834C4060B1A37CB6D5E65BAA01366C72FB2A68CB4_97; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U355D90ED526CE6FF4309EE00834C4060B1A37CB6D5E65BAA01366C72FB2A68CB4_97() { return &___55D90ED526CE6FF4309EE00834C4060B1A37CB6D5E65BAA01366C72FB2A68CB4_97; } inline void set_U355D90ED526CE6FF4309EE00834C4060B1A37CB6D5E65BAA01366C72FB2A68CB4_97(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___55D90ED526CE6FF4309EE00834C4060B1A37CB6D5E65BAA01366C72FB2A68CB4_97 = value; } inline static int32_t get_offset_of_U35686DFA3DBAE1C40758CFEA05B267DAC2FAF6CCDFADBC08A75D81088B777C751_98() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___5686DFA3DBAE1C40758CFEA05B267DAC2FAF6CCDFADBC08A75D81088B777C751_98)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_U35686DFA3DBAE1C40758CFEA05B267DAC2FAF6CCDFADBC08A75D81088B777C751_98() const { return ___5686DFA3DBAE1C40758CFEA05B267DAC2FAF6CCDFADBC08A75D81088B777C751_98; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_U35686DFA3DBAE1C40758CFEA05B267DAC2FAF6CCDFADBC08A75D81088B777C751_98() { return &___5686DFA3DBAE1C40758CFEA05B267DAC2FAF6CCDFADBC08A75D81088B777C751_98; } inline void set_U35686DFA3DBAE1C40758CFEA05B267DAC2FAF6CCDFADBC08A75D81088B777C751_98(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___5686DFA3DBAE1C40758CFEA05B267DAC2FAF6CCDFADBC08A75D81088B777C751_98 = value; } inline static int32_t get_offset_of_U358693A8E9871A51CE017A5CCB2219B320C7893E49E1761EF867DEB94E0466F4D_99() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___58693A8E9871A51CE017A5CCB2219B320C7893E49E1761EF867DEB94E0466F4D_99)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_U358693A8E9871A51CE017A5CCB2219B320C7893E49E1761EF867DEB94E0466F4D_99() const { return ___58693A8E9871A51CE017A5CCB2219B320C7893E49E1761EF867DEB94E0466F4D_99; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_U358693A8E9871A51CE017A5CCB2219B320C7893E49E1761EF867DEB94E0466F4D_99() { return &___58693A8E9871A51CE017A5CCB2219B320C7893E49E1761EF867DEB94E0466F4D_99; } inline void set_U358693A8E9871A51CE017A5CCB2219B320C7893E49E1761EF867DEB94E0466F4D_99(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___58693A8E9871A51CE017A5CCB2219B320C7893E49E1761EF867DEB94E0466F4D_99 = value; } inline static int32_t get_offset_of_U3586CB2936F35105D4A71FF1186E81528F1980A2E5BB1E2719E0D86809CB1080A_100() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___586CB2936F35105D4A71FF1186E81528F1980A2E5BB1E2719E0D86809CB1080A_100)); } inline __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E get_U3586CB2936F35105D4A71FF1186E81528F1980A2E5BB1E2719E0D86809CB1080A_100() const { return ___586CB2936F35105D4A71FF1186E81528F1980A2E5BB1E2719E0D86809CB1080A_100; } inline __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E * get_address_of_U3586CB2936F35105D4A71FF1186E81528F1980A2E5BB1E2719E0D86809CB1080A_100() { return &___586CB2936F35105D4A71FF1186E81528F1980A2E5BB1E2719E0D86809CB1080A_100; } inline void set_U3586CB2936F35105D4A71FF1186E81528F1980A2E5BB1E2719E0D86809CB1080A_100(__StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E value) { ___586CB2936F35105D4A71FF1186E81528F1980A2E5BB1E2719E0D86809CB1080A_100 = value; } inline static int32_t get_offset_of_U35961BF1FCF83803CE7775E15E9DB8D21AF741539B85CCFDD643F9E22CC7820D6_101() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___5961BF1FCF83803CE7775E15E9DB8D21AF741539B85CCFDD643F9E22CC7820D6_101)); } inline __StaticArrayInitTypeSizeU3D120_tD78937C26C99B5FDF514E7F2EB4F8F2367B4C05A get_U35961BF1FCF83803CE7775E15E9DB8D21AF741539B85CCFDD643F9E22CC7820D6_101() const { return ___5961BF1FCF83803CE7775E15E9DB8D21AF741539B85CCFDD643F9E22CC7820D6_101; } inline __StaticArrayInitTypeSizeU3D120_tD78937C26C99B5FDF514E7F2EB4F8F2367B4C05A * get_address_of_U35961BF1FCF83803CE7775E15E9DB8D21AF741539B85CCFDD643F9E22CC7820D6_101() { return &___5961BF1FCF83803CE7775E15E9DB8D21AF741539B85CCFDD643F9E22CC7820D6_101; } inline void set_U35961BF1FCF83803CE7775E15E9DB8D21AF741539B85CCFDD643F9E22CC7820D6_101(__StaticArrayInitTypeSizeU3D120_tD78937C26C99B5FDF514E7F2EB4F8F2367B4C05A value) { ___5961BF1FCF83803CE7775E15E9DB8D21AF741539B85CCFDD643F9E22CC7820D6_101 = value; } inline static int32_t get_offset_of_U359B7E757844D3BF9299877BD1C17451611BFBAB493374D6B18D973FDE534151A_102() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___59B7E757844D3BF9299877BD1C17451611BFBAB493374D6B18D973FDE534151A_102)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U359B7E757844D3BF9299877BD1C17451611BFBAB493374D6B18D973FDE534151A_102() const { return ___59B7E757844D3BF9299877BD1C17451611BFBAB493374D6B18D973FDE534151A_102; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U359B7E757844D3BF9299877BD1C17451611BFBAB493374D6B18D973FDE534151A_102() { return &___59B7E757844D3BF9299877BD1C17451611BFBAB493374D6B18D973FDE534151A_102; } inline void set_U359B7E757844D3BF9299877BD1C17451611BFBAB493374D6B18D973FDE534151A_102(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___59B7E757844D3BF9299877BD1C17451611BFBAB493374D6B18D973FDE534151A_102 = value; } inline static int32_t get_offset_of_U35A33FCFEC23C49D91BCF58CE2472DC9F3662CD086BD29FC44AF2E14567238A30_103() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___5A33FCFEC23C49D91BCF58CE2472DC9F3662CD086BD29FC44AF2E14567238A30_103)); } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F get_U35A33FCFEC23C49D91BCF58CE2472DC9F3662CD086BD29FC44AF2E14567238A30_103() const { return ___5A33FCFEC23C49D91BCF58CE2472DC9F3662CD086BD29FC44AF2E14567238A30_103; } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F * get_address_of_U35A33FCFEC23C49D91BCF58CE2472DC9F3662CD086BD29FC44AF2E14567238A30_103() { return &___5A33FCFEC23C49D91BCF58CE2472DC9F3662CD086BD29FC44AF2E14567238A30_103; } inline void set_U35A33FCFEC23C49D91BCF58CE2472DC9F3662CD086BD29FC44AF2E14567238A30_103(__StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F value) { ___5A33FCFEC23C49D91BCF58CE2472DC9F3662CD086BD29FC44AF2E14567238A30_103 = value; } inline static int32_t get_offset_of_U35B979F69B96A61586A09DD4ED26F20534C629B08732AE32FA34B6F8A0049ACDD_104() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___5B979F69B96A61586A09DD4ED26F20534C629B08732AE32FA34B6F8A0049ACDD_104)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U35B979F69B96A61586A09DD4ED26F20534C629B08732AE32FA34B6F8A0049ACDD_104() const { return ___5B979F69B96A61586A09DD4ED26F20534C629B08732AE32FA34B6F8A0049ACDD_104; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U35B979F69B96A61586A09DD4ED26F20534C629B08732AE32FA34B6F8A0049ACDD_104() { return &___5B979F69B96A61586A09DD4ED26F20534C629B08732AE32FA34B6F8A0049ACDD_104; } inline void set_U35B979F69B96A61586A09DD4ED26F20534C629B08732AE32FA34B6F8A0049ACDD_104(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___5B979F69B96A61586A09DD4ED26F20534C629B08732AE32FA34B6F8A0049ACDD_104 = value; } inline static int32_t get_offset_of_U35BBB9265FCB4E834C68440328645B1A187F68D3275881FC46B21564B11326DA5_105() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___5BBB9265FCB4E834C68440328645B1A187F68D3275881FC46B21564B11326DA5_105)); } inline __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F get_U35BBB9265FCB4E834C68440328645B1A187F68D3275881FC46B21564B11326DA5_105() const { return ___5BBB9265FCB4E834C68440328645B1A187F68D3275881FC46B21564B11326DA5_105; } inline __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F * get_address_of_U35BBB9265FCB4E834C68440328645B1A187F68D3275881FC46B21564B11326DA5_105() { return &___5BBB9265FCB4E834C68440328645B1A187F68D3275881FC46B21564B11326DA5_105; } inline void set_U35BBB9265FCB4E834C68440328645B1A187F68D3275881FC46B21564B11326DA5_105(__StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F value) { ___5BBB9265FCB4E834C68440328645B1A187F68D3275881FC46B21564B11326DA5_105 = value; } inline static int32_t get_offset_of_U35D2BCB56850200B2EDECD280A83B6F489E2DE5771E609FABA8A5C4816206CB7A_106() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___5D2BCB56850200B2EDECD280A83B6F489E2DE5771E609FABA8A5C4816206CB7A_106)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_U35D2BCB56850200B2EDECD280A83B6F489E2DE5771E609FABA8A5C4816206CB7A_106() const { return ___5D2BCB56850200B2EDECD280A83B6F489E2DE5771E609FABA8A5C4816206CB7A_106; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_U35D2BCB56850200B2EDECD280A83B6F489E2DE5771E609FABA8A5C4816206CB7A_106() { return &___5D2BCB56850200B2EDECD280A83B6F489E2DE5771E609FABA8A5C4816206CB7A_106; } inline void set_U35D2BCB56850200B2EDECD280A83B6F489E2DE5771E609FABA8A5C4816206CB7A_106(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___5D2BCB56850200B2EDECD280A83B6F489E2DE5771E609FABA8A5C4816206CB7A_106 = value; } inline static int32_t get_offset_of_U35D34088B4ABB1F3FE88DCF84DD5C145EFD5EA01DF1B05BB8FEAD12305B0979B7_107() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___5D34088B4ABB1F3FE88DCF84DD5C145EFD5EA01DF1B05BB8FEAD12305B0979B7_107)); } inline __StaticArrayInitTypeSizeU3D384_t46003A58CA4B346F0AB7AB5EE6A64AA08241F97E get_U35D34088B4ABB1F3FE88DCF84DD5C145EFD5EA01DF1B05BB8FEAD12305B0979B7_107() const { return ___5D34088B4ABB1F3FE88DCF84DD5C145EFD5EA01DF1B05BB8FEAD12305B0979B7_107; } inline __StaticArrayInitTypeSizeU3D384_t46003A58CA4B346F0AB7AB5EE6A64AA08241F97E * get_address_of_U35D34088B4ABB1F3FE88DCF84DD5C145EFD5EA01DF1B05BB8FEAD12305B0979B7_107() { return &___5D34088B4ABB1F3FE88DCF84DD5C145EFD5EA01DF1B05BB8FEAD12305B0979B7_107; } inline void set_U35D34088B4ABB1F3FE88DCF84DD5C145EFD5EA01DF1B05BB8FEAD12305B0979B7_107(__StaticArrayInitTypeSizeU3D384_t46003A58CA4B346F0AB7AB5EE6A64AA08241F97E value) { ___5D34088B4ABB1F3FE88DCF84DD5C145EFD5EA01DF1B05BB8FEAD12305B0979B7_107 = value; } inline static int32_t get_offset_of_U35D6878AD6E68B2CCB04A7CD7942BE07C15F947CCA8824203021DD465D90712AD_108() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___5D6878AD6E68B2CCB04A7CD7942BE07C15F947CCA8824203021DD465D90712AD_108)); } inline __StaticArrayInitTypeSizeU3D124_t4DC490DCE9056B4FDAA27442CBBA7F0F499B0451 get_U35D6878AD6E68B2CCB04A7CD7942BE07C15F947CCA8824203021DD465D90712AD_108() const { return ___5D6878AD6E68B2CCB04A7CD7942BE07C15F947CCA8824203021DD465D90712AD_108; } inline __StaticArrayInitTypeSizeU3D124_t4DC490DCE9056B4FDAA27442CBBA7F0F499B0451 * get_address_of_U35D6878AD6E68B2CCB04A7CD7942BE07C15F947CCA8824203021DD465D90712AD_108() { return &___5D6878AD6E68B2CCB04A7CD7942BE07C15F947CCA8824203021DD465D90712AD_108; } inline void set_U35D6878AD6E68B2CCB04A7CD7942BE07C15F947CCA8824203021DD465D90712AD_108(__StaticArrayInitTypeSizeU3D124_t4DC490DCE9056B4FDAA27442CBBA7F0F499B0451 value) { ___5D6878AD6E68B2CCB04A7CD7942BE07C15F947CCA8824203021DD465D90712AD_108 = value; } inline static int32_t get_offset_of_U35DCC8698D4E5400BC54B6A6E36FB1F5E060B2CE6A676F4FC474015F9A0FC7CB0_109() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___5DCC8698D4E5400BC54B6A6E36FB1F5E060B2CE6A676F4FC474015F9A0FC7CB0_109)); } inline __StaticArrayInitTypeSizeU3D36_t5A0F5FAC8609C11AC407745154F17247010BD4A1 get_U35DCC8698D4E5400BC54B6A6E36FB1F5E060B2CE6A676F4FC474015F9A0FC7CB0_109() const { return ___5DCC8698D4E5400BC54B6A6E36FB1F5E060B2CE6A676F4FC474015F9A0FC7CB0_109; } inline __StaticArrayInitTypeSizeU3D36_t5A0F5FAC8609C11AC407745154F17247010BD4A1 * get_address_of_U35DCC8698D4E5400BC54B6A6E36FB1F5E060B2CE6A676F4FC474015F9A0FC7CB0_109() { return &___5DCC8698D4E5400BC54B6A6E36FB1F5E060B2CE6A676F4FC474015F9A0FC7CB0_109; } inline void set_U35DCC8698D4E5400BC54B6A6E36FB1F5E060B2CE6A676F4FC474015F9A0FC7CB0_109(__StaticArrayInitTypeSizeU3D36_t5A0F5FAC8609C11AC407745154F17247010BD4A1 value) { ___5DCC8698D4E5400BC54B6A6E36FB1F5E060B2CE6A676F4FC474015F9A0FC7CB0_109 = value; } inline static int32_t get_offset_of_U35DF5DA3512C124C2BB3C3676FFEDA4E6CC5E902C2A6027D37EB4B5AB64ED4382_110() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___5DF5DA3512C124C2BB3C3676FFEDA4E6CC5E902C2A6027D37EB4B5AB64ED4382_110)); } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F get_U35DF5DA3512C124C2BB3C3676FFEDA4E6CC5E902C2A6027D37EB4B5AB64ED4382_110() const { return ___5DF5DA3512C124C2BB3C3676FFEDA4E6CC5E902C2A6027D37EB4B5AB64ED4382_110; } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F * get_address_of_U35DF5DA3512C124C2BB3C3676FFEDA4E6CC5E902C2A6027D37EB4B5AB64ED4382_110() { return &___5DF5DA3512C124C2BB3C3676FFEDA4E6CC5E902C2A6027D37EB4B5AB64ED4382_110; } inline void set_U35DF5DA3512C124C2BB3C3676FFEDA4E6CC5E902C2A6027D37EB4B5AB64ED4382_110(__StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F value) { ___5DF5DA3512C124C2BB3C3676FFEDA4E6CC5E902C2A6027D37EB4B5AB64ED4382_110 = value; } inline static int32_t get_offset_of_U35F2BD6104C620DE24A78538B659D1218F81A8DC50ED6645B5A040194E0CDC663_111() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___5F2BD6104C620DE24A78538B659D1218F81A8DC50ED6645B5A040194E0CDC663_111)); } inline __StaticArrayInitTypeSizeU3D28_tB9DE54DF41ABC27805509271A10177513906BF30 get_U35F2BD6104C620DE24A78538B659D1218F81A8DC50ED6645B5A040194E0CDC663_111() const { return ___5F2BD6104C620DE24A78538B659D1218F81A8DC50ED6645B5A040194E0CDC663_111; } inline __StaticArrayInitTypeSizeU3D28_tB9DE54DF41ABC27805509271A10177513906BF30 * get_address_of_U35F2BD6104C620DE24A78538B659D1218F81A8DC50ED6645B5A040194E0CDC663_111() { return &___5F2BD6104C620DE24A78538B659D1218F81A8DC50ED6645B5A040194E0CDC663_111; } inline void set_U35F2BD6104C620DE24A78538B659D1218F81A8DC50ED6645B5A040194E0CDC663_111(__StaticArrayInitTypeSizeU3D28_tB9DE54DF41ABC27805509271A10177513906BF30 value) { ___5F2BD6104C620DE24A78538B659D1218F81A8DC50ED6645B5A040194E0CDC663_111 = value; } inline static int32_t get_offset_of_U361358F81002F15B87F2746D4CD7FE28FD2CB45B8F0840B807B18C5A23F791CB1_112() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___61358F81002F15B87F2746D4CD7FE28FD2CB45B8F0840B807B18C5A23F791CB1_112)); } inline __StaticArrayInitTypeSizeU3D124_t4DC490DCE9056B4FDAA27442CBBA7F0F499B0451 get_U361358F81002F15B87F2746D4CD7FE28FD2CB45B8F0840B807B18C5A23F791CB1_112() const { return ___61358F81002F15B87F2746D4CD7FE28FD2CB45B8F0840B807B18C5A23F791CB1_112; } inline __StaticArrayInitTypeSizeU3D124_t4DC490DCE9056B4FDAA27442CBBA7F0F499B0451 * get_address_of_U361358F81002F15B87F2746D4CD7FE28FD2CB45B8F0840B807B18C5A23F791CB1_112() { return &___61358F81002F15B87F2746D4CD7FE28FD2CB45B8F0840B807B18C5A23F791CB1_112; } inline void set_U361358F81002F15B87F2746D4CD7FE28FD2CB45B8F0840B807B18C5A23F791CB1_112(__StaticArrayInitTypeSizeU3D124_t4DC490DCE9056B4FDAA27442CBBA7F0F499B0451 value) { ___61358F81002F15B87F2746D4CD7FE28FD2CB45B8F0840B807B18C5A23F791CB1_112 = value; } inline static int32_t get_offset_of_U36164463B7C304A53288FDCF4DD2136E0E9A441D9930215FB691E3D2F692C3993_113() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___6164463B7C304A53288FDCF4DD2136E0E9A441D9930215FB691E3D2F692C3993_113)); } inline __StaticArrayInitTypeSizeU3D48_tFD8B246DD801288DF862F996D7F0915222433AD7 get_U36164463B7C304A53288FDCF4DD2136E0E9A441D9930215FB691E3D2F692C3993_113() const { return ___6164463B7C304A53288FDCF4DD2136E0E9A441D9930215FB691E3D2F692C3993_113; } inline __StaticArrayInitTypeSizeU3D48_tFD8B246DD801288DF862F996D7F0915222433AD7 * get_address_of_U36164463B7C304A53288FDCF4DD2136E0E9A441D9930215FB691E3D2F692C3993_113() { return &___6164463B7C304A53288FDCF4DD2136E0E9A441D9930215FB691E3D2F692C3993_113; } inline void set_U36164463B7C304A53288FDCF4DD2136E0E9A441D9930215FB691E3D2F692C3993_113(__StaticArrayInitTypeSizeU3D48_tFD8B246DD801288DF862F996D7F0915222433AD7 value) { ___6164463B7C304A53288FDCF4DD2136E0E9A441D9930215FB691E3D2F692C3993_113 = value; } inline static int32_t get_offset_of_U3624B1BC8BE6B6F8CF39572731AD0E5BDF2AAB137D0AB4A0F473B3D00666D766B_114() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___624B1BC8BE6B6F8CF39572731AD0E5BDF2AAB137D0AB4A0F473B3D00666D766B_114)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_U3624B1BC8BE6B6F8CF39572731AD0E5BDF2AAB137D0AB4A0F473B3D00666D766B_114() const { return ___624B1BC8BE6B6F8CF39572731AD0E5BDF2AAB137D0AB4A0F473B3D00666D766B_114; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_U3624B1BC8BE6B6F8CF39572731AD0E5BDF2AAB137D0AB4A0F473B3D00666D766B_114() { return &___624B1BC8BE6B6F8CF39572731AD0E5BDF2AAB137D0AB4A0F473B3D00666D766B_114; } inline void set_U3624B1BC8BE6B6F8CF39572731AD0E5BDF2AAB137D0AB4A0F473B3D00666D766B_114(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___624B1BC8BE6B6F8CF39572731AD0E5BDF2AAB137D0AB4A0F473B3D00666D766B_114 = value; } inline static int32_t get_offset_of_U362A191EC74B0F281659DD81132751B7656F065A2AD5A8E892CAE1A8E4DBFD0B5_115() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___62A191EC74B0F281659DD81132751B7656F065A2AD5A8E892CAE1A8E4DBFD0B5_115)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_U362A191EC74B0F281659DD81132751B7656F065A2AD5A8E892CAE1A8E4DBFD0B5_115() const { return ___62A191EC74B0F281659DD81132751B7656F065A2AD5A8E892CAE1A8E4DBFD0B5_115; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_U362A191EC74B0F281659DD81132751B7656F065A2AD5A8E892CAE1A8E4DBFD0B5_115() { return &___62A191EC74B0F281659DD81132751B7656F065A2AD5A8E892CAE1A8E4DBFD0B5_115; } inline void set_U362A191EC74B0F281659DD81132751B7656F065A2AD5A8E892CAE1A8E4DBFD0B5_115(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___62A191EC74B0F281659DD81132751B7656F065A2AD5A8E892CAE1A8E4DBFD0B5_115 = value; } inline static int32_t get_offset_of_U3663A2D6435FFB6C16D9382D8E22490E109514E59C03574E825F6B491AD8C8AAC_116() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___663A2D6435FFB6C16D9382D8E22490E109514E59C03574E825F6B491AD8C8AAC_116)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_U3663A2D6435FFB6C16D9382D8E22490E109514E59C03574E825F6B491AD8C8AAC_116() const { return ___663A2D6435FFB6C16D9382D8E22490E109514E59C03574E825F6B491AD8C8AAC_116; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_U3663A2D6435FFB6C16D9382D8E22490E109514E59C03574E825F6B491AD8C8AAC_116() { return &___663A2D6435FFB6C16D9382D8E22490E109514E59C03574E825F6B491AD8C8AAC_116; } inline void set_U3663A2D6435FFB6C16D9382D8E22490E109514E59C03574E825F6B491AD8C8AAC_116(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___663A2D6435FFB6C16D9382D8E22490E109514E59C03574E825F6B491AD8C8AAC_116 = value; } inline static int32_t get_offset_of_U36708B572BDBE5D5E79701DBB9744AF74B50FED7608218F2D7BF1B5D87E5A53ED_117() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___6708B572BDBE5D5E79701DBB9744AF74B50FED7608218F2D7BF1B5D87E5A53ED_117)); } inline __StaticArrayInitTypeSizeU3D48_tFD8B246DD801288DF862F996D7F0915222433AD7 get_U36708B572BDBE5D5E79701DBB9744AF74B50FED7608218F2D7BF1B5D87E5A53ED_117() const { return ___6708B572BDBE5D5E79701DBB9744AF74B50FED7608218F2D7BF1B5D87E5A53ED_117; } inline __StaticArrayInitTypeSizeU3D48_tFD8B246DD801288DF862F996D7F0915222433AD7 * get_address_of_U36708B572BDBE5D5E79701DBB9744AF74B50FED7608218F2D7BF1B5D87E5A53ED_117() { return &___6708B572BDBE5D5E79701DBB9744AF74B50FED7608218F2D7BF1B5D87E5A53ED_117; } inline void set_U36708B572BDBE5D5E79701DBB9744AF74B50FED7608218F2D7BF1B5D87E5A53ED_117(__StaticArrayInitTypeSizeU3D48_tFD8B246DD801288DF862F996D7F0915222433AD7 value) { ___6708B572BDBE5D5E79701DBB9744AF74B50FED7608218F2D7BF1B5D87E5A53ED_117 = value; } inline static int32_t get_offset_of_U3684F74091FEFCDCDE9B282E317592631CA48B75F46340A11B95A474700E656D4_118() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___684F74091FEFCDCDE9B282E317592631CA48B75F46340A11B95A474700E656D4_118)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U3684F74091FEFCDCDE9B282E317592631CA48B75F46340A11B95A474700E656D4_118() const { return ___684F74091FEFCDCDE9B282E317592631CA48B75F46340A11B95A474700E656D4_118; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U3684F74091FEFCDCDE9B282E317592631CA48B75F46340A11B95A474700E656D4_118() { return &___684F74091FEFCDCDE9B282E317592631CA48B75F46340A11B95A474700E656D4_118; } inline void set_U3684F74091FEFCDCDE9B282E317592631CA48B75F46340A11B95A474700E656D4_118(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___684F74091FEFCDCDE9B282E317592631CA48B75F46340A11B95A474700E656D4_118 = value; } inline static int32_t get_offset_of_U36965AC9D48CA477E9A17658D33A217051648138AD7024514DE014D8001B533C3_119() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___6965AC9D48CA477E9A17658D33A217051648138AD7024514DE014D8001B533C3_119)); } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F get_U36965AC9D48CA477E9A17658D33A217051648138AD7024514DE014D8001B533C3_119() const { return ___6965AC9D48CA477E9A17658D33A217051648138AD7024514DE014D8001B533C3_119; } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F * get_address_of_U36965AC9D48CA477E9A17658D33A217051648138AD7024514DE014D8001B533C3_119() { return &___6965AC9D48CA477E9A17658D33A217051648138AD7024514DE014D8001B533C3_119; } inline void set_U36965AC9D48CA477E9A17658D33A217051648138AD7024514DE014D8001B533C3_119(__StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F value) { ___6965AC9D48CA477E9A17658D33A217051648138AD7024514DE014D8001B533C3_119 = value; } inline static int32_t get_offset_of_U36A5953C1A0D67EA77DC8A5D34D0055B3D6A7A3C4CA3F6FE599471C40B9B017FC_120() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___6A5953C1A0D67EA77DC8A5D34D0055B3D6A7A3C4CA3F6FE599471C40B9B017FC_120)); } inline __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F get_U36A5953C1A0D67EA77DC8A5D34D0055B3D6A7A3C4CA3F6FE599471C40B9B017FC_120() const { return ___6A5953C1A0D67EA77DC8A5D34D0055B3D6A7A3C4CA3F6FE599471C40B9B017FC_120; } inline __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F * get_address_of_U36A5953C1A0D67EA77DC8A5D34D0055B3D6A7A3C4CA3F6FE599471C40B9B017FC_120() { return &___6A5953C1A0D67EA77DC8A5D34D0055B3D6A7A3C4CA3F6FE599471C40B9B017FC_120; } inline void set_U36A5953C1A0D67EA77DC8A5D34D0055B3D6A7A3C4CA3F6FE599471C40B9B017FC_120(__StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F value) { ___6A5953C1A0D67EA77DC8A5D34D0055B3D6A7A3C4CA3F6FE599471C40B9B017FC_120 = value; } inline static int32_t get_offset_of_U36A5EAF956411330E0B28CAD097D9698CBF4098D268AD1C0E04FE294F0607E53D_121() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___6A5EAF956411330E0B28CAD097D9698CBF4098D268AD1C0E04FE294F0607E53D_121)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_U36A5EAF956411330E0B28CAD097D9698CBF4098D268AD1C0E04FE294F0607E53D_121() const { return ___6A5EAF956411330E0B28CAD097D9698CBF4098D268AD1C0E04FE294F0607E53D_121; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_U36A5EAF956411330E0B28CAD097D9698CBF4098D268AD1C0E04FE294F0607E53D_121() { return &___6A5EAF956411330E0B28CAD097D9698CBF4098D268AD1C0E04FE294F0607E53D_121; } inline void set_U36A5EAF956411330E0B28CAD097D9698CBF4098D268AD1C0E04FE294F0607E53D_121(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___6A5EAF956411330E0B28CAD097D9698CBF4098D268AD1C0E04FE294F0607E53D_121 = value; } inline static int32_t get_offset_of_U36C99A25F0D00AE5BC45EE7F62CFC963F5DFC8FE4F7CE82ACEB0B5A1CDB51E3AB_122() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___6C99A25F0D00AE5BC45EE7F62CFC963F5DFC8FE4F7CE82ACEB0B5A1CDB51E3AB_122)); } inline __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 get_U36C99A25F0D00AE5BC45EE7F62CFC963F5DFC8FE4F7CE82ACEB0B5A1CDB51E3AB_122() const { return ___6C99A25F0D00AE5BC45EE7F62CFC963F5DFC8FE4F7CE82ACEB0B5A1CDB51E3AB_122; } inline __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 * get_address_of_U36C99A25F0D00AE5BC45EE7F62CFC963F5DFC8FE4F7CE82ACEB0B5A1CDB51E3AB_122() { return &___6C99A25F0D00AE5BC45EE7F62CFC963F5DFC8FE4F7CE82ACEB0B5A1CDB51E3AB_122; } inline void set_U36C99A25F0D00AE5BC45EE7F62CFC963F5DFC8FE4F7CE82ACEB0B5A1CDB51E3AB_122(__StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 value) { ___6C99A25F0D00AE5BC45EE7F62CFC963F5DFC8FE4F7CE82ACEB0B5A1CDB51E3AB_122 = value; } inline static int32_t get_offset_of_U36CB004567F6DA8572C921962EDECA8ABB063258E4B378E85E52017698A655056_123() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___6CB004567F6DA8572C921962EDECA8ABB063258E4B378E85E52017698A655056_123)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U36CB004567F6DA8572C921962EDECA8ABB063258E4B378E85E52017698A655056_123() const { return ___6CB004567F6DA8572C921962EDECA8ABB063258E4B378E85E52017698A655056_123; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U36CB004567F6DA8572C921962EDECA8ABB063258E4B378E85E52017698A655056_123() { return &___6CB004567F6DA8572C921962EDECA8ABB063258E4B378E85E52017698A655056_123; } inline void set_U36CB004567F6DA8572C921962EDECA8ABB063258E4B378E85E52017698A655056_123(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___6CB004567F6DA8572C921962EDECA8ABB063258E4B378E85E52017698A655056_123 = value; } inline static int32_t get_offset_of_U36D4410134564FFF8B73800035CA093523750DF325139D004701C67D97488B8D5_124() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___6D4410134564FFF8B73800035CA093523750DF325139D004701C67D97488B8D5_124)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_U36D4410134564FFF8B73800035CA093523750DF325139D004701C67D97488B8D5_124() const { return ___6D4410134564FFF8B73800035CA093523750DF325139D004701C67D97488B8D5_124; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_U36D4410134564FFF8B73800035CA093523750DF325139D004701C67D97488B8D5_124() { return &___6D4410134564FFF8B73800035CA093523750DF325139D004701C67D97488B8D5_124; } inline void set_U36D4410134564FFF8B73800035CA093523750DF325139D004701C67D97488B8D5_124(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___6D4410134564FFF8B73800035CA093523750DF325139D004701C67D97488B8D5_124 = value; } inline static int32_t get_offset_of_U36DDD174356763393334AE30B2B3860AEBC30900BEA96E515EF3174C1DBF9E395_125() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___6DDD174356763393334AE30B2B3860AEBC30900BEA96E515EF3174C1DBF9E395_125)); } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 get_U36DDD174356763393334AE30B2B3860AEBC30900BEA96E515EF3174C1DBF9E395_125() const { return ___6DDD174356763393334AE30B2B3860AEBC30900BEA96E515EF3174C1DBF9E395_125; } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 * get_address_of_U36DDD174356763393334AE30B2B3860AEBC30900BEA96E515EF3174C1DBF9E395_125() { return &___6DDD174356763393334AE30B2B3860AEBC30900BEA96E515EF3174C1DBF9E395_125; } inline void set_U36DDD174356763393334AE30B2B3860AEBC30900BEA96E515EF3174C1DBF9E395_125(__StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 value) { ___6DDD174356763393334AE30B2B3860AEBC30900BEA96E515EF3174C1DBF9E395_125 = value; } inline static int32_t get_offset_of_U36F055E07140AF36F1C17E348B39AB7ACB0647B788E869F4236E285C89C2C89EF_126() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___6F055E07140AF36F1C17E348B39AB7ACB0647B788E869F4236E285C89C2C89EF_126)); } inline __StaticArrayInitTypeSizeU3D28_tB9DE54DF41ABC27805509271A10177513906BF30 get_U36F055E07140AF36F1C17E348B39AB7ACB0647B788E869F4236E285C89C2C89EF_126() const { return ___6F055E07140AF36F1C17E348B39AB7ACB0647B788E869F4236E285C89C2C89EF_126; } inline __StaticArrayInitTypeSizeU3D28_tB9DE54DF41ABC27805509271A10177513906BF30 * get_address_of_U36F055E07140AF36F1C17E348B39AB7ACB0647B788E869F4236E285C89C2C89EF_126() { return &___6F055E07140AF36F1C17E348B39AB7ACB0647B788E869F4236E285C89C2C89EF_126; } inline void set_U36F055E07140AF36F1C17E348B39AB7ACB0647B788E869F4236E285C89C2C89EF_126(__StaticArrayInitTypeSizeU3D28_tB9DE54DF41ABC27805509271A10177513906BF30 value) { ___6F055E07140AF36F1C17E348B39AB7ACB0647B788E869F4236E285C89C2C89EF_126 = value; } inline static int32_t get_offset_of_U37017794F4FA285E1AA4C6FF9994A3DC0EDC472CB13D08BCA7B5CC287C51E0E3E_127() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___7017794F4FA285E1AA4C6FF9994A3DC0EDC472CB13D08BCA7B5CC287C51E0E3E_127)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U37017794F4FA285E1AA4C6FF9994A3DC0EDC472CB13D08BCA7B5CC287C51E0E3E_127() const { return ___7017794F4FA285E1AA4C6FF9994A3DC0EDC472CB13D08BCA7B5CC287C51E0E3E_127; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U37017794F4FA285E1AA4C6FF9994A3DC0EDC472CB13D08BCA7B5CC287C51E0E3E_127() { return &___7017794F4FA285E1AA4C6FF9994A3DC0EDC472CB13D08BCA7B5CC287C51E0E3E_127; } inline void set_U37017794F4FA285E1AA4C6FF9994A3DC0EDC472CB13D08BCA7B5CC287C51E0E3E_127(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___7017794F4FA285E1AA4C6FF9994A3DC0EDC472CB13D08BCA7B5CC287C51E0E3E_127 = value; } inline static int32_t get_offset_of_U3712618256BB5287925AAF70FA8EA2EBFFB72DF72B5D29A339CC9B8DB464EFC14_128() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___712618256BB5287925AAF70FA8EA2EBFFB72DF72B5D29A339CC9B8DB464EFC14_128)); } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 get_U3712618256BB5287925AAF70FA8EA2EBFFB72DF72B5D29A339CC9B8DB464EFC14_128() const { return ___712618256BB5287925AAF70FA8EA2EBFFB72DF72B5D29A339CC9B8DB464EFC14_128; } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 * get_address_of_U3712618256BB5287925AAF70FA8EA2EBFFB72DF72B5D29A339CC9B8DB464EFC14_128() { return &___712618256BB5287925AAF70FA8EA2EBFFB72DF72B5D29A339CC9B8DB464EFC14_128; } inline void set_U3712618256BB5287925AAF70FA8EA2EBFFB72DF72B5D29A339CC9B8DB464EFC14_128(__StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 value) { ___712618256BB5287925AAF70FA8EA2EBFFB72DF72B5D29A339CC9B8DB464EFC14_128 = value; } inline static int32_t get_offset_of_U3715F5EB09E6B0F8E87AD50BDAB729CF129E723B95990CE21DF233461DC29304E_129() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___715F5EB09E6B0F8E87AD50BDAB729CF129E723B95990CE21DF233461DC29304E_129)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_U3715F5EB09E6B0F8E87AD50BDAB729CF129E723B95990CE21DF233461DC29304E_129() const { return ___715F5EB09E6B0F8E87AD50BDAB729CF129E723B95990CE21DF233461DC29304E_129; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_U3715F5EB09E6B0F8E87AD50BDAB729CF129E723B95990CE21DF233461DC29304E_129() { return &___715F5EB09E6B0F8E87AD50BDAB729CF129E723B95990CE21DF233461DC29304E_129; } inline void set_U3715F5EB09E6B0F8E87AD50BDAB729CF129E723B95990CE21DF233461DC29304E_129(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___715F5EB09E6B0F8E87AD50BDAB729CF129E723B95990CE21DF233461DC29304E_129 = value; } inline static int32_t get_offset_of_U372B8B8D3A6D4A8C2F9364B2F944B36201C7D8A2B43DBF558D1A09883E969D74D_130() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___72B8B8D3A6D4A8C2F9364B2F944B36201C7D8A2B43DBF558D1A09883E969D74D_130)); } inline int32_t get_U372B8B8D3A6D4A8C2F9364B2F944B36201C7D8A2B43DBF558D1A09883E969D74D_130() const { return ___72B8B8D3A6D4A8C2F9364B2F944B36201C7D8A2B43DBF558D1A09883E969D74D_130; } inline int32_t* get_address_of_U372B8B8D3A6D4A8C2F9364B2F944B36201C7D8A2B43DBF558D1A09883E969D74D_130() { return &___72B8B8D3A6D4A8C2F9364B2F944B36201C7D8A2B43DBF558D1A09883E969D74D_130; } inline void set_U372B8B8D3A6D4A8C2F9364B2F944B36201C7D8A2B43DBF558D1A09883E969D74D_130(int32_t value) { ___72B8B8D3A6D4A8C2F9364B2F944B36201C7D8A2B43DBF558D1A09883E969D74D_130 = value; } inline static int32_t get_offset_of_U374EF7306E7452D6859B6463CE496B8DF30925F69E1B2969E1F3F34BBC9C6AF04_131() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___74EF7306E7452D6859B6463CE496B8DF30925F69E1B2969E1F3F34BBC9C6AF04_131)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_U374EF7306E7452D6859B6463CE496B8DF30925F69E1B2969E1F3F34BBC9C6AF04_131() const { return ___74EF7306E7452D6859B6463CE496B8DF30925F69E1B2969E1F3F34BBC9C6AF04_131; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_U374EF7306E7452D6859B6463CE496B8DF30925F69E1B2969E1F3F34BBC9C6AF04_131() { return &___74EF7306E7452D6859B6463CE496B8DF30925F69E1B2969E1F3F34BBC9C6AF04_131; } inline void set_U374EF7306E7452D6859B6463CE496B8DF30925F69E1B2969E1F3F34BBC9C6AF04_131(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___74EF7306E7452D6859B6463CE496B8DF30925F69E1B2969E1F3F34BBC9C6AF04_131 = value; } inline static int32_t get_offset_of_U37543B37FA53FDE2C84F07FD39F368555966AA1C0EB2F2FD26B294D79966E290E_132() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___7543B37FA53FDE2C84F07FD39F368555966AA1C0EB2F2FD26B294D79966E290E_132)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_U37543B37FA53FDE2C84F07FD39F368555966AA1C0EB2F2FD26B294D79966E290E_132() const { return ___7543B37FA53FDE2C84F07FD39F368555966AA1C0EB2F2FD26B294D79966E290E_132; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_U37543B37FA53FDE2C84F07FD39F368555966AA1C0EB2F2FD26B294D79966E290E_132() { return &___7543B37FA53FDE2C84F07FD39F368555966AA1C0EB2F2FD26B294D79966E290E_132; } inline void set_U37543B37FA53FDE2C84F07FD39F368555966AA1C0EB2F2FD26B294D79966E290E_132(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___7543B37FA53FDE2C84F07FD39F368555966AA1C0EB2F2FD26B294D79966E290E_132 = value; } inline static int32_t get_offset_of_U376387D5ADFE12720EE7A21E3C30296DE8356BE159BD422D9900C8146F914CADE_133() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___76387D5ADFE12720EE7A21E3C30296DE8356BE159BD422D9900C8146F914CADE_133)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U376387D5ADFE12720EE7A21E3C30296DE8356BE159BD422D9900C8146F914CADE_133() const { return ___76387D5ADFE12720EE7A21E3C30296DE8356BE159BD422D9900C8146F914CADE_133; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U376387D5ADFE12720EE7A21E3C30296DE8356BE159BD422D9900C8146F914CADE_133() { return &___76387D5ADFE12720EE7A21E3C30296DE8356BE159BD422D9900C8146F914CADE_133; } inline void set_U376387D5ADFE12720EE7A21E3C30296DE8356BE159BD422D9900C8146F914CADE_133(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___76387D5ADFE12720EE7A21E3C30296DE8356BE159BD422D9900C8146F914CADE_133 = value; } inline static int32_t get_offset_of_U37650DB5F7D0AD39E75A5BB512A98F9763E302328E120F06230159AC1AD1C6B5D_134() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___7650DB5F7D0AD39E75A5BB512A98F9763E302328E120F06230159AC1AD1C6B5D_134)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U37650DB5F7D0AD39E75A5BB512A98F9763E302328E120F06230159AC1AD1C6B5D_134() const { return ___7650DB5F7D0AD39E75A5BB512A98F9763E302328E120F06230159AC1AD1C6B5D_134; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U37650DB5F7D0AD39E75A5BB512A98F9763E302328E120F06230159AC1AD1C6B5D_134() { return &___7650DB5F7D0AD39E75A5BB512A98F9763E302328E120F06230159AC1AD1C6B5D_134; } inline void set_U37650DB5F7D0AD39E75A5BB512A98F9763E302328E120F06230159AC1AD1C6B5D_134(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___7650DB5F7D0AD39E75A5BB512A98F9763E302328E120F06230159AC1AD1C6B5D_134 = value; } inline static int32_t get_offset_of_U37854BA783A61F0B4D74198AF22A2D285EF70C526BDE4BE78FEDF180436FB621D_135() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___7854BA783A61F0B4D74198AF22A2D285EF70C526BDE4BE78FEDF180436FB621D_135)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U37854BA783A61F0B4D74198AF22A2D285EF70C526BDE4BE78FEDF180436FB621D_135() const { return ___7854BA783A61F0B4D74198AF22A2D285EF70C526BDE4BE78FEDF180436FB621D_135; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U37854BA783A61F0B4D74198AF22A2D285EF70C526BDE4BE78FEDF180436FB621D_135() { return &___7854BA783A61F0B4D74198AF22A2D285EF70C526BDE4BE78FEDF180436FB621D_135; } inline void set_U37854BA783A61F0B4D74198AF22A2D285EF70C526BDE4BE78FEDF180436FB621D_135(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___7854BA783A61F0B4D74198AF22A2D285EF70C526BDE4BE78FEDF180436FB621D_135 = value; } inline static int32_t get_offset_of_U378A70FA0E21C85F13BDFA3D7B70E095EC5B61E51F34D2C1D531142B0634B30E5_136() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___78A70FA0E21C85F13BDFA3D7B70E095EC5B61E51F34D2C1D531142B0634B30E5_136)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U378A70FA0E21C85F13BDFA3D7B70E095EC5B61E51F34D2C1D531142B0634B30E5_136() const { return ___78A70FA0E21C85F13BDFA3D7B70E095EC5B61E51F34D2C1D531142B0634B30E5_136; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U378A70FA0E21C85F13BDFA3D7B70E095EC5B61E51F34D2C1D531142B0634B30E5_136() { return &___78A70FA0E21C85F13BDFA3D7B70E095EC5B61E51F34D2C1D531142B0634B30E5_136; } inline void set_U378A70FA0E21C85F13BDFA3D7B70E095EC5B61E51F34D2C1D531142B0634B30E5_136(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___78A70FA0E21C85F13BDFA3D7B70E095EC5B61E51F34D2C1D531142B0634B30E5_136 = value; } inline static int32_t get_offset_of_U378F6DA256B470C65DC4A98A23DC5F1FBF7ED3CCDE0E93EA0D97363328810055D_137() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___78F6DA256B470C65DC4A98A23DC5F1FBF7ED3CCDE0E93EA0D97363328810055D_137)); } inline __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 get_U378F6DA256B470C65DC4A98A23DC5F1FBF7ED3CCDE0E93EA0D97363328810055D_137() const { return ___78F6DA256B470C65DC4A98A23DC5F1FBF7ED3CCDE0E93EA0D97363328810055D_137; } inline __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 * get_address_of_U378F6DA256B470C65DC4A98A23DC5F1FBF7ED3CCDE0E93EA0D97363328810055D_137() { return &___78F6DA256B470C65DC4A98A23DC5F1FBF7ED3CCDE0E93EA0D97363328810055D_137; } inline void set_U378F6DA256B470C65DC4A98A23DC5F1FBF7ED3CCDE0E93EA0D97363328810055D_137(__StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 value) { ___78F6DA256B470C65DC4A98A23DC5F1FBF7ED3CCDE0E93EA0D97363328810055D_137 = value; } inline static int32_t get_offset_of_U37919EF601386C08FC5EFB981B4A1E478D8413596173FC159B15739E87EE1BA50_138() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___7919EF601386C08FC5EFB981B4A1E478D8413596173FC159B15739E87EE1BA50_138)); } inline __StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE get_U37919EF601386C08FC5EFB981B4A1E478D8413596173FC159B15739E87EE1BA50_138() const { return ___7919EF601386C08FC5EFB981B4A1E478D8413596173FC159B15739E87EE1BA50_138; } inline __StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE * get_address_of_U37919EF601386C08FC5EFB981B4A1E478D8413596173FC159B15739E87EE1BA50_138() { return &___7919EF601386C08FC5EFB981B4A1E478D8413596173FC159B15739E87EE1BA50_138; } inline void set_U37919EF601386C08FC5EFB981B4A1E478D8413596173FC159B15739E87EE1BA50_138(__StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE value) { ___7919EF601386C08FC5EFB981B4A1E478D8413596173FC159B15739E87EE1BA50_138 = value; } inline static int32_t get_offset_of_U379478AF14CB42EC0951669D5D1D864E43C211CBA631D8FFE7F6CD79FF60756C6_139() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___79478AF14CB42EC0951669D5D1D864E43C211CBA631D8FFE7F6CD79FF60756C6_139)); } inline __StaticArrayInitTypeSizeU3D68_tE431405C001EFCAA99F9D46276BFEAF7F5AF4E0F get_U379478AF14CB42EC0951669D5D1D864E43C211CBA631D8FFE7F6CD79FF60756C6_139() const { return ___79478AF14CB42EC0951669D5D1D864E43C211CBA631D8FFE7F6CD79FF60756C6_139; } inline __StaticArrayInitTypeSizeU3D68_tE431405C001EFCAA99F9D46276BFEAF7F5AF4E0F * get_address_of_U379478AF14CB42EC0951669D5D1D864E43C211CBA631D8FFE7F6CD79FF60756C6_139() { return &___79478AF14CB42EC0951669D5D1D864E43C211CBA631D8FFE7F6CD79FF60756C6_139; } inline void set_U379478AF14CB42EC0951669D5D1D864E43C211CBA631D8FFE7F6CD79FF60756C6_139(__StaticArrayInitTypeSizeU3D68_tE431405C001EFCAA99F9D46276BFEAF7F5AF4E0F value) { ___79478AF14CB42EC0951669D5D1D864E43C211CBA631D8FFE7F6CD79FF60756C6_139 = value; } inline static int32_t get_offset_of_U37A36979350F6A229EB7206BEE580F51563EE52B71CD2132680B0AC33B3C31E27_140() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___7A36979350F6A229EB7206BEE580F51563EE52B71CD2132680B0AC33B3C31E27_140)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U37A36979350F6A229EB7206BEE580F51563EE52B71CD2132680B0AC33B3C31E27_140() const { return ___7A36979350F6A229EB7206BEE580F51563EE52B71CD2132680B0AC33B3C31E27_140; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U37A36979350F6A229EB7206BEE580F51563EE52B71CD2132680B0AC33B3C31E27_140() { return &___7A36979350F6A229EB7206BEE580F51563EE52B71CD2132680B0AC33B3C31E27_140; } inline void set_U37A36979350F6A229EB7206BEE580F51563EE52B71CD2132680B0AC33B3C31E27_140(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___7A36979350F6A229EB7206BEE580F51563EE52B71CD2132680B0AC33B3C31E27_140 = value; } inline static int32_t get_offset_of_U37BDD3F08BE488F1D6DCBF05D01C69BA80DF49A9E9E415F0205D575B4B5F32A34_141() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___7BDD3F08BE488F1D6DCBF05D01C69BA80DF49A9E9E415F0205D575B4B5F32A34_141)); } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 get_U37BDD3F08BE488F1D6DCBF05D01C69BA80DF49A9E9E415F0205D575B4B5F32A34_141() const { return ___7BDD3F08BE488F1D6DCBF05D01C69BA80DF49A9E9E415F0205D575B4B5F32A34_141; } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 * get_address_of_U37BDD3F08BE488F1D6DCBF05D01C69BA80DF49A9E9E415F0205D575B4B5F32A34_141() { return &___7BDD3F08BE488F1D6DCBF05D01C69BA80DF49A9E9E415F0205D575B4B5F32A34_141; } inline void set_U37BDD3F08BE488F1D6DCBF05D01C69BA80DF49A9E9E415F0205D575B4B5F32A34_141(__StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 value) { ___7BDD3F08BE488F1D6DCBF05D01C69BA80DF49A9E9E415F0205D575B4B5F32A34_141 = value; } inline static int32_t get_offset_of_U37C8975E1E60A5C8337F28EDF8C33C3B180360B7279644A9BC1AF3C51E6220BF5_142() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___7C8975E1E60A5C8337F28EDF8C33C3B180360B7279644A9BC1AF3C51E6220BF5_142)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_U37C8975E1E60A5C8337F28EDF8C33C3B180360B7279644A9BC1AF3C51E6220BF5_142() const { return ___7C8975E1E60A5C8337F28EDF8C33C3B180360B7279644A9BC1AF3C51E6220BF5_142; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_U37C8975E1E60A5C8337F28EDF8C33C3B180360B7279644A9BC1AF3C51E6220BF5_142() { return &___7C8975E1E60A5C8337F28EDF8C33C3B180360B7279644A9BC1AF3C51E6220BF5_142; } inline void set_U37C8975E1E60A5C8337F28EDF8C33C3B180360B7279644A9BC1AF3C51E6220BF5_142(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___7C8975E1E60A5C8337F28EDF8C33C3B180360B7279644A9BC1AF3C51E6220BF5_142 = value; } inline static int32_t get_offset_of_U37C97C06F982D2F598F71BCF85A27244685EC039BC414EB391EC3EC449A619F37_143() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___7C97C06F982D2F598F71BCF85A27244685EC039BC414EB391EC3EC449A619F37_143)); } inline __StaticArrayInitTypeSizeU3D30_tD08FD0996F882530B072EF52BF88556C13AF0306 get_U37C97C06F982D2F598F71BCF85A27244685EC039BC414EB391EC3EC449A619F37_143() const { return ___7C97C06F982D2F598F71BCF85A27244685EC039BC414EB391EC3EC449A619F37_143; } inline __StaticArrayInitTypeSizeU3D30_tD08FD0996F882530B072EF52BF88556C13AF0306 * get_address_of_U37C97C06F982D2F598F71BCF85A27244685EC039BC414EB391EC3EC449A619F37_143() { return &___7C97C06F982D2F598F71BCF85A27244685EC039BC414EB391EC3EC449A619F37_143; } inline void set_U37C97C06F982D2F598F71BCF85A27244685EC039BC414EB391EC3EC449A619F37_143(__StaticArrayInitTypeSizeU3D30_tD08FD0996F882530B072EF52BF88556C13AF0306 value) { ___7C97C06F982D2F598F71BCF85A27244685EC039BC414EB391EC3EC449A619F37_143 = value; } inline static int32_t get_offset_of_U37DDF88204E7E265240211841F0AB290A5E77EE4F9223EB2E39F9B89C30C41B9D_144() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___7DDF88204E7E265240211841F0AB290A5E77EE4F9223EB2E39F9B89C30C41B9D_144)); } inline __StaticArrayInitTypeSizeU3D116_t9020B92E8453BBAFE2519A469C0893F630E8D2C9 get_U37DDF88204E7E265240211841F0AB290A5E77EE4F9223EB2E39F9B89C30C41B9D_144() const { return ___7DDF88204E7E265240211841F0AB290A5E77EE4F9223EB2E39F9B89C30C41B9D_144; } inline __StaticArrayInitTypeSizeU3D116_t9020B92E8453BBAFE2519A469C0893F630E8D2C9 * get_address_of_U37DDF88204E7E265240211841F0AB290A5E77EE4F9223EB2E39F9B89C30C41B9D_144() { return &___7DDF88204E7E265240211841F0AB290A5E77EE4F9223EB2E39F9B89C30C41B9D_144; } inline void set_U37DDF88204E7E265240211841F0AB290A5E77EE4F9223EB2E39F9B89C30C41B9D_144(__StaticArrayInitTypeSizeU3D116_t9020B92E8453BBAFE2519A469C0893F630E8D2C9 value) { ___7DDF88204E7E265240211841F0AB290A5E77EE4F9223EB2E39F9B89C30C41B9D_144 = value; } inline static int32_t get_offset_of_U37F034CF9D8AC0293D0C9535AF26B5452C6E916CE62FBBF765077BD958E69B7B9_145() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___7F034CF9D8AC0293D0C9535AF26B5452C6E916CE62FBBF765077BD958E69B7B9_145)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_U37F034CF9D8AC0293D0C9535AF26B5452C6E916CE62FBBF765077BD958E69B7B9_145() const { return ___7F034CF9D8AC0293D0C9535AF26B5452C6E916CE62FBBF765077BD958E69B7B9_145; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_U37F034CF9D8AC0293D0C9535AF26B5452C6E916CE62FBBF765077BD958E69B7B9_145() { return &___7F034CF9D8AC0293D0C9535AF26B5452C6E916CE62FBBF765077BD958E69B7B9_145; } inline void set_U37F034CF9D8AC0293D0C9535AF26B5452C6E916CE62FBBF765077BD958E69B7B9_145(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___7F034CF9D8AC0293D0C9535AF26B5452C6E916CE62FBBF765077BD958E69B7B9_145 = value; } inline static int32_t get_offset_of_U37FBDBBC598B2DE18BB5191FF9D66727F552A54412C9314CA5782824A150B3CD3_146() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___7FBDBBC598B2DE18BB5191FF9D66727F552A54412C9314CA5782824A150B3CD3_146)); } inline int32_t get_U37FBDBBC598B2DE18BB5191FF9D66727F552A54412C9314CA5782824A150B3CD3_146() const { return ___7FBDBBC598B2DE18BB5191FF9D66727F552A54412C9314CA5782824A150B3CD3_146; } inline int32_t* get_address_of_U37FBDBBC598B2DE18BB5191FF9D66727F552A54412C9314CA5782824A150B3CD3_146() { return &___7FBDBBC598B2DE18BB5191FF9D66727F552A54412C9314CA5782824A150B3CD3_146; } inline void set_U37FBDBBC598B2DE18BB5191FF9D66727F552A54412C9314CA5782824A150B3CD3_146(int32_t value) { ___7FBDBBC598B2DE18BB5191FF9D66727F552A54412C9314CA5782824A150B3CD3_146 = value; } inline static int32_t get_offset_of_U37FCA397EF25DB53B2C58A05F9BBFA4E8E0685FDBC8AAF39536123447056895C0_147() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___7FCA397EF25DB53B2C58A05F9BBFA4E8E0685FDBC8AAF39536123447056895C0_147)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U37FCA397EF25DB53B2C58A05F9BBFA4E8E0685FDBC8AAF39536123447056895C0_147() const { return ___7FCA397EF25DB53B2C58A05F9BBFA4E8E0685FDBC8AAF39536123447056895C0_147; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U37FCA397EF25DB53B2C58A05F9BBFA4E8E0685FDBC8AAF39536123447056895C0_147() { return &___7FCA397EF25DB53B2C58A05F9BBFA4E8E0685FDBC8AAF39536123447056895C0_147; } inline void set_U37FCA397EF25DB53B2C58A05F9BBFA4E8E0685FDBC8AAF39536123447056895C0_147(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___7FCA397EF25DB53B2C58A05F9BBFA4E8E0685FDBC8AAF39536123447056895C0_147 = value; } inline static int32_t get_offset_of_U381C0F0D213E5735AED08C328CC9CC2E61B3AB83C9BF016A666B4144F8BF64457_148() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___81C0F0D213E5735AED08C328CC9CC2E61B3AB83C9BF016A666B4144F8BF64457_148)); } inline __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 get_U381C0F0D213E5735AED08C328CC9CC2E61B3AB83C9BF016A666B4144F8BF64457_148() const { return ___81C0F0D213E5735AED08C328CC9CC2E61B3AB83C9BF016A666B4144F8BF64457_148; } inline __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 * get_address_of_U381C0F0D213E5735AED08C328CC9CC2E61B3AB83C9BF016A666B4144F8BF64457_148() { return &___81C0F0D213E5735AED08C328CC9CC2E61B3AB83C9BF016A666B4144F8BF64457_148; } inline void set_U381C0F0D213E5735AED08C328CC9CC2E61B3AB83C9BF016A666B4144F8BF64457_148(__StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 value) { ___81C0F0D213E5735AED08C328CC9CC2E61B3AB83C9BF016A666B4144F8BF64457_148 = value; } inline static int32_t get_offset_of_U38271B98A74E2ED3AC4E690289279C25841A5617BE3D992BED6CB7486F95060D9_149() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___8271B98A74E2ED3AC4E690289279C25841A5617BE3D992BED6CB7486F95060D9_149)); } inline __StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE get_U38271B98A74E2ED3AC4E690289279C25841A5617BE3D992BED6CB7486F95060D9_149() const { return ___8271B98A74E2ED3AC4E690289279C25841A5617BE3D992BED6CB7486F95060D9_149; } inline __StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE * get_address_of_U38271B98A74E2ED3AC4E690289279C25841A5617BE3D992BED6CB7486F95060D9_149() { return &___8271B98A74E2ED3AC4E690289279C25841A5617BE3D992BED6CB7486F95060D9_149; } inline void set_U38271B98A74E2ED3AC4E690289279C25841A5617BE3D992BED6CB7486F95060D9_149(__StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE value) { ___8271B98A74E2ED3AC4E690289279C25841A5617BE3D992BED6CB7486F95060D9_149 = value; } inline static int32_t get_offset_of_U383E8FA01EECEC207D12DA40AEFC466B15F6412FFE2C30DBEF0C65B9B7FF01672_150() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___83E8FA01EECEC207D12DA40AEFC466B15F6412FFE2C30DBEF0C65B9B7FF01672_150)); } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F get_U383E8FA01EECEC207D12DA40AEFC466B15F6412FFE2C30DBEF0C65B9B7FF01672_150() const { return ___83E8FA01EECEC207D12DA40AEFC466B15F6412FFE2C30DBEF0C65B9B7FF01672_150; } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F * get_address_of_U383E8FA01EECEC207D12DA40AEFC466B15F6412FFE2C30DBEF0C65B9B7FF01672_150() { return &___83E8FA01EECEC207D12DA40AEFC466B15F6412FFE2C30DBEF0C65B9B7FF01672_150; } inline void set_U383E8FA01EECEC207D12DA40AEFC466B15F6412FFE2C30DBEF0C65B9B7FF01672_150(__StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F value) { ___83E8FA01EECEC207D12DA40AEFC466B15F6412FFE2C30DBEF0C65B9B7FF01672_150 = value; } inline static int32_t get_offset_of_U384EBACB335F7FB2D4C6AF94256B2DD565EFFE552C9A1CB725C5B5C338914412D_151() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___84EBACB335F7FB2D4C6AF94256B2DD565EFFE552C9A1CB725C5B5C338914412D_151)); } inline __StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE get_U384EBACB335F7FB2D4C6AF94256B2DD565EFFE552C9A1CB725C5B5C338914412D_151() const { return ___84EBACB335F7FB2D4C6AF94256B2DD565EFFE552C9A1CB725C5B5C338914412D_151; } inline __StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE * get_address_of_U384EBACB335F7FB2D4C6AF94256B2DD565EFFE552C9A1CB725C5B5C338914412D_151() { return &___84EBACB335F7FB2D4C6AF94256B2DD565EFFE552C9A1CB725C5B5C338914412D_151; } inline void set_U384EBACB335F7FB2D4C6AF94256B2DD565EFFE552C9A1CB725C5B5C338914412D_151(__StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE value) { ___84EBACB335F7FB2D4C6AF94256B2DD565EFFE552C9A1CB725C5B5C338914412D_151 = value; } inline static int32_t get_offset_of_U385332E00AFFFDBE44E7421AA4236274F9495AC6C2204C59B9ADFC872D4215E12_152() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___85332E00AFFFDBE44E7421AA4236274F9495AC6C2204C59B9ADFC872D4215E12_152)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_U385332E00AFFFDBE44E7421AA4236274F9495AC6C2204C59B9ADFC872D4215E12_152() const { return ___85332E00AFFFDBE44E7421AA4236274F9495AC6C2204C59B9ADFC872D4215E12_152; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_U385332E00AFFFDBE44E7421AA4236274F9495AC6C2204C59B9ADFC872D4215E12_152() { return &___85332E00AFFFDBE44E7421AA4236274F9495AC6C2204C59B9ADFC872D4215E12_152; } inline void set_U385332E00AFFFDBE44E7421AA4236274F9495AC6C2204C59B9ADFC872D4215E12_152(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___85332E00AFFFDBE44E7421AA4236274F9495AC6C2204C59B9ADFC872D4215E12_152 = value; } inline static int32_t get_offset_of_U38688D249E9D047B4FC2FB89CE05AFE9EC89252FFCCDD969DE6EEF260DD7FFB21_153() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___8688D249E9D047B4FC2FB89CE05AFE9EC89252FFCCDD969DE6EEF260DD7FFB21_153)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U38688D249E9D047B4FC2FB89CE05AFE9EC89252FFCCDD969DE6EEF260DD7FFB21_153() const { return ___8688D249E9D047B4FC2FB89CE05AFE9EC89252FFCCDD969DE6EEF260DD7FFB21_153; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U38688D249E9D047B4FC2FB89CE05AFE9EC89252FFCCDD969DE6EEF260DD7FFB21_153() { return &___8688D249E9D047B4FC2FB89CE05AFE9EC89252FFCCDD969DE6EEF260DD7FFB21_153; } inline void set_U38688D249E9D047B4FC2FB89CE05AFE9EC89252FFCCDD969DE6EEF260DD7FFB21_153(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___8688D249E9D047B4FC2FB89CE05AFE9EC89252FFCCDD969DE6EEF260DD7FFB21_153 = value; } inline static int32_t get_offset_of_U386ECB4ABD964707BAF5ABF589057FBB2ED63DB1D7F0115A7DA45921043B6A96F_154() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___86ECB4ABD964707BAF5ABF589057FBB2ED63DB1D7F0115A7DA45921043B6A96F_154)); } inline __StaticArrayInitTypeSizeU3D48_tFD8B246DD801288DF862F996D7F0915222433AD7 get_U386ECB4ABD964707BAF5ABF589057FBB2ED63DB1D7F0115A7DA45921043B6A96F_154() const { return ___86ECB4ABD964707BAF5ABF589057FBB2ED63DB1D7F0115A7DA45921043B6A96F_154; } inline __StaticArrayInitTypeSizeU3D48_tFD8B246DD801288DF862F996D7F0915222433AD7 * get_address_of_U386ECB4ABD964707BAF5ABF589057FBB2ED63DB1D7F0115A7DA45921043B6A96F_154() { return &___86ECB4ABD964707BAF5ABF589057FBB2ED63DB1D7F0115A7DA45921043B6A96F_154; } inline void set_U386ECB4ABD964707BAF5ABF589057FBB2ED63DB1D7F0115A7DA45921043B6A96F_154(__StaticArrayInitTypeSizeU3D48_tFD8B246DD801288DF862F996D7F0915222433AD7 value) { ___86ECB4ABD964707BAF5ABF589057FBB2ED63DB1D7F0115A7DA45921043B6A96F_154 = value; } inline static int32_t get_offset_of_U3874805F2B76BD7887959F02FE0B2A8C07C1E1D41F41AAD4D2AA1D0AB21A1780F_155() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___874805F2B76BD7887959F02FE0B2A8C07C1E1D41F41AAD4D2AA1D0AB21A1780F_155)); } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 get_U3874805F2B76BD7887959F02FE0B2A8C07C1E1D41F41AAD4D2AA1D0AB21A1780F_155() const { return ___874805F2B76BD7887959F02FE0B2A8C07C1E1D41F41AAD4D2AA1D0AB21A1780F_155; } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 * get_address_of_U3874805F2B76BD7887959F02FE0B2A8C07C1E1D41F41AAD4D2AA1D0AB21A1780F_155() { return &___874805F2B76BD7887959F02FE0B2A8C07C1E1D41F41AAD4D2AA1D0AB21A1780F_155; } inline void set_U3874805F2B76BD7887959F02FE0B2A8C07C1E1D41F41AAD4D2AA1D0AB21A1780F_155(__StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 value) { ___874805F2B76BD7887959F02FE0B2A8C07C1E1D41F41AAD4D2AA1D0AB21A1780F_155 = value; } inline static int32_t get_offset_of_U388362588448C0D67AC6A928BB97FBFA93C92ED574E09AEAED174B8EFFB876F86_156() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___88362588448C0D67AC6A928BB97FBFA93C92ED574E09AEAED174B8EFFB876F86_156)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U388362588448C0D67AC6A928BB97FBFA93C92ED574E09AEAED174B8EFFB876F86_156() const { return ___88362588448C0D67AC6A928BB97FBFA93C92ED574E09AEAED174B8EFFB876F86_156; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U388362588448C0D67AC6A928BB97FBFA93C92ED574E09AEAED174B8EFFB876F86_156() { return &___88362588448C0D67AC6A928BB97FBFA93C92ED574E09AEAED174B8EFFB876F86_156; } inline void set_U388362588448C0D67AC6A928BB97FBFA93C92ED574E09AEAED174B8EFFB876F86_156(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___88362588448C0D67AC6A928BB97FBFA93C92ED574E09AEAED174B8EFFB876F86_156 = value; } inline static int32_t get_offset_of_U3896FB86C1BE3DBE6C3CC4FBE122562D75A4EBC6616D3393CF1AFE12377908B95_157() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___896FB86C1BE3DBE6C3CC4FBE122562D75A4EBC6616D3393CF1AFE12377908B95_157)); } inline __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C get_U3896FB86C1BE3DBE6C3CC4FBE122562D75A4EBC6616D3393CF1AFE12377908B95_157() const { return ___896FB86C1BE3DBE6C3CC4FBE122562D75A4EBC6616D3393CF1AFE12377908B95_157; } inline __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C * get_address_of_U3896FB86C1BE3DBE6C3CC4FBE122562D75A4EBC6616D3393CF1AFE12377908B95_157() { return &___896FB86C1BE3DBE6C3CC4FBE122562D75A4EBC6616D3393CF1AFE12377908B95_157; } inline void set_U3896FB86C1BE3DBE6C3CC4FBE122562D75A4EBC6616D3393CF1AFE12377908B95_157(__StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C value) { ___896FB86C1BE3DBE6C3CC4FBE122562D75A4EBC6616D3393CF1AFE12377908B95_157 = value; } inline static int32_t get_offset_of_U38AE83CF30C3CEAC5F4B9F025200D65EFAEC851DE0098817DB69F0E547407C095_158() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___8AE83CF30C3CEAC5F4B9F025200D65EFAEC851DE0098817DB69F0E547407C095_158)); } inline __StaticArrayInitTypeSizeU3D6144_tC7D0B4030CC1B8F5E770AE916BB72D42FCBE5DBD get_U38AE83CF30C3CEAC5F4B9F025200D65EFAEC851DE0098817DB69F0E547407C095_158() const { return ___8AE83CF30C3CEAC5F4B9F025200D65EFAEC851DE0098817DB69F0E547407C095_158; } inline __StaticArrayInitTypeSizeU3D6144_tC7D0B4030CC1B8F5E770AE916BB72D42FCBE5DBD * get_address_of_U38AE83CF30C3CEAC5F4B9F025200D65EFAEC851DE0098817DB69F0E547407C095_158() { return &___8AE83CF30C3CEAC5F4B9F025200D65EFAEC851DE0098817DB69F0E547407C095_158; } inline void set_U38AE83CF30C3CEAC5F4B9F025200D65EFAEC851DE0098817DB69F0E547407C095_158(__StaticArrayInitTypeSizeU3D6144_tC7D0B4030CC1B8F5E770AE916BB72D42FCBE5DBD value) { ___8AE83CF30C3CEAC5F4B9F025200D65EFAEC851DE0098817DB69F0E547407C095_158 = value; } inline static int32_t get_offset_of_U38B3E4AD98E68D077C6A580E0CE5B8BEA476668CC2303A9845D8EC347A4035FB8_159() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___8B3E4AD98E68D077C6A580E0CE5B8BEA476668CC2303A9845D8EC347A4035FB8_159)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_U38B3E4AD98E68D077C6A580E0CE5B8BEA476668CC2303A9845D8EC347A4035FB8_159() const { return ___8B3E4AD98E68D077C6A580E0CE5B8BEA476668CC2303A9845D8EC347A4035FB8_159; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_U38B3E4AD98E68D077C6A580E0CE5B8BEA476668CC2303A9845D8EC347A4035FB8_159() { return &___8B3E4AD98E68D077C6A580E0CE5B8BEA476668CC2303A9845D8EC347A4035FB8_159; } inline void set_U38B3E4AD98E68D077C6A580E0CE5B8BEA476668CC2303A9845D8EC347A4035FB8_159(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___8B3E4AD98E68D077C6A580E0CE5B8BEA476668CC2303A9845D8EC347A4035FB8_159 = value; } inline static int32_t get_offset_of_U38CB850AC259DD215242199AD8F1B0BC74C182B564124B84C0D56BDB7A8FF7286_160() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___8CB850AC259DD215242199AD8F1B0BC74C182B564124B84C0D56BDB7A8FF7286_160)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U38CB850AC259DD215242199AD8F1B0BC74C182B564124B84C0D56BDB7A8FF7286_160() const { return ___8CB850AC259DD215242199AD8F1B0BC74C182B564124B84C0D56BDB7A8FF7286_160; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U38CB850AC259DD215242199AD8F1B0BC74C182B564124B84C0D56BDB7A8FF7286_160() { return &___8CB850AC259DD215242199AD8F1B0BC74C182B564124B84C0D56BDB7A8FF7286_160; } inline void set_U38CB850AC259DD215242199AD8F1B0BC74C182B564124B84C0D56BDB7A8FF7286_160(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___8CB850AC259DD215242199AD8F1B0BC74C182B564124B84C0D56BDB7A8FF7286_160 = value; } inline static int32_t get_offset_of_U38CC38DAE7E1F854FB74E0A2910E4781DABC17BFB28C0E2759599F647024FB680_161() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___8CC38DAE7E1F854FB74E0A2910E4781DABC17BFB28C0E2759599F647024FB680_161)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_U38CC38DAE7E1F854FB74E0A2910E4781DABC17BFB28C0E2759599F647024FB680_161() const { return ___8CC38DAE7E1F854FB74E0A2910E4781DABC17BFB28C0E2759599F647024FB680_161; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_U38CC38DAE7E1F854FB74E0A2910E4781DABC17BFB28C0E2759599F647024FB680_161() { return &___8CC38DAE7E1F854FB74E0A2910E4781DABC17BFB28C0E2759599F647024FB680_161; } inline void set_U38CC38DAE7E1F854FB74E0A2910E4781DABC17BFB28C0E2759599F647024FB680_161(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___8CC38DAE7E1F854FB74E0A2910E4781DABC17BFB28C0E2759599F647024FB680_161 = value; } inline static int32_t get_offset_of_U38DE58994BA1BCCA412DBAD0B7F71CC1C77CFA1303F3224FA5371B5BE8A27AB5E_162() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___8DE58994BA1BCCA412DBAD0B7F71CC1C77CFA1303F3224FA5371B5BE8A27AB5E_162)); } inline int32_t get_U38DE58994BA1BCCA412DBAD0B7F71CC1C77CFA1303F3224FA5371B5BE8A27AB5E_162() const { return ___8DE58994BA1BCCA412DBAD0B7F71CC1C77CFA1303F3224FA5371B5BE8A27AB5E_162; } inline int32_t* get_address_of_U38DE58994BA1BCCA412DBAD0B7F71CC1C77CFA1303F3224FA5371B5BE8A27AB5E_162() { return &___8DE58994BA1BCCA412DBAD0B7F71CC1C77CFA1303F3224FA5371B5BE8A27AB5E_162; } inline void set_U38DE58994BA1BCCA412DBAD0B7F71CC1C77CFA1303F3224FA5371B5BE8A27AB5E_162(int32_t value) { ___8DE58994BA1BCCA412DBAD0B7F71CC1C77CFA1303F3224FA5371B5BE8A27AB5E_162 = value; } inline static int32_t get_offset_of_U38E508E3CF36A04D2980525060B4220A361C941343EDDD8B43A28CF8001D0CA40_163() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___8E508E3CF36A04D2980525060B4220A361C941343EDDD8B43A28CF8001D0CA40_163)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U38E508E3CF36A04D2980525060B4220A361C941343EDDD8B43A28CF8001D0CA40_163() const { return ___8E508E3CF36A04D2980525060B4220A361C941343EDDD8B43A28CF8001D0CA40_163; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U38E508E3CF36A04D2980525060B4220A361C941343EDDD8B43A28CF8001D0CA40_163() { return &___8E508E3CF36A04D2980525060B4220A361C941343EDDD8B43A28CF8001D0CA40_163; } inline void set_U38E508E3CF36A04D2980525060B4220A361C941343EDDD8B43A28CF8001D0CA40_163(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___8E508E3CF36A04D2980525060B4220A361C941343EDDD8B43A28CF8001D0CA40_163 = value; } inline static int32_t get_offset_of_U38FC498A953A183E1FE81A183AE59047435BB9B33D657C625FAB03D38BE19F92E_164() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___8FC498A953A183E1FE81A183AE59047435BB9B33D657C625FAB03D38BE19F92E_164)); } inline __StaticArrayInitTypeSizeU3D76_t6572A863E37652A3D016260FBD2285807BDD3823 get_U38FC498A953A183E1FE81A183AE59047435BB9B33D657C625FAB03D38BE19F92E_164() const { return ___8FC498A953A183E1FE81A183AE59047435BB9B33D657C625FAB03D38BE19F92E_164; } inline __StaticArrayInitTypeSizeU3D76_t6572A863E37652A3D016260FBD2285807BDD3823 * get_address_of_U38FC498A953A183E1FE81A183AE59047435BB9B33D657C625FAB03D38BE19F92E_164() { return &___8FC498A953A183E1FE81A183AE59047435BB9B33D657C625FAB03D38BE19F92E_164; } inline void set_U38FC498A953A183E1FE81A183AE59047435BB9B33D657C625FAB03D38BE19F92E_164(__StaticArrayInitTypeSizeU3D76_t6572A863E37652A3D016260FBD2285807BDD3823 value) { ___8FC498A953A183E1FE81A183AE59047435BB9B33D657C625FAB03D38BE19F92E_164 = value; } inline static int32_t get_offset_of_U3910514B7D874CD3C180F8F1F94486233CCF5BB70A7C24F815644F5CD5A02F3AB_165() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___910514B7D874CD3C180F8F1F94486233CCF5BB70A7C24F815644F5CD5A02F3AB_165)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_U3910514B7D874CD3C180F8F1F94486233CCF5BB70A7C24F815644F5CD5A02F3AB_165() const { return ___910514B7D874CD3C180F8F1F94486233CCF5BB70A7C24F815644F5CD5A02F3AB_165; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_U3910514B7D874CD3C180F8F1F94486233CCF5BB70A7C24F815644F5CD5A02F3AB_165() { return &___910514B7D874CD3C180F8F1F94486233CCF5BB70A7C24F815644F5CD5A02F3AB_165; } inline void set_U3910514B7D874CD3C180F8F1F94486233CCF5BB70A7C24F815644F5CD5A02F3AB_165(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___910514B7D874CD3C180F8F1F94486233CCF5BB70A7C24F815644F5CD5A02F3AB_165 = value; } inline static int32_t get_offset_of_U393631B0726F6FE6629DAA743EE51B49F4477ED07391B68EEEA0672A4A90018AA_166() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___93631B0726F6FE6629DAA743EE51B49F4477ED07391B68EEEA0672A4A90018AA_166)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_U393631B0726F6FE6629DAA743EE51B49F4477ED07391B68EEEA0672A4A90018AA_166() const { return ___93631B0726F6FE6629DAA743EE51B49F4477ED07391B68EEEA0672A4A90018AA_166; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_U393631B0726F6FE6629DAA743EE51B49F4477ED07391B68EEEA0672A4A90018AA_166() { return &___93631B0726F6FE6629DAA743EE51B49F4477ED07391B68EEEA0672A4A90018AA_166; } inline void set_U393631B0726F6FE6629DAA743EE51B49F4477ED07391B68EEEA0672A4A90018AA_166(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___93631B0726F6FE6629DAA743EE51B49F4477ED07391B68EEEA0672A4A90018AA_166 = value; } inline static int32_t get_offset_of_U39476220840D3CE82203B4A722E278773B1DA458A22F49FCB9FC45B851DF7D503_167() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___9476220840D3CE82203B4A722E278773B1DA458A22F49FCB9FC45B851DF7D503_167)); } inline __StaticArrayInitTypeSizeU3D120_tD78937C26C99B5FDF514E7F2EB4F8F2367B4C05A get_U39476220840D3CE82203B4A722E278773B1DA458A22F49FCB9FC45B851DF7D503_167() const { return ___9476220840D3CE82203B4A722E278773B1DA458A22F49FCB9FC45B851DF7D503_167; } inline __StaticArrayInitTypeSizeU3D120_tD78937C26C99B5FDF514E7F2EB4F8F2367B4C05A * get_address_of_U39476220840D3CE82203B4A722E278773B1DA458A22F49FCB9FC45B851DF7D503_167() { return &___9476220840D3CE82203B4A722E278773B1DA458A22F49FCB9FC45B851DF7D503_167; } inline void set_U39476220840D3CE82203B4A722E278773B1DA458A22F49FCB9FC45B851DF7D503_167(__StaticArrayInitTypeSizeU3D120_tD78937C26C99B5FDF514E7F2EB4F8F2367B4C05A value) { ___9476220840D3CE82203B4A722E278773B1DA458A22F49FCB9FC45B851DF7D503_167 = value; } inline static int32_t get_offset_of_U3960F02F165C0EF9AC4C160FC98BE9273C245853BA32663BB1B6F1588077F95F4_168() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___960F02F165C0EF9AC4C160FC98BE9273C245853BA32663BB1B6F1588077F95F4_168)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U3960F02F165C0EF9AC4C160FC98BE9273C245853BA32663BB1B6F1588077F95F4_168() const { return ___960F02F165C0EF9AC4C160FC98BE9273C245853BA32663BB1B6F1588077F95F4_168; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U3960F02F165C0EF9AC4C160FC98BE9273C245853BA32663BB1B6F1588077F95F4_168() { return &___960F02F165C0EF9AC4C160FC98BE9273C245853BA32663BB1B6F1588077F95F4_168; } inline void set_U3960F02F165C0EF9AC4C160FC98BE9273C245853BA32663BB1B6F1588077F95F4_168(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___960F02F165C0EF9AC4C160FC98BE9273C245853BA32663BB1B6F1588077F95F4_168 = value; } inline static int32_t get_offset_of_U39642574237E8981F70B1583D403A33EB8B583E5EA5DD61B9468AD47874A90296_169() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___9642574237E8981F70B1583D403A33EB8B583E5EA5DD61B9468AD47874A90296_169)); } inline __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 get_U39642574237E8981F70B1583D403A33EB8B583E5EA5DD61B9468AD47874A90296_169() const { return ___9642574237E8981F70B1583D403A33EB8B583E5EA5DD61B9468AD47874A90296_169; } inline __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 * get_address_of_U39642574237E8981F70B1583D403A33EB8B583E5EA5DD61B9468AD47874A90296_169() { return &___9642574237E8981F70B1583D403A33EB8B583E5EA5DD61B9468AD47874A90296_169; } inline void set_U39642574237E8981F70B1583D403A33EB8B583E5EA5DD61B9468AD47874A90296_169(__StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 value) { ___9642574237E8981F70B1583D403A33EB8B583E5EA5DD61B9468AD47874A90296_169 = value; } inline static int32_t get_offset_of_U396883F56416393F42C830BCD6033BE079690C482BC73119EBBE5DC98834BACBF_170() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___96883F56416393F42C830BCD6033BE079690C482BC73119EBBE5DC98834BACBF_170)); } inline __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F get_U396883F56416393F42C830BCD6033BE079690C482BC73119EBBE5DC98834BACBF_170() const { return ___96883F56416393F42C830BCD6033BE079690C482BC73119EBBE5DC98834BACBF_170; } inline __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F * get_address_of_U396883F56416393F42C830BCD6033BE079690C482BC73119EBBE5DC98834BACBF_170() { return &___96883F56416393F42C830BCD6033BE079690C482BC73119EBBE5DC98834BACBF_170; } inline void set_U396883F56416393F42C830BCD6033BE079690C482BC73119EBBE5DC98834BACBF_170(__StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F value) { ___96883F56416393F42C830BCD6033BE079690C482BC73119EBBE5DC98834BACBF_170 = value; } inline static int32_t get_offset_of_U396CC5BD90B96CA8BCD838F7ABD590F9979E8C636016554F8431A696204812853_171() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___96CC5BD90B96CA8BCD838F7ABD590F9979E8C636016554F8431A696204812853_171)); } inline __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 get_U396CC5BD90B96CA8BCD838F7ABD590F9979E8C636016554F8431A696204812853_171() const { return ___96CC5BD90B96CA8BCD838F7ABD590F9979E8C636016554F8431A696204812853_171; } inline __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 * get_address_of_U396CC5BD90B96CA8BCD838F7ABD590F9979E8C636016554F8431A696204812853_171() { return &___96CC5BD90B96CA8BCD838F7ABD590F9979E8C636016554F8431A696204812853_171; } inline void set_U396CC5BD90B96CA8BCD838F7ABD590F9979E8C636016554F8431A696204812853_171(__StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 value) { ___96CC5BD90B96CA8BCD838F7ABD590F9979E8C636016554F8431A696204812853_171 = value; } inline static int32_t get_offset_of_U3971488BE36A194DB27CE385237DEA12A31333F2FBD2BB3B60701BE542B27AAE2_172() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___971488BE36A194DB27CE385237DEA12A31333F2FBD2BB3B60701BE542B27AAE2_172)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_U3971488BE36A194DB27CE385237DEA12A31333F2FBD2BB3B60701BE542B27AAE2_172() const { return ___971488BE36A194DB27CE385237DEA12A31333F2FBD2BB3B60701BE542B27AAE2_172; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_U3971488BE36A194DB27CE385237DEA12A31333F2FBD2BB3B60701BE542B27AAE2_172() { return &___971488BE36A194DB27CE385237DEA12A31333F2FBD2BB3B60701BE542B27AAE2_172; } inline void set_U3971488BE36A194DB27CE385237DEA12A31333F2FBD2BB3B60701BE542B27AAE2_172(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___971488BE36A194DB27CE385237DEA12A31333F2FBD2BB3B60701BE542B27AAE2_172 = value; } inline static int32_t get_offset_of_U397467041703B2DF5571DCACC6A702C0C6DE68CE9A9470AA240F57D69C09AF7D3_173() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___97467041703B2DF5571DCACC6A702C0C6DE68CE9A9470AA240F57D69C09AF7D3_173)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U397467041703B2DF5571DCACC6A702C0C6DE68CE9A9470AA240F57D69C09AF7D3_173() const { return ___97467041703B2DF5571DCACC6A702C0C6DE68CE9A9470AA240F57D69C09AF7D3_173; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U397467041703B2DF5571DCACC6A702C0C6DE68CE9A9470AA240F57D69C09AF7D3_173() { return &___97467041703B2DF5571DCACC6A702C0C6DE68CE9A9470AA240F57D69C09AF7D3_173; } inline void set_U397467041703B2DF5571DCACC6A702C0C6DE68CE9A9470AA240F57D69C09AF7D3_173(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___97467041703B2DF5571DCACC6A702C0C6DE68CE9A9470AA240F57D69C09AF7D3_173 = value; } inline static int32_t get_offset_of_U397C49ABA628782D4FE08840F38539E305C52D0A9C0E0882E77C23DECAB6BDBA6_174() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___97C49ABA628782D4FE08840F38539E305C52D0A9C0E0882E77C23DECAB6BDBA6_174)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_U397C49ABA628782D4FE08840F38539E305C52D0A9C0E0882E77C23DECAB6BDBA6_174() const { return ___97C49ABA628782D4FE08840F38539E305C52D0A9C0E0882E77C23DECAB6BDBA6_174; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_U397C49ABA628782D4FE08840F38539E305C52D0A9C0E0882E77C23DECAB6BDBA6_174() { return &___97C49ABA628782D4FE08840F38539E305C52D0A9C0E0882E77C23DECAB6BDBA6_174; } inline void set_U397C49ABA628782D4FE08840F38539E305C52D0A9C0E0882E77C23DECAB6BDBA6_174(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___97C49ABA628782D4FE08840F38539E305C52D0A9C0E0882E77C23DECAB6BDBA6_174 = value; } inline static int32_t get_offset_of_U397CAAC7D5BE7722352C1AB556BFE01D3F3CCA0F50B5A648195D6415006620C8F_175() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___97CAAC7D5BE7722352C1AB556BFE01D3F3CCA0F50B5A648195D6415006620C8F_175)); } inline __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F get_U397CAAC7D5BE7722352C1AB556BFE01D3F3CCA0F50B5A648195D6415006620C8F_175() const { return ___97CAAC7D5BE7722352C1AB556BFE01D3F3CCA0F50B5A648195D6415006620C8F_175; } inline __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F * get_address_of_U397CAAC7D5BE7722352C1AB556BFE01D3F3CCA0F50B5A648195D6415006620C8F_175() { return &___97CAAC7D5BE7722352C1AB556BFE01D3F3CCA0F50B5A648195D6415006620C8F_175; } inline void set_U397CAAC7D5BE7722352C1AB556BFE01D3F3CCA0F50B5A648195D6415006620C8F_175(__StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F value) { ___97CAAC7D5BE7722352C1AB556BFE01D3F3CCA0F50B5A648195D6415006620C8F_175 = value; } inline static int32_t get_offset_of_U39829726FEA4FBE8836ADA2143950510D3C214E70A13B9BF48009D97CD8485670_176() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___9829726FEA4FBE8836ADA2143950510D3C214E70A13B9BF48009D97CD8485670_176)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_U39829726FEA4FBE8836ADA2143950510D3C214E70A13B9BF48009D97CD8485670_176() const { return ___9829726FEA4FBE8836ADA2143950510D3C214E70A13B9BF48009D97CD8485670_176; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_U39829726FEA4FBE8836ADA2143950510D3C214E70A13B9BF48009D97CD8485670_176() { return &___9829726FEA4FBE8836ADA2143950510D3C214E70A13B9BF48009D97CD8485670_176; } inline void set_U39829726FEA4FBE8836ADA2143950510D3C214E70A13B9BF48009D97CD8485670_176(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___9829726FEA4FBE8836ADA2143950510D3C214E70A13B9BF48009D97CD8485670_176 = value; } inline static int32_t get_offset_of_U399010FBF800B50867080A66CB97A60E8D7B61251655C9E945DC0505EEB70AC95_177() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___99010FBF800B50867080A66CB97A60E8D7B61251655C9E945DC0505EEB70AC95_177)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_U399010FBF800B50867080A66CB97A60E8D7B61251655C9E945DC0505EEB70AC95_177() const { return ___99010FBF800B50867080A66CB97A60E8D7B61251655C9E945DC0505EEB70AC95_177; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_U399010FBF800B50867080A66CB97A60E8D7B61251655C9E945DC0505EEB70AC95_177() { return &___99010FBF800B50867080A66CB97A60E8D7B61251655C9E945DC0505EEB70AC95_177; } inline void set_U399010FBF800B50867080A66CB97A60E8D7B61251655C9E945DC0505EEB70AC95_177(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___99010FBF800B50867080A66CB97A60E8D7B61251655C9E945DC0505EEB70AC95_177 = value; } inline static int32_t get_offset_of_U399FD541BFD4CF8DD3C18069CA1D5F4B622333DDBA412F00D5A6B642626034EDF_178() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___99FD541BFD4CF8DD3C18069CA1D5F4B622333DDBA412F00D5A6B642626034EDF_178)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_U399FD541BFD4CF8DD3C18069CA1D5F4B622333DDBA412F00D5A6B642626034EDF_178() const { return ___99FD541BFD4CF8DD3C18069CA1D5F4B622333DDBA412F00D5A6B642626034EDF_178; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_U399FD541BFD4CF8DD3C18069CA1D5F4B622333DDBA412F00D5A6B642626034EDF_178() { return &___99FD541BFD4CF8DD3C18069CA1D5F4B622333DDBA412F00D5A6B642626034EDF_178; } inline void set_U399FD541BFD4CF8DD3C18069CA1D5F4B622333DDBA412F00D5A6B642626034EDF_178(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___99FD541BFD4CF8DD3C18069CA1D5F4B622333DDBA412F00D5A6B642626034EDF_178 = value; } inline static int32_t get_offset_of_U39AC0C32A73444A448170AE1EFE7F69A0D3A7F6E1335FA0E112D9F96EB7EE3CC7_179() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___9AC0C32A73444A448170AE1EFE7F69A0D3A7F6E1335FA0E112D9F96EB7EE3CC7_179)); } inline __StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE get_U39AC0C32A73444A448170AE1EFE7F69A0D3A7F6E1335FA0E112D9F96EB7EE3CC7_179() const { return ___9AC0C32A73444A448170AE1EFE7F69A0D3A7F6E1335FA0E112D9F96EB7EE3CC7_179; } inline __StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE * get_address_of_U39AC0C32A73444A448170AE1EFE7F69A0D3A7F6E1335FA0E112D9F96EB7EE3CC7_179() { return &___9AC0C32A73444A448170AE1EFE7F69A0D3A7F6E1335FA0E112D9F96EB7EE3CC7_179; } inline void set_U39AC0C32A73444A448170AE1EFE7F69A0D3A7F6E1335FA0E112D9F96EB7EE3CC7_179(__StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE value) { ___9AC0C32A73444A448170AE1EFE7F69A0D3A7F6E1335FA0E112D9F96EB7EE3CC7_179 = value; } inline static int32_t get_offset_of_U39B29692916637801E748ABDF9CE9D3A8AED3F375C84C7346C11C2BB150BD720B_180() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___9B29692916637801E748ABDF9CE9D3A8AED3F375C84C7346C11C2BB150BD720B_180)); } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F get_U39B29692916637801E748ABDF9CE9D3A8AED3F375C84C7346C11C2BB150BD720B_180() const { return ___9B29692916637801E748ABDF9CE9D3A8AED3F375C84C7346C11C2BB150BD720B_180; } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F * get_address_of_U39B29692916637801E748ABDF9CE9D3A8AED3F375C84C7346C11C2BB150BD720B_180() { return &___9B29692916637801E748ABDF9CE9D3A8AED3F375C84C7346C11C2BB150BD720B_180; } inline void set_U39B29692916637801E748ABDF9CE9D3A8AED3F375C84C7346C11C2BB150BD720B_180(__StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F value) { ___9B29692916637801E748ABDF9CE9D3A8AED3F375C84C7346C11C2BB150BD720B_180 = value; } inline static int32_t get_offset_of_U39C28EF1A620E00413BBFC7E6ED40092033A3C250583DD7FAD355D2A306A7427B_181() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___9C28EF1A620E00413BBFC7E6ED40092033A3C250583DD7FAD355D2A306A7427B_181)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_U39C28EF1A620E00413BBFC7E6ED40092033A3C250583DD7FAD355D2A306A7427B_181() const { return ___9C28EF1A620E00413BBFC7E6ED40092033A3C250583DD7FAD355D2A306A7427B_181; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_U39C28EF1A620E00413BBFC7E6ED40092033A3C250583DD7FAD355D2A306A7427B_181() { return &___9C28EF1A620E00413BBFC7E6ED40092033A3C250583DD7FAD355D2A306A7427B_181; } inline void set_U39C28EF1A620E00413BBFC7E6ED40092033A3C250583DD7FAD355D2A306A7427B_181(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___9C28EF1A620E00413BBFC7E6ED40092033A3C250583DD7FAD355D2A306A7427B_181 = value; } inline static int32_t get_offset_of_U39CB8BF99E695FF4E0E3E01770F3E96060FC79466F1325C60B375349C591ADF02_182() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___9CB8BF99E695FF4E0E3E01770F3E96060FC79466F1325C60B375349C591ADF02_182)); } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F get_U39CB8BF99E695FF4E0E3E01770F3E96060FC79466F1325C60B375349C591ADF02_182() const { return ___9CB8BF99E695FF4E0E3E01770F3E96060FC79466F1325C60B375349C591ADF02_182; } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F * get_address_of_U39CB8BF99E695FF4E0E3E01770F3E96060FC79466F1325C60B375349C591ADF02_182() { return &___9CB8BF99E695FF4E0E3E01770F3E96060FC79466F1325C60B375349C591ADF02_182; } inline void set_U39CB8BF99E695FF4E0E3E01770F3E96060FC79466F1325C60B375349C591ADF02_182(__StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F value) { ___9CB8BF99E695FF4E0E3E01770F3E96060FC79466F1325C60B375349C591ADF02_182 = value; } inline static int32_t get_offset_of_U39CCC11CED0AD12118416B3C3C73453E6480B671C0EF2F753B6900DA2060F5B44_183() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___9CCC11CED0AD12118416B3C3C73453E6480B671C0EF2F753B6900DA2060F5B44_183)); } inline __StaticArrayInitTypeSizeU3D48_tFD8B246DD801288DF862F996D7F0915222433AD7 get_U39CCC11CED0AD12118416B3C3C73453E6480B671C0EF2F753B6900DA2060F5B44_183() const { return ___9CCC11CED0AD12118416B3C3C73453E6480B671C0EF2F753B6900DA2060F5B44_183; } inline __StaticArrayInitTypeSizeU3D48_tFD8B246DD801288DF862F996D7F0915222433AD7 * get_address_of_U39CCC11CED0AD12118416B3C3C73453E6480B671C0EF2F753B6900DA2060F5B44_183() { return &___9CCC11CED0AD12118416B3C3C73453E6480B671C0EF2F753B6900DA2060F5B44_183; } inline void set_U39CCC11CED0AD12118416B3C3C73453E6480B671C0EF2F753B6900DA2060F5B44_183(__StaticArrayInitTypeSizeU3D48_tFD8B246DD801288DF862F996D7F0915222433AD7 value) { ___9CCC11CED0AD12118416B3C3C73453E6480B671C0EF2F753B6900DA2060F5B44_183 = value; } inline static int32_t get_offset_of_U39CFF23020B5A7E24467474237978D4CB52A601FBC0B3E504B9ABC64C062A499C_184() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___9CFF23020B5A7E24467474237978D4CB52A601FBC0B3E504B9ABC64C062A499C_184)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U39CFF23020B5A7E24467474237978D4CB52A601FBC0B3E504B9ABC64C062A499C_184() const { return ___9CFF23020B5A7E24467474237978D4CB52A601FBC0B3E504B9ABC64C062A499C_184; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U39CFF23020B5A7E24467474237978D4CB52A601FBC0B3E504B9ABC64C062A499C_184() { return &___9CFF23020B5A7E24467474237978D4CB52A601FBC0B3E504B9ABC64C062A499C_184; } inline void set_U39CFF23020B5A7E24467474237978D4CB52A601FBC0B3E504B9ABC64C062A499C_184(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___9CFF23020B5A7E24467474237978D4CB52A601FBC0B3E504B9ABC64C062A499C_184 = value; } inline static int32_t get_offset_of_U39DA5D1DADE776A467199AC96E9412AD7A5CA1E62BCDAC527079912B1185A5C63_185() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___9DA5D1DADE776A467199AC96E9412AD7A5CA1E62BCDAC527079912B1185A5C63_185)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_U39DA5D1DADE776A467199AC96E9412AD7A5CA1E62BCDAC527079912B1185A5C63_185() const { return ___9DA5D1DADE776A467199AC96E9412AD7A5CA1E62BCDAC527079912B1185A5C63_185; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_U39DA5D1DADE776A467199AC96E9412AD7A5CA1E62BCDAC527079912B1185A5C63_185() { return &___9DA5D1DADE776A467199AC96E9412AD7A5CA1E62BCDAC527079912B1185A5C63_185; } inline void set_U39DA5D1DADE776A467199AC96E9412AD7A5CA1E62BCDAC527079912B1185A5C63_185(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___9DA5D1DADE776A467199AC96E9412AD7A5CA1E62BCDAC527079912B1185A5C63_185 = value; } inline static int32_t get_offset_of_U39DA6DC3BEB35D0E411A5D1E407E011542CC032FD6BD76CFFEB5EF327331840FD_186() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___9DA6DC3BEB35D0E411A5D1E407E011542CC032FD6BD76CFFEB5EF327331840FD_186)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U39DA6DC3BEB35D0E411A5D1E407E011542CC032FD6BD76CFFEB5EF327331840FD_186() const { return ___9DA6DC3BEB35D0E411A5D1E407E011542CC032FD6BD76CFFEB5EF327331840FD_186; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U39DA6DC3BEB35D0E411A5D1E407E011542CC032FD6BD76CFFEB5EF327331840FD_186() { return &___9DA6DC3BEB35D0E411A5D1E407E011542CC032FD6BD76CFFEB5EF327331840FD_186; } inline void set_U39DA6DC3BEB35D0E411A5D1E407E011542CC032FD6BD76CFFEB5EF327331840FD_186(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___9DA6DC3BEB35D0E411A5D1E407E011542CC032FD6BD76CFFEB5EF327331840FD_186 = value; } inline static int32_t get_offset_of_U39DC840E2F2B5B0E9B3B12C6585295C61986721911DA7AE18C9B18EFF2F01ABE5_187() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___9DC840E2F2B5B0E9B3B12C6585295C61986721911DA7AE18C9B18EFF2F01ABE5_187)); } inline __StaticArrayInitTypeSizeU3D28_tB9DE54DF41ABC27805509271A10177513906BF30 get_U39DC840E2F2B5B0E9B3B12C6585295C61986721911DA7AE18C9B18EFF2F01ABE5_187() const { return ___9DC840E2F2B5B0E9B3B12C6585295C61986721911DA7AE18C9B18EFF2F01ABE5_187; } inline __StaticArrayInitTypeSizeU3D28_tB9DE54DF41ABC27805509271A10177513906BF30 * get_address_of_U39DC840E2F2B5B0E9B3B12C6585295C61986721911DA7AE18C9B18EFF2F01ABE5_187() { return &___9DC840E2F2B5B0E9B3B12C6585295C61986721911DA7AE18C9B18EFF2F01ABE5_187; } inline void set_U39DC840E2F2B5B0E9B3B12C6585295C61986721911DA7AE18C9B18EFF2F01ABE5_187(__StaticArrayInitTypeSizeU3D28_tB9DE54DF41ABC27805509271A10177513906BF30 value) { ___9DC840E2F2B5B0E9B3B12C6585295C61986721911DA7AE18C9B18EFF2F01ABE5_187 = value; } inline static int32_t get_offset_of_U39DDE3528C5CCCCD4D7C730403ABE54766C6645E371ED7ACB70584C320D87F670_188() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___9DDE3528C5CCCCD4D7C730403ABE54766C6645E371ED7ACB70584C320D87F670_188)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U39DDE3528C5CCCCD4D7C730403ABE54766C6645E371ED7ACB70584C320D87F670_188() const { return ___9DDE3528C5CCCCD4D7C730403ABE54766C6645E371ED7ACB70584C320D87F670_188; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U39DDE3528C5CCCCD4D7C730403ABE54766C6645E371ED7ACB70584C320D87F670_188() { return &___9DDE3528C5CCCCD4D7C730403ABE54766C6645E371ED7ACB70584C320D87F670_188; } inline void set_U39DDE3528C5CCCCD4D7C730403ABE54766C6645E371ED7ACB70584C320D87F670_188(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___9DDE3528C5CCCCD4D7C730403ABE54766C6645E371ED7ACB70584C320D87F670_188 = value; } inline static int32_t get_offset_of_U39EF35AA995725D55C515A807B1D2BE31B36269235146245330CFB2683FA9A840_189() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___9EF35AA995725D55C515A807B1D2BE31B36269235146245330CFB2683FA9A840_189)); } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F get_U39EF35AA995725D55C515A807B1D2BE31B36269235146245330CFB2683FA9A840_189() const { return ___9EF35AA995725D55C515A807B1D2BE31B36269235146245330CFB2683FA9A840_189; } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F * get_address_of_U39EF35AA995725D55C515A807B1D2BE31B36269235146245330CFB2683FA9A840_189() { return &___9EF35AA995725D55C515A807B1D2BE31B36269235146245330CFB2683FA9A840_189; } inline void set_U39EF35AA995725D55C515A807B1D2BE31B36269235146245330CFB2683FA9A840_189(__StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F value) { ___9EF35AA995725D55C515A807B1D2BE31B36269235146245330CFB2683FA9A840_189 = value; } inline static int32_t get_offset_of_U39F9F5111F7B27A781F1F1DDDE5EBC2DD2B796BFC7365C9C28B548E564176929F_190() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___9F9F5111F7B27A781F1F1DDDE5EBC2DD2B796BFC7365C9C28B548E564176929F_190)); } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 get_U39F9F5111F7B27A781F1F1DDDE5EBC2DD2B796BFC7365C9C28B548E564176929F_190() const { return ___9F9F5111F7B27A781F1F1DDDE5EBC2DD2B796BFC7365C9C28B548E564176929F_190; } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 * get_address_of_U39F9F5111F7B27A781F1F1DDDE5EBC2DD2B796BFC7365C9C28B548E564176929F_190() { return &___9F9F5111F7B27A781F1F1DDDE5EBC2DD2B796BFC7365C9C28B548E564176929F_190; } inline void set_U39F9F5111F7B27A781F1F1DDDE5EBC2DD2B796BFC7365C9C28B548E564176929F_190(__StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 value) { ___9F9F5111F7B27A781F1F1DDDE5EBC2DD2B796BFC7365C9C28B548E564176929F_190 = value; } inline static int32_t get_offset_of_A08110AAECF4B88CA5A7F070B68E448ED895A5DE752B84C57651DA54D9BB5814_191() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___A08110AAECF4B88CA5A7F070B68E448ED895A5DE752B84C57651DA54D9BB5814_191)); } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F get_A08110AAECF4B88CA5A7F070B68E448ED895A5DE752B84C57651DA54D9BB5814_191() const { return ___A08110AAECF4B88CA5A7F070B68E448ED895A5DE752B84C57651DA54D9BB5814_191; } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F * get_address_of_A08110AAECF4B88CA5A7F070B68E448ED895A5DE752B84C57651DA54D9BB5814_191() { return &___A08110AAECF4B88CA5A7F070B68E448ED895A5DE752B84C57651DA54D9BB5814_191; } inline void set_A08110AAECF4B88CA5A7F070B68E448ED895A5DE752B84C57651DA54D9BB5814_191(__StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F value) { ___A08110AAECF4B88CA5A7F070B68E448ED895A5DE752B84C57651DA54D9BB5814_191 = value; } inline static int32_t get_offset_of_A1486177999A77F2FD76EAB02D2517803BFF5B0C5A01CFB95B3F1DA7B7D6DCE8_192() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___A1486177999A77F2FD76EAB02D2517803BFF5B0C5A01CFB95B3F1DA7B7D6DCE8_192)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_A1486177999A77F2FD76EAB02D2517803BFF5B0C5A01CFB95B3F1DA7B7D6DCE8_192() const { return ___A1486177999A77F2FD76EAB02D2517803BFF5B0C5A01CFB95B3F1DA7B7D6DCE8_192; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_A1486177999A77F2FD76EAB02D2517803BFF5B0C5A01CFB95B3F1DA7B7D6DCE8_192() { return &___A1486177999A77F2FD76EAB02D2517803BFF5B0C5A01CFB95B3F1DA7B7D6DCE8_192; } inline void set_A1486177999A77F2FD76EAB02D2517803BFF5B0C5A01CFB95B3F1DA7B7D6DCE8_192(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___A1486177999A77F2FD76EAB02D2517803BFF5B0C5A01CFB95B3F1DA7B7D6DCE8_192 = value; } inline static int32_t get_offset_of_A39EF033189E647DDABF6324B79FCD143D3FD7DFF7B247086B02EC33B9E3B15E_193() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___A39EF033189E647DDABF6324B79FCD143D3FD7DFF7B247086B02EC33B9E3B15E_193)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_A39EF033189E647DDABF6324B79FCD143D3FD7DFF7B247086B02EC33B9E3B15E_193() const { return ___A39EF033189E647DDABF6324B79FCD143D3FD7DFF7B247086B02EC33B9E3B15E_193; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_A39EF033189E647DDABF6324B79FCD143D3FD7DFF7B247086B02EC33B9E3B15E_193() { return &___A39EF033189E647DDABF6324B79FCD143D3FD7DFF7B247086B02EC33B9E3B15E_193; } inline void set_A39EF033189E647DDABF6324B79FCD143D3FD7DFF7B247086B02EC33B9E3B15E_193(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___A39EF033189E647DDABF6324B79FCD143D3FD7DFF7B247086B02EC33B9E3B15E_193 = value; } inline static int32_t get_offset_of_A4241EDCB474331DF94C96B4F24A3A8773452488FD0458F8C0C30F7C24B89E07_194() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___A4241EDCB474331DF94C96B4F24A3A8773452488FD0458F8C0C30F7C24B89E07_194)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_A4241EDCB474331DF94C96B4F24A3A8773452488FD0458F8C0C30F7C24B89E07_194() const { return ___A4241EDCB474331DF94C96B4F24A3A8773452488FD0458F8C0C30F7C24B89E07_194; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_A4241EDCB474331DF94C96B4F24A3A8773452488FD0458F8C0C30F7C24B89E07_194() { return &___A4241EDCB474331DF94C96B4F24A3A8773452488FD0458F8C0C30F7C24B89E07_194; } inline void set_A4241EDCB474331DF94C96B4F24A3A8773452488FD0458F8C0C30F7C24B89E07_194(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___A4241EDCB474331DF94C96B4F24A3A8773452488FD0458F8C0C30F7C24B89E07_194 = value; } inline static int32_t get_offset_of_A45AA8042E89D23F821D2E22C9EBAFCEC4D3B1291072EA6A49D9D8A490839689_195() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___A45AA8042E89D23F821D2E22C9EBAFCEC4D3B1291072EA6A49D9D8A490839689_195)); } inline __StaticArrayInitTypeSizeU3D38_tA06FFB58ABD95EAC48139C4ABFED36B1C69D0B92 get_A45AA8042E89D23F821D2E22C9EBAFCEC4D3B1291072EA6A49D9D8A490839689_195() const { return ___A45AA8042E89D23F821D2E22C9EBAFCEC4D3B1291072EA6A49D9D8A490839689_195; } inline __StaticArrayInitTypeSizeU3D38_tA06FFB58ABD95EAC48139C4ABFED36B1C69D0B92 * get_address_of_A45AA8042E89D23F821D2E22C9EBAFCEC4D3B1291072EA6A49D9D8A490839689_195() { return &___A45AA8042E89D23F821D2E22C9EBAFCEC4D3B1291072EA6A49D9D8A490839689_195; } inline void set_A45AA8042E89D23F821D2E22C9EBAFCEC4D3B1291072EA6A49D9D8A490839689_195(__StaticArrayInitTypeSizeU3D38_tA06FFB58ABD95EAC48139C4ABFED36B1C69D0B92 value) { ___A45AA8042E89D23F821D2E22C9EBAFCEC4D3B1291072EA6A49D9D8A490839689_195 = value; } inline static int32_t get_offset_of_A589B8F1C215FA773BA2724EB825E8B2D1792FB955349574454E18C63537F2A6_196() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___A589B8F1C215FA773BA2724EB825E8B2D1792FB955349574454E18C63537F2A6_196)); } inline __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C get_A589B8F1C215FA773BA2724EB825E8B2D1792FB955349574454E18C63537F2A6_196() const { return ___A589B8F1C215FA773BA2724EB825E8B2D1792FB955349574454E18C63537F2A6_196; } inline __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C * get_address_of_A589B8F1C215FA773BA2724EB825E8B2D1792FB955349574454E18C63537F2A6_196() { return &___A589B8F1C215FA773BA2724EB825E8B2D1792FB955349574454E18C63537F2A6_196; } inline void set_A589B8F1C215FA773BA2724EB825E8B2D1792FB955349574454E18C63537F2A6_196(__StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C value) { ___A589B8F1C215FA773BA2724EB825E8B2D1792FB955349574454E18C63537F2A6_196 = value; } inline static int32_t get_offset_of_A5A95A17B27BD47489B7BEB4A8AA145D08C838C183CD5A77A1A5EFD96AA3AB99_197() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___A5A95A17B27BD47489B7BEB4A8AA145D08C838C183CD5A77A1A5EFD96AA3AB99_197)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_A5A95A17B27BD47489B7BEB4A8AA145D08C838C183CD5A77A1A5EFD96AA3AB99_197() const { return ___A5A95A17B27BD47489B7BEB4A8AA145D08C838C183CD5A77A1A5EFD96AA3AB99_197; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_A5A95A17B27BD47489B7BEB4A8AA145D08C838C183CD5A77A1A5EFD96AA3AB99_197() { return &___A5A95A17B27BD47489B7BEB4A8AA145D08C838C183CD5A77A1A5EFD96AA3AB99_197; } inline void set_A5A95A17B27BD47489B7BEB4A8AA145D08C838C183CD5A77A1A5EFD96AA3AB99_197(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___A5A95A17B27BD47489B7BEB4A8AA145D08C838C183CD5A77A1A5EFD96AA3AB99_197 = value; } inline static int32_t get_offset_of_A719D1E9DB9C1628AF05DD49B4AA5D095CF0AD06D01C396B1777588A04D9D13E_198() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___A719D1E9DB9C1628AF05DD49B4AA5D095CF0AD06D01C396B1777588A04D9D13E_198)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_A719D1E9DB9C1628AF05DD49B4AA5D095CF0AD06D01C396B1777588A04D9D13E_198() const { return ___A719D1E9DB9C1628AF05DD49B4AA5D095CF0AD06D01C396B1777588A04D9D13E_198; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_A719D1E9DB9C1628AF05DD49B4AA5D095CF0AD06D01C396B1777588A04D9D13E_198() { return &___A719D1E9DB9C1628AF05DD49B4AA5D095CF0AD06D01C396B1777588A04D9D13E_198; } inline void set_A719D1E9DB9C1628AF05DD49B4AA5D095CF0AD06D01C396B1777588A04D9D13E_198(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___A719D1E9DB9C1628AF05DD49B4AA5D095CF0AD06D01C396B1777588A04D9D13E_198 = value; } inline static int32_t get_offset_of_A80010A555E14F5B5B3D967E0F1621742AC2048F40EBF73EB76AD8991448EE21_199() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___A80010A555E14F5B5B3D967E0F1621742AC2048F40EBF73EB76AD8991448EE21_199)); } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 get_A80010A555E14F5B5B3D967E0F1621742AC2048F40EBF73EB76AD8991448EE21_199() const { return ___A80010A555E14F5B5B3D967E0F1621742AC2048F40EBF73EB76AD8991448EE21_199; } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 * get_address_of_A80010A555E14F5B5B3D967E0F1621742AC2048F40EBF73EB76AD8991448EE21_199() { return &___A80010A555E14F5B5B3D967E0F1621742AC2048F40EBF73EB76AD8991448EE21_199; } inline void set_A80010A555E14F5B5B3D967E0F1621742AC2048F40EBF73EB76AD8991448EE21_199(__StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 value) { ___A80010A555E14F5B5B3D967E0F1621742AC2048F40EBF73EB76AD8991448EE21_199 = value; } inline static int32_t get_offset_of_A935391692FCA9A4CF6CE823B9DBED3DB708352BB4ACEDDA9EADCA78ADD23DB7_200() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___A935391692FCA9A4CF6CE823B9DBED3DB708352BB4ACEDDA9EADCA78ADD23DB7_200)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_A935391692FCA9A4CF6CE823B9DBED3DB708352BB4ACEDDA9EADCA78ADD23DB7_200() const { return ___A935391692FCA9A4CF6CE823B9DBED3DB708352BB4ACEDDA9EADCA78ADD23DB7_200; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_A935391692FCA9A4CF6CE823B9DBED3DB708352BB4ACEDDA9EADCA78ADD23DB7_200() { return &___A935391692FCA9A4CF6CE823B9DBED3DB708352BB4ACEDDA9EADCA78ADD23DB7_200; } inline void set_A935391692FCA9A4CF6CE823B9DBED3DB708352BB4ACEDDA9EADCA78ADD23DB7_200(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___A935391692FCA9A4CF6CE823B9DBED3DB708352BB4ACEDDA9EADCA78ADD23DB7_200 = value; } inline static int32_t get_offset_of_A9DD1527A5845A7B2E82F3427251AD622D570D0B8CDA4A0AF9644EB34E69B2FC_201() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___A9DD1527A5845A7B2E82F3427251AD622D570D0B8CDA4A0AF9644EB34E69B2FC_201)); } inline int32_t get_A9DD1527A5845A7B2E82F3427251AD622D570D0B8CDA4A0AF9644EB34E69B2FC_201() const { return ___A9DD1527A5845A7B2E82F3427251AD622D570D0B8CDA4A0AF9644EB34E69B2FC_201; } inline int32_t* get_address_of_A9DD1527A5845A7B2E82F3427251AD622D570D0B8CDA4A0AF9644EB34E69B2FC_201() { return &___A9DD1527A5845A7B2E82F3427251AD622D570D0B8CDA4A0AF9644EB34E69B2FC_201; } inline void set_A9DD1527A5845A7B2E82F3427251AD622D570D0B8CDA4A0AF9644EB34E69B2FC_201(int32_t value) { ___A9DD1527A5845A7B2E82F3427251AD622D570D0B8CDA4A0AF9644EB34E69B2FC_201 = value; } inline static int32_t get_offset_of_AA5D3053E53FEC67956EC1D2AA6F57CC52342FFEA91E9B7BEAF9ED8E6FCEEC23_202() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___AA5D3053E53FEC67956EC1D2AA6F57CC52342FFEA91E9B7BEAF9ED8E6FCEEC23_202)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_AA5D3053E53FEC67956EC1D2AA6F57CC52342FFEA91E9B7BEAF9ED8E6FCEEC23_202() const { return ___AA5D3053E53FEC67956EC1D2AA6F57CC52342FFEA91E9B7BEAF9ED8E6FCEEC23_202; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_AA5D3053E53FEC67956EC1D2AA6F57CC52342FFEA91E9B7BEAF9ED8E6FCEEC23_202() { return &___AA5D3053E53FEC67956EC1D2AA6F57CC52342FFEA91E9B7BEAF9ED8E6FCEEC23_202; } inline void set_AA5D3053E53FEC67956EC1D2AA6F57CC52342FFEA91E9B7BEAF9ED8E6FCEEC23_202(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___AA5D3053E53FEC67956EC1D2AA6F57CC52342FFEA91E9B7BEAF9ED8E6FCEEC23_202 = value; } inline static int32_t get_offset_of_AB3F6EE9927AC1C89E7F3D250F8DAC9A070249930D4A758B98F4D5B9A8E202B3_203() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___AB3F6EE9927AC1C89E7F3D250F8DAC9A070249930D4A758B98F4D5B9A8E202B3_203)); } inline __StaticArrayInitTypeSizeU3D56_tEBF9CCD8C2A1E8B12AE6EDE1B31598793DD01186 get_AB3F6EE9927AC1C89E7F3D250F8DAC9A070249930D4A758B98F4D5B9A8E202B3_203() const { return ___AB3F6EE9927AC1C89E7F3D250F8DAC9A070249930D4A758B98F4D5B9A8E202B3_203; } inline __StaticArrayInitTypeSizeU3D56_tEBF9CCD8C2A1E8B12AE6EDE1B31598793DD01186 * get_address_of_AB3F6EE9927AC1C89E7F3D250F8DAC9A070249930D4A758B98F4D5B9A8E202B3_203() { return &___AB3F6EE9927AC1C89E7F3D250F8DAC9A070249930D4A758B98F4D5B9A8E202B3_203; } inline void set_AB3F6EE9927AC1C89E7F3D250F8DAC9A070249930D4A758B98F4D5B9A8E202B3_203(__StaticArrayInitTypeSizeU3D56_tEBF9CCD8C2A1E8B12AE6EDE1B31598793DD01186 value) { ___AB3F6EE9927AC1C89E7F3D250F8DAC9A070249930D4A758B98F4D5B9A8E202B3_203 = value; } inline static int32_t get_offset_of_AB60EEBC1B8BF85AD5AF219745EEA4317E0C780D22675F7A33A0929A34D17DE5_204() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___AB60EEBC1B8BF85AD5AF219745EEA4317E0C780D22675F7A33A0929A34D17DE5_204)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_AB60EEBC1B8BF85AD5AF219745EEA4317E0C780D22675F7A33A0929A34D17DE5_204() const { return ___AB60EEBC1B8BF85AD5AF219745EEA4317E0C780D22675F7A33A0929A34D17DE5_204; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_AB60EEBC1B8BF85AD5AF219745EEA4317E0C780D22675F7A33A0929A34D17DE5_204() { return &___AB60EEBC1B8BF85AD5AF219745EEA4317E0C780D22675F7A33A0929A34D17DE5_204; } inline void set_AB60EEBC1B8BF85AD5AF219745EEA4317E0C780D22675F7A33A0929A34D17DE5_204(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___AB60EEBC1B8BF85AD5AF219745EEA4317E0C780D22675F7A33A0929A34D17DE5_204 = value; } inline static int32_t get_offset_of_AC7FC16C704375F0F1DB433E70C6C2B90B1D797B17806DD74E7664CAD8BFA778_205() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___AC7FC16C704375F0F1DB433E70C6C2B90B1D797B17806DD74E7664CAD8BFA778_205)); } inline __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E get_AC7FC16C704375F0F1DB433E70C6C2B90B1D797B17806DD74E7664CAD8BFA778_205() const { return ___AC7FC16C704375F0F1DB433E70C6C2B90B1D797B17806DD74E7664CAD8BFA778_205; } inline __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E * get_address_of_AC7FC16C704375F0F1DB433E70C6C2B90B1D797B17806DD74E7664CAD8BFA778_205() { return &___AC7FC16C704375F0F1DB433E70C6C2B90B1D797B17806DD74E7664CAD8BFA778_205; } inline void set_AC7FC16C704375F0F1DB433E70C6C2B90B1D797B17806DD74E7664CAD8BFA778_205(__StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E value) { ___AC7FC16C704375F0F1DB433E70C6C2B90B1D797B17806DD74E7664CAD8BFA778_205 = value; } inline static int32_t get_offset_of_AD220A499D7A196B0FE1E8BCDAA020369A8BA1C4CF21B15A3E21935ED7B09D54_206() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___AD220A499D7A196B0FE1E8BCDAA020369A8BA1C4CF21B15A3E21935ED7B09D54_206)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_AD220A499D7A196B0FE1E8BCDAA020369A8BA1C4CF21B15A3E21935ED7B09D54_206() const { return ___AD220A499D7A196B0FE1E8BCDAA020369A8BA1C4CF21B15A3E21935ED7B09D54_206; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_AD220A499D7A196B0FE1E8BCDAA020369A8BA1C4CF21B15A3E21935ED7B09D54_206() { return &___AD220A499D7A196B0FE1E8BCDAA020369A8BA1C4CF21B15A3E21935ED7B09D54_206; } inline void set_AD220A499D7A196B0FE1E8BCDAA020369A8BA1C4CF21B15A3E21935ED7B09D54_206(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___AD220A499D7A196B0FE1E8BCDAA020369A8BA1C4CF21B15A3E21935ED7B09D54_206 = value; } inline static int32_t get_offset_of_ADA8FCF87AF641D309489525EC896153F79D2AFEA9622C0BDCEDB7F8EAADD77F_207() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___ADA8FCF87AF641D309489525EC896153F79D2AFEA9622C0BDCEDB7F8EAADD77F_207)); } inline __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 get_ADA8FCF87AF641D309489525EC896153F79D2AFEA9622C0BDCEDB7F8EAADD77F_207() const { return ___ADA8FCF87AF641D309489525EC896153F79D2AFEA9622C0BDCEDB7F8EAADD77F_207; } inline __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 * get_address_of_ADA8FCF87AF641D309489525EC896153F79D2AFEA9622C0BDCEDB7F8EAADD77F_207() { return &___ADA8FCF87AF641D309489525EC896153F79D2AFEA9622C0BDCEDB7F8EAADD77F_207; } inline void set_ADA8FCF87AF641D309489525EC896153F79D2AFEA9622C0BDCEDB7F8EAADD77F_207(__StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 value) { ___ADA8FCF87AF641D309489525EC896153F79D2AFEA9622C0BDCEDB7F8EAADD77F_207 = value; } inline static int32_t get_offset_of_AF0312129020B258B5B582D3F8EA8A3DAB35467AE93C8C6DBE5D6681CCD7D489_208() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___AF0312129020B258B5B582D3F8EA8A3DAB35467AE93C8C6DBE5D6681CCD7D489_208)); } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F get_AF0312129020B258B5B582D3F8EA8A3DAB35467AE93C8C6DBE5D6681CCD7D489_208() const { return ___AF0312129020B258B5B582D3F8EA8A3DAB35467AE93C8C6DBE5D6681CCD7D489_208; } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F * get_address_of_AF0312129020B258B5B582D3F8EA8A3DAB35467AE93C8C6DBE5D6681CCD7D489_208() { return &___AF0312129020B258B5B582D3F8EA8A3DAB35467AE93C8C6DBE5D6681CCD7D489_208; } inline void set_AF0312129020B258B5B582D3F8EA8A3DAB35467AE93C8C6DBE5D6681CCD7D489_208(__StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F value) { ___AF0312129020B258B5B582D3F8EA8A3DAB35467AE93C8C6DBE5D6681CCD7D489_208 = value; } inline static int32_t get_offset_of_B09C22565E577648AD57A0C5D1F44C38D4C01E2BF7727269A1E20A3717CC77D0_209() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___B09C22565E577648AD57A0C5D1F44C38D4C01E2BF7727269A1E20A3717CC77D0_209)); } inline __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F get_B09C22565E577648AD57A0C5D1F44C38D4C01E2BF7727269A1E20A3717CC77D0_209() const { return ___B09C22565E577648AD57A0C5D1F44C38D4C01E2BF7727269A1E20A3717CC77D0_209; } inline __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F * get_address_of_B09C22565E577648AD57A0C5D1F44C38D4C01E2BF7727269A1E20A3717CC77D0_209() { return &___B09C22565E577648AD57A0C5D1F44C38D4C01E2BF7727269A1E20A3717CC77D0_209; } inline void set_B09C22565E577648AD57A0C5D1F44C38D4C01E2BF7727269A1E20A3717CC77D0_209(__StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F value) { ___B09C22565E577648AD57A0C5D1F44C38D4C01E2BF7727269A1E20A3717CC77D0_209 = value; } inline static int32_t get_offset_of_B17AF625BB8EA7C85766DBFB60A73BAE2A82560C68B4F03D08B576CD43E911DA_210() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___B17AF625BB8EA7C85766DBFB60A73BAE2A82560C68B4F03D08B576CD43E911DA_210)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_B17AF625BB8EA7C85766DBFB60A73BAE2A82560C68B4F03D08B576CD43E911DA_210() const { return ___B17AF625BB8EA7C85766DBFB60A73BAE2A82560C68B4F03D08B576CD43E911DA_210; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_B17AF625BB8EA7C85766DBFB60A73BAE2A82560C68B4F03D08B576CD43E911DA_210() { return &___B17AF625BB8EA7C85766DBFB60A73BAE2A82560C68B4F03D08B576CD43E911DA_210; } inline void set_B17AF625BB8EA7C85766DBFB60A73BAE2A82560C68B4F03D08B576CD43E911DA_210(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___B17AF625BB8EA7C85766DBFB60A73BAE2A82560C68B4F03D08B576CD43E911DA_210 = value; } inline static int32_t get_offset_of_B1FFCD775449513A059F2F3A2DF44C39E6542C6474D6BAE3DC3FA1BC256255F0_211() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___B1FFCD775449513A059F2F3A2DF44C39E6542C6474D6BAE3DC3FA1BC256255F0_211)); } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 get_B1FFCD775449513A059F2F3A2DF44C39E6542C6474D6BAE3DC3FA1BC256255F0_211() const { return ___B1FFCD775449513A059F2F3A2DF44C39E6542C6474D6BAE3DC3FA1BC256255F0_211; } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 * get_address_of_B1FFCD775449513A059F2F3A2DF44C39E6542C6474D6BAE3DC3FA1BC256255F0_211() { return &___B1FFCD775449513A059F2F3A2DF44C39E6542C6474D6BAE3DC3FA1BC256255F0_211; } inline void set_B1FFCD775449513A059F2F3A2DF44C39E6542C6474D6BAE3DC3FA1BC256255F0_211(__StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 value) { ___B1FFCD775449513A059F2F3A2DF44C39E6542C6474D6BAE3DC3FA1BC256255F0_211 = value; } inline static int32_t get_offset_of_B23D510F520CB4BA8AFA847F8A40E757C40CB6A55B237EFA1AC6D3984911B114_212() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___B23D510F520CB4BA8AFA847F8A40E757C40CB6A55B237EFA1AC6D3984911B114_212)); } inline __StaticArrayInitTypeSizeU3D120_tD78937C26C99B5FDF514E7F2EB4F8F2367B4C05A get_B23D510F520CB4BA8AFA847F8A40E757C40CB6A55B237EFA1AC6D3984911B114_212() const { return ___B23D510F520CB4BA8AFA847F8A40E757C40CB6A55B237EFA1AC6D3984911B114_212; } inline __StaticArrayInitTypeSizeU3D120_tD78937C26C99B5FDF514E7F2EB4F8F2367B4C05A * get_address_of_B23D510F520CB4BA8AFA847F8A40E757C40CB6A55B237EFA1AC6D3984911B114_212() { return &___B23D510F520CB4BA8AFA847F8A40E757C40CB6A55B237EFA1AC6D3984911B114_212; } inline void set_B23D510F520CB4BA8AFA847F8A40E757C40CB6A55B237EFA1AC6D3984911B114_212(__StaticArrayInitTypeSizeU3D120_tD78937C26C99B5FDF514E7F2EB4F8F2367B4C05A value) { ___B23D510F520CB4BA8AFA847F8A40E757C40CB6A55B237EFA1AC6D3984911B114_212 = value; } inline static int32_t get_offset_of_B257E85A5D3CAB5E738D5A0FD1A7AE96624BFE92CB7915726CBBE1518C3225CF_213() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___B257E85A5D3CAB5E738D5A0FD1A7AE96624BFE92CB7915726CBBE1518C3225CF_213)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_B257E85A5D3CAB5E738D5A0FD1A7AE96624BFE92CB7915726CBBE1518C3225CF_213() const { return ___B257E85A5D3CAB5E738D5A0FD1A7AE96624BFE92CB7915726CBBE1518C3225CF_213; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_B257E85A5D3CAB5E738D5A0FD1A7AE96624BFE92CB7915726CBBE1518C3225CF_213() { return &___B257E85A5D3CAB5E738D5A0FD1A7AE96624BFE92CB7915726CBBE1518C3225CF_213; } inline void set_B257E85A5D3CAB5E738D5A0FD1A7AE96624BFE92CB7915726CBBE1518C3225CF_213(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___B257E85A5D3CAB5E738D5A0FD1A7AE96624BFE92CB7915726CBBE1518C3225CF_213 = value; } inline static int32_t get_offset_of_B2A10F44FFEE5755DDFA6587F62D7F83F24AF24429D3ACA46E56F3F295251DEB_214() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___B2A10F44FFEE5755DDFA6587F62D7F83F24AF24429D3ACA46E56F3F295251DEB_214)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_B2A10F44FFEE5755DDFA6587F62D7F83F24AF24429D3ACA46E56F3F295251DEB_214() const { return ___B2A10F44FFEE5755DDFA6587F62D7F83F24AF24429D3ACA46E56F3F295251DEB_214; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_B2A10F44FFEE5755DDFA6587F62D7F83F24AF24429D3ACA46E56F3F295251DEB_214() { return &___B2A10F44FFEE5755DDFA6587F62D7F83F24AF24429D3ACA46E56F3F295251DEB_214; } inline void set_B2A10F44FFEE5755DDFA6587F62D7F83F24AF24429D3ACA46E56F3F295251DEB_214(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___B2A10F44FFEE5755DDFA6587F62D7F83F24AF24429D3ACA46E56F3F295251DEB_214 = value; } inline static int32_t get_offset_of_B3985439AEF8A4DF51A3369D7C0211EEF12CB0E510F6630E110C6DCC10B11A8E_215() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___B3985439AEF8A4DF51A3369D7C0211EEF12CB0E510F6630E110C6DCC10B11A8E_215)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_B3985439AEF8A4DF51A3369D7C0211EEF12CB0E510F6630E110C6DCC10B11A8E_215() const { return ___B3985439AEF8A4DF51A3369D7C0211EEF12CB0E510F6630E110C6DCC10B11A8E_215; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_B3985439AEF8A4DF51A3369D7C0211EEF12CB0E510F6630E110C6DCC10B11A8E_215() { return &___B3985439AEF8A4DF51A3369D7C0211EEF12CB0E510F6630E110C6DCC10B11A8E_215; } inline void set_B3985439AEF8A4DF51A3369D7C0211EEF12CB0E510F6630E110C6DCC10B11A8E_215(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___B3985439AEF8A4DF51A3369D7C0211EEF12CB0E510F6630E110C6DCC10B11A8E_215 = value; } inline static int32_t get_offset_of_B48C3FCBDCCF3473EF494DC9D3E37B24CF9202AB511EEEB8FCBB48B626340059_216() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___B48C3FCBDCCF3473EF494DC9D3E37B24CF9202AB511EEEB8FCBB48B626340059_216)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_B48C3FCBDCCF3473EF494DC9D3E37B24CF9202AB511EEEB8FCBB48B626340059_216() const { return ___B48C3FCBDCCF3473EF494DC9D3E37B24CF9202AB511EEEB8FCBB48B626340059_216; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_B48C3FCBDCCF3473EF494DC9D3E37B24CF9202AB511EEEB8FCBB48B626340059_216() { return &___B48C3FCBDCCF3473EF494DC9D3E37B24CF9202AB511EEEB8FCBB48B626340059_216; } inline void set_B48C3FCBDCCF3473EF494DC9D3E37B24CF9202AB511EEEB8FCBB48B626340059_216(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___B48C3FCBDCCF3473EF494DC9D3E37B24CF9202AB511EEEB8FCBB48B626340059_216 = value; } inline static int32_t get_offset_of_B57A705E01AAAEA098AD619DAA1A7220B6AB16C81F633CD5F40116160334CD05_217() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___B57A705E01AAAEA098AD619DAA1A7220B6AB16C81F633CD5F40116160334CD05_217)); } inline __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 get_B57A705E01AAAEA098AD619DAA1A7220B6AB16C81F633CD5F40116160334CD05_217() const { return ___B57A705E01AAAEA098AD619DAA1A7220B6AB16C81F633CD5F40116160334CD05_217; } inline __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 * get_address_of_B57A705E01AAAEA098AD619DAA1A7220B6AB16C81F633CD5F40116160334CD05_217() { return &___B57A705E01AAAEA098AD619DAA1A7220B6AB16C81F633CD5F40116160334CD05_217; } inline void set_B57A705E01AAAEA098AD619DAA1A7220B6AB16C81F633CD5F40116160334CD05_217(__StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 value) { ___B57A705E01AAAEA098AD619DAA1A7220B6AB16C81F633CD5F40116160334CD05_217 = value; } inline static int32_t get_offset_of_B6338EE68F3FD438E03D596B6D76554714958953358DF7320F5073C3CB779758_218() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___B6338EE68F3FD438E03D596B6D76554714958953358DF7320F5073C3CB779758_218)); } inline __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 get_B6338EE68F3FD438E03D596B6D76554714958953358DF7320F5073C3CB779758_218() const { return ___B6338EE68F3FD438E03D596B6D76554714958953358DF7320F5073C3CB779758_218; } inline __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 * get_address_of_B6338EE68F3FD438E03D596B6D76554714958953358DF7320F5073C3CB779758_218() { return &___B6338EE68F3FD438E03D596B6D76554714958953358DF7320F5073C3CB779758_218; } inline void set_B6338EE68F3FD438E03D596B6D76554714958953358DF7320F5073C3CB779758_218(__StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 value) { ___B6338EE68F3FD438E03D596B6D76554714958953358DF7320F5073C3CB779758_218 = value; } inline static int32_t get_offset_of_B67F32BB12BAA41BEAF505F53EECD4F1409EF3E782F8CD077B511553999CE297_219() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___B67F32BB12BAA41BEAF505F53EECD4F1409EF3E782F8CD077B511553999CE297_219)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_B67F32BB12BAA41BEAF505F53EECD4F1409EF3E782F8CD077B511553999CE297_219() const { return ___B67F32BB12BAA41BEAF505F53EECD4F1409EF3E782F8CD077B511553999CE297_219; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_B67F32BB12BAA41BEAF505F53EECD4F1409EF3E782F8CD077B511553999CE297_219() { return &___B67F32BB12BAA41BEAF505F53EECD4F1409EF3E782F8CD077B511553999CE297_219; } inline void set_B67F32BB12BAA41BEAF505F53EECD4F1409EF3E782F8CD077B511553999CE297_219(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___B67F32BB12BAA41BEAF505F53EECD4F1409EF3E782F8CD077B511553999CE297_219 = value; } inline static int32_t get_offset_of_B68ACFAD2A3D93FE2B8963E29978E6D3FADFFF5E7FE6C13590E8888CCA7AD7DD_220() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___B68ACFAD2A3D93FE2B8963E29978E6D3FADFFF5E7FE6C13590E8888CCA7AD7DD_220)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_B68ACFAD2A3D93FE2B8963E29978E6D3FADFFF5E7FE6C13590E8888CCA7AD7DD_220() const { return ___B68ACFAD2A3D93FE2B8963E29978E6D3FADFFF5E7FE6C13590E8888CCA7AD7DD_220; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_B68ACFAD2A3D93FE2B8963E29978E6D3FADFFF5E7FE6C13590E8888CCA7AD7DD_220() { return &___B68ACFAD2A3D93FE2B8963E29978E6D3FADFFF5E7FE6C13590E8888CCA7AD7DD_220; } inline void set_B68ACFAD2A3D93FE2B8963E29978E6D3FADFFF5E7FE6C13590E8888CCA7AD7DD_220(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___B68ACFAD2A3D93FE2B8963E29978E6D3FADFFF5E7FE6C13590E8888CCA7AD7DD_220 = value; } inline static int32_t get_offset_of_B698262446F5CFFF6CD492B8DBB1298BC61F0135EEE69366BD94E81ADE1D5C5A_221() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___B698262446F5CFFF6CD492B8DBB1298BC61F0135EEE69366BD94E81ADE1D5C5A_221)); } inline __StaticArrayInitTypeSizeU3D36_t5A0F5FAC8609C11AC407745154F17247010BD4A1 get_B698262446F5CFFF6CD492B8DBB1298BC61F0135EEE69366BD94E81ADE1D5C5A_221() const { return ___B698262446F5CFFF6CD492B8DBB1298BC61F0135EEE69366BD94E81ADE1D5C5A_221; } inline __StaticArrayInitTypeSizeU3D36_t5A0F5FAC8609C11AC407745154F17247010BD4A1 * get_address_of_B698262446F5CFFF6CD492B8DBB1298BC61F0135EEE69366BD94E81ADE1D5C5A_221() { return &___B698262446F5CFFF6CD492B8DBB1298BC61F0135EEE69366BD94E81ADE1D5C5A_221; } inline void set_B698262446F5CFFF6CD492B8DBB1298BC61F0135EEE69366BD94E81ADE1D5C5A_221(__StaticArrayInitTypeSizeU3D36_t5A0F5FAC8609C11AC407745154F17247010BD4A1 value) { ___B698262446F5CFFF6CD492B8DBB1298BC61F0135EEE69366BD94E81ADE1D5C5A_221 = value; } inline static int32_t get_offset_of_B6FF5DB8C0FA699CD97E8EDF68219F0D1D9E509B4911710791D74AD7DF2DA1AD_222() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___B6FF5DB8C0FA699CD97E8EDF68219F0D1D9E509B4911710791D74AD7DF2DA1AD_222)); } inline __StaticArrayInitTypeSizeU3D36_t5A0F5FAC8609C11AC407745154F17247010BD4A1 get_B6FF5DB8C0FA699CD97E8EDF68219F0D1D9E509B4911710791D74AD7DF2DA1AD_222() const { return ___B6FF5DB8C0FA699CD97E8EDF68219F0D1D9E509B4911710791D74AD7DF2DA1AD_222; } inline __StaticArrayInitTypeSizeU3D36_t5A0F5FAC8609C11AC407745154F17247010BD4A1 * get_address_of_B6FF5DB8C0FA699CD97E8EDF68219F0D1D9E509B4911710791D74AD7DF2DA1AD_222() { return &___B6FF5DB8C0FA699CD97E8EDF68219F0D1D9E509B4911710791D74AD7DF2DA1AD_222; } inline void set_B6FF5DB8C0FA699CD97E8EDF68219F0D1D9E509B4911710791D74AD7DF2DA1AD_222(__StaticArrayInitTypeSizeU3D36_t5A0F5FAC8609C11AC407745154F17247010BD4A1 value) { ___B6FF5DB8C0FA699CD97E8EDF68219F0D1D9E509B4911710791D74AD7DF2DA1AD_222 = value; } inline static int32_t get_offset_of_B77E3D4019880A0C0F03E4214418983FD00C0107BB2632899FE6C3230F97B82C_223() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___B77E3D4019880A0C0F03E4214418983FD00C0107BB2632899FE6C3230F97B82C_223)); } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 get_B77E3D4019880A0C0F03E4214418983FD00C0107BB2632899FE6C3230F97B82C_223() const { return ___B77E3D4019880A0C0F03E4214418983FD00C0107BB2632899FE6C3230F97B82C_223; } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 * get_address_of_B77E3D4019880A0C0F03E4214418983FD00C0107BB2632899FE6C3230F97B82C_223() { return &___B77E3D4019880A0C0F03E4214418983FD00C0107BB2632899FE6C3230F97B82C_223; } inline void set_B77E3D4019880A0C0F03E4214418983FD00C0107BB2632899FE6C3230F97B82C_223(__StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 value) { ___B77E3D4019880A0C0F03E4214418983FD00C0107BB2632899FE6C3230F97B82C_223 = value; } inline static int32_t get_offset_of_B7A918F6F138CA8137025633559198B529D28CCEC5A51B005376CC69A5B83D85_224() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___B7A918F6F138CA8137025633559198B529D28CCEC5A51B005376CC69A5B83D85_224)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_B7A918F6F138CA8137025633559198B529D28CCEC5A51B005376CC69A5B83D85_224() const { return ___B7A918F6F138CA8137025633559198B529D28CCEC5A51B005376CC69A5B83D85_224; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_B7A918F6F138CA8137025633559198B529D28CCEC5A51B005376CC69A5B83D85_224() { return &___B7A918F6F138CA8137025633559198B529D28CCEC5A51B005376CC69A5B83D85_224; } inline void set_B7A918F6F138CA8137025633559198B529D28CCEC5A51B005376CC69A5B83D85_224(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___B7A918F6F138CA8137025633559198B529D28CCEC5A51B005376CC69A5B83D85_224 = value; } inline static int32_t get_offset_of_B8A899AEBE8BCC739D363C17DD8CA885653263A59843BF7B7C85DE4DB10A9C92_225() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___B8A899AEBE8BCC739D363C17DD8CA885653263A59843BF7B7C85DE4DB10A9C92_225)); } inline int32_t get_B8A899AEBE8BCC739D363C17DD8CA885653263A59843BF7B7C85DE4DB10A9C92_225() const { return ___B8A899AEBE8BCC739D363C17DD8CA885653263A59843BF7B7C85DE4DB10A9C92_225; } inline int32_t* get_address_of_B8A899AEBE8BCC739D363C17DD8CA885653263A59843BF7B7C85DE4DB10A9C92_225() { return &___B8A899AEBE8BCC739D363C17DD8CA885653263A59843BF7B7C85DE4DB10A9C92_225; } inline void set_B8A899AEBE8BCC739D363C17DD8CA885653263A59843BF7B7C85DE4DB10A9C92_225(int32_t value) { ___B8A899AEBE8BCC739D363C17DD8CA885653263A59843BF7B7C85DE4DB10A9C92_225 = value; } inline static int32_t get_offset_of_B93B37392B6BF36325C2B8E6047E7EF31B87C67E59B16D30A60CAF2E18D9C73C_226() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___B93B37392B6BF36325C2B8E6047E7EF31B87C67E59B16D30A60CAF2E18D9C73C_226)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_B93B37392B6BF36325C2B8E6047E7EF31B87C67E59B16D30A60CAF2E18D9C73C_226() const { return ___B93B37392B6BF36325C2B8E6047E7EF31B87C67E59B16D30A60CAF2E18D9C73C_226; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_B93B37392B6BF36325C2B8E6047E7EF31B87C67E59B16D30A60CAF2E18D9C73C_226() { return &___B93B37392B6BF36325C2B8E6047E7EF31B87C67E59B16D30A60CAF2E18D9C73C_226; } inline void set_B93B37392B6BF36325C2B8E6047E7EF31B87C67E59B16D30A60CAF2E18D9C73C_226(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___B93B37392B6BF36325C2B8E6047E7EF31B87C67E59B16D30A60CAF2E18D9C73C_226 = value; } inline static int32_t get_offset_of_B9D4AF390AFC6A0F149B843D651CFEBC1C4EC496A0263B72207836F9C525E1C4_227() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___B9D4AF390AFC6A0F149B843D651CFEBC1C4EC496A0263B72207836F9C525E1C4_227)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_B9D4AF390AFC6A0F149B843D651CFEBC1C4EC496A0263B72207836F9C525E1C4_227() const { return ___B9D4AF390AFC6A0F149B843D651CFEBC1C4EC496A0263B72207836F9C525E1C4_227; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_B9D4AF390AFC6A0F149B843D651CFEBC1C4EC496A0263B72207836F9C525E1C4_227() { return &___B9D4AF390AFC6A0F149B843D651CFEBC1C4EC496A0263B72207836F9C525E1C4_227; } inline void set_B9D4AF390AFC6A0F149B843D651CFEBC1C4EC496A0263B72207836F9C525E1C4_227(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___B9D4AF390AFC6A0F149B843D651CFEBC1C4EC496A0263B72207836F9C525E1C4_227 = value; } inline static int32_t get_offset_of_BABB01CD1E2AD140F7D2AF35515DA38E8936F0BA0298BCF0245EB5692A3F69CC_228() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___BABB01CD1E2AD140F7D2AF35515DA38E8936F0BA0298BCF0245EB5692A3F69CC_228)); } inline __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F get_BABB01CD1E2AD140F7D2AF35515DA38E8936F0BA0298BCF0245EB5692A3F69CC_228() const { return ___BABB01CD1E2AD140F7D2AF35515DA38E8936F0BA0298BCF0245EB5692A3F69CC_228; } inline __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F * get_address_of_BABB01CD1E2AD140F7D2AF35515DA38E8936F0BA0298BCF0245EB5692A3F69CC_228() { return &___BABB01CD1E2AD140F7D2AF35515DA38E8936F0BA0298BCF0245EB5692A3F69CC_228; } inline void set_BABB01CD1E2AD140F7D2AF35515DA38E8936F0BA0298BCF0245EB5692A3F69CC_228(__StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F value) { ___BABB01CD1E2AD140F7D2AF35515DA38E8936F0BA0298BCF0245EB5692A3F69CC_228 = value; } inline static int32_t get_offset_of_BB288FA00D4BBE2546E0D29F7D8BC6AF483CD4275D692B451B2E39A404E33EBF_229() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___BB288FA00D4BBE2546E0D29F7D8BC6AF483CD4275D692B451B2E39A404E33EBF_229)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_BB288FA00D4BBE2546E0D29F7D8BC6AF483CD4275D692B451B2E39A404E33EBF_229() const { return ___BB288FA00D4BBE2546E0D29F7D8BC6AF483CD4275D692B451B2E39A404E33EBF_229; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_BB288FA00D4BBE2546E0D29F7D8BC6AF483CD4275D692B451B2E39A404E33EBF_229() { return &___BB288FA00D4BBE2546E0D29F7D8BC6AF483CD4275D692B451B2E39A404E33EBF_229; } inline void set_BB288FA00D4BBE2546E0D29F7D8BC6AF483CD4275D692B451B2E39A404E33EBF_229(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___BB288FA00D4BBE2546E0D29F7D8BC6AF483CD4275D692B451B2E39A404E33EBF_229 = value; } inline static int32_t get_offset_of_BD01644841E6B289961C01E9D8319807BB25F791DB6A990F60D44DA36533D5AD_230() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___BD01644841E6B289961C01E9D8319807BB25F791DB6A990F60D44DA36533D5AD_230)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_BD01644841E6B289961C01E9D8319807BB25F791DB6A990F60D44DA36533D5AD_230() const { return ___BD01644841E6B289961C01E9D8319807BB25F791DB6A990F60D44DA36533D5AD_230; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_BD01644841E6B289961C01E9D8319807BB25F791DB6A990F60D44DA36533D5AD_230() { return &___BD01644841E6B289961C01E9D8319807BB25F791DB6A990F60D44DA36533D5AD_230; } inline void set_BD01644841E6B289961C01E9D8319807BB25F791DB6A990F60D44DA36533D5AD_230(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___BD01644841E6B289961C01E9D8319807BB25F791DB6A990F60D44DA36533D5AD_230 = value; } inline static int32_t get_offset_of_BD6174A7C16E1AF07272966A9C071C8A3CF16B2726C50D672A09F60636B08901_231() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___BD6174A7C16E1AF07272966A9C071C8A3CF16B2726C50D672A09F60636B08901_231)); } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F get_BD6174A7C16E1AF07272966A9C071C8A3CF16B2726C50D672A09F60636B08901_231() const { return ___BD6174A7C16E1AF07272966A9C071C8A3CF16B2726C50D672A09F60636B08901_231; } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F * get_address_of_BD6174A7C16E1AF07272966A9C071C8A3CF16B2726C50D672A09F60636B08901_231() { return &___BD6174A7C16E1AF07272966A9C071C8A3CF16B2726C50D672A09F60636B08901_231; } inline void set_BD6174A7C16E1AF07272966A9C071C8A3CF16B2726C50D672A09F60636B08901_231(__StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F value) { ___BD6174A7C16E1AF07272966A9C071C8A3CF16B2726C50D672A09F60636B08901_231 = value; } inline static int32_t get_offset_of_BDB11C99D6418180156EEA47B9EB755F8736055603C19E57F9DFB4CDFFCF8C3A_232() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___BDB11C99D6418180156EEA47B9EB755F8736055603C19E57F9DFB4CDFFCF8C3A_232)); } inline int32_t get_BDB11C99D6418180156EEA47B9EB755F8736055603C19E57F9DFB4CDFFCF8C3A_232() const { return ___BDB11C99D6418180156EEA47B9EB755F8736055603C19E57F9DFB4CDFFCF8C3A_232; } inline int32_t* get_address_of_BDB11C99D6418180156EEA47B9EB755F8736055603C19E57F9DFB4CDFFCF8C3A_232() { return &___BDB11C99D6418180156EEA47B9EB755F8736055603C19E57F9DFB4CDFFCF8C3A_232; } inline void set_BDB11C99D6418180156EEA47B9EB755F8736055603C19E57F9DFB4CDFFCF8C3A_232(int32_t value) { ___BDB11C99D6418180156EEA47B9EB755F8736055603C19E57F9DFB4CDFFCF8C3A_232 = value; } inline static int32_t get_offset_of_BDB6BB299E50984399E0FD8F6BA60FC85EF8CAF6AD5154D53E6DAC34E2E0B381_233() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___BDB6BB299E50984399E0FD8F6BA60FC85EF8CAF6AD5154D53E6DAC34E2E0B381_233)); } inline __StaticArrayInitTypeSizeU3D96_tADB23F3DA94DC89452F2BC0884B51C90615CDCD5 get_BDB6BB299E50984399E0FD8F6BA60FC85EF8CAF6AD5154D53E6DAC34E2E0B381_233() const { return ___BDB6BB299E50984399E0FD8F6BA60FC85EF8CAF6AD5154D53E6DAC34E2E0B381_233; } inline __StaticArrayInitTypeSizeU3D96_tADB23F3DA94DC89452F2BC0884B51C90615CDCD5 * get_address_of_BDB6BB299E50984399E0FD8F6BA60FC85EF8CAF6AD5154D53E6DAC34E2E0B381_233() { return &___BDB6BB299E50984399E0FD8F6BA60FC85EF8CAF6AD5154D53E6DAC34E2E0B381_233; } inline void set_BDB6BB299E50984399E0FD8F6BA60FC85EF8CAF6AD5154D53E6DAC34E2E0B381_233(__StaticArrayInitTypeSizeU3D96_tADB23F3DA94DC89452F2BC0884B51C90615CDCD5 value) { ___BDB6BB299E50984399E0FD8F6BA60FC85EF8CAF6AD5154D53E6DAC34E2E0B381_233 = value; } inline static int32_t get_offset_of_BDBC02F2D0A2A74757905F71BEC91DE96906C2FB70018166887D85BEB84B7957_234() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___BDBC02F2D0A2A74757905F71BEC91DE96906C2FB70018166887D85BEB84B7957_234)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_BDBC02F2D0A2A74757905F71BEC91DE96906C2FB70018166887D85BEB84B7957_234() const { return ___BDBC02F2D0A2A74757905F71BEC91DE96906C2FB70018166887D85BEB84B7957_234; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_BDBC02F2D0A2A74757905F71BEC91DE96906C2FB70018166887D85BEB84B7957_234() { return &___BDBC02F2D0A2A74757905F71BEC91DE96906C2FB70018166887D85BEB84B7957_234; } inline void set_BDBC02F2D0A2A74757905F71BEC91DE96906C2FB70018166887D85BEB84B7957_234(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___BDBC02F2D0A2A74757905F71BEC91DE96906C2FB70018166887D85BEB84B7957_234 = value; } inline static int32_t get_offset_of_BEDA989D5939125AA1831BFE35ED2E4F0F05DD63851049C646ACE173A2D0827C_235() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___BEDA989D5939125AA1831BFE35ED2E4F0F05DD63851049C646ACE173A2D0827C_235)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_BEDA989D5939125AA1831BFE35ED2E4F0F05DD63851049C646ACE173A2D0827C_235() const { return ___BEDA989D5939125AA1831BFE35ED2E4F0F05DD63851049C646ACE173A2D0827C_235; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_BEDA989D5939125AA1831BFE35ED2E4F0F05DD63851049C646ACE173A2D0827C_235() { return &___BEDA989D5939125AA1831BFE35ED2E4F0F05DD63851049C646ACE173A2D0827C_235; } inline void set_BEDA989D5939125AA1831BFE35ED2E4F0F05DD63851049C646ACE173A2D0827C_235(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___BEDA989D5939125AA1831BFE35ED2E4F0F05DD63851049C646ACE173A2D0827C_235 = value; } inline static int32_t get_offset_of_BF3DB37CB55FF90EEE410403506E7AFB17B3B6ED163AEC657F4E4F47532D1E85_236() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___BF3DB37CB55FF90EEE410403506E7AFB17B3B6ED163AEC657F4E4F47532D1E85_236)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_BF3DB37CB55FF90EEE410403506E7AFB17B3B6ED163AEC657F4E4F47532D1E85_236() const { return ___BF3DB37CB55FF90EEE410403506E7AFB17B3B6ED163AEC657F4E4F47532D1E85_236; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_BF3DB37CB55FF90EEE410403506E7AFB17B3B6ED163AEC657F4E4F47532D1E85_236() { return &___BF3DB37CB55FF90EEE410403506E7AFB17B3B6ED163AEC657F4E4F47532D1E85_236; } inline void set_BF3DB37CB55FF90EEE410403506E7AFB17B3B6ED163AEC657F4E4F47532D1E85_236(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___BF3DB37CB55FF90EEE410403506E7AFB17B3B6ED163AEC657F4E4F47532D1E85_236 = value; } inline static int32_t get_offset_of_C0BCAD52BB24771C2430DFC75321628F5503FDDC5A0E05E93F3DD624A60B10BD_237() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___C0BCAD52BB24771C2430DFC75321628F5503FDDC5A0E05E93F3DD624A60B10BD_237)); } inline __StaticArrayInitTypeSizeU3D192_tC7D23024B2AD7A4D301599706A49B8C87DAA353D get_C0BCAD52BB24771C2430DFC75321628F5503FDDC5A0E05E93F3DD624A60B10BD_237() const { return ___C0BCAD52BB24771C2430DFC75321628F5503FDDC5A0E05E93F3DD624A60B10BD_237; } inline __StaticArrayInitTypeSizeU3D192_tC7D23024B2AD7A4D301599706A49B8C87DAA353D * get_address_of_C0BCAD52BB24771C2430DFC75321628F5503FDDC5A0E05E93F3DD624A60B10BD_237() { return &___C0BCAD52BB24771C2430DFC75321628F5503FDDC5A0E05E93F3DD624A60B10BD_237; } inline void set_C0BCAD52BB24771C2430DFC75321628F5503FDDC5A0E05E93F3DD624A60B10BD_237(__StaticArrayInitTypeSizeU3D192_tC7D23024B2AD7A4D301599706A49B8C87DAA353D value) { ___C0BCAD52BB24771C2430DFC75321628F5503FDDC5A0E05E93F3DD624A60B10BD_237 = value; } inline static int32_t get_offset_of_C0EE00302C997F25F7963B42E53EA31C48A41E1D5D50F1DAC01F6350AE1FF443_238() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___C0EE00302C997F25F7963B42E53EA31C48A41E1D5D50F1DAC01F6350AE1FF443_238)); } inline __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 get_C0EE00302C997F25F7963B42E53EA31C48A41E1D5D50F1DAC01F6350AE1FF443_238() const { return ___C0EE00302C997F25F7963B42E53EA31C48A41E1D5D50F1DAC01F6350AE1FF443_238; } inline __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 * get_address_of_C0EE00302C997F25F7963B42E53EA31C48A41E1D5D50F1DAC01F6350AE1FF443_238() { return &___C0EE00302C997F25F7963B42E53EA31C48A41E1D5D50F1DAC01F6350AE1FF443_238; } inline void set_C0EE00302C997F25F7963B42E53EA31C48A41E1D5D50F1DAC01F6350AE1FF443_238(__StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 value) { ___C0EE00302C997F25F7963B42E53EA31C48A41E1D5D50F1DAC01F6350AE1FF443_238 = value; } inline static int32_t get_offset_of_C133E473E5E653C5C4AEDB8BCC1C1A3A44D384FC0B6C0FCF04672B1B325EC01B_239() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___C133E473E5E653C5C4AEDB8BCC1C1A3A44D384FC0B6C0FCF04672B1B325EC01B_239)); } inline __StaticArrayInitTypeSizeU3D76_t6572A863E37652A3D016260FBD2285807BDD3823 get_C133E473E5E653C5C4AEDB8BCC1C1A3A44D384FC0B6C0FCF04672B1B325EC01B_239() const { return ___C133E473E5E653C5C4AEDB8BCC1C1A3A44D384FC0B6C0FCF04672B1B325EC01B_239; } inline __StaticArrayInitTypeSizeU3D76_t6572A863E37652A3D016260FBD2285807BDD3823 * get_address_of_C133E473E5E653C5C4AEDB8BCC1C1A3A44D384FC0B6C0FCF04672B1B325EC01B_239() { return &___C133E473E5E653C5C4AEDB8BCC1C1A3A44D384FC0B6C0FCF04672B1B325EC01B_239; } inline void set_C133E473E5E653C5C4AEDB8BCC1C1A3A44D384FC0B6C0FCF04672B1B325EC01B_239(__StaticArrayInitTypeSizeU3D76_t6572A863E37652A3D016260FBD2285807BDD3823 value) { ___C133E473E5E653C5C4AEDB8BCC1C1A3A44D384FC0B6C0FCF04672B1B325EC01B_239 = value; } inline static int32_t get_offset_of_C199D37D9A06A0F4C75F70A8ABD3D0C2FAEB17B255174C5E67392D81CF5FF0EC_240() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___C199D37D9A06A0F4C75F70A8ABD3D0C2FAEB17B255174C5E67392D81CF5FF0EC_240)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_C199D37D9A06A0F4C75F70A8ABD3D0C2FAEB17B255174C5E67392D81CF5FF0EC_240() const { return ___C199D37D9A06A0F4C75F70A8ABD3D0C2FAEB17B255174C5E67392D81CF5FF0EC_240; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_C199D37D9A06A0F4C75F70A8ABD3D0C2FAEB17B255174C5E67392D81CF5FF0EC_240() { return &___C199D37D9A06A0F4C75F70A8ABD3D0C2FAEB17B255174C5E67392D81CF5FF0EC_240; } inline void set_C199D37D9A06A0F4C75F70A8ABD3D0C2FAEB17B255174C5E67392D81CF5FF0EC_240(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___C199D37D9A06A0F4C75F70A8ABD3D0C2FAEB17B255174C5E67392D81CF5FF0EC_240 = value; } inline static int32_t get_offset_of_C2D8E5EED6CBEBD8625FC18F81486A7733C04F9B0129FFBE974C68B90308B4F2_241() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___C2D8E5EED6CBEBD8625FC18F81486A7733C04F9B0129FFBE974C68B90308B4F2_241)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_C2D8E5EED6CBEBD8625FC18F81486A7733C04F9B0129FFBE974C68B90308B4F2_241() const { return ___C2D8E5EED6CBEBD8625FC18F81486A7733C04F9B0129FFBE974C68B90308B4F2_241; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_C2D8E5EED6CBEBD8625FC18F81486A7733C04F9B0129FFBE974C68B90308B4F2_241() { return &___C2D8E5EED6CBEBD8625FC18F81486A7733C04F9B0129FFBE974C68B90308B4F2_241; } inline void set_C2D8E5EED6CBEBD8625FC18F81486A7733C04F9B0129FFBE974C68B90308B4F2_241(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___C2D8E5EED6CBEBD8625FC18F81486A7733C04F9B0129FFBE974C68B90308B4F2_241 = value; } inline static int32_t get_offset_of_C4A6802D24BD0B4979A486C462DA989CD54F8816365BC0635A8A499FF421201C_242() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___C4A6802D24BD0B4979A486C462DA989CD54F8816365BC0635A8A499FF421201C_242)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_C4A6802D24BD0B4979A486C462DA989CD54F8816365BC0635A8A499FF421201C_242() const { return ___C4A6802D24BD0B4979A486C462DA989CD54F8816365BC0635A8A499FF421201C_242; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_C4A6802D24BD0B4979A486C462DA989CD54F8816365BC0635A8A499FF421201C_242() { return &___C4A6802D24BD0B4979A486C462DA989CD54F8816365BC0635A8A499FF421201C_242; } inline void set_C4A6802D24BD0B4979A486C462DA989CD54F8816365BC0635A8A499FF421201C_242(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___C4A6802D24BD0B4979A486C462DA989CD54F8816365BC0635A8A499FF421201C_242 = value; } inline static int32_t get_offset_of_C4E613C844059E36B3D4EE786C4236B8E641E7D49F520B003540BB274F7E12F7_243() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___C4E613C844059E36B3D4EE786C4236B8E641E7D49F520B003540BB274F7E12F7_243)); } inline __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E get_C4E613C844059E36B3D4EE786C4236B8E641E7D49F520B003540BB274F7E12F7_243() const { return ___C4E613C844059E36B3D4EE786C4236B8E641E7D49F520B003540BB274F7E12F7_243; } inline __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E * get_address_of_C4E613C844059E36B3D4EE786C4236B8E641E7D49F520B003540BB274F7E12F7_243() { return &___C4E613C844059E36B3D4EE786C4236B8E641E7D49F520B003540BB274F7E12F7_243; } inline void set_C4E613C844059E36B3D4EE786C4236B8E641E7D49F520B003540BB274F7E12F7_243(__StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E value) { ___C4E613C844059E36B3D4EE786C4236B8E641E7D49F520B003540BB274F7E12F7_243 = value; } inline static int32_t get_offset_of_C51FEE572495EE6ED75353FC262F765FF558EED94FCB9EE64987AEE6C8548E12_244() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___C51FEE572495EE6ED75353FC262F765FF558EED94FCB9EE64987AEE6C8548E12_244)); } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F get_C51FEE572495EE6ED75353FC262F765FF558EED94FCB9EE64987AEE6C8548E12_244() const { return ___C51FEE572495EE6ED75353FC262F765FF558EED94FCB9EE64987AEE6C8548E12_244; } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F * get_address_of_C51FEE572495EE6ED75353FC262F765FF558EED94FCB9EE64987AEE6C8548E12_244() { return &___C51FEE572495EE6ED75353FC262F765FF558EED94FCB9EE64987AEE6C8548E12_244; } inline void set_C51FEE572495EE6ED75353FC262F765FF558EED94FCB9EE64987AEE6C8548E12_244(__StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F value) { ___C51FEE572495EE6ED75353FC262F765FF558EED94FCB9EE64987AEE6C8548E12_244 = value; } inline static int32_t get_offset_of_C65D6ACE28C7ABEB56A3809EBDF84987B4FD0B0EB2C34FEA90394A0A5E10DC55_245() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___C65D6ACE28C7ABEB56A3809EBDF84987B4FD0B0EB2C34FEA90394A0A5E10DC55_245)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_C65D6ACE28C7ABEB56A3809EBDF84987B4FD0B0EB2C34FEA90394A0A5E10DC55_245() const { return ___C65D6ACE28C7ABEB56A3809EBDF84987B4FD0B0EB2C34FEA90394A0A5E10DC55_245; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_C65D6ACE28C7ABEB56A3809EBDF84987B4FD0B0EB2C34FEA90394A0A5E10DC55_245() { return &___C65D6ACE28C7ABEB56A3809EBDF84987B4FD0B0EB2C34FEA90394A0A5E10DC55_245; } inline void set_C65D6ACE28C7ABEB56A3809EBDF84987B4FD0B0EB2C34FEA90394A0A5E10DC55_245(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___C65D6ACE28C7ABEB56A3809EBDF84987B4FD0B0EB2C34FEA90394A0A5E10DC55_245 = value; } inline static int32_t get_offset_of_C71C8ED7041ABE0B7FD161D726857C18705285A9F1B478A006310909B4A6D900_246() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___C71C8ED7041ABE0B7FD161D726857C18705285A9F1B478A006310909B4A6D900_246)); } inline int32_t get_C71C8ED7041ABE0B7FD161D726857C18705285A9F1B478A006310909B4A6D900_246() const { return ___C71C8ED7041ABE0B7FD161D726857C18705285A9F1B478A006310909B4A6D900_246; } inline int32_t* get_address_of_C71C8ED7041ABE0B7FD161D726857C18705285A9F1B478A006310909B4A6D900_246() { return &___C71C8ED7041ABE0B7FD161D726857C18705285A9F1B478A006310909B4A6D900_246; } inline void set_C71C8ED7041ABE0B7FD161D726857C18705285A9F1B478A006310909B4A6D900_246(int32_t value) { ___C71C8ED7041ABE0B7FD161D726857C18705285A9F1B478A006310909B4A6D900_246 = value; } inline static int32_t get_offset_of_C7B696E5CE2020FEC8F611D5047339850FECC787C3DBC5D36589354D8ADF98C1_247() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___C7B696E5CE2020FEC8F611D5047339850FECC787C3DBC5D36589354D8ADF98C1_247)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_C7B696E5CE2020FEC8F611D5047339850FECC787C3DBC5D36589354D8ADF98C1_247() const { return ___C7B696E5CE2020FEC8F611D5047339850FECC787C3DBC5D36589354D8ADF98C1_247; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_C7B696E5CE2020FEC8F611D5047339850FECC787C3DBC5D36589354D8ADF98C1_247() { return &___C7B696E5CE2020FEC8F611D5047339850FECC787C3DBC5D36589354D8ADF98C1_247; } inline void set_C7B696E5CE2020FEC8F611D5047339850FECC787C3DBC5D36589354D8ADF98C1_247(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___C7B696E5CE2020FEC8F611D5047339850FECC787C3DBC5D36589354D8ADF98C1_247 = value; } inline static int32_t get_offset_of_C84227140A8A7787B30DFF8BD5693C19AA5A430C4E89FFD0256D7F77B3FEAD82_248() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___C84227140A8A7787B30DFF8BD5693C19AA5A430C4E89FFD0256D7F77B3FEAD82_248)); } inline __StaticArrayInitTypeSizeU3D112_t366701DE02350ED8C8A65F92A137F54409B95542 get_C84227140A8A7787B30DFF8BD5693C19AA5A430C4E89FFD0256D7F77B3FEAD82_248() const { return ___C84227140A8A7787B30DFF8BD5693C19AA5A430C4E89FFD0256D7F77B3FEAD82_248; } inline __StaticArrayInitTypeSizeU3D112_t366701DE02350ED8C8A65F92A137F54409B95542 * get_address_of_C84227140A8A7787B30DFF8BD5693C19AA5A430C4E89FFD0256D7F77B3FEAD82_248() { return &___C84227140A8A7787B30DFF8BD5693C19AA5A430C4E89FFD0256D7F77B3FEAD82_248; } inline void set_C84227140A8A7787B30DFF8BD5693C19AA5A430C4E89FFD0256D7F77B3FEAD82_248(__StaticArrayInitTypeSizeU3D112_t366701DE02350ED8C8A65F92A137F54409B95542 value) { ___C84227140A8A7787B30DFF8BD5693C19AA5A430C4E89FFD0256D7F77B3FEAD82_248 = value; } inline static int32_t get_offset_of_C854B091EA9394BFC39C4324F63BF827E324ABA5F68693B00E4DB8B247ED2023_249() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___C854B091EA9394BFC39C4324F63BF827E324ABA5F68693B00E4DB8B247ED2023_249)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_C854B091EA9394BFC39C4324F63BF827E324ABA5F68693B00E4DB8B247ED2023_249() const { return ___C854B091EA9394BFC39C4324F63BF827E324ABA5F68693B00E4DB8B247ED2023_249; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_C854B091EA9394BFC39C4324F63BF827E324ABA5F68693B00E4DB8B247ED2023_249() { return &___C854B091EA9394BFC39C4324F63BF827E324ABA5F68693B00E4DB8B247ED2023_249; } inline void set_C854B091EA9394BFC39C4324F63BF827E324ABA5F68693B00E4DB8B247ED2023_249(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___C854B091EA9394BFC39C4324F63BF827E324ABA5F68693B00E4DB8B247ED2023_249 = value; } inline static int32_t get_offset_of_C90D4186D61A339F3078D8C7A6CBB1F005BFF5039C44C37F526BDCE2E00200BE_250() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___C90D4186D61A339F3078D8C7A6CBB1F005BFF5039C44C37F526BDCE2E00200BE_250)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_C90D4186D61A339F3078D8C7A6CBB1F005BFF5039C44C37F526BDCE2E00200BE_250() const { return ___C90D4186D61A339F3078D8C7A6CBB1F005BFF5039C44C37F526BDCE2E00200BE_250; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_C90D4186D61A339F3078D8C7A6CBB1F005BFF5039C44C37F526BDCE2E00200BE_250() { return &___C90D4186D61A339F3078D8C7A6CBB1F005BFF5039C44C37F526BDCE2E00200BE_250; } inline void set_C90D4186D61A339F3078D8C7A6CBB1F005BFF5039C44C37F526BDCE2E00200BE_250(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___C90D4186D61A339F3078D8C7A6CBB1F005BFF5039C44C37F526BDCE2E00200BE_250 = value; } inline static int32_t get_offset_of_C9E595B3F656D2DCA3D18330FD3EB05010FD9D445BE304E4FA5F4AB7B335494D_251() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___C9E595B3F656D2DCA3D18330FD3EB05010FD9D445BE304E4FA5F4AB7B335494D_251)); } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F get_C9E595B3F656D2DCA3D18330FD3EB05010FD9D445BE304E4FA5F4AB7B335494D_251() const { return ___C9E595B3F656D2DCA3D18330FD3EB05010FD9D445BE304E4FA5F4AB7B335494D_251; } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F * get_address_of_C9E595B3F656D2DCA3D18330FD3EB05010FD9D445BE304E4FA5F4AB7B335494D_251() { return &___C9E595B3F656D2DCA3D18330FD3EB05010FD9D445BE304E4FA5F4AB7B335494D_251; } inline void set_C9E595B3F656D2DCA3D18330FD3EB05010FD9D445BE304E4FA5F4AB7B335494D_251(__StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F value) { ___C9E595B3F656D2DCA3D18330FD3EB05010FD9D445BE304E4FA5F4AB7B335494D_251 = value; } inline static int32_t get_offset_of_CB11E26FF20D3318A5A76F5FC0E725883F81ED29DAD7E32947BA8779AA3DE37F_252() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___CB11E26FF20D3318A5A76F5FC0E725883F81ED29DAD7E32947BA8779AA3DE37F_252)); } inline __StaticArrayInitTypeSizeU3D96_tADB23F3DA94DC89452F2BC0884B51C90615CDCD5 get_CB11E26FF20D3318A5A76F5FC0E725883F81ED29DAD7E32947BA8779AA3DE37F_252() const { return ___CB11E26FF20D3318A5A76F5FC0E725883F81ED29DAD7E32947BA8779AA3DE37F_252; } inline __StaticArrayInitTypeSizeU3D96_tADB23F3DA94DC89452F2BC0884B51C90615CDCD5 * get_address_of_CB11E26FF20D3318A5A76F5FC0E725883F81ED29DAD7E32947BA8779AA3DE37F_252() { return &___CB11E26FF20D3318A5A76F5FC0E725883F81ED29DAD7E32947BA8779AA3DE37F_252; } inline void set_CB11E26FF20D3318A5A76F5FC0E725883F81ED29DAD7E32947BA8779AA3DE37F_252(__StaticArrayInitTypeSizeU3D96_tADB23F3DA94DC89452F2BC0884B51C90615CDCD5 value) { ___CB11E26FF20D3318A5A76F5FC0E725883F81ED29DAD7E32947BA8779AA3DE37F_252 = value; } inline static int32_t get_offset_of_CB6DED39AE0C25F0748B553A13DCA00F6B77780B9F34B0B0F4C56BB7BF768C82_253() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___CB6DED39AE0C25F0748B553A13DCA00F6B77780B9F34B0B0F4C56BB7BF768C82_253)); } inline __StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE get_CB6DED39AE0C25F0748B553A13DCA00F6B77780B9F34B0B0F4C56BB7BF768C82_253() const { return ___CB6DED39AE0C25F0748B553A13DCA00F6B77780B9F34B0B0F4C56BB7BF768C82_253; } inline __StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE * get_address_of_CB6DED39AE0C25F0748B553A13DCA00F6B77780B9F34B0B0F4C56BB7BF768C82_253() { return &___CB6DED39AE0C25F0748B553A13DCA00F6B77780B9F34B0B0F4C56BB7BF768C82_253; } inline void set_CB6DED39AE0C25F0748B553A13DCA00F6B77780B9F34B0B0F4C56BB7BF768C82_253(__StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE value) { ___CB6DED39AE0C25F0748B553A13DCA00F6B77780B9F34B0B0F4C56BB7BF768C82_253 = value; } inline static int32_t get_offset_of_CC9BD9D64572985ECFB6E2A723B6DD347BB34F5AFECDBFB98444028D2DF4844D_254() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___CC9BD9D64572985ECFB6E2A723B6DD347BB34F5AFECDBFB98444028D2DF4844D_254)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_CC9BD9D64572985ECFB6E2A723B6DD347BB34F5AFECDBFB98444028D2DF4844D_254() const { return ___CC9BD9D64572985ECFB6E2A723B6DD347BB34F5AFECDBFB98444028D2DF4844D_254; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_CC9BD9D64572985ECFB6E2A723B6DD347BB34F5AFECDBFB98444028D2DF4844D_254() { return &___CC9BD9D64572985ECFB6E2A723B6DD347BB34F5AFECDBFB98444028D2DF4844D_254; } inline void set_CC9BD9D64572985ECFB6E2A723B6DD347BB34F5AFECDBFB98444028D2DF4844D_254(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___CC9BD9D64572985ECFB6E2A723B6DD347BB34F5AFECDBFB98444028D2DF4844D_254 = value; } inline static int32_t get_offset_of_CCD83CF06E3CE2D4A938C42BAEA101B30335EAF483F59E5EDCB41DF7C4807E1B_255() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___CCD83CF06E3CE2D4A938C42BAEA101B30335EAF483F59E5EDCB41DF7C4807E1B_255)); } inline __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E get_CCD83CF06E3CE2D4A938C42BAEA101B30335EAF483F59E5EDCB41DF7C4807E1B_255() const { return ___CCD83CF06E3CE2D4A938C42BAEA101B30335EAF483F59E5EDCB41DF7C4807E1B_255; } inline __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E * get_address_of_CCD83CF06E3CE2D4A938C42BAEA101B30335EAF483F59E5EDCB41DF7C4807E1B_255() { return &___CCD83CF06E3CE2D4A938C42BAEA101B30335EAF483F59E5EDCB41DF7C4807E1B_255; } inline void set_CCD83CF06E3CE2D4A938C42BAEA101B30335EAF483F59E5EDCB41DF7C4807E1B_255(__StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E value) { ___CCD83CF06E3CE2D4A938C42BAEA101B30335EAF483F59E5EDCB41DF7C4807E1B_255 = value; } inline static int32_t get_offset_of_CDAEE7E50DA05783C75D649650C5CDC6ABB06447D6A9CFBB2E7212421547E53B_256() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___CDAEE7E50DA05783C75D649650C5CDC6ABB06447D6A9CFBB2E7212421547E53B_256)); } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F get_CDAEE7E50DA05783C75D649650C5CDC6ABB06447D6A9CFBB2E7212421547E53B_256() const { return ___CDAEE7E50DA05783C75D649650C5CDC6ABB06447D6A9CFBB2E7212421547E53B_256; } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F * get_address_of_CDAEE7E50DA05783C75D649650C5CDC6ABB06447D6A9CFBB2E7212421547E53B_256() { return &___CDAEE7E50DA05783C75D649650C5CDC6ABB06447D6A9CFBB2E7212421547E53B_256; } inline void set_CDAEE7E50DA05783C75D649650C5CDC6ABB06447D6A9CFBB2E7212421547E53B_256(__StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F value) { ___CDAEE7E50DA05783C75D649650C5CDC6ABB06447D6A9CFBB2E7212421547E53B_256 = value; } inline static int32_t get_offset_of_CF64D219C0BA56CECE4E41E0C8BF3AF538F4510FA9A2B00F38DA09E548270E5C_257() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___CF64D219C0BA56CECE4E41E0C8BF3AF538F4510FA9A2B00F38DA09E548270E5C_257)); } inline __StaticArrayInitTypeSizeU3D68_tE431405C001EFCAA99F9D46276BFEAF7F5AF4E0F get_CF64D219C0BA56CECE4E41E0C8BF3AF538F4510FA9A2B00F38DA09E548270E5C_257() const { return ___CF64D219C0BA56CECE4E41E0C8BF3AF538F4510FA9A2B00F38DA09E548270E5C_257; } inline __StaticArrayInitTypeSizeU3D68_tE431405C001EFCAA99F9D46276BFEAF7F5AF4E0F * get_address_of_CF64D219C0BA56CECE4E41E0C8BF3AF538F4510FA9A2B00F38DA09E548270E5C_257() { return &___CF64D219C0BA56CECE4E41E0C8BF3AF538F4510FA9A2B00F38DA09E548270E5C_257; } inline void set_CF64D219C0BA56CECE4E41E0C8BF3AF538F4510FA9A2B00F38DA09E548270E5C_257(__StaticArrayInitTypeSizeU3D68_tE431405C001EFCAA99F9D46276BFEAF7F5AF4E0F value) { ___CF64D219C0BA56CECE4E41E0C8BF3AF538F4510FA9A2B00F38DA09E548270E5C_257 = value; } inline static int32_t get_offset_of_D15388770BF0AB6F544906F0A1A3375BE05BB7FEB2B215CED8A8E41C42972549_258() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___D15388770BF0AB6F544906F0A1A3375BE05BB7FEB2B215CED8A8E41C42972549_258)); } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F get_D15388770BF0AB6F544906F0A1A3375BE05BB7FEB2B215CED8A8E41C42972549_258() const { return ___D15388770BF0AB6F544906F0A1A3375BE05BB7FEB2B215CED8A8E41C42972549_258; } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F * get_address_of_D15388770BF0AB6F544906F0A1A3375BE05BB7FEB2B215CED8A8E41C42972549_258() { return &___D15388770BF0AB6F544906F0A1A3375BE05BB7FEB2B215CED8A8E41C42972549_258; } inline void set_D15388770BF0AB6F544906F0A1A3375BE05BB7FEB2B215CED8A8E41C42972549_258(__StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F value) { ___D15388770BF0AB6F544906F0A1A3375BE05BB7FEB2B215CED8A8E41C42972549_258 = value; } inline static int32_t get_offset_of_D1FAE5443A715D6F96387473C649F557670B8A92E175272491DFC646754F4A9D_259() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___D1FAE5443A715D6F96387473C649F557670B8A92E175272491DFC646754F4A9D_259)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_D1FAE5443A715D6F96387473C649F557670B8A92E175272491DFC646754F4A9D_259() const { return ___D1FAE5443A715D6F96387473C649F557670B8A92E175272491DFC646754F4A9D_259; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_D1FAE5443A715D6F96387473C649F557670B8A92E175272491DFC646754F4A9D_259() { return &___D1FAE5443A715D6F96387473C649F557670B8A92E175272491DFC646754F4A9D_259; } inline void set_D1FAE5443A715D6F96387473C649F557670B8A92E175272491DFC646754F4A9D_259(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___D1FAE5443A715D6F96387473C649F557670B8A92E175272491DFC646754F4A9D_259 = value; } inline static int32_t get_offset_of_D38868B99B6C1AB9F2E65E75D07BA90CAF6DA7F4D74F9142A44413647473B362_260() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___D38868B99B6C1AB9F2E65E75D07BA90CAF6DA7F4D74F9142A44413647473B362_260)); } inline __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E get_D38868B99B6C1AB9F2E65E75D07BA90CAF6DA7F4D74F9142A44413647473B362_260() const { return ___D38868B99B6C1AB9F2E65E75D07BA90CAF6DA7F4D74F9142A44413647473B362_260; } inline __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E * get_address_of_D38868B99B6C1AB9F2E65E75D07BA90CAF6DA7F4D74F9142A44413647473B362_260() { return &___D38868B99B6C1AB9F2E65E75D07BA90CAF6DA7F4D74F9142A44413647473B362_260; } inline void set_D38868B99B6C1AB9F2E65E75D07BA90CAF6DA7F4D74F9142A44413647473B362_260(__StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E value) { ___D38868B99B6C1AB9F2E65E75D07BA90CAF6DA7F4D74F9142A44413647473B362_260 = value; } inline static int32_t get_offset_of_D3ADE9315DD51AE00C4C2D80ED119F3D1B1743E64ADC7FDDDE505286274C877D_261() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___D3ADE9315DD51AE00C4C2D80ED119F3D1B1743E64ADC7FDDDE505286274C877D_261)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_D3ADE9315DD51AE00C4C2D80ED119F3D1B1743E64ADC7FDDDE505286274C877D_261() const { return ___D3ADE9315DD51AE00C4C2D80ED119F3D1B1743E64ADC7FDDDE505286274C877D_261; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_D3ADE9315DD51AE00C4C2D80ED119F3D1B1743E64ADC7FDDDE505286274C877D_261() { return &___D3ADE9315DD51AE00C4C2D80ED119F3D1B1743E64ADC7FDDDE505286274C877D_261; } inline void set_D3ADE9315DD51AE00C4C2D80ED119F3D1B1743E64ADC7FDDDE505286274C877D_261(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___D3ADE9315DD51AE00C4C2D80ED119F3D1B1743E64ADC7FDDDE505286274C877D_261 = value; } inline static int32_t get_offset_of_D6380FB2FF2DD88C9290D88B81E78BCA13AAAB4BE827B103062AFBB1085B0793_262() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___D6380FB2FF2DD88C9290D88B81E78BCA13AAAB4BE827B103062AFBB1085B0793_262)); } inline __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F get_D6380FB2FF2DD88C9290D88B81E78BCA13AAAB4BE827B103062AFBB1085B0793_262() const { return ___D6380FB2FF2DD88C9290D88B81E78BCA13AAAB4BE827B103062AFBB1085B0793_262; } inline __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F * get_address_of_D6380FB2FF2DD88C9290D88B81E78BCA13AAAB4BE827B103062AFBB1085B0793_262() { return &___D6380FB2FF2DD88C9290D88B81E78BCA13AAAB4BE827B103062AFBB1085B0793_262; } inline void set_D6380FB2FF2DD88C9290D88B81E78BCA13AAAB4BE827B103062AFBB1085B0793_262(__StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F value) { ___D6380FB2FF2DD88C9290D88B81E78BCA13AAAB4BE827B103062AFBB1085B0793_262 = value; } inline static int32_t get_offset_of_D916EBA7A5A5D84BB85D26EE65A08CC18219FACEB615519209ABB469C0B35D32_263() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___D916EBA7A5A5D84BB85D26EE65A08CC18219FACEB615519209ABB469C0B35D32_263)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_D916EBA7A5A5D84BB85D26EE65A08CC18219FACEB615519209ABB469C0B35D32_263() const { return ___D916EBA7A5A5D84BB85D26EE65A08CC18219FACEB615519209ABB469C0B35D32_263; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_D916EBA7A5A5D84BB85D26EE65A08CC18219FACEB615519209ABB469C0B35D32_263() { return &___D916EBA7A5A5D84BB85D26EE65A08CC18219FACEB615519209ABB469C0B35D32_263; } inline void set_D916EBA7A5A5D84BB85D26EE65A08CC18219FACEB615519209ABB469C0B35D32_263(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___D916EBA7A5A5D84BB85D26EE65A08CC18219FACEB615519209ABB469C0B35D32_263 = value; } inline static int32_t get_offset_of_D9388FECE7A168D1EFFA85FA9C8DA1AEED48DDCE2E3799E07F41A9B60E389722_264() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___D9388FECE7A168D1EFFA85FA9C8DA1AEED48DDCE2E3799E07F41A9B60E389722_264)); } inline __StaticArrayInitTypeSizeU3D56_tEBF9CCD8C2A1E8B12AE6EDE1B31598793DD01186 get_D9388FECE7A168D1EFFA85FA9C8DA1AEED48DDCE2E3799E07F41A9B60E389722_264() const { return ___D9388FECE7A168D1EFFA85FA9C8DA1AEED48DDCE2E3799E07F41A9B60E389722_264; } inline __StaticArrayInitTypeSizeU3D56_tEBF9CCD8C2A1E8B12AE6EDE1B31598793DD01186 * get_address_of_D9388FECE7A168D1EFFA85FA9C8DA1AEED48DDCE2E3799E07F41A9B60E389722_264() { return &___D9388FECE7A168D1EFFA85FA9C8DA1AEED48DDCE2E3799E07F41A9B60E389722_264; } inline void set_D9388FECE7A168D1EFFA85FA9C8DA1AEED48DDCE2E3799E07F41A9B60E389722_264(__StaticArrayInitTypeSizeU3D56_tEBF9CCD8C2A1E8B12AE6EDE1B31598793DD01186 value) { ___D9388FECE7A168D1EFFA85FA9C8DA1AEED48DDCE2E3799E07F41A9B60E389722_264 = value; } inline static int32_t get_offset_of_DB1CCE19AFD5123D31DCDAC6656A6DB5AF929CA39192511B8C042DD0513E7497_265() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___DB1CCE19AFD5123D31DCDAC6656A6DB5AF929CA39192511B8C042DD0513E7497_265)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_DB1CCE19AFD5123D31DCDAC6656A6DB5AF929CA39192511B8C042DD0513E7497_265() const { return ___DB1CCE19AFD5123D31DCDAC6656A6DB5AF929CA39192511B8C042DD0513E7497_265; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_DB1CCE19AFD5123D31DCDAC6656A6DB5AF929CA39192511B8C042DD0513E7497_265() { return &___DB1CCE19AFD5123D31DCDAC6656A6DB5AF929CA39192511B8C042DD0513E7497_265; } inline void set_DB1CCE19AFD5123D31DCDAC6656A6DB5AF929CA39192511B8C042DD0513E7497_265(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___DB1CCE19AFD5123D31DCDAC6656A6DB5AF929CA39192511B8C042DD0513E7497_265 = value; } inline static int32_t get_offset_of_DC196B5ACC67550E50DDC963D9192AEB816537E6A74CFB7DFE3A0453E5F4FB82_266() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___DC196B5ACC67550E50DDC963D9192AEB816537E6A74CFB7DFE3A0453E5F4FB82_266)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_DC196B5ACC67550E50DDC963D9192AEB816537E6A74CFB7DFE3A0453E5F4FB82_266() const { return ___DC196B5ACC67550E50DDC963D9192AEB816537E6A74CFB7DFE3A0453E5F4FB82_266; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_DC196B5ACC67550E50DDC963D9192AEB816537E6A74CFB7DFE3A0453E5F4FB82_266() { return &___DC196B5ACC67550E50DDC963D9192AEB816537E6A74CFB7DFE3A0453E5F4FB82_266; } inline void set_DC196B5ACC67550E50DDC963D9192AEB816537E6A74CFB7DFE3A0453E5F4FB82_266(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___DC196B5ACC67550E50DDC963D9192AEB816537E6A74CFB7DFE3A0453E5F4FB82_266 = value; } inline static int32_t get_offset_of_DC1CDED6204DF70AC5C64ED2C9958FE75479400FE1E1A80F77C3A5BC6FFAF0A5_267() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___DC1CDED6204DF70AC5C64ED2C9958FE75479400FE1E1A80F77C3A5BC6FFAF0A5_267)); } inline __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 get_DC1CDED6204DF70AC5C64ED2C9958FE75479400FE1E1A80F77C3A5BC6FFAF0A5_267() const { return ___DC1CDED6204DF70AC5C64ED2C9958FE75479400FE1E1A80F77C3A5BC6FFAF0A5_267; } inline __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 * get_address_of_DC1CDED6204DF70AC5C64ED2C9958FE75479400FE1E1A80F77C3A5BC6FFAF0A5_267() { return &___DC1CDED6204DF70AC5C64ED2C9958FE75479400FE1E1A80F77C3A5BC6FFAF0A5_267; } inline void set_DC1CDED6204DF70AC5C64ED2C9958FE75479400FE1E1A80F77C3A5BC6FFAF0A5_267(__StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 value) { ___DC1CDED6204DF70AC5C64ED2C9958FE75479400FE1E1A80F77C3A5BC6FFAF0A5_267 = value; } inline static int32_t get_offset_of_DD2B2ACED61DA9A12AEE4F581C0D33D6D76A9722CDC6355B23FB5DF6B2032B18_268() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___DD2B2ACED61DA9A12AEE4F581C0D33D6D76A9722CDC6355B23FB5DF6B2032B18_268)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_DD2B2ACED61DA9A12AEE4F581C0D33D6D76A9722CDC6355B23FB5DF6B2032B18_268() const { return ___DD2B2ACED61DA9A12AEE4F581C0D33D6D76A9722CDC6355B23FB5DF6B2032B18_268; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_DD2B2ACED61DA9A12AEE4F581C0D33D6D76A9722CDC6355B23FB5DF6B2032B18_268() { return &___DD2B2ACED61DA9A12AEE4F581C0D33D6D76A9722CDC6355B23FB5DF6B2032B18_268; } inline void set_DD2B2ACED61DA9A12AEE4F581C0D33D6D76A9722CDC6355B23FB5DF6B2032B18_268(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___DD2B2ACED61DA9A12AEE4F581C0D33D6D76A9722CDC6355B23FB5DF6B2032B18_268 = value; } inline static int32_t get_offset_of_DDA4EDB734C11C20B2D8A7BE67E2BB03E2F67B7928B0DAEB15EBF2EDD9A5150B_269() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___DDA4EDB734C11C20B2D8A7BE67E2BB03E2F67B7928B0DAEB15EBF2EDD9A5150B_269)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_DDA4EDB734C11C20B2D8A7BE67E2BB03E2F67B7928B0DAEB15EBF2EDD9A5150B_269() const { return ___DDA4EDB734C11C20B2D8A7BE67E2BB03E2F67B7928B0DAEB15EBF2EDD9A5150B_269; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_DDA4EDB734C11C20B2D8A7BE67E2BB03E2F67B7928B0DAEB15EBF2EDD9A5150B_269() { return &___DDA4EDB734C11C20B2D8A7BE67E2BB03E2F67B7928B0DAEB15EBF2EDD9A5150B_269; } inline void set_DDA4EDB734C11C20B2D8A7BE67E2BB03E2F67B7928B0DAEB15EBF2EDD9A5150B_269(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___DDA4EDB734C11C20B2D8A7BE67E2BB03E2F67B7928B0DAEB15EBF2EDD9A5150B_269 = value; } inline static int32_t get_offset_of_DE422551A0E0EF2710E43824DEFE8B2204F5FB76F83D7A496BA3F8D7D66569EB_270() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___DE422551A0E0EF2710E43824DEFE8B2204F5FB76F83D7A496BA3F8D7D66569EB_270)); } inline int32_t get_DE422551A0E0EF2710E43824DEFE8B2204F5FB76F83D7A496BA3F8D7D66569EB_270() const { return ___DE422551A0E0EF2710E43824DEFE8B2204F5FB76F83D7A496BA3F8D7D66569EB_270; } inline int32_t* get_address_of_DE422551A0E0EF2710E43824DEFE8B2204F5FB76F83D7A496BA3F8D7D66569EB_270() { return &___DE422551A0E0EF2710E43824DEFE8B2204F5FB76F83D7A496BA3F8D7D66569EB_270; } inline void set_DE422551A0E0EF2710E43824DEFE8B2204F5FB76F83D7A496BA3F8D7D66569EB_270(int32_t value) { ___DE422551A0E0EF2710E43824DEFE8B2204F5FB76F83D7A496BA3F8D7D66569EB_270 = value; } inline static int32_t get_offset_of_DE56C9263420A7B28A6286EB62AFBE2C1D5164698C518792FD8CEAAF2CB2CD03_271() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___DE56C9263420A7B28A6286EB62AFBE2C1D5164698C518792FD8CEAAF2CB2CD03_271)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_DE56C9263420A7B28A6286EB62AFBE2C1D5164698C518792FD8CEAAF2CB2CD03_271() const { return ___DE56C9263420A7B28A6286EB62AFBE2C1D5164698C518792FD8CEAAF2CB2CD03_271; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_DE56C9263420A7B28A6286EB62AFBE2C1D5164698C518792FD8CEAAF2CB2CD03_271() { return &___DE56C9263420A7B28A6286EB62AFBE2C1D5164698C518792FD8CEAAF2CB2CD03_271; } inline void set_DE56C9263420A7B28A6286EB62AFBE2C1D5164698C518792FD8CEAAF2CB2CD03_271(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___DE56C9263420A7B28A6286EB62AFBE2C1D5164698C518792FD8CEAAF2CB2CD03_271 = value; } inline static int32_t get_offset_of_DE65050FB26A30C376E77EC7E5BE136721540CCE3760EAA1E14854746CADF7E8_272() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___DE65050FB26A30C376E77EC7E5BE136721540CCE3760EAA1E14854746CADF7E8_272)); } inline __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C get_DE65050FB26A30C376E77EC7E5BE136721540CCE3760EAA1E14854746CADF7E8_272() const { return ___DE65050FB26A30C376E77EC7E5BE136721540CCE3760EAA1E14854746CADF7E8_272; } inline __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C * get_address_of_DE65050FB26A30C376E77EC7E5BE136721540CCE3760EAA1E14854746CADF7E8_272() { return &___DE65050FB26A30C376E77EC7E5BE136721540CCE3760EAA1E14854746CADF7E8_272; } inline void set_DE65050FB26A30C376E77EC7E5BE136721540CCE3760EAA1E14854746CADF7E8_272(__StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C value) { ___DE65050FB26A30C376E77EC7E5BE136721540CCE3760EAA1E14854746CADF7E8_272 = value; } inline static int32_t get_offset_of_DE9FD94010C5C932FEB066B288CE65EBEB81EDE0E87B31B900BF855BFA2A2B5D_273() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___DE9FD94010C5C932FEB066B288CE65EBEB81EDE0E87B31B900BF855BFA2A2B5D_273)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_DE9FD94010C5C932FEB066B288CE65EBEB81EDE0E87B31B900BF855BFA2A2B5D_273() const { return ___DE9FD94010C5C932FEB066B288CE65EBEB81EDE0E87B31B900BF855BFA2A2B5D_273; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_DE9FD94010C5C932FEB066B288CE65EBEB81EDE0E87B31B900BF855BFA2A2B5D_273() { return &___DE9FD94010C5C932FEB066B288CE65EBEB81EDE0E87B31B900BF855BFA2A2B5D_273; } inline void set_DE9FD94010C5C932FEB066B288CE65EBEB81EDE0E87B31B900BF855BFA2A2B5D_273(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___DE9FD94010C5C932FEB066B288CE65EBEB81EDE0E87B31B900BF855BFA2A2B5D_273 = value; } inline static int32_t get_offset_of_E0750D3E8FE41BBC5838F6D34CF434A4C764652CDC4BDC7DE6CE8393DE3C53A8_274() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___E0750D3E8FE41BBC5838F6D34CF434A4C764652CDC4BDC7DE6CE8393DE3C53A8_274)); } inline __StaticArrayInitTypeSizeU3D4096_t194B799136AD31D58B9179637D7756F00A1E35D5 get_E0750D3E8FE41BBC5838F6D34CF434A4C764652CDC4BDC7DE6CE8393DE3C53A8_274() const { return ___E0750D3E8FE41BBC5838F6D34CF434A4C764652CDC4BDC7DE6CE8393DE3C53A8_274; } inline __StaticArrayInitTypeSizeU3D4096_t194B799136AD31D58B9179637D7756F00A1E35D5 * get_address_of_E0750D3E8FE41BBC5838F6D34CF434A4C764652CDC4BDC7DE6CE8393DE3C53A8_274() { return &___E0750D3E8FE41BBC5838F6D34CF434A4C764652CDC4BDC7DE6CE8393DE3C53A8_274; } inline void set_E0750D3E8FE41BBC5838F6D34CF434A4C764652CDC4BDC7DE6CE8393DE3C53A8_274(__StaticArrayInitTypeSizeU3D4096_t194B799136AD31D58B9179637D7756F00A1E35D5 value) { ___E0750D3E8FE41BBC5838F6D34CF434A4C764652CDC4BDC7DE6CE8393DE3C53A8_274 = value; } inline static int32_t get_offset_of_E09120C0E7B92A532558D22D44D52452DFE460D6205D1009963B69AABD0F8185_275() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___E09120C0E7B92A532558D22D44D52452DFE460D6205D1009963B69AABD0F8185_275)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_E09120C0E7B92A532558D22D44D52452DFE460D6205D1009963B69AABD0F8185_275() const { return ___E09120C0E7B92A532558D22D44D52452DFE460D6205D1009963B69AABD0F8185_275; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_E09120C0E7B92A532558D22D44D52452DFE460D6205D1009963B69AABD0F8185_275() { return &___E09120C0E7B92A532558D22D44D52452DFE460D6205D1009963B69AABD0F8185_275; } inline void set_E09120C0E7B92A532558D22D44D52452DFE460D6205D1009963B69AABD0F8185_275(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___E09120C0E7B92A532558D22D44D52452DFE460D6205D1009963B69AABD0F8185_275 = value; } inline static int32_t get_offset_of_E0E3CF58E8EBD3158219B64F434304727B1C71307D99BC27D059966A854CB749_276() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___E0E3CF58E8EBD3158219B64F434304727B1C71307D99BC27D059966A854CB749_276)); } inline int64_t get_E0E3CF58E8EBD3158219B64F434304727B1C71307D99BC27D059966A854CB749_276() const { return ___E0E3CF58E8EBD3158219B64F434304727B1C71307D99BC27D059966A854CB749_276; } inline int64_t* get_address_of_E0E3CF58E8EBD3158219B64F434304727B1C71307D99BC27D059966A854CB749_276() { return &___E0E3CF58E8EBD3158219B64F434304727B1C71307D99BC27D059966A854CB749_276; } inline void set_E0E3CF58E8EBD3158219B64F434304727B1C71307D99BC27D059966A854CB749_276(int64_t value) { ___E0E3CF58E8EBD3158219B64F434304727B1C71307D99BC27D059966A854CB749_276 = value; } inline static int32_t get_offset_of_E27F6E9719BC23F7138A27009F35243C6F94F6530A37FC26DE498AB64784DDDA_277() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___E27F6E9719BC23F7138A27009F35243C6F94F6530A37FC26DE498AB64784DDDA_277)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_E27F6E9719BC23F7138A27009F35243C6F94F6530A37FC26DE498AB64784DDDA_277() const { return ___E27F6E9719BC23F7138A27009F35243C6F94F6530A37FC26DE498AB64784DDDA_277; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_E27F6E9719BC23F7138A27009F35243C6F94F6530A37FC26DE498AB64784DDDA_277() { return &___E27F6E9719BC23F7138A27009F35243C6F94F6530A37FC26DE498AB64784DDDA_277; } inline void set_E27F6E9719BC23F7138A27009F35243C6F94F6530A37FC26DE498AB64784DDDA_277(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___E27F6E9719BC23F7138A27009F35243C6F94F6530A37FC26DE498AB64784DDDA_277 = value; } inline static int32_t get_offset_of_E2D43ACAA664F37C9C7876F34F62AAC2D9B43D18817E629D34861AAB1B13388A_278() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___E2D43ACAA664F37C9C7876F34F62AAC2D9B43D18817E629D34861AAB1B13388A_278)); } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 get_E2D43ACAA664F37C9C7876F34F62AAC2D9B43D18817E629D34861AAB1B13388A_278() const { return ___E2D43ACAA664F37C9C7876F34F62AAC2D9B43D18817E629D34861AAB1B13388A_278; } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 * get_address_of_E2D43ACAA664F37C9C7876F34F62AAC2D9B43D18817E629D34861AAB1B13388A_278() { return &___E2D43ACAA664F37C9C7876F34F62AAC2D9B43D18817E629D34861AAB1B13388A_278; } inline void set_E2D43ACAA664F37C9C7876F34F62AAC2D9B43D18817E629D34861AAB1B13388A_278(__StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 value) { ___E2D43ACAA664F37C9C7876F34F62AAC2D9B43D18817E629D34861AAB1B13388A_278 = value; } inline static int32_t get_offset_of_E3668879E09A70694ED6FEE919E303D7EA1266D783955D4DEEDC99CCC5AA6A8D_279() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___E3668879E09A70694ED6FEE919E303D7EA1266D783955D4DEEDC99CCC5AA6A8D_279)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_E3668879E09A70694ED6FEE919E303D7EA1266D783955D4DEEDC99CCC5AA6A8D_279() const { return ___E3668879E09A70694ED6FEE919E303D7EA1266D783955D4DEEDC99CCC5AA6A8D_279; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_E3668879E09A70694ED6FEE919E303D7EA1266D783955D4DEEDC99CCC5AA6A8D_279() { return &___E3668879E09A70694ED6FEE919E303D7EA1266D783955D4DEEDC99CCC5AA6A8D_279; } inline void set_E3668879E09A70694ED6FEE919E303D7EA1266D783955D4DEEDC99CCC5AA6A8D_279(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___E3668879E09A70694ED6FEE919E303D7EA1266D783955D4DEEDC99CCC5AA6A8D_279 = value; } inline static int32_t get_offset_of_E3B4E767F318263A8E7A64E1D61F6D3368A3B59AF34CBB94E657E7FCC58F5BA5_280() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___E3B4E767F318263A8E7A64E1D61F6D3368A3B59AF34CBB94E657E7FCC58F5BA5_280)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_E3B4E767F318263A8E7A64E1D61F6D3368A3B59AF34CBB94E657E7FCC58F5BA5_280() const { return ___E3B4E767F318263A8E7A64E1D61F6D3368A3B59AF34CBB94E657E7FCC58F5BA5_280; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_E3B4E767F318263A8E7A64E1D61F6D3368A3B59AF34CBB94E657E7FCC58F5BA5_280() { return &___E3B4E767F318263A8E7A64E1D61F6D3368A3B59AF34CBB94E657E7FCC58F5BA5_280; } inline void set_E3B4E767F318263A8E7A64E1D61F6D3368A3B59AF34CBB94E657E7FCC58F5BA5_280(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___E3B4E767F318263A8E7A64E1D61F6D3368A3B59AF34CBB94E657E7FCC58F5BA5_280 = value; } inline static int32_t get_offset_of_E45C3F86EC68FBD407D74FAEC9A50DFBAA5589A6FB63CCC5F7AA901D2ACA48B6_281() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___E45C3F86EC68FBD407D74FAEC9A50DFBAA5589A6FB63CCC5F7AA901D2ACA48B6_281)); } inline __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E get_E45C3F86EC68FBD407D74FAEC9A50DFBAA5589A6FB63CCC5F7AA901D2ACA48B6_281() const { return ___E45C3F86EC68FBD407D74FAEC9A50DFBAA5589A6FB63CCC5F7AA901D2ACA48B6_281; } inline __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E * get_address_of_E45C3F86EC68FBD407D74FAEC9A50DFBAA5589A6FB63CCC5F7AA901D2ACA48B6_281() { return &___E45C3F86EC68FBD407D74FAEC9A50DFBAA5589A6FB63CCC5F7AA901D2ACA48B6_281; } inline void set_E45C3F86EC68FBD407D74FAEC9A50DFBAA5589A6FB63CCC5F7AA901D2ACA48B6_281(__StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E value) { ___E45C3F86EC68FBD407D74FAEC9A50DFBAA5589A6FB63CCC5F7AA901D2ACA48B6_281 = value; } inline static int32_t get_offset_of_E5325952F9FF2214CCE24E320F2BCD6A71C6EB4127F6069352CE065883AE80D0_282() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___E5325952F9FF2214CCE24E320F2BCD6A71C6EB4127F6069352CE065883AE80D0_282)); } inline __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E get_E5325952F9FF2214CCE24E320F2BCD6A71C6EB4127F6069352CE065883AE80D0_282() const { return ___E5325952F9FF2214CCE24E320F2BCD6A71C6EB4127F6069352CE065883AE80D0_282; } inline __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E * get_address_of_E5325952F9FF2214CCE24E320F2BCD6A71C6EB4127F6069352CE065883AE80D0_282() { return &___E5325952F9FF2214CCE24E320F2BCD6A71C6EB4127F6069352CE065883AE80D0_282; } inline void set_E5325952F9FF2214CCE24E320F2BCD6A71C6EB4127F6069352CE065883AE80D0_282(__StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E value) { ___E5325952F9FF2214CCE24E320F2BCD6A71C6EB4127F6069352CE065883AE80D0_282 = value; } inline static int32_t get_offset_of_E75B7154F674F25D54E89CB7D91F35CC111C8A67EE585938E07D12CB4761637F_283() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___E75B7154F674F25D54E89CB7D91F35CC111C8A67EE585938E07D12CB4761637F_283)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_E75B7154F674F25D54E89CB7D91F35CC111C8A67EE585938E07D12CB4761637F_283() const { return ___E75B7154F674F25D54E89CB7D91F35CC111C8A67EE585938E07D12CB4761637F_283; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_E75B7154F674F25D54E89CB7D91F35CC111C8A67EE585938E07D12CB4761637F_283() { return &___E75B7154F674F25D54E89CB7D91F35CC111C8A67EE585938E07D12CB4761637F_283; } inline void set_E75B7154F674F25D54E89CB7D91F35CC111C8A67EE585938E07D12CB4761637F_283(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___E75B7154F674F25D54E89CB7D91F35CC111C8A67EE585938E07D12CB4761637F_283 = value; } inline static int32_t get_offset_of_E7C6C4296C6C2B00D1062AA69054CAB58A57C3ACCE5ECFA4084E7E94CF805F87_284() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___E7C6C4296C6C2B00D1062AA69054CAB58A57C3ACCE5ECFA4084E7E94CF805F87_284)); } inline __StaticArrayInitTypeSizeU3D28_tB9DE54DF41ABC27805509271A10177513906BF30 get_E7C6C4296C6C2B00D1062AA69054CAB58A57C3ACCE5ECFA4084E7E94CF805F87_284() const { return ___E7C6C4296C6C2B00D1062AA69054CAB58A57C3ACCE5ECFA4084E7E94CF805F87_284; } inline __StaticArrayInitTypeSizeU3D28_tB9DE54DF41ABC27805509271A10177513906BF30 * get_address_of_E7C6C4296C6C2B00D1062AA69054CAB58A57C3ACCE5ECFA4084E7E94CF805F87_284() { return &___E7C6C4296C6C2B00D1062AA69054CAB58A57C3ACCE5ECFA4084E7E94CF805F87_284; } inline void set_E7C6C4296C6C2B00D1062AA69054CAB58A57C3ACCE5ECFA4084E7E94CF805F87_284(__StaticArrayInitTypeSizeU3D28_tB9DE54DF41ABC27805509271A10177513906BF30 value) { ___E7C6C4296C6C2B00D1062AA69054CAB58A57C3ACCE5ECFA4084E7E94CF805F87_284 = value; } inline static int32_t get_offset_of_E87A3B2C4C5D7247B7E149126C3503D3AE2878A02155EA6153E057FE35D9656C_285() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___E87A3B2C4C5D7247B7E149126C3503D3AE2878A02155EA6153E057FE35D9656C_285)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_E87A3B2C4C5D7247B7E149126C3503D3AE2878A02155EA6153E057FE35D9656C_285() const { return ___E87A3B2C4C5D7247B7E149126C3503D3AE2878A02155EA6153E057FE35D9656C_285; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_E87A3B2C4C5D7247B7E149126C3503D3AE2878A02155EA6153E057FE35D9656C_285() { return &___E87A3B2C4C5D7247B7E149126C3503D3AE2878A02155EA6153E057FE35D9656C_285; } inline void set_E87A3B2C4C5D7247B7E149126C3503D3AE2878A02155EA6153E057FE35D9656C_285(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___E87A3B2C4C5D7247B7E149126C3503D3AE2878A02155EA6153E057FE35D9656C_285 = value; } inline static int32_t get_offset_of_E8A5F21A65A81B3BA202AE5DC3791797B0E7271A4923BCD6B124CA062D886C5A_286() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___E8A5F21A65A81B3BA202AE5DC3791797B0E7271A4923BCD6B124CA062D886C5A_286)); } inline __StaticArrayInitTypeSizeU3D5_t4860E7B6EA3ACC966F04D8598CE9F606264B9EE9 get_E8A5F21A65A81B3BA202AE5DC3791797B0E7271A4923BCD6B124CA062D886C5A_286() const { return ___E8A5F21A65A81B3BA202AE5DC3791797B0E7271A4923BCD6B124CA062D886C5A_286; } inline __StaticArrayInitTypeSizeU3D5_t4860E7B6EA3ACC966F04D8598CE9F606264B9EE9 * get_address_of_E8A5F21A65A81B3BA202AE5DC3791797B0E7271A4923BCD6B124CA062D886C5A_286() { return &___E8A5F21A65A81B3BA202AE5DC3791797B0E7271A4923BCD6B124CA062D886C5A_286; } inline void set_E8A5F21A65A81B3BA202AE5DC3791797B0E7271A4923BCD6B124CA062D886C5A_286(__StaticArrayInitTypeSizeU3D5_t4860E7B6EA3ACC966F04D8598CE9F606264B9EE9 value) { ___E8A5F21A65A81B3BA202AE5DC3791797B0E7271A4923BCD6B124CA062D886C5A_286 = value; } inline static int32_t get_offset_of_E8D46701532BBEB9F3FF8A63C0D74D8C417C782DEE2C085A6D940A8B5B38DA18_287() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___E8D46701532BBEB9F3FF8A63C0D74D8C417C782DEE2C085A6D940A8B5B38DA18_287)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_E8D46701532BBEB9F3FF8A63C0D74D8C417C782DEE2C085A6D940A8B5B38DA18_287() const { return ___E8D46701532BBEB9F3FF8A63C0D74D8C417C782DEE2C085A6D940A8B5B38DA18_287; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_E8D46701532BBEB9F3FF8A63C0D74D8C417C782DEE2C085A6D940A8B5B38DA18_287() { return &___E8D46701532BBEB9F3FF8A63C0D74D8C417C782DEE2C085A6D940A8B5B38DA18_287; } inline void set_E8D46701532BBEB9F3FF8A63C0D74D8C417C782DEE2C085A6D940A8B5B38DA18_287(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___E8D46701532BBEB9F3FF8A63C0D74D8C417C782DEE2C085A6D940A8B5B38DA18_287 = value; } inline static int32_t get_offset_of_EA648521F3A332BAB2FB6494AA2262B4C66E9EC54FBC6380D1BEADFBA8F7D9CD_288() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___EA648521F3A332BAB2FB6494AA2262B4C66E9EC54FBC6380D1BEADFBA8F7D9CD_288)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_EA648521F3A332BAB2FB6494AA2262B4C66E9EC54FBC6380D1BEADFBA8F7D9CD_288() const { return ___EA648521F3A332BAB2FB6494AA2262B4C66E9EC54FBC6380D1BEADFBA8F7D9CD_288; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_EA648521F3A332BAB2FB6494AA2262B4C66E9EC54FBC6380D1BEADFBA8F7D9CD_288() { return &___EA648521F3A332BAB2FB6494AA2262B4C66E9EC54FBC6380D1BEADFBA8F7D9CD_288; } inline void set_EA648521F3A332BAB2FB6494AA2262B4C66E9EC54FBC6380D1BEADFBA8F7D9CD_288(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___EA648521F3A332BAB2FB6494AA2262B4C66E9EC54FBC6380D1BEADFBA8F7D9CD_288 = value; } inline static int32_t get_offset_of_EB6B70CC36DAA15B37C45E6D0AE3CB7E8A9B1BA69E6BC44762F886192C725A5A_289() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___EB6B70CC36DAA15B37C45E6D0AE3CB7E8A9B1BA69E6BC44762F886192C725A5A_289)); } inline int32_t get_EB6B70CC36DAA15B37C45E6D0AE3CB7E8A9B1BA69E6BC44762F886192C725A5A_289() const { return ___EB6B70CC36DAA15B37C45E6D0AE3CB7E8A9B1BA69E6BC44762F886192C725A5A_289; } inline int32_t* get_address_of_EB6B70CC36DAA15B37C45E6D0AE3CB7E8A9B1BA69E6BC44762F886192C725A5A_289() { return &___EB6B70CC36DAA15B37C45E6D0AE3CB7E8A9B1BA69E6BC44762F886192C725A5A_289; } inline void set_EB6B70CC36DAA15B37C45E6D0AE3CB7E8A9B1BA69E6BC44762F886192C725A5A_289(int32_t value) { ___EB6B70CC36DAA15B37C45E6D0AE3CB7E8A9B1BA69E6BC44762F886192C725A5A_289 = value; } inline static int32_t get_offset_of_EC103A6146A987638687685583404F2C172DE3138C47B820021673AD5DA00660_290() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___EC103A6146A987638687685583404F2C172DE3138C47B820021673AD5DA00660_290)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_EC103A6146A987638687685583404F2C172DE3138C47B820021673AD5DA00660_290() const { return ___EC103A6146A987638687685583404F2C172DE3138C47B820021673AD5DA00660_290; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_EC103A6146A987638687685583404F2C172DE3138C47B820021673AD5DA00660_290() { return &___EC103A6146A987638687685583404F2C172DE3138C47B820021673AD5DA00660_290; } inline void set_EC103A6146A987638687685583404F2C172DE3138C47B820021673AD5DA00660_290(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___EC103A6146A987638687685583404F2C172DE3138C47B820021673AD5DA00660_290 = value; } inline static int32_t get_offset_of_ECA151F23D399F9FE976255B143D0691D0BE043E033B0E2814C0A547336D6545_291() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___ECA151F23D399F9FE976255B143D0691D0BE043E033B0E2814C0A547336D6545_291)); } inline __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F get_ECA151F23D399F9FE976255B143D0691D0BE043E033B0E2814C0A547336D6545_291() const { return ___ECA151F23D399F9FE976255B143D0691D0BE043E033B0E2814C0A547336D6545_291; } inline __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F * get_address_of_ECA151F23D399F9FE976255B143D0691D0BE043E033B0E2814C0A547336D6545_291() { return &___ECA151F23D399F9FE976255B143D0691D0BE043E033B0E2814C0A547336D6545_291; } inline void set_ECA151F23D399F9FE976255B143D0691D0BE043E033B0E2814C0A547336D6545_291(__StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F value) { ___ECA151F23D399F9FE976255B143D0691D0BE043E033B0E2814C0A547336D6545_291 = value; } inline static int32_t get_offset_of_EE83363C7267157642FFDAC294D9028B3BCD964F62596706A5A94C92C8FCDE6C_292() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___EE83363C7267157642FFDAC294D9028B3BCD964F62596706A5A94C92C8FCDE6C_292)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_EE83363C7267157642FFDAC294D9028B3BCD964F62596706A5A94C92C8FCDE6C_292() const { return ___EE83363C7267157642FFDAC294D9028B3BCD964F62596706A5A94C92C8FCDE6C_292; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_EE83363C7267157642FFDAC294D9028B3BCD964F62596706A5A94C92C8FCDE6C_292() { return &___EE83363C7267157642FFDAC294D9028B3BCD964F62596706A5A94C92C8FCDE6C_292; } inline void set_EE83363C7267157642FFDAC294D9028B3BCD964F62596706A5A94C92C8FCDE6C_292(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___EE83363C7267157642FFDAC294D9028B3BCD964F62596706A5A94C92C8FCDE6C_292 = value; } inline static int32_t get_offset_of_EF39C5A882F9477B2A250BA257247825CEB07FC53C3C984385F2C2E5F8222431_293() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___EF39C5A882F9477B2A250BA257247825CEB07FC53C3C984385F2C2E5F8222431_293)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_EF39C5A882F9477B2A250BA257247825CEB07FC53C3C984385F2C2E5F8222431_293() const { return ___EF39C5A882F9477B2A250BA257247825CEB07FC53C3C984385F2C2E5F8222431_293; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_EF39C5A882F9477B2A250BA257247825CEB07FC53C3C984385F2C2E5F8222431_293() { return &___EF39C5A882F9477B2A250BA257247825CEB07FC53C3C984385F2C2E5F8222431_293; } inline void set_EF39C5A882F9477B2A250BA257247825CEB07FC53C3C984385F2C2E5F8222431_293(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___EF39C5A882F9477B2A250BA257247825CEB07FC53C3C984385F2C2E5F8222431_293 = value; } inline static int32_t get_offset_of_EF7F3D1F9F5FC7985E4AE3D48BF986867BA544C1D2FEA6A7745FEA4A2FCAB381_294() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___EF7F3D1F9F5FC7985E4AE3D48BF986867BA544C1D2FEA6A7745FEA4A2FCAB381_294)); } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 get_EF7F3D1F9F5FC7985E4AE3D48BF986867BA544C1D2FEA6A7745FEA4A2FCAB381_294() const { return ___EF7F3D1F9F5FC7985E4AE3D48BF986867BA544C1D2FEA6A7745FEA4A2FCAB381_294; } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 * get_address_of_EF7F3D1F9F5FC7985E4AE3D48BF986867BA544C1D2FEA6A7745FEA4A2FCAB381_294() { return &___EF7F3D1F9F5FC7985E4AE3D48BF986867BA544C1D2FEA6A7745FEA4A2FCAB381_294; } inline void set_EF7F3D1F9F5FC7985E4AE3D48BF986867BA544C1D2FEA6A7745FEA4A2FCAB381_294(__StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 value) { ___EF7F3D1F9F5FC7985E4AE3D48BF986867BA544C1D2FEA6A7745FEA4A2FCAB381_294 = value; } inline static int32_t get_offset_of_F2CD85BDEF1E84E95EA92E2B686CEEC9FC518118A4342FAB46BECECE253D71F4_295() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___F2CD85BDEF1E84E95EA92E2B686CEEC9FC518118A4342FAB46BECECE253D71F4_295)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_F2CD85BDEF1E84E95EA92E2B686CEEC9FC518118A4342FAB46BECECE253D71F4_295() const { return ___F2CD85BDEF1E84E95EA92E2B686CEEC9FC518118A4342FAB46BECECE253D71F4_295; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_F2CD85BDEF1E84E95EA92E2B686CEEC9FC518118A4342FAB46BECECE253D71F4_295() { return &___F2CD85BDEF1E84E95EA92E2B686CEEC9FC518118A4342FAB46BECECE253D71F4_295; } inline void set_F2CD85BDEF1E84E95EA92E2B686CEEC9FC518118A4342FAB46BECECE253D71F4_295(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___F2CD85BDEF1E84E95EA92E2B686CEEC9FC518118A4342FAB46BECECE253D71F4_295 = value; } inline static int32_t get_offset_of_F30ADE318602BE9DC38E68CA7E1FE366A1F173330197F71AFD9D555F765D47A7_296() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___F30ADE318602BE9DC38E68CA7E1FE366A1F173330197F71AFD9D555F765D47A7_296)); } inline __StaticArrayInitTypeSizeU3D404_t02BA5FC25140F7864B3B45D3DD9D4D8B9E93A333 get_F30ADE318602BE9DC38E68CA7E1FE366A1F173330197F71AFD9D555F765D47A7_296() const { return ___F30ADE318602BE9DC38E68CA7E1FE366A1F173330197F71AFD9D555F765D47A7_296; } inline __StaticArrayInitTypeSizeU3D404_t02BA5FC25140F7864B3B45D3DD9D4D8B9E93A333 * get_address_of_F30ADE318602BE9DC38E68CA7E1FE366A1F173330197F71AFD9D555F765D47A7_296() { return &___F30ADE318602BE9DC38E68CA7E1FE366A1F173330197F71AFD9D555F765D47A7_296; } inline void set_F30ADE318602BE9DC38E68CA7E1FE366A1F173330197F71AFD9D555F765D47A7_296(__StaticArrayInitTypeSizeU3D404_t02BA5FC25140F7864B3B45D3DD9D4D8B9E93A333 value) { ___F30ADE318602BE9DC38E68CA7E1FE366A1F173330197F71AFD9D555F765D47A7_296 = value; } inline static int32_t get_offset_of_F509AE84659919EA56BFF8D829ED41E971314D3D46ED9B0F8F5670D72EB1688B_297() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___F509AE84659919EA56BFF8D829ED41E971314D3D46ED9B0F8F5670D72EB1688B_297)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_F509AE84659919EA56BFF8D829ED41E971314D3D46ED9B0F8F5670D72EB1688B_297() const { return ___F509AE84659919EA56BFF8D829ED41E971314D3D46ED9B0F8F5670D72EB1688B_297; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_F509AE84659919EA56BFF8D829ED41E971314D3D46ED9B0F8F5670D72EB1688B_297() { return &___F509AE84659919EA56BFF8D829ED41E971314D3D46ED9B0F8F5670D72EB1688B_297; } inline void set_F509AE84659919EA56BFF8D829ED41E971314D3D46ED9B0F8F5670D72EB1688B_297(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___F509AE84659919EA56BFF8D829ED41E971314D3D46ED9B0F8F5670D72EB1688B_297 = value; } inline static int32_t get_offset_of_F8D7861760C88CC514F66095AF0AED47ECBA063ADB65F47125ED07BCC2CF9842_298() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___F8D7861760C88CC514F66095AF0AED47ECBA063ADB65F47125ED07BCC2CF9842_298)); } inline __StaticArrayInitTypeSizeU3D116_t9020B92E8453BBAFE2519A469C0893F630E8D2C9 get_F8D7861760C88CC514F66095AF0AED47ECBA063ADB65F47125ED07BCC2CF9842_298() const { return ___F8D7861760C88CC514F66095AF0AED47ECBA063ADB65F47125ED07BCC2CF9842_298; } inline __StaticArrayInitTypeSizeU3D116_t9020B92E8453BBAFE2519A469C0893F630E8D2C9 * get_address_of_F8D7861760C88CC514F66095AF0AED47ECBA063ADB65F47125ED07BCC2CF9842_298() { return &___F8D7861760C88CC514F66095AF0AED47ECBA063ADB65F47125ED07BCC2CF9842_298; } inline void set_F8D7861760C88CC514F66095AF0AED47ECBA063ADB65F47125ED07BCC2CF9842_298(__StaticArrayInitTypeSizeU3D116_t9020B92E8453BBAFE2519A469C0893F630E8D2C9 value) { ___F8D7861760C88CC514F66095AF0AED47ECBA063ADB65F47125ED07BCC2CF9842_298 = value; } inline static int32_t get_offset_of_F8E6964ADFFC257265537256D21E93496A17B9271DC5D64F40869EEEAAFF6FBB_299() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___F8E6964ADFFC257265537256D21E93496A17B9271DC5D64F40869EEEAAFF6FBB_299)); } inline __StaticArrayInitTypeSizeU3D192_tC7D23024B2AD7A4D301599706A49B8C87DAA353D get_F8E6964ADFFC257265537256D21E93496A17B9271DC5D64F40869EEEAAFF6FBB_299() const { return ___F8E6964ADFFC257265537256D21E93496A17B9271DC5D64F40869EEEAAFF6FBB_299; } inline __StaticArrayInitTypeSizeU3D192_tC7D23024B2AD7A4D301599706A49B8C87DAA353D * get_address_of_F8E6964ADFFC257265537256D21E93496A17B9271DC5D64F40869EEEAAFF6FBB_299() { return &___F8E6964ADFFC257265537256D21E93496A17B9271DC5D64F40869EEEAAFF6FBB_299; } inline void set_F8E6964ADFFC257265537256D21E93496A17B9271DC5D64F40869EEEAAFF6FBB_299(__StaticArrayInitTypeSizeU3D192_tC7D23024B2AD7A4D301599706A49B8C87DAA353D value) { ___F8E6964ADFFC257265537256D21E93496A17B9271DC5D64F40869EEEAAFF6FBB_299 = value; } inline static int32_t get_offset_of_F915BC5619C5EB2C4D315B5409BC531F55FA3E3A6167F57B7A4F5F7F9C5F022B_300() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___F915BC5619C5EB2C4D315B5409BC531F55FA3E3A6167F57B7A4F5F7F9C5F022B_300)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_F915BC5619C5EB2C4D315B5409BC531F55FA3E3A6167F57B7A4F5F7F9C5F022B_300() const { return ___F915BC5619C5EB2C4D315B5409BC531F55FA3E3A6167F57B7A4F5F7F9C5F022B_300; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_F915BC5619C5EB2C4D315B5409BC531F55FA3E3A6167F57B7A4F5F7F9C5F022B_300() { return &___F915BC5619C5EB2C4D315B5409BC531F55FA3E3A6167F57B7A4F5F7F9C5F022B_300; } inline void set_F915BC5619C5EB2C4D315B5409BC531F55FA3E3A6167F57B7A4F5F7F9C5F022B_300(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___F915BC5619C5EB2C4D315B5409BC531F55FA3E3A6167F57B7A4F5F7F9C5F022B_300 = value; } inline static int32_t get_offset_of_F93A6E9A709B14FD05706C119D157EEE96F24DE3FDFA34F6D0AFF9537DE8ACC0_301() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___F93A6E9A709B14FD05706C119D157EEE96F24DE3FDFA34F6D0AFF9537DE8ACC0_301)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_F93A6E9A709B14FD05706C119D157EEE96F24DE3FDFA34F6D0AFF9537DE8ACC0_301() const { return ___F93A6E9A709B14FD05706C119D157EEE96F24DE3FDFA34F6D0AFF9537DE8ACC0_301; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_F93A6E9A709B14FD05706C119D157EEE96F24DE3FDFA34F6D0AFF9537DE8ACC0_301() { return &___F93A6E9A709B14FD05706C119D157EEE96F24DE3FDFA34F6D0AFF9537DE8ACC0_301; } inline void set_F93A6E9A709B14FD05706C119D157EEE96F24DE3FDFA34F6D0AFF9537DE8ACC0_301(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___F93A6E9A709B14FD05706C119D157EEE96F24DE3FDFA34F6D0AFF9537DE8ACC0_301 = value; } inline static int32_t get_offset_of_FA1AD270B23BA640E88EE7F51CC9C0C1A6C6BB1F2B9025682A7D30FB3BDA64F0_302() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___FA1AD270B23BA640E88EE7F51CC9C0C1A6C6BB1F2B9025682A7D30FB3BDA64F0_302)); } inline __StaticArrayInitTypeSizeU3D72_t2005207C3F6F7C1227A5084885E3320B238A2489 get_FA1AD270B23BA640E88EE7F51CC9C0C1A6C6BB1F2B9025682A7D30FB3BDA64F0_302() const { return ___FA1AD270B23BA640E88EE7F51CC9C0C1A6C6BB1F2B9025682A7D30FB3BDA64F0_302; } inline __StaticArrayInitTypeSizeU3D72_t2005207C3F6F7C1227A5084885E3320B238A2489 * get_address_of_FA1AD270B23BA640E88EE7F51CC9C0C1A6C6BB1F2B9025682A7D30FB3BDA64F0_302() { return &___FA1AD270B23BA640E88EE7F51CC9C0C1A6C6BB1F2B9025682A7D30FB3BDA64F0_302; } inline void set_FA1AD270B23BA640E88EE7F51CC9C0C1A6C6BB1F2B9025682A7D30FB3BDA64F0_302(__StaticArrayInitTypeSizeU3D72_t2005207C3F6F7C1227A5084885E3320B238A2489 value) { ___FA1AD270B23BA640E88EE7F51CC9C0C1A6C6BB1F2B9025682A7D30FB3BDA64F0_302 = value; } inline static int32_t get_offset_of_FA624E5847BD2E5A00CCA1B3515D315FA5C3450C3E832077935CEBA18E9F5571_303() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___FA624E5847BD2E5A00CCA1B3515D315FA5C3450C3E832077935CEBA18E9F5571_303)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_FA624E5847BD2E5A00CCA1B3515D315FA5C3450C3E832077935CEBA18E9F5571_303() const { return ___FA624E5847BD2E5A00CCA1B3515D315FA5C3450C3E832077935CEBA18E9F5571_303; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_FA624E5847BD2E5A00CCA1B3515D315FA5C3450C3E832077935CEBA18E9F5571_303() { return &___FA624E5847BD2E5A00CCA1B3515D315FA5C3450C3E832077935CEBA18E9F5571_303; } inline void set_FA624E5847BD2E5A00CCA1B3515D315FA5C3450C3E832077935CEBA18E9F5571_303(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___FA624E5847BD2E5A00CCA1B3515D315FA5C3450C3E832077935CEBA18E9F5571_303 = value; } inline static int32_t get_offset_of_FA902FDBDFBCC8763875D512059F3073294FE8C37A17ED9F7AF4D83791E194BF_304() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___FA902FDBDFBCC8763875D512059F3073294FE8C37A17ED9F7AF4D83791E194BF_304)); } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F get_FA902FDBDFBCC8763875D512059F3073294FE8C37A17ED9F7AF4D83791E194BF_304() const { return ___FA902FDBDFBCC8763875D512059F3073294FE8C37A17ED9F7AF4D83791E194BF_304; } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F * get_address_of_FA902FDBDFBCC8763875D512059F3073294FE8C37A17ED9F7AF4D83791E194BF_304() { return &___FA902FDBDFBCC8763875D512059F3073294FE8C37A17ED9F7AF4D83791E194BF_304; } inline void set_FA902FDBDFBCC8763875D512059F3073294FE8C37A17ED9F7AF4D83791E194BF_304(__StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F value) { ___FA902FDBDFBCC8763875D512059F3073294FE8C37A17ED9F7AF4D83791E194BF_304 = value; } inline static int32_t get_offset_of_FA9320F15F87607CD9E1033E6DD907B11EEDF491D7EBBFD29EC8D07E12A822CD_305() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___FA9320F15F87607CD9E1033E6DD907B11EEDF491D7EBBFD29EC8D07E12A822CD_305)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_FA9320F15F87607CD9E1033E6DD907B11EEDF491D7EBBFD29EC8D07E12A822CD_305() const { return ___FA9320F15F87607CD9E1033E6DD907B11EEDF491D7EBBFD29EC8D07E12A822CD_305; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_FA9320F15F87607CD9E1033E6DD907B11EEDF491D7EBBFD29EC8D07E12A822CD_305() { return &___FA9320F15F87607CD9E1033E6DD907B11EEDF491D7EBBFD29EC8D07E12A822CD_305; } inline void set_FA9320F15F87607CD9E1033E6DD907B11EEDF491D7EBBFD29EC8D07E12A822CD_305(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___FA9320F15F87607CD9E1033E6DD907B11EEDF491D7EBBFD29EC8D07E12A822CD_305 = value; } inline static int32_t get_offset_of_FAA254BE6E65E3D60D934C74D9863DEDABBBB96FD00229D46B6AE6D108392089_306() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___FAA254BE6E65E3D60D934C74D9863DEDABBBB96FD00229D46B6AE6D108392089_306)); } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 get_FAA254BE6E65E3D60D934C74D9863DEDABBBB96FD00229D46B6AE6D108392089_306() const { return ___FAA254BE6E65E3D60D934C74D9863DEDABBBB96FD00229D46B6AE6D108392089_306; } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 * get_address_of_FAA254BE6E65E3D60D934C74D9863DEDABBBB96FD00229D46B6AE6D108392089_306() { return &___FAA254BE6E65E3D60D934C74D9863DEDABBBB96FD00229D46B6AE6D108392089_306; } inline void set_FAA254BE6E65E3D60D934C74D9863DEDABBBB96FD00229D46B6AE6D108392089_306(__StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 value) { ___FAA254BE6E65E3D60D934C74D9863DEDABBBB96FD00229D46B6AE6D108392089_306 = value; } inline static int32_t get_offset_of_FB7A6532989D730F69E4757D690D25A43E71041FCFF7355747E274F956BB03E9_307() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___FB7A6532989D730F69E4757D690D25A43E71041FCFF7355747E274F956BB03E9_307)); } inline __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E get_FB7A6532989D730F69E4757D690D25A43E71041FCFF7355747E274F956BB03E9_307() const { return ___FB7A6532989D730F69E4757D690D25A43E71041FCFF7355747E274F956BB03E9_307; } inline __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E * get_address_of_FB7A6532989D730F69E4757D690D25A43E71041FCFF7355747E274F956BB03E9_307() { return &___FB7A6532989D730F69E4757D690D25A43E71041FCFF7355747E274F956BB03E9_307; } inline void set_FB7A6532989D730F69E4757D690D25A43E71041FCFF7355747E274F956BB03E9_307(__StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E value) { ___FB7A6532989D730F69E4757D690D25A43E71041FCFF7355747E274F956BB03E9_307 = value; } inline static int32_t get_offset_of_FC03ECB1D62767A5B31230F548FA4D4C02F01E3DA8CA1FC66C7C332EA16BF206_308() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___FC03ECB1D62767A5B31230F548FA4D4C02F01E3DA8CA1FC66C7C332EA16BF206_308)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_FC03ECB1D62767A5B31230F548FA4D4C02F01E3DA8CA1FC66C7C332EA16BF206_308() const { return ___FC03ECB1D62767A5B31230F548FA4D4C02F01E3DA8CA1FC66C7C332EA16BF206_308; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_FC03ECB1D62767A5B31230F548FA4D4C02F01E3DA8CA1FC66C7C332EA16BF206_308() { return &___FC03ECB1D62767A5B31230F548FA4D4C02F01E3DA8CA1FC66C7C332EA16BF206_308; } inline void set_FC03ECB1D62767A5B31230F548FA4D4C02F01E3DA8CA1FC66C7C332EA16BF206_308(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___FC03ECB1D62767A5B31230F548FA4D4C02F01E3DA8CA1FC66C7C332EA16BF206_308 = value; } inline static int32_t get_offset_of_FC216F5C5AE2947D800794ECD5F752EE8381073C2E5D0D095FDA040F541702F3_309() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___FC216F5C5AE2947D800794ECD5F752EE8381073C2E5D0D095FDA040F541702F3_309)); } inline __StaticArrayInitTypeSizeU3D120_tD78937C26C99B5FDF514E7F2EB4F8F2367B4C05A get_FC216F5C5AE2947D800794ECD5F752EE8381073C2E5D0D095FDA040F541702F3_309() const { return ___FC216F5C5AE2947D800794ECD5F752EE8381073C2E5D0D095FDA040F541702F3_309; } inline __StaticArrayInitTypeSizeU3D120_tD78937C26C99B5FDF514E7F2EB4F8F2367B4C05A * get_address_of_FC216F5C5AE2947D800794ECD5F752EE8381073C2E5D0D095FDA040F541702F3_309() { return &___FC216F5C5AE2947D800794ECD5F752EE8381073C2E5D0D095FDA040F541702F3_309; } inline void set_FC216F5C5AE2947D800794ECD5F752EE8381073C2E5D0D095FDA040F541702F3_309(__StaticArrayInitTypeSizeU3D120_tD78937C26C99B5FDF514E7F2EB4F8F2367B4C05A value) { ___FC216F5C5AE2947D800794ECD5F752EE8381073C2E5D0D095FDA040F541702F3_309 = value; } inline static int32_t get_offset_of_FD85B0A9251A04B1D271AF14FD041B4606FA95DDB116F92CB14470653A62AD19_310() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___FD85B0A9251A04B1D271AF14FD041B4606FA95DDB116F92CB14470653A62AD19_310)); } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 get_FD85B0A9251A04B1D271AF14FD041B4606FA95DDB116F92CB14470653A62AD19_310() const { return ___FD85B0A9251A04B1D271AF14FD041B4606FA95DDB116F92CB14470653A62AD19_310; } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 * get_address_of_FD85B0A9251A04B1D271AF14FD041B4606FA95DDB116F92CB14470653A62AD19_310() { return &___FD85B0A9251A04B1D271AF14FD041B4606FA95DDB116F92CB14470653A62AD19_310; } inline void set_FD85B0A9251A04B1D271AF14FD041B4606FA95DDB116F92CB14470653A62AD19_310(__StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 value) { ___FD85B0A9251A04B1D271AF14FD041B4606FA95DDB116F92CB14470653A62AD19_310 = value; } inline static int32_t get_offset_of_FF1F6EE5D67458CFAC950F62E93042E21FCB867E2234DCC8721801231064AD40_311() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___FF1F6EE5D67458CFAC950F62E93042E21FCB867E2234DCC8721801231064AD40_311)); } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F get_FF1F6EE5D67458CFAC950F62E93042E21FCB867E2234DCC8721801231064AD40_311() const { return ___FF1F6EE5D67458CFAC950F62E93042E21FCB867E2234DCC8721801231064AD40_311; } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F * get_address_of_FF1F6EE5D67458CFAC950F62E93042E21FCB867E2234DCC8721801231064AD40_311() { return &___FF1F6EE5D67458CFAC950F62E93042E21FCB867E2234DCC8721801231064AD40_311; } inline void set_FF1F6EE5D67458CFAC950F62E93042E21FCB867E2234DCC8721801231064AD40_311(__StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F value) { ___FF1F6EE5D67458CFAC950F62E93042E21FCB867E2234DCC8721801231064AD40_311 = value; } inline static int32_t get_offset_of_FF4D5896EDB9E12991ECB7FA7807EEB0F7ACD30F57ECB63DD9943F5245752A0F_312() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___FF4D5896EDB9E12991ECB7FA7807EEB0F7ACD30F57ECB63DD9943F5245752A0F_312)); } inline __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C get_FF4D5896EDB9E12991ECB7FA7807EEB0F7ACD30F57ECB63DD9943F5245752A0F_312() const { return ___FF4D5896EDB9E12991ECB7FA7807EEB0F7ACD30F57ECB63DD9943F5245752A0F_312; } inline __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C * get_address_of_FF4D5896EDB9E12991ECB7FA7807EEB0F7ACD30F57ECB63DD9943F5245752A0F_312() { return &___FF4D5896EDB9E12991ECB7FA7807EEB0F7ACD30F57ECB63DD9943F5245752A0F_312; } inline void set_FF4D5896EDB9E12991ECB7FA7807EEB0F7ACD30F57ECB63DD9943F5245752A0F_312(__StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C value) { ___FF4D5896EDB9E12991ECB7FA7807EEB0F7ACD30F57ECB63DD9943F5245752A0F_312 = value; } inline static int32_t get_offset_of_FFC55B79B9BE7817954A4672A75C8603D1D1FE85A61786D63BD3B0AA239FFA58_313() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___FFC55B79B9BE7817954A4672A75C8603D1D1FE85A61786D63BD3B0AA239FFA58_313)); } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 get_FFC55B79B9BE7817954A4672A75C8603D1D1FE85A61786D63BD3B0AA239FFA58_313() const { return ___FFC55B79B9BE7817954A4672A75C8603D1D1FE85A61786D63BD3B0AA239FFA58_313; } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 * get_address_of_FFC55B79B9BE7817954A4672A75C8603D1D1FE85A61786D63BD3B0AA239FFA58_313() { return &___FFC55B79B9BE7817954A4672A75C8603D1D1FE85A61786D63BD3B0AA239FFA58_313; } inline void set_FFC55B79B9BE7817954A4672A75C8603D1D1FE85A61786D63BD3B0AA239FFA58_313(__StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 value) { ___FFC55B79B9BE7817954A4672A75C8603D1D1FE85A61786D63BD3B0AA239FFA58_313 = value; } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Null struct Asn1Null_t5D40C5C3674510061A0C219CEB9849A5EF6492BC : public Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC { public: public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString struct Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 : public Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC { public: // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString::str ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___str_2; public: inline static int32_t get_offset_of_str_2() { return static_cast(offsetof(Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8, ___str_2)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_str_2() const { return ___str_2; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_str_2() { return &___str_2; } inline void set_str_2(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___str_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___str_2), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence struct Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 : public Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC { public: // System.Collections.IList BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::seq RuntimeObject* ___seq_2; public: inline static int32_t get_offset_of_seq_2() { return static_cast(offsetof(Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8, ___seq_2)); } inline RuntimeObject* get_seq_2() const { return ___seq_2; } inline RuntimeObject** get_address_of_seq_2() { return &___seq_2; } inline void set_seq_2(RuntimeObject* value) { ___seq_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___seq_2), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1TaggedObject struct Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0 : public Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC { public: // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1TaggedObject::tagNo int32_t ___tagNo_2; // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1TaggedObject::explicitly bool ___explicitly_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1TaggedObject::obj Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * ___obj_4; public: inline static int32_t get_offset_of_tagNo_2() { return static_cast(offsetof(Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0, ___tagNo_2)); } inline int32_t get_tagNo_2() const { return ___tagNo_2; } inline int32_t* get_address_of_tagNo_2() { return &___tagNo_2; } inline void set_tagNo_2(int32_t value) { ___tagNo_2 = value; } inline static int32_t get_offset_of_explicitly_3() { return static_cast(offsetof(Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0, ___explicitly_3)); } inline bool get_explicitly_3() const { return ___explicitly_3; } inline bool* get_address_of_explicitly_3() { return &___explicitly_3; } inline void set_explicitly_3(bool value) { ___explicitly_3 = value; } inline static int32_t get_offset_of_obj_4() { return static_cast(offsetof(Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0, ___obj_4)); } inline Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * get_obj_4() const { return ___obj_4; } inline Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC ** get_address_of_obj_4() { return &___obj_4; } inline void set_obj_4(Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * value) { ___obj_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___obj_4), (void*)value); } }; // System.Reflection.BindingFlags struct BindingFlags_tAAAB07D9AC588F0D55D844E51D7035E96DF94733 { public: // System.Int32 System.Reflection.BindingFlags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(BindingFlags_tAAAB07D9AC588F0D55D844E51D7035E96DF94733, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // LitJson.Condition struct Condition_t090EBF4FA45CA97E5D88883C2990FAB7F8457382 { public: // System.Int32 LitJson.Condition::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Condition_t090EBF4FA45CA97E5D88883C2990FAB7F8457382, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // BestHTTP.SignalRCore.ConnectionStates struct ConnectionStates_t0711682D43FE20F70D83D2576B2288BBEA6B1AF0 { public: // System.Int32 BestHTTP.SignalRCore.ConnectionStates::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(ConnectionStates_t0711682D43FE20F70D83D2576B2288BBEA6B1AF0, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Globalization.DateTimeFormatFlags struct DateTimeFormatFlags_tDB584B32BB07C708469EE8DEF8A903A105B4B4B7 { public: // System.Int32 System.Globalization.DateTimeFormatFlags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(DateTimeFormatFlags_tDB584B32BB07C708469EE8DEF8A903A105B4B4B7, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Globalization.DateTimeStyles struct DateTimeStyles_t2E18E2817B83F518AD684A16EB44A96EE6E765D4 { public: // System.Int32 System.Globalization.DateTimeStyles::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(DateTimeStyles_t2E18E2817B83F518AD684A16EB44A96EE6E765D4, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Delegate struct Delegate_t : public RuntimeObject { public: // System.IntPtr System.Delegate::method_ptr Il2CppMethodPointer ___method_ptr_0; // System.IntPtr System.Delegate::invoke_impl intptr_t ___invoke_impl_1; // System.Object System.Delegate::m_target RuntimeObject * ___m_target_2; // System.IntPtr System.Delegate::method intptr_t ___method_3; // System.IntPtr System.Delegate::delegate_trampoline intptr_t ___delegate_trampoline_4; // System.IntPtr System.Delegate::extra_arg intptr_t ___extra_arg_5; // System.IntPtr System.Delegate::method_code intptr_t ___method_code_6; // System.Reflection.MethodInfo System.Delegate::method_info MethodInfo_t * ___method_info_7; // System.Reflection.MethodInfo System.Delegate::original_method_info MethodInfo_t * ___original_method_info_8; // System.DelegateData System.Delegate::data DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___data_9; // System.Boolean System.Delegate::method_is_virtual bool ___method_is_virtual_10; public: inline static int32_t get_offset_of_method_ptr_0() { return static_cast(offsetof(Delegate_t, ___method_ptr_0)); } inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; } inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; } inline void set_method_ptr_0(Il2CppMethodPointer value) { ___method_ptr_0 = value; } inline static int32_t get_offset_of_invoke_impl_1() { return static_cast(offsetof(Delegate_t, ___invoke_impl_1)); } inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; } inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; } inline void set_invoke_impl_1(intptr_t value) { ___invoke_impl_1 = value; } inline static int32_t get_offset_of_m_target_2() { return static_cast(offsetof(Delegate_t, ___m_target_2)); } inline RuntimeObject * get_m_target_2() const { return ___m_target_2; } inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; } inline void set_m_target_2(RuntimeObject * value) { ___m_target_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_target_2), (void*)value); } inline static int32_t get_offset_of_method_3() { return static_cast(offsetof(Delegate_t, ___method_3)); } inline intptr_t get_method_3() const { return ___method_3; } inline intptr_t* get_address_of_method_3() { return &___method_3; } inline void set_method_3(intptr_t value) { ___method_3 = value; } inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast(offsetof(Delegate_t, ___delegate_trampoline_4)); } inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; } inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; } inline void set_delegate_trampoline_4(intptr_t value) { ___delegate_trampoline_4 = value; } inline static int32_t get_offset_of_extra_arg_5() { return static_cast(offsetof(Delegate_t, ___extra_arg_5)); } inline intptr_t get_extra_arg_5() const { return ___extra_arg_5; } inline intptr_t* get_address_of_extra_arg_5() { return &___extra_arg_5; } inline void set_extra_arg_5(intptr_t value) { ___extra_arg_5 = value; } inline static int32_t get_offset_of_method_code_6() { return static_cast(offsetof(Delegate_t, ___method_code_6)); } inline intptr_t get_method_code_6() const { return ___method_code_6; } inline intptr_t* get_address_of_method_code_6() { return &___method_code_6; } inline void set_method_code_6(intptr_t value) { ___method_code_6 = value; } inline static int32_t get_offset_of_method_info_7() { return static_cast(offsetof(Delegate_t, ___method_info_7)); } inline MethodInfo_t * get_method_info_7() const { return ___method_info_7; } inline MethodInfo_t ** get_address_of_method_info_7() { return &___method_info_7; } inline void set_method_info_7(MethodInfo_t * value) { ___method_info_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___method_info_7), (void*)value); } inline static int32_t get_offset_of_original_method_info_8() { return static_cast(offsetof(Delegate_t, ___original_method_info_8)); } inline MethodInfo_t * get_original_method_info_8() const { return ___original_method_info_8; } inline MethodInfo_t ** get_address_of_original_method_info_8() { return &___original_method_info_8; } inline void set_original_method_info_8(MethodInfo_t * value) { ___original_method_info_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___original_method_info_8), (void*)value); } inline static int32_t get_offset_of_data_9() { return static_cast(offsetof(Delegate_t, ___data_9)); } inline DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * get_data_9() const { return ___data_9; } inline DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 ** get_address_of_data_9() { return &___data_9; } inline void set_data_9(DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * value) { ___data_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___data_9), (void*)value); } inline static int32_t get_offset_of_method_is_virtual_10() { return static_cast(offsetof(Delegate_t, ___method_is_virtual_10)); } inline bool get_method_is_virtual_10() const { return ___method_is_virtual_10; } inline bool* get_address_of_method_is_virtual_10() { return &___method_is_virtual_10; } inline void set_method_is_virtual_10(bool value) { ___method_is_virtual_10 = value; } }; // Native definition for P/Invoke marshalling of System.Delegate struct Delegate_t_marshaled_pinvoke { intptr_t ___method_ptr_0; intptr_t ___invoke_impl_1; Il2CppIUnknown* ___m_target_2; intptr_t ___method_3; intptr_t ___delegate_trampoline_4; intptr_t ___extra_arg_5; intptr_t ___method_code_6; MethodInfo_t * ___method_info_7; MethodInfo_t * ___original_method_info_8; DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___data_9; int32_t ___method_is_virtual_10; }; // Native definition for COM marshalling of System.Delegate struct Delegate_t_marshaled_com { intptr_t ___method_ptr_0; intptr_t ___invoke_impl_1; Il2CppIUnknown* ___m_target_2; intptr_t ___method_3; intptr_t ___delegate_trampoline_4; intptr_t ___extra_arg_5; intptr_t ___method_code_6; MethodInfo_t * ___method_info_7; MethodInfo_t * ___original_method_info_8; DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___data_9; int32_t ___method_is_virtual_10; }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerGeneralizedTime struct DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 : public Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC { public: // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerGeneralizedTime::time String_t* ___time_2; public: inline static int32_t get_offset_of_time_2() { return static_cast(offsetof(DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0, ___time_2)); } inline String_t* get_time_2() const { return ___time_2; } inline String_t** get_address_of_time_2() { return &___time_2; } inline void set_time_2(String_t* value) { ___time_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___time_2), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger struct DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 : public Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC { public: // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger::bytes ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___bytes_3; public: inline static int32_t get_offset_of_bytes_3() { return static_cast(offsetof(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157, ___bytes_3)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_bytes_3() const { return ___bytes_3; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_bytes_3() { return &___bytes_3; } inline void set_bytes_3(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___bytes_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___bytes_3), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier struct DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 : public Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC { public: // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::identifier String_t* ___identifier_2; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::body ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___body_3; public: inline static int32_t get_offset_of_identifier_2() { return static_cast(offsetof(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8, ___identifier_2)); } inline String_t* get_identifier_2() const { return ___identifier_2; } inline String_t** get_address_of_identifier_2() { return &___identifier_2; } inline void set_identifier_2(String_t* value) { ___identifier_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___identifier_2), (void*)value); } inline static int32_t get_offset_of_body_3() { return static_cast(offsetof(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8, ___body_3)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_body_3() const { return ___body_3; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_body_3() { return &___body_3; } inline void set_body_3(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___body_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___body_3), (void*)value); } }; struct DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::cache DerObjectIdentifierU5BU5D_t801513A53C26B675A2EC1C7456321775EDCC225F* ___cache_5; public: inline static int32_t get_offset_of_cache_5() { return static_cast(offsetof(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_StaticFields, ___cache_5)); } inline DerObjectIdentifierU5BU5D_t801513A53C26B675A2EC1C7456321775EDCC225F* get_cache_5() const { return ___cache_5; } inline DerObjectIdentifierU5BU5D_t801513A53C26B675A2EC1C7456321775EDCC225F** get_address_of_cache_5() { return &___cache_5; } inline void set_cache_5(DerObjectIdentifierU5BU5D_t801513A53C26B675A2EC1C7456321775EDCC225F* value) { ___cache_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___cache_5), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerStringBase struct DerStringBase_t6A042D217F7D84704C0AFFD73317FB834F9A2FB5 : public Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC { public: public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters struct ECPrivateKeyParameters_t4F22D9A57AC7E670B61E096835534ECE1D259029 : public ECKeyParameters_tC564F57CB492506FC8DACDDD142BFEF68E9A3141 { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters::d BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___d_5; public: inline static int32_t get_offset_of_d_5() { return static_cast(offsetof(ECPrivateKeyParameters_t4F22D9A57AC7E670B61E096835534ECE1D259029, ___d_5)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_d_5() const { return ___d_5; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_d_5() { return &___d_5; } inline void set_d_5(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___d_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___d_5), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters struct ECPublicKeyParameters_tB75EB7F71DB6B346048D07C4EC9D4968988F92FB : public ECKeyParameters_tC564F57CB492506FC8DACDDD142BFEF68E9A3141 { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters::q ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * ___q_5; public: inline static int32_t get_offset_of_q_5() { return static_cast(offsetof(ECPublicKeyParameters_tB75EB7F71DB6B346048D07C4EC9D4968988F92FB, ___q_5)); } inline ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * get_q_5() const { return ___q_5; } inline ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA ** get_address_of_q_5() { return &___q_5; } inline void set_q_5(ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * value) { ___q_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___q_5), (void*)value); } }; // System.Exception struct Exception_t : public RuntimeObject { public: // System.String System.Exception::_className String_t* ____className_1; // System.String System.Exception::_message String_t* ____message_2; // System.Collections.IDictionary System.Exception::_data RuntimeObject* ____data_3; // System.Exception System.Exception::_innerException Exception_t * ____innerException_4; // System.String System.Exception::_helpURL String_t* ____helpURL_5; // System.Object System.Exception::_stackTrace RuntimeObject * ____stackTrace_6; // System.String System.Exception::_stackTraceString String_t* ____stackTraceString_7; // System.String System.Exception::_remoteStackTraceString String_t* ____remoteStackTraceString_8; // System.Int32 System.Exception::_remoteStackIndex int32_t ____remoteStackIndex_9; // System.Object System.Exception::_dynamicMethods RuntimeObject * ____dynamicMethods_10; // System.Int32 System.Exception::_HResult int32_t ____HResult_11; // System.String System.Exception::_source String_t* ____source_12; // System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13; // System.Diagnostics.StackTrace[] System.Exception::captured_traces StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14; // System.IntPtr[] System.Exception::native_trace_ips IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* ___native_trace_ips_15; public: inline static int32_t get_offset_of__className_1() { return static_cast(offsetof(Exception_t, ____className_1)); } inline String_t* get__className_1() const { return ____className_1; } inline String_t** get_address_of__className_1() { return &____className_1; } inline void set__className_1(String_t* value) { ____className_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____className_1), (void*)value); } inline static int32_t get_offset_of__message_2() { return static_cast(offsetof(Exception_t, ____message_2)); } inline String_t* get__message_2() const { return ____message_2; } inline String_t** get_address_of__message_2() { return &____message_2; } inline void set__message_2(String_t* value) { ____message_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____message_2), (void*)value); } inline static int32_t get_offset_of__data_3() { return static_cast(offsetof(Exception_t, ____data_3)); } inline RuntimeObject* get__data_3() const { return ____data_3; } inline RuntimeObject** get_address_of__data_3() { return &____data_3; } inline void set__data_3(RuntimeObject* value) { ____data_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____data_3), (void*)value); } inline static int32_t get_offset_of__innerException_4() { return static_cast(offsetof(Exception_t, ____innerException_4)); } inline Exception_t * get__innerException_4() const { return ____innerException_4; } inline Exception_t ** get_address_of__innerException_4() { return &____innerException_4; } inline void set__innerException_4(Exception_t * value) { ____innerException_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____innerException_4), (void*)value); } inline static int32_t get_offset_of__helpURL_5() { return static_cast(offsetof(Exception_t, ____helpURL_5)); } inline String_t* get__helpURL_5() const { return ____helpURL_5; } inline String_t** get_address_of__helpURL_5() { return &____helpURL_5; } inline void set__helpURL_5(String_t* value) { ____helpURL_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____helpURL_5), (void*)value); } inline static int32_t get_offset_of__stackTrace_6() { return static_cast(offsetof(Exception_t, ____stackTrace_6)); } inline RuntimeObject * get__stackTrace_6() const { return ____stackTrace_6; } inline RuntimeObject ** get_address_of__stackTrace_6() { return &____stackTrace_6; } inline void set__stackTrace_6(RuntimeObject * value) { ____stackTrace_6 = value; Il2CppCodeGenWriteBarrier((void**)(&____stackTrace_6), (void*)value); } inline static int32_t get_offset_of__stackTraceString_7() { return static_cast(offsetof(Exception_t, ____stackTraceString_7)); } inline String_t* get__stackTraceString_7() const { return ____stackTraceString_7; } inline String_t** get_address_of__stackTraceString_7() { return &____stackTraceString_7; } inline void set__stackTraceString_7(String_t* value) { ____stackTraceString_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____stackTraceString_7), (void*)value); } inline static int32_t get_offset_of__remoteStackTraceString_8() { return static_cast(offsetof(Exception_t, ____remoteStackTraceString_8)); } inline String_t* get__remoteStackTraceString_8() const { return ____remoteStackTraceString_8; } inline String_t** get_address_of__remoteStackTraceString_8() { return &____remoteStackTraceString_8; } inline void set__remoteStackTraceString_8(String_t* value) { ____remoteStackTraceString_8 = value; Il2CppCodeGenWriteBarrier((void**)(&____remoteStackTraceString_8), (void*)value); } inline static int32_t get_offset_of__remoteStackIndex_9() { return static_cast(offsetof(Exception_t, ____remoteStackIndex_9)); } inline int32_t get__remoteStackIndex_9() const { return ____remoteStackIndex_9; } inline int32_t* get_address_of__remoteStackIndex_9() { return &____remoteStackIndex_9; } inline void set__remoteStackIndex_9(int32_t value) { ____remoteStackIndex_9 = value; } inline static int32_t get_offset_of__dynamicMethods_10() { return static_cast(offsetof(Exception_t, ____dynamicMethods_10)); } inline RuntimeObject * get__dynamicMethods_10() const { return ____dynamicMethods_10; } inline RuntimeObject ** get_address_of__dynamicMethods_10() { return &____dynamicMethods_10; } inline void set__dynamicMethods_10(RuntimeObject * value) { ____dynamicMethods_10 = value; Il2CppCodeGenWriteBarrier((void**)(&____dynamicMethods_10), (void*)value); } inline static int32_t get_offset_of__HResult_11() { return static_cast(offsetof(Exception_t, ____HResult_11)); } inline int32_t get__HResult_11() const { return ____HResult_11; } inline int32_t* get_address_of__HResult_11() { return &____HResult_11; } inline void set__HResult_11(int32_t value) { ____HResult_11 = value; } inline static int32_t get_offset_of__source_12() { return static_cast(offsetof(Exception_t, ____source_12)); } inline String_t* get__source_12() const { return ____source_12; } inline String_t** get_address_of__source_12() { return &____source_12; } inline void set__source_12(String_t* value) { ____source_12 = value; Il2CppCodeGenWriteBarrier((void**)(&____source_12), (void*)value); } inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast(offsetof(Exception_t, ____safeSerializationManager_13)); } inline SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; } inline SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; } inline void set__safeSerializationManager_13(SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * value) { ____safeSerializationManager_13 = value; Il2CppCodeGenWriteBarrier((void**)(&____safeSerializationManager_13), (void*)value); } inline static int32_t get_offset_of_captured_traces_14() { return static_cast(offsetof(Exception_t, ___captured_traces_14)); } inline StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* get_captured_traces_14() const { return ___captured_traces_14; } inline StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971** get_address_of_captured_traces_14() { return &___captured_traces_14; } inline void set_captured_traces_14(StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* value) { ___captured_traces_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___captured_traces_14), (void*)value); } inline static int32_t get_offset_of_native_trace_ips_15() { return static_cast(offsetof(Exception_t, ___native_trace_ips_15)); } inline IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* get_native_trace_ips_15() const { return ___native_trace_ips_15; } inline IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; } inline void set_native_trace_ips_15(IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* value) { ___native_trace_ips_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___native_trace_ips_15), (void*)value); } }; struct Exception_t_StaticFields { public: // System.Object System.Exception::s_EDILock RuntimeObject * ___s_EDILock_0; public: inline static int32_t get_offset_of_s_EDILock_0() { return static_cast(offsetof(Exception_t_StaticFields, ___s_EDILock_0)); } inline RuntimeObject * get_s_EDILock_0() const { return ___s_EDILock_0; } inline RuntimeObject ** get_address_of_s_EDILock_0() { return &___s_EDILock_0; } inline void set_s_EDILock_0(RuntimeObject * value) { ___s_EDILock_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_EDILock_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Exception struct Exception_t_marshaled_pinvoke { char* ____className_1; char* ____message_2; RuntimeObject* ____data_3; Exception_t_marshaled_pinvoke* ____innerException_4; char* ____helpURL_5; Il2CppIUnknown* ____stackTrace_6; char* ____stackTraceString_7; char* ____remoteStackTraceString_8; int32_t ____remoteStackIndex_9; Il2CppIUnknown* ____dynamicMethods_10; int32_t ____HResult_11; char* ____source_12; SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13; StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14; Il2CppSafeArray/*NONE*/* ___native_trace_ips_15; }; // Native definition for COM marshalling of System.Exception struct Exception_t_marshaled_com { Il2CppChar* ____className_1; Il2CppChar* ____message_2; RuntimeObject* ____data_3; Exception_t_marshaled_com* ____innerException_4; Il2CppChar* ____helpURL_5; Il2CppIUnknown* ____stackTrace_6; Il2CppChar* ____stackTraceString_7; Il2CppChar* ____remoteStackTraceString_8; int32_t ____remoteStackIndex_9; Il2CppIUnknown* ____dynamicMethods_10; int32_t ____HResult_11; Il2CppChar* ____source_12; SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13; StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14; Il2CppSafeArray/*NONE*/* ___native_trace_ips_15; }; // BestHTTP.Examples.GUIHelper struct GUIHelper_t2BF60F03A2A8EEA467A93FE5910AE1C5F1217F7F : public RuntimeObject { public: public: }; struct GUIHelper_t2BF60F03A2A8EEA467A93FE5910AE1C5F1217F7F_StaticFields { public: // System.String BestHTTP.Examples.GUIHelper::BaseURL String_t* ___BaseURL_0; // UnityEngine.GUIStyle BestHTTP.Examples.GUIHelper::centerAlignedLabel GUIStyle_t29C59470ACD0A35C81EB0615653FD38C455A4726 * ___centerAlignedLabel_1; // UnityEngine.GUIStyle BestHTTP.Examples.GUIHelper::rightAlignedLabel GUIStyle_t29C59470ACD0A35C81EB0615653FD38C455A4726 * ___rightAlignedLabel_2; // UnityEngine.Rect BestHTTP.Examples.GUIHelper::ClientArea Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 ___ClientArea_3; public: inline static int32_t get_offset_of_BaseURL_0() { return static_cast(offsetof(GUIHelper_t2BF60F03A2A8EEA467A93FE5910AE1C5F1217F7F_StaticFields, ___BaseURL_0)); } inline String_t* get_BaseURL_0() const { return ___BaseURL_0; } inline String_t** get_address_of_BaseURL_0() { return &___BaseURL_0; } inline void set_BaseURL_0(String_t* value) { ___BaseURL_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___BaseURL_0), (void*)value); } inline static int32_t get_offset_of_centerAlignedLabel_1() { return static_cast(offsetof(GUIHelper_t2BF60F03A2A8EEA467A93FE5910AE1C5F1217F7F_StaticFields, ___centerAlignedLabel_1)); } inline GUIStyle_t29C59470ACD0A35C81EB0615653FD38C455A4726 * get_centerAlignedLabel_1() const { return ___centerAlignedLabel_1; } inline GUIStyle_t29C59470ACD0A35C81EB0615653FD38C455A4726 ** get_address_of_centerAlignedLabel_1() { return &___centerAlignedLabel_1; } inline void set_centerAlignedLabel_1(GUIStyle_t29C59470ACD0A35C81EB0615653FD38C455A4726 * value) { ___centerAlignedLabel_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___centerAlignedLabel_1), (void*)value); } inline static int32_t get_offset_of_rightAlignedLabel_2() { return static_cast(offsetof(GUIHelper_t2BF60F03A2A8EEA467A93FE5910AE1C5F1217F7F_StaticFields, ___rightAlignedLabel_2)); } inline GUIStyle_t29C59470ACD0A35C81EB0615653FD38C455A4726 * get_rightAlignedLabel_2() const { return ___rightAlignedLabel_2; } inline GUIStyle_t29C59470ACD0A35C81EB0615653FD38C455A4726 ** get_address_of_rightAlignedLabel_2() { return &___rightAlignedLabel_2; } inline void set_rightAlignedLabel_2(GUIStyle_t29C59470ACD0A35C81EB0615653FD38C455A4726 * value) { ___rightAlignedLabel_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___rightAlignedLabel_2), (void*)value); } inline static int32_t get_offset_of_ClientArea_3() { return static_cast(offsetof(GUIHelper_t2BF60F03A2A8EEA467A93FE5910AE1C5F1217F7F_StaticFields, ___ClientArea_3)); } inline Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 get_ClientArea_3() const { return ___ClientArea_3; } inline Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 * get_address_of_ClientArea_3() { return &___ClientArea_3; } inline void set_ClientArea_3(Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 value) { ___ClientArea_3 = value; } }; // BestHTTP.Forms.HTTPFormUsage struct HTTPFormUsage_t2B7AA6886E9788F75E0DB492A68095116462A64E { public: // System.Int32 BestHTTP.Forms.HTTPFormUsage::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(HTTPFormUsage_t2B7AA6886E9788F75E0DB492A68095116462A64E, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // BestHTTP.HTTPMethods struct HTTPMethods_t9BB2C0A32407626B6D77F8652824FB2E6CF92195 { public: // System.Byte BestHTTP.HTTPMethods::value__ uint8_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(HTTPMethods_t9BB2C0A32407626B6D77F8652824FB2E6CF92195, ___value___2)); } inline uint8_t get_value___2() const { return ___value___2; } inline uint8_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(uint8_t value) { ___value___2 = value; } }; // BestHTTP.HTTPRequestStates struct HTTPRequestStates_t32A7ADDA084DCC94348299B2C4DBB455A3429B7F { public: // System.Int32 BestHTTP.HTTPRequestStates::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(HTTPRequestStates_t32A7ADDA084DCC94348299B2C4DBB455A3429B7F, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // LitJson.JsonToken struct JsonToken_t4A929D720D99EFB2D6893A588A38C2EF778D3EAD { public: // System.Int32 LitJson.JsonToken::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(JsonToken_t4A929D720D99EFB2D6893A588A38C2EF778D3EAD, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // LitJson.JsonType struct JsonType_tD4FA3632583B01262F25448EE38F8BFA10867223 { public: // System.Int32 LitJson.JsonType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(JsonType_tD4FA3632583B01262F25448EE38F8BFA10867223, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.KeyDerivationFunc struct KeyDerivationFunc_t77081A2881F6F03B2B805E840C798E3AC7ACA213 : public AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 { public: public: }; // LanguageEnum struct LanguageEnum_t336A03AA64921355C9F28D0BF7DB4A0943828E95 { public: // System.Int32 LanguageEnum::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(LanguageEnum_t336A03AA64921355C9F28D0BF7DB4A0943828E95, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.IO.MemoryStream struct MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C : public Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB { public: // System.Byte[] System.IO.MemoryStream::_buffer ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ____buffer_5; // System.Int32 System.IO.MemoryStream::_origin int32_t ____origin_6; // System.Int32 System.IO.MemoryStream::_position int32_t ____position_7; // System.Int32 System.IO.MemoryStream::_length int32_t ____length_8; // System.Int32 System.IO.MemoryStream::_capacity int32_t ____capacity_9; // System.Boolean System.IO.MemoryStream::_expandable bool ____expandable_10; // System.Boolean System.IO.MemoryStream::_writable bool ____writable_11; // System.Boolean System.IO.MemoryStream::_exposable bool ____exposable_12; // System.Boolean System.IO.MemoryStream::_isOpen bool ____isOpen_13; // System.Threading.Tasks.Task`1 System.IO.MemoryStream::_lastReadTask Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * ____lastReadTask_14; public: inline static int32_t get_offset_of__buffer_5() { return static_cast(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____buffer_5)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get__buffer_5() const { return ____buffer_5; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of__buffer_5() { return &____buffer_5; } inline void set__buffer_5(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ____buffer_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____buffer_5), (void*)value); } inline static int32_t get_offset_of__origin_6() { return static_cast(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____origin_6)); } inline int32_t get__origin_6() const { return ____origin_6; } inline int32_t* get_address_of__origin_6() { return &____origin_6; } inline void set__origin_6(int32_t value) { ____origin_6 = value; } inline static int32_t get_offset_of__position_7() { return static_cast(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____position_7)); } inline int32_t get__position_7() const { return ____position_7; } inline int32_t* get_address_of__position_7() { return &____position_7; } inline void set__position_7(int32_t value) { ____position_7 = value; } inline static int32_t get_offset_of__length_8() { return static_cast(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____length_8)); } inline int32_t get__length_8() const { return ____length_8; } inline int32_t* get_address_of__length_8() { return &____length_8; } inline void set__length_8(int32_t value) { ____length_8 = value; } inline static int32_t get_offset_of__capacity_9() { return static_cast(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____capacity_9)); } inline int32_t get__capacity_9() const { return ____capacity_9; } inline int32_t* get_address_of__capacity_9() { return &____capacity_9; } inline void set__capacity_9(int32_t value) { ____capacity_9 = value; } inline static int32_t get_offset_of__expandable_10() { return static_cast(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____expandable_10)); } inline bool get__expandable_10() const { return ____expandable_10; } inline bool* get_address_of__expandable_10() { return &____expandable_10; } inline void set__expandable_10(bool value) { ____expandable_10 = value; } inline static int32_t get_offset_of__writable_11() { return static_cast(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____writable_11)); } inline bool get__writable_11() const { return ____writable_11; } inline bool* get_address_of__writable_11() { return &____writable_11; } inline void set__writable_11(bool value) { ____writable_11 = value; } inline static int32_t get_offset_of__exposable_12() { return static_cast(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____exposable_12)); } inline bool get__exposable_12() const { return ____exposable_12; } inline bool* get_address_of__exposable_12() { return &____exposable_12; } inline void set__exposable_12(bool value) { ____exposable_12 = value; } inline static int32_t get_offset_of__isOpen_13() { return static_cast(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____isOpen_13)); } inline bool get__isOpen_13() const { return ____isOpen_13; } inline bool* get_address_of__isOpen_13() { return &____isOpen_13; } inline void set__isOpen_13(bool value) { ____isOpen_13 = value; } inline static int32_t get_offset_of__lastReadTask_14() { return static_cast(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____lastReadTask_14)); } inline Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * get__lastReadTask_14() const { return ____lastReadTask_14; } inline Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 ** get_address_of__lastReadTask_14() { return &____lastReadTask_14; } inline void set__lastReadTask_14(Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * value) { ____lastReadTask_14 = value; Il2CppCodeGenWriteBarrier((void**)(&____lastReadTask_14), (void*)value); } }; // BestHTTP.SignalR.MessageTypes struct MessageTypes_t0D49EC24DD48FF5620E610A85F893E910D2A6B2A { public: // System.Int32 BestHTTP.SignalR.MessageTypes::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(MessageTypes_t0D49EC24DD48FF5620E610A85F893E910D2A6B2A, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // BestHTTP.SignalRCore.Messages.MessageTypes struct MessageTypes_t3FA36B4CAA5AA4624EDB50FA028FBBAED9DB832C { public: // System.Int32 BestHTTP.SignalRCore.Messages.MessageTypes::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(MessageTypes_t3FA36B4CAA5AA4624EDB50FA028FBBAED9DB832C, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Reflection.MethodInfo struct MethodInfo_t : public MethodBase_t { public: public: }; // System.Globalization.NumberStyles struct NumberStyles_t379EFBF2535E1C950DEC8042704BB663BF636594 { public: // System.Int32 System.Globalization.NumberStyles::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(NumberStyles_t379EFBF2535E1C950DEC8042704BB663BF636594, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.Object struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A : public RuntimeObject { public: // System.IntPtr UnityEngine.Object::m_CachedPtr intptr_t ___m_CachedPtr_0; public: inline static int32_t get_offset_of_m_CachedPtr_0() { return static_cast(offsetof(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A, ___m_CachedPtr_0)); } inline intptr_t get_m_CachedPtr_0() const { return ___m_CachedPtr_0; } inline intptr_t* get_address_of_m_CachedPtr_0() { return &___m_CachedPtr_0; } inline void set_m_CachedPtr_0(intptr_t value) { ___m_CachedPtr_0 = value; } }; struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_StaticFields { public: // System.Int32 UnityEngine.Object::OffsetOfInstanceIDInCPlusPlusObject int32_t ___OffsetOfInstanceIDInCPlusPlusObject_1; public: inline static int32_t get_offset_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return static_cast(offsetof(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_StaticFields, ___OffsetOfInstanceIDInCPlusPlusObject_1)); } inline int32_t get_OffsetOfInstanceIDInCPlusPlusObject_1() const { return ___OffsetOfInstanceIDInCPlusPlusObject_1; } inline int32_t* get_address_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return &___OffsetOfInstanceIDInCPlusPlusObject_1; } inline void set_OffsetOfInstanceIDInCPlusPlusObject_1(int32_t value) { ___OffsetOfInstanceIDInCPlusPlusObject_1 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.Object struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_marshaled_pinvoke { intptr_t ___m_CachedPtr_0; }; // Native definition for COM marshalling of UnityEngine.Object struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_marshaled_com { intptr_t ___m_CachedPtr_0; }; // System.Reflection.ParameterAttributes struct ParameterAttributes_t79BD378DEC3F187D9773B9A4EDE573866E930218 { public: // System.Int32 System.Reflection.ParameterAttributes::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(ParameterAttributes_t79BD378DEC3F187D9773B9A4EDE573866E930218, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // LitJson.ParserToken struct ParserToken_t51882FFA0865E4E504DFF9B3C42D6EC451D0B6A5 { public: // System.Int32 LitJson.ParserToken::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(ParserToken_t51882FFA0865E4E504DFF9B3C42D6EC451D0B6A5, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.RuntimeFieldHandle struct RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 { public: // System.IntPtr System.RuntimeFieldHandle::value intptr_t ___value_0; public: inline static int32_t get_offset_of_value_0() { return static_cast(offsetof(RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96, ___value_0)); } inline intptr_t get_value_0() const { return ___value_0; } inline intptr_t* get_address_of_value_0() { return &___value_0; } inline void set_value_0(intptr_t value) { ___value_0 = value; } }; // System.RuntimeTypeHandle struct RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 { public: // System.IntPtr System.RuntimeTypeHandle::value intptr_t ___value_0; public: inline static int32_t get_offset_of_value_0() { return static_cast(offsetof(RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9, ___value_0)); } inline intptr_t get_value_0() const { return ___value_0; } inline intptr_t* get_address_of_value_0() { return &___value_0; } inline void set_value_0(intptr_t value) { ___value_0 = value; } }; // System.IO.StringReader struct StringReader_t74E352C280EAC22C878867444978741F19E1F895 : public TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F { public: // System.String System.IO.StringReader::_s String_t* ____s_4; // System.Int32 System.IO.StringReader::_pos int32_t ____pos_5; // System.Int32 System.IO.StringReader::_length int32_t ____length_6; public: inline static int32_t get_offset_of__s_4() { return static_cast(offsetof(StringReader_t74E352C280EAC22C878867444978741F19E1F895, ____s_4)); } inline String_t* get__s_4() const { return ____s_4; } inline String_t** get_address_of__s_4() { return &____s_4; } inline void set__s_4(String_t* value) { ____s_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____s_4), (void*)value); } inline static int32_t get_offset_of__pos_5() { return static_cast(offsetof(StringReader_t74E352C280EAC22C878867444978741F19E1F895, ____pos_5)); } inline int32_t get__pos_5() const { return ____pos_5; } inline int32_t* get_address_of__pos_5() { return &____pos_5; } inline void set__pos_5(int32_t value) { ____pos_5 = value; } inline static int32_t get_offset_of__length_6() { return static_cast(offsetof(StringReader_t74E352C280EAC22C878867444978741F19E1F895, ____length_6)); } inline int32_t get__length_6() const { return ____length_6; } inline int32_t* get_address_of__length_6() { return &____length_6; } inline void set__length_6(int32_t value) { ____length_6 = value; } }; // System.IO.StringWriter struct StringWriter_t7BEF6B06B35BC25817D8BE28593FB52F0525B839 : public TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 { public: // System.Text.StringBuilder System.IO.StringWriter::_sb StringBuilder_t * ____sb_12; // System.Boolean System.IO.StringWriter::_isOpen bool ____isOpen_13; public: inline static int32_t get_offset_of__sb_12() { return static_cast(offsetof(StringWriter_t7BEF6B06B35BC25817D8BE28593FB52F0525B839, ____sb_12)); } inline StringBuilder_t * get__sb_12() const { return ____sb_12; } inline StringBuilder_t ** get_address_of__sb_12() { return &____sb_12; } inline void set__sb_12(StringBuilder_t * value) { ____sb_12 = value; Il2CppCodeGenWriteBarrier((void**)(&____sb_12), (void*)value); } inline static int32_t get_offset_of__isOpen_13() { return static_cast(offsetof(StringWriter_t7BEF6B06B35BC25817D8BE28593FB52F0525B839, ____isOpen_13)); } inline bool get__isOpen_13() const { return ____isOpen_13; } inline bool* get_address_of__isOpen_13() { return &____isOpen_13; } inline void set__isOpen_13(bool value) { ____isOpen_13 = value; } }; struct StringWriter_t7BEF6B06B35BC25817D8BE28593FB52F0525B839_StaticFields { public: // System.Text.UnicodeEncoding modreq(System.Runtime.CompilerServices.IsVolatile) System.IO.StringWriter::m_encoding UnicodeEncoding_tBB60B97AFC49D6246F28BF16D3E09822FCCACC68 * ___m_encoding_11; public: inline static int32_t get_offset_of_m_encoding_11() { return static_cast(offsetof(StringWriter_t7BEF6B06B35BC25817D8BE28593FB52F0525B839_StaticFields, ___m_encoding_11)); } inline UnicodeEncoding_tBB60B97AFC49D6246F28BF16D3E09822FCCACC68 * get_m_encoding_11() const { return ___m_encoding_11; } inline UnicodeEncoding_tBB60B97AFC49D6246F28BF16D3E09822FCCACC68 ** get_address_of_m_encoding_11() { return &___m_encoding_11; } inline void set_m_encoding_11(UnicodeEncoding_tBB60B97AFC49D6246F28BF16D3E09822FCCACC68 * value) { ___m_encoding_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_encoding_11), (void*)value); } }; // BestHTTP.SupportedProtocols struct SupportedProtocols_t3B8F67D21A1E9AF62C6579631E36E7E50B90047B { public: // System.Int32 BestHTTP.SupportedProtocols::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(SupportedProtocols_t3B8F67D21A1E9AF62C6579631E36E7E50B90047B, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.TimeSpan struct TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 { public: // System.Int64 System.TimeSpan::_ticks int64_t ____ticks_22; public: inline static int32_t get_offset_of__ticks_22() { return static_cast(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203, ____ticks_22)); } inline int64_t get__ticks_22() const { return ____ticks_22; } inline int64_t* get_address_of__ticks_22() { return &____ticks_22; } inline void set__ticks_22(int64_t value) { ____ticks_22 = value; } }; struct TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields { public: // System.TimeSpan System.TimeSpan::Zero TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___Zero_19; // System.TimeSpan System.TimeSpan::MaxValue TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___MaxValue_20; // System.TimeSpan System.TimeSpan::MinValue TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___MinValue_21; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyConfigChecked bool ____legacyConfigChecked_23; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyMode bool ____legacyMode_24; public: inline static int32_t get_offset_of_Zero_19() { return static_cast(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___Zero_19)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_Zero_19() const { return ___Zero_19; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_Zero_19() { return &___Zero_19; } inline void set_Zero_19(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___Zero_19 = value; } inline static int32_t get_offset_of_MaxValue_20() { return static_cast(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___MaxValue_20)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_MaxValue_20() const { return ___MaxValue_20; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_MaxValue_20() { return &___MaxValue_20; } inline void set_MaxValue_20(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___MaxValue_20 = value; } inline static int32_t get_offset_of_MinValue_21() { return static_cast(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___MinValue_21)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_MinValue_21() const { return ___MinValue_21; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_MinValue_21() { return &___MinValue_21; } inline void set_MinValue_21(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___MinValue_21 = value; } inline static int32_t get_offset_of__legacyConfigChecked_23() { return static_cast(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ____legacyConfigChecked_23)); } inline bool get__legacyConfigChecked_23() const { return ____legacyConfigChecked_23; } inline bool* get_address_of__legacyConfigChecked_23() { return &____legacyConfigChecked_23; } inline void set__legacyConfigChecked_23(bool value) { ____legacyConfigChecked_23 = value; } inline static int32_t get_offset_of__legacyMode_24() { return static_cast(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ____legacyMode_24)); } inline bool get__legacyMode_24() const { return ____legacyMode_24; } inline bool* get_address_of__legacyMode_24() { return &____legacyMode_24; } inline void set__legacyMode_24(bool value) { ____legacyMode_24 = value; } }; // BestHTTP.SignalRCore.TransferModes struct TransferModes_tF68554C58E8A89D6EF70DF878A3E785C298B3C8C { public: // System.Int32 BestHTTP.SignalRCore.TransferModes::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(TransferModes_tF68554C58E8A89D6EF70DF878A3E785C298B3C8C, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.UriFormat struct UriFormat_t25C936463BDE737B16A8EC3DA05091FC31F1A71F { public: // System.Int32 System.UriFormat::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(UriFormat_t25C936463BDE737B16A8EC3DA05091FC31F1A71F, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.UriIdnScope struct UriIdnScope_tBA22B992BA582F68F2B98CDEBCB24299F249DE4D { public: // System.Int32 System.UriIdnScope::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(UriIdnScope_tBA22B992BA582F68F2B98CDEBCB24299F249DE4D, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.UriKind struct UriKind_tFC16ACC1842283AAE2C7F50C9C70EFBF6550B3FC { public: // System.Int32 System.UriKind::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(UriKind_tFC16ACC1842283AAE2C7F50C9C70EFBF6550B3FC, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.GUILayoutOption/Type struct Type_t79FB5C82B695061CED8D628CBB6A1E8709705288 { public: // System.Int32 UnityEngine.GUILayoutOption/Type::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Type_t79FB5C82B695061CED8D628CBB6A1E8709705288, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityStandardAssets.Vehicles.Aeroplane.LandingGear/GearState struct GearState_tF922499B3716E86E31F037BC42DDBC17C11F345A { public: // System.Int32 UnityStandardAssets.Vehicles.Aeroplane.LandingGear/GearState::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(GearState_tF922499B3716E86E31F037BC42DDBC17C11F345A, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Uri/Flags struct Flags_t72C622DF5C3ED762F55AB36EC2CCDDF3AF56B8D4 { public: // System.UInt64 System.Uri/Flags::value__ uint64_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Flags_t72C622DF5C3ED762F55AB36EC2CCDDF3AF56B8D4, ___value___2)); } inline uint64_t get_value___2() const { return ___value___2; } inline uint64_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(uint64_t value) { ___value___2 = value; } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsException struct CmsException_tA459F99D1C6C93528CDEC8BBB289A932766EC3DE : public Exception_t { public: public: }; // UnityEngine.Component struct Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A { public: public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.CryptoException struct CryptoException_t4585FEA3F67B6ED045D6C9401A9C96B1234E3F27 : public Exception_t { public: public: }; // System.Globalization.DateTimeFormatInfo struct DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 : public RuntimeObject { public: // System.Globalization.CultureData System.Globalization.DateTimeFormatInfo::m_cultureData CultureData_t53CDF1C5F789A28897415891667799420D3C5529 * ___m_cultureData_1; // System.String System.Globalization.DateTimeFormatInfo::m_name String_t* ___m_name_2; // System.String System.Globalization.DateTimeFormatInfo::m_langName String_t* ___m_langName_3; // System.Globalization.CompareInfo System.Globalization.DateTimeFormatInfo::m_compareInfo CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * ___m_compareInfo_4; // System.Globalization.CultureInfo System.Globalization.DateTimeFormatInfo::m_cultureInfo CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___m_cultureInfo_5; // System.String System.Globalization.DateTimeFormatInfo::amDesignator String_t* ___amDesignator_6; // System.String System.Globalization.DateTimeFormatInfo::pmDesignator String_t* ___pmDesignator_7; // System.String System.Globalization.DateTimeFormatInfo::dateSeparator String_t* ___dateSeparator_8; // System.String System.Globalization.DateTimeFormatInfo::generalShortTimePattern String_t* ___generalShortTimePattern_9; // System.String System.Globalization.DateTimeFormatInfo::generalLongTimePattern String_t* ___generalLongTimePattern_10; // System.String System.Globalization.DateTimeFormatInfo::timeSeparator String_t* ___timeSeparator_11; // System.String System.Globalization.DateTimeFormatInfo::monthDayPattern String_t* ___monthDayPattern_12; // System.String System.Globalization.DateTimeFormatInfo::dateTimeOffsetPattern String_t* ___dateTimeOffsetPattern_13; // System.Globalization.Calendar System.Globalization.DateTimeFormatInfo::calendar Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * ___calendar_17; // System.Int32 System.Globalization.DateTimeFormatInfo::firstDayOfWeek int32_t ___firstDayOfWeek_18; // System.Int32 System.Globalization.DateTimeFormatInfo::calendarWeekRule int32_t ___calendarWeekRule_19; // System.String System.Globalization.DateTimeFormatInfo::fullDateTimePattern String_t* ___fullDateTimePattern_20; // System.String[] System.Globalization.DateTimeFormatInfo::abbreviatedDayNames StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___abbreviatedDayNames_21; // System.String[] System.Globalization.DateTimeFormatInfo::m_superShortDayNames StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___m_superShortDayNames_22; // System.String[] System.Globalization.DateTimeFormatInfo::dayNames StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___dayNames_23; // System.String[] System.Globalization.DateTimeFormatInfo::abbreviatedMonthNames StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___abbreviatedMonthNames_24; // System.String[] System.Globalization.DateTimeFormatInfo::monthNames StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___monthNames_25; // System.String[] System.Globalization.DateTimeFormatInfo::genitiveMonthNames StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___genitiveMonthNames_26; // System.String[] System.Globalization.DateTimeFormatInfo::m_genitiveAbbreviatedMonthNames StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___m_genitiveAbbreviatedMonthNames_27; // System.String[] System.Globalization.DateTimeFormatInfo::leapYearMonthNames StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___leapYearMonthNames_28; // System.String System.Globalization.DateTimeFormatInfo::longDatePattern String_t* ___longDatePattern_29; // System.String System.Globalization.DateTimeFormatInfo::shortDatePattern String_t* ___shortDatePattern_30; // System.String System.Globalization.DateTimeFormatInfo::yearMonthPattern String_t* ___yearMonthPattern_31; // System.String System.Globalization.DateTimeFormatInfo::longTimePattern String_t* ___longTimePattern_32; // System.String System.Globalization.DateTimeFormatInfo::shortTimePattern String_t* ___shortTimePattern_33; // System.String[] System.Globalization.DateTimeFormatInfo::allYearMonthPatterns StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___allYearMonthPatterns_34; // System.String[] System.Globalization.DateTimeFormatInfo::allShortDatePatterns StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___allShortDatePatterns_35; // System.String[] System.Globalization.DateTimeFormatInfo::allLongDatePatterns StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___allLongDatePatterns_36; // System.String[] System.Globalization.DateTimeFormatInfo::allShortTimePatterns StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___allShortTimePatterns_37; // System.String[] System.Globalization.DateTimeFormatInfo::allLongTimePatterns StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___allLongTimePatterns_38; // System.String[] System.Globalization.DateTimeFormatInfo::m_eraNames StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___m_eraNames_39; // System.String[] System.Globalization.DateTimeFormatInfo::m_abbrevEraNames StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___m_abbrevEraNames_40; // System.String[] System.Globalization.DateTimeFormatInfo::m_abbrevEnglishEraNames StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___m_abbrevEnglishEraNames_41; // System.Int32[] System.Globalization.DateTimeFormatInfo::optionalCalendars Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___optionalCalendars_42; // System.Boolean System.Globalization.DateTimeFormatInfo::m_isReadOnly bool ___m_isReadOnly_44; // System.Globalization.DateTimeFormatFlags System.Globalization.DateTimeFormatInfo::formatFlags int32_t ___formatFlags_45; // System.Int32 System.Globalization.DateTimeFormatInfo::CultureID int32_t ___CultureID_47; // System.Boolean System.Globalization.DateTimeFormatInfo::m_useUserOverride bool ___m_useUserOverride_48; // System.Boolean System.Globalization.DateTimeFormatInfo::bUseCalendarInfo bool ___bUseCalendarInfo_49; // System.Int32 System.Globalization.DateTimeFormatInfo::nDataItem int32_t ___nDataItem_50; // System.Boolean System.Globalization.DateTimeFormatInfo::m_isDefaultCalendar bool ___m_isDefaultCalendar_51; // System.String[] System.Globalization.DateTimeFormatInfo::m_dateWords StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___m_dateWords_53; // System.String System.Globalization.DateTimeFormatInfo::m_fullTimeSpanPositivePattern String_t* ___m_fullTimeSpanPositivePattern_54; // System.String System.Globalization.DateTimeFormatInfo::m_fullTimeSpanNegativePattern String_t* ___m_fullTimeSpanNegativePattern_55; // System.Globalization.TokenHashValue[] System.Globalization.DateTimeFormatInfo::m_dtfiTokenHash TokenHashValueU5BU5D_t9A8634CBD651EB5F814E7CF9819D44963D8546D3* ___m_dtfiTokenHash_57; public: inline static int32_t get_offset_of_m_cultureData_1() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___m_cultureData_1)); } inline CultureData_t53CDF1C5F789A28897415891667799420D3C5529 * get_m_cultureData_1() const { return ___m_cultureData_1; } inline CultureData_t53CDF1C5F789A28897415891667799420D3C5529 ** get_address_of_m_cultureData_1() { return &___m_cultureData_1; } inline void set_m_cultureData_1(CultureData_t53CDF1C5F789A28897415891667799420D3C5529 * value) { ___m_cultureData_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_cultureData_1), (void*)value); } inline static int32_t get_offset_of_m_name_2() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___m_name_2)); } inline String_t* get_m_name_2() const { return ___m_name_2; } inline String_t** get_address_of_m_name_2() { return &___m_name_2; } inline void set_m_name_2(String_t* value) { ___m_name_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_name_2), (void*)value); } inline static int32_t get_offset_of_m_langName_3() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___m_langName_3)); } inline String_t* get_m_langName_3() const { return ___m_langName_3; } inline String_t** get_address_of_m_langName_3() { return &___m_langName_3; } inline void set_m_langName_3(String_t* value) { ___m_langName_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_langName_3), (void*)value); } inline static int32_t get_offset_of_m_compareInfo_4() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___m_compareInfo_4)); } inline CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * get_m_compareInfo_4() const { return ___m_compareInfo_4; } inline CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 ** get_address_of_m_compareInfo_4() { return &___m_compareInfo_4; } inline void set_m_compareInfo_4(CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * value) { ___m_compareInfo_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_compareInfo_4), (void*)value); } inline static int32_t get_offset_of_m_cultureInfo_5() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___m_cultureInfo_5)); } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * get_m_cultureInfo_5() const { return ___m_cultureInfo_5; } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** get_address_of_m_cultureInfo_5() { return &___m_cultureInfo_5; } inline void set_m_cultureInfo_5(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * value) { ___m_cultureInfo_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_cultureInfo_5), (void*)value); } inline static int32_t get_offset_of_amDesignator_6() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___amDesignator_6)); } inline String_t* get_amDesignator_6() const { return ___amDesignator_6; } inline String_t** get_address_of_amDesignator_6() { return &___amDesignator_6; } inline void set_amDesignator_6(String_t* value) { ___amDesignator_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___amDesignator_6), (void*)value); } inline static int32_t get_offset_of_pmDesignator_7() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___pmDesignator_7)); } inline String_t* get_pmDesignator_7() const { return ___pmDesignator_7; } inline String_t** get_address_of_pmDesignator_7() { return &___pmDesignator_7; } inline void set_pmDesignator_7(String_t* value) { ___pmDesignator_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___pmDesignator_7), (void*)value); } inline static int32_t get_offset_of_dateSeparator_8() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___dateSeparator_8)); } inline String_t* get_dateSeparator_8() const { return ___dateSeparator_8; } inline String_t** get_address_of_dateSeparator_8() { return &___dateSeparator_8; } inline void set_dateSeparator_8(String_t* value) { ___dateSeparator_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___dateSeparator_8), (void*)value); } inline static int32_t get_offset_of_generalShortTimePattern_9() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___generalShortTimePattern_9)); } inline String_t* get_generalShortTimePattern_9() const { return ___generalShortTimePattern_9; } inline String_t** get_address_of_generalShortTimePattern_9() { return &___generalShortTimePattern_9; } inline void set_generalShortTimePattern_9(String_t* value) { ___generalShortTimePattern_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___generalShortTimePattern_9), (void*)value); } inline static int32_t get_offset_of_generalLongTimePattern_10() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___generalLongTimePattern_10)); } inline String_t* get_generalLongTimePattern_10() const { return ___generalLongTimePattern_10; } inline String_t** get_address_of_generalLongTimePattern_10() { return &___generalLongTimePattern_10; } inline void set_generalLongTimePattern_10(String_t* value) { ___generalLongTimePattern_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___generalLongTimePattern_10), (void*)value); } inline static int32_t get_offset_of_timeSeparator_11() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___timeSeparator_11)); } inline String_t* get_timeSeparator_11() const { return ___timeSeparator_11; } inline String_t** get_address_of_timeSeparator_11() { return &___timeSeparator_11; } inline void set_timeSeparator_11(String_t* value) { ___timeSeparator_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___timeSeparator_11), (void*)value); } inline static int32_t get_offset_of_monthDayPattern_12() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___monthDayPattern_12)); } inline String_t* get_monthDayPattern_12() const { return ___monthDayPattern_12; } inline String_t** get_address_of_monthDayPattern_12() { return &___monthDayPattern_12; } inline void set_monthDayPattern_12(String_t* value) { ___monthDayPattern_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___monthDayPattern_12), (void*)value); } inline static int32_t get_offset_of_dateTimeOffsetPattern_13() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___dateTimeOffsetPattern_13)); } inline String_t* get_dateTimeOffsetPattern_13() const { return ___dateTimeOffsetPattern_13; } inline String_t** get_address_of_dateTimeOffsetPattern_13() { return &___dateTimeOffsetPattern_13; } inline void set_dateTimeOffsetPattern_13(String_t* value) { ___dateTimeOffsetPattern_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___dateTimeOffsetPattern_13), (void*)value); } inline static int32_t get_offset_of_calendar_17() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___calendar_17)); } inline Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * get_calendar_17() const { return ___calendar_17; } inline Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A ** get_address_of_calendar_17() { return &___calendar_17; } inline void set_calendar_17(Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * value) { ___calendar_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___calendar_17), (void*)value); } inline static int32_t get_offset_of_firstDayOfWeek_18() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___firstDayOfWeek_18)); } inline int32_t get_firstDayOfWeek_18() const { return ___firstDayOfWeek_18; } inline int32_t* get_address_of_firstDayOfWeek_18() { return &___firstDayOfWeek_18; } inline void set_firstDayOfWeek_18(int32_t value) { ___firstDayOfWeek_18 = value; } inline static int32_t get_offset_of_calendarWeekRule_19() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___calendarWeekRule_19)); } inline int32_t get_calendarWeekRule_19() const { return ___calendarWeekRule_19; } inline int32_t* get_address_of_calendarWeekRule_19() { return &___calendarWeekRule_19; } inline void set_calendarWeekRule_19(int32_t value) { ___calendarWeekRule_19 = value; } inline static int32_t get_offset_of_fullDateTimePattern_20() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___fullDateTimePattern_20)); } inline String_t* get_fullDateTimePattern_20() const { return ___fullDateTimePattern_20; } inline String_t** get_address_of_fullDateTimePattern_20() { return &___fullDateTimePattern_20; } inline void set_fullDateTimePattern_20(String_t* value) { ___fullDateTimePattern_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___fullDateTimePattern_20), (void*)value); } inline static int32_t get_offset_of_abbreviatedDayNames_21() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___abbreviatedDayNames_21)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_abbreviatedDayNames_21() const { return ___abbreviatedDayNames_21; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_abbreviatedDayNames_21() { return &___abbreviatedDayNames_21; } inline void set_abbreviatedDayNames_21(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___abbreviatedDayNames_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___abbreviatedDayNames_21), (void*)value); } inline static int32_t get_offset_of_m_superShortDayNames_22() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___m_superShortDayNames_22)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_m_superShortDayNames_22() const { return ___m_superShortDayNames_22; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_m_superShortDayNames_22() { return &___m_superShortDayNames_22; } inline void set_m_superShortDayNames_22(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___m_superShortDayNames_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_superShortDayNames_22), (void*)value); } inline static int32_t get_offset_of_dayNames_23() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___dayNames_23)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_dayNames_23() const { return ___dayNames_23; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_dayNames_23() { return &___dayNames_23; } inline void set_dayNames_23(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___dayNames_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___dayNames_23), (void*)value); } inline static int32_t get_offset_of_abbreviatedMonthNames_24() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___abbreviatedMonthNames_24)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_abbreviatedMonthNames_24() const { return ___abbreviatedMonthNames_24; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_abbreviatedMonthNames_24() { return &___abbreviatedMonthNames_24; } inline void set_abbreviatedMonthNames_24(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___abbreviatedMonthNames_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___abbreviatedMonthNames_24), (void*)value); } inline static int32_t get_offset_of_monthNames_25() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___monthNames_25)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_monthNames_25() const { return ___monthNames_25; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_monthNames_25() { return &___monthNames_25; } inline void set_monthNames_25(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___monthNames_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___monthNames_25), (void*)value); } inline static int32_t get_offset_of_genitiveMonthNames_26() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___genitiveMonthNames_26)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_genitiveMonthNames_26() const { return ___genitiveMonthNames_26; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_genitiveMonthNames_26() { return &___genitiveMonthNames_26; } inline void set_genitiveMonthNames_26(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___genitiveMonthNames_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___genitiveMonthNames_26), (void*)value); } inline static int32_t get_offset_of_m_genitiveAbbreviatedMonthNames_27() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___m_genitiveAbbreviatedMonthNames_27)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_m_genitiveAbbreviatedMonthNames_27() const { return ___m_genitiveAbbreviatedMonthNames_27; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_m_genitiveAbbreviatedMonthNames_27() { return &___m_genitiveAbbreviatedMonthNames_27; } inline void set_m_genitiveAbbreviatedMonthNames_27(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___m_genitiveAbbreviatedMonthNames_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_genitiveAbbreviatedMonthNames_27), (void*)value); } inline static int32_t get_offset_of_leapYearMonthNames_28() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___leapYearMonthNames_28)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_leapYearMonthNames_28() const { return ___leapYearMonthNames_28; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_leapYearMonthNames_28() { return &___leapYearMonthNames_28; } inline void set_leapYearMonthNames_28(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___leapYearMonthNames_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___leapYearMonthNames_28), (void*)value); } inline static int32_t get_offset_of_longDatePattern_29() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___longDatePattern_29)); } inline String_t* get_longDatePattern_29() const { return ___longDatePattern_29; } inline String_t** get_address_of_longDatePattern_29() { return &___longDatePattern_29; } inline void set_longDatePattern_29(String_t* value) { ___longDatePattern_29 = value; Il2CppCodeGenWriteBarrier((void**)(&___longDatePattern_29), (void*)value); } inline static int32_t get_offset_of_shortDatePattern_30() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___shortDatePattern_30)); } inline String_t* get_shortDatePattern_30() const { return ___shortDatePattern_30; } inline String_t** get_address_of_shortDatePattern_30() { return &___shortDatePattern_30; } inline void set_shortDatePattern_30(String_t* value) { ___shortDatePattern_30 = value; Il2CppCodeGenWriteBarrier((void**)(&___shortDatePattern_30), (void*)value); } inline static int32_t get_offset_of_yearMonthPattern_31() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___yearMonthPattern_31)); } inline String_t* get_yearMonthPattern_31() const { return ___yearMonthPattern_31; } inline String_t** get_address_of_yearMonthPattern_31() { return &___yearMonthPattern_31; } inline void set_yearMonthPattern_31(String_t* value) { ___yearMonthPattern_31 = value; Il2CppCodeGenWriteBarrier((void**)(&___yearMonthPattern_31), (void*)value); } inline static int32_t get_offset_of_longTimePattern_32() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___longTimePattern_32)); } inline String_t* get_longTimePattern_32() const { return ___longTimePattern_32; } inline String_t** get_address_of_longTimePattern_32() { return &___longTimePattern_32; } inline void set_longTimePattern_32(String_t* value) { ___longTimePattern_32 = value; Il2CppCodeGenWriteBarrier((void**)(&___longTimePattern_32), (void*)value); } inline static int32_t get_offset_of_shortTimePattern_33() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___shortTimePattern_33)); } inline String_t* get_shortTimePattern_33() const { return ___shortTimePattern_33; } inline String_t** get_address_of_shortTimePattern_33() { return &___shortTimePattern_33; } inline void set_shortTimePattern_33(String_t* value) { ___shortTimePattern_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___shortTimePattern_33), (void*)value); } inline static int32_t get_offset_of_allYearMonthPatterns_34() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___allYearMonthPatterns_34)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_allYearMonthPatterns_34() const { return ___allYearMonthPatterns_34; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_allYearMonthPatterns_34() { return &___allYearMonthPatterns_34; } inline void set_allYearMonthPatterns_34(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___allYearMonthPatterns_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___allYearMonthPatterns_34), (void*)value); } inline static int32_t get_offset_of_allShortDatePatterns_35() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___allShortDatePatterns_35)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_allShortDatePatterns_35() const { return ___allShortDatePatterns_35; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_allShortDatePatterns_35() { return &___allShortDatePatterns_35; } inline void set_allShortDatePatterns_35(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___allShortDatePatterns_35 = value; Il2CppCodeGenWriteBarrier((void**)(&___allShortDatePatterns_35), (void*)value); } inline static int32_t get_offset_of_allLongDatePatterns_36() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___allLongDatePatterns_36)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_allLongDatePatterns_36() const { return ___allLongDatePatterns_36; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_allLongDatePatterns_36() { return &___allLongDatePatterns_36; } inline void set_allLongDatePatterns_36(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___allLongDatePatterns_36 = value; Il2CppCodeGenWriteBarrier((void**)(&___allLongDatePatterns_36), (void*)value); } inline static int32_t get_offset_of_allShortTimePatterns_37() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___allShortTimePatterns_37)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_allShortTimePatterns_37() const { return ___allShortTimePatterns_37; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_allShortTimePatterns_37() { return &___allShortTimePatterns_37; } inline void set_allShortTimePatterns_37(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___allShortTimePatterns_37 = value; Il2CppCodeGenWriteBarrier((void**)(&___allShortTimePatterns_37), (void*)value); } inline static int32_t get_offset_of_allLongTimePatterns_38() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___allLongTimePatterns_38)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_allLongTimePatterns_38() const { return ___allLongTimePatterns_38; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_allLongTimePatterns_38() { return &___allLongTimePatterns_38; } inline void set_allLongTimePatterns_38(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___allLongTimePatterns_38 = value; Il2CppCodeGenWriteBarrier((void**)(&___allLongTimePatterns_38), (void*)value); } inline static int32_t get_offset_of_m_eraNames_39() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___m_eraNames_39)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_m_eraNames_39() const { return ___m_eraNames_39; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_m_eraNames_39() { return &___m_eraNames_39; } inline void set_m_eraNames_39(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___m_eraNames_39 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_eraNames_39), (void*)value); } inline static int32_t get_offset_of_m_abbrevEraNames_40() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___m_abbrevEraNames_40)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_m_abbrevEraNames_40() const { return ___m_abbrevEraNames_40; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_m_abbrevEraNames_40() { return &___m_abbrevEraNames_40; } inline void set_m_abbrevEraNames_40(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___m_abbrevEraNames_40 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_abbrevEraNames_40), (void*)value); } inline static int32_t get_offset_of_m_abbrevEnglishEraNames_41() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___m_abbrevEnglishEraNames_41)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_m_abbrevEnglishEraNames_41() const { return ___m_abbrevEnglishEraNames_41; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_m_abbrevEnglishEraNames_41() { return &___m_abbrevEnglishEraNames_41; } inline void set_m_abbrevEnglishEraNames_41(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___m_abbrevEnglishEraNames_41 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_abbrevEnglishEraNames_41), (void*)value); } inline static int32_t get_offset_of_optionalCalendars_42() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___optionalCalendars_42)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_optionalCalendars_42() const { return ___optionalCalendars_42; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_optionalCalendars_42() { return &___optionalCalendars_42; } inline void set_optionalCalendars_42(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___optionalCalendars_42 = value; Il2CppCodeGenWriteBarrier((void**)(&___optionalCalendars_42), (void*)value); } inline static int32_t get_offset_of_m_isReadOnly_44() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___m_isReadOnly_44)); } inline bool get_m_isReadOnly_44() const { return ___m_isReadOnly_44; } inline bool* get_address_of_m_isReadOnly_44() { return &___m_isReadOnly_44; } inline void set_m_isReadOnly_44(bool value) { ___m_isReadOnly_44 = value; } inline static int32_t get_offset_of_formatFlags_45() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___formatFlags_45)); } inline int32_t get_formatFlags_45() const { return ___formatFlags_45; } inline int32_t* get_address_of_formatFlags_45() { return &___formatFlags_45; } inline void set_formatFlags_45(int32_t value) { ___formatFlags_45 = value; } inline static int32_t get_offset_of_CultureID_47() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___CultureID_47)); } inline int32_t get_CultureID_47() const { return ___CultureID_47; } inline int32_t* get_address_of_CultureID_47() { return &___CultureID_47; } inline void set_CultureID_47(int32_t value) { ___CultureID_47 = value; } inline static int32_t get_offset_of_m_useUserOverride_48() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___m_useUserOverride_48)); } inline bool get_m_useUserOverride_48() const { return ___m_useUserOverride_48; } inline bool* get_address_of_m_useUserOverride_48() { return &___m_useUserOverride_48; } inline void set_m_useUserOverride_48(bool value) { ___m_useUserOverride_48 = value; } inline static int32_t get_offset_of_bUseCalendarInfo_49() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___bUseCalendarInfo_49)); } inline bool get_bUseCalendarInfo_49() const { return ___bUseCalendarInfo_49; } inline bool* get_address_of_bUseCalendarInfo_49() { return &___bUseCalendarInfo_49; } inline void set_bUseCalendarInfo_49(bool value) { ___bUseCalendarInfo_49 = value; } inline static int32_t get_offset_of_nDataItem_50() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___nDataItem_50)); } inline int32_t get_nDataItem_50() const { return ___nDataItem_50; } inline int32_t* get_address_of_nDataItem_50() { return &___nDataItem_50; } inline void set_nDataItem_50(int32_t value) { ___nDataItem_50 = value; } inline static int32_t get_offset_of_m_isDefaultCalendar_51() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___m_isDefaultCalendar_51)); } inline bool get_m_isDefaultCalendar_51() const { return ___m_isDefaultCalendar_51; } inline bool* get_address_of_m_isDefaultCalendar_51() { return &___m_isDefaultCalendar_51; } inline void set_m_isDefaultCalendar_51(bool value) { ___m_isDefaultCalendar_51 = value; } inline static int32_t get_offset_of_m_dateWords_53() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___m_dateWords_53)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_m_dateWords_53() const { return ___m_dateWords_53; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_m_dateWords_53() { return &___m_dateWords_53; } inline void set_m_dateWords_53(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___m_dateWords_53 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_dateWords_53), (void*)value); } inline static int32_t get_offset_of_m_fullTimeSpanPositivePattern_54() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___m_fullTimeSpanPositivePattern_54)); } inline String_t* get_m_fullTimeSpanPositivePattern_54() const { return ___m_fullTimeSpanPositivePattern_54; } inline String_t** get_address_of_m_fullTimeSpanPositivePattern_54() { return &___m_fullTimeSpanPositivePattern_54; } inline void set_m_fullTimeSpanPositivePattern_54(String_t* value) { ___m_fullTimeSpanPositivePattern_54 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_fullTimeSpanPositivePattern_54), (void*)value); } inline static int32_t get_offset_of_m_fullTimeSpanNegativePattern_55() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___m_fullTimeSpanNegativePattern_55)); } inline String_t* get_m_fullTimeSpanNegativePattern_55() const { return ___m_fullTimeSpanNegativePattern_55; } inline String_t** get_address_of_m_fullTimeSpanNegativePattern_55() { return &___m_fullTimeSpanNegativePattern_55; } inline void set_m_fullTimeSpanNegativePattern_55(String_t* value) { ___m_fullTimeSpanNegativePattern_55 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_fullTimeSpanNegativePattern_55), (void*)value); } inline static int32_t get_offset_of_m_dtfiTokenHash_57() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90, ___m_dtfiTokenHash_57)); } inline TokenHashValueU5BU5D_t9A8634CBD651EB5F814E7CF9819D44963D8546D3* get_m_dtfiTokenHash_57() const { return ___m_dtfiTokenHash_57; } inline TokenHashValueU5BU5D_t9A8634CBD651EB5F814E7CF9819D44963D8546D3** get_address_of_m_dtfiTokenHash_57() { return &___m_dtfiTokenHash_57; } inline void set_m_dtfiTokenHash_57(TokenHashValueU5BU5D_t9A8634CBD651EB5F814E7CF9819D44963D8546D3* value) { ___m_dtfiTokenHash_57 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_dtfiTokenHash_57), (void*)value); } }; struct DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90_StaticFields { public: // System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.DateTimeFormatInfo::invariantInfo DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 * ___invariantInfo_0; // System.Boolean System.Globalization.DateTimeFormatInfo::preferExistingTokens bool ___preferExistingTokens_46; // System.Collections.Hashtable modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.DateTimeFormatInfo::s_calendarNativeNames Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___s_calendarNativeNames_52; // System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.DateTimeFormatInfo::s_jajpDTFI DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 * ___s_jajpDTFI_82; // System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.DateTimeFormatInfo::s_zhtwDTFI DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 * ___s_zhtwDTFI_83; public: inline static int32_t get_offset_of_invariantInfo_0() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90_StaticFields, ___invariantInfo_0)); } inline DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 * get_invariantInfo_0() const { return ___invariantInfo_0; } inline DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 ** get_address_of_invariantInfo_0() { return &___invariantInfo_0; } inline void set_invariantInfo_0(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 * value) { ___invariantInfo_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___invariantInfo_0), (void*)value); } inline static int32_t get_offset_of_preferExistingTokens_46() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90_StaticFields, ___preferExistingTokens_46)); } inline bool get_preferExistingTokens_46() const { return ___preferExistingTokens_46; } inline bool* get_address_of_preferExistingTokens_46() { return &___preferExistingTokens_46; } inline void set_preferExistingTokens_46(bool value) { ___preferExistingTokens_46 = value; } inline static int32_t get_offset_of_s_calendarNativeNames_52() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90_StaticFields, ___s_calendarNativeNames_52)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_s_calendarNativeNames_52() const { return ___s_calendarNativeNames_52; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_s_calendarNativeNames_52() { return &___s_calendarNativeNames_52; } inline void set_s_calendarNativeNames_52(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ___s_calendarNativeNames_52 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_calendarNativeNames_52), (void*)value); } inline static int32_t get_offset_of_s_jajpDTFI_82() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90_StaticFields, ___s_jajpDTFI_82)); } inline DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 * get_s_jajpDTFI_82() const { return ___s_jajpDTFI_82; } inline DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 ** get_address_of_s_jajpDTFI_82() { return &___s_jajpDTFI_82; } inline void set_s_jajpDTFI_82(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 * value) { ___s_jajpDTFI_82 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_jajpDTFI_82), (void*)value); } inline static int32_t get_offset_of_s_zhtwDTFI_83() { return static_cast(offsetof(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90_StaticFields, ___s_zhtwDTFI_83)); } inline DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 * get_s_zhtwDTFI_83() const { return ___s_zhtwDTFI_83; } inline DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 ** get_address_of_s_zhtwDTFI_83() { return &___s_zhtwDTFI_83; } inline void set_s_zhtwDTFI_83(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 * value) { ___s_zhtwDTFI_83 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_zhtwDTFI_83), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString struct DerBitString_t305465793A47445626D3541AB8CEDE347D874524 : public DerStringBase_t6A042D217F7D84704C0AFFD73317FB834F9A2FB5 { public: // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString::mData ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___mData_3; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString::mPadBits int32_t ___mPadBits_4; public: inline static int32_t get_offset_of_mData_3() { return static_cast(offsetof(DerBitString_t305465793A47445626D3541AB8CEDE347D874524, ___mData_3)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_mData_3() const { return ___mData_3; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_mData_3() { return &___mData_3; } inline void set_mData_3(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___mData_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___mData_3), (void*)value); } inline static int32_t get_offset_of_mPadBits_4() { return static_cast(offsetof(DerBitString_t305465793A47445626D3541AB8CEDE347D874524, ___mPadBits_4)); } inline int32_t get_mPadBits_4() const { return ___mPadBits_4; } inline int32_t* get_address_of_mPadBits_4() { return &___mPadBits_4; } inline void set_mPadBits_4(int32_t value) { ___mPadBits_4 = value; } }; struct DerBitString_t305465793A47445626D3541AB8CEDE347D874524_StaticFields { public: // System.Char[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString::table CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___table_2; public: inline static int32_t get_offset_of_table_2() { return static_cast(offsetof(DerBitString_t305465793A47445626D3541AB8CEDE347D874524_StaticFields, ___table_2)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_table_2() const { return ___table_2; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_table_2() { return &___table_2; } inline void set_table_2(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___table_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___table_2), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerNull struct DerNull_t020168AF07318033108544C00C803CD7AEB97239 : public Asn1Null_t5D40C5C3674510061A0C219CEB9849A5EF6492BC { public: // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerNull::zeroBytes ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___zeroBytes_3; public: inline static int32_t get_offset_of_zeroBytes_3() { return static_cast(offsetof(DerNull_t020168AF07318033108544C00C803CD7AEB97239, ___zeroBytes_3)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_zeroBytes_3() const { return ___zeroBytes_3; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_zeroBytes_3() { return &___zeroBytes_3; } inline void set_zeroBytes_3(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___zeroBytes_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___zeroBytes_3), (void*)value); } }; struct DerNull_t020168AF07318033108544C00C803CD7AEB97239_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerNull BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerNull::Instance DerNull_t020168AF07318033108544C00C803CD7AEB97239 * ___Instance_2; public: inline static int32_t get_offset_of_Instance_2() { return static_cast(offsetof(DerNull_t020168AF07318033108544C00C803CD7AEB97239_StaticFields, ___Instance_2)); } inline DerNull_t020168AF07318033108544C00C803CD7AEB97239 * get_Instance_2() const { return ___Instance_2; } inline DerNull_t020168AF07318033108544C00C803CD7AEB97239 ** get_address_of_Instance_2() { return &___Instance_2; } inline void set_Instance_2(DerNull_t020168AF07318033108544C00C803CD7AEB97239 * value) { ___Instance_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___Instance_2), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerOctetString struct DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75 : public Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 { public: public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerSequence struct DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 : public Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 { public: public: }; struct DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerSequence BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerSequence::Empty DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 * ___Empty_3; public: inline static int32_t get_offset_of_Empty_3() { return static_cast(offsetof(DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09_StaticFields, ___Empty_3)); } inline DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 * get_Empty_3() const { return ___Empty_3; } inline DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 ** get_address_of_Empty_3() { return &___Empty_3; } inline void set_Empty_3(DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 * value) { ___Empty_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___Empty_3), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerTaggedObject struct DerTaggedObject_t88BB573E2BED5C1D2971741E012BB29FB0EB0C5E : public Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0 { public: public: }; // UnityEngine.GUILayoutOption struct GUILayoutOption_t2D992ABCB62BEB24A6F4A826A5CBE7AE236071AB : public RuntimeObject { public: // UnityEngine.GUILayoutOption/Type UnityEngine.GUILayoutOption::type int32_t ___type_0; // System.Object UnityEngine.GUILayoutOption::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_type_0() { return static_cast(offsetof(GUILayoutOption_t2D992ABCB62BEB24A6F4A826A5CBE7AE236071AB, ___type_0)); } inline int32_t get_type_0() const { return ___type_0; } inline int32_t* get_address_of_type_0() { return &___type_0; } inline void set_type_0(int32_t value) { ___type_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast(offsetof(GUILayoutOption_t2D992ABCB62BEB24A6F4A826A5CBE7AE236071AB, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.GeneralSecurityException struct GeneralSecurityException_tB77B003D334D962B16ED6BEB5AD4567AD5B618BA : public Exception_t { public: public: }; // BestHTTP.HTTPRequest struct HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 : public RuntimeObject { public: // System.Uri BestHTTP.HTTPRequest::k__BackingField Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___U3CUriU3Ek__BackingField_3; // BestHTTP.HTTPMethods BestHTTP.HTTPRequest::k__BackingField uint8_t ___U3CMethodTypeU3Ek__BackingField_4; // System.Byte[] BestHTTP.HTTPRequest::k__BackingField ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___U3CRawDataU3Ek__BackingField_5; // System.IO.Stream BestHTTP.HTTPRequest::k__BackingField Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___U3CUploadStreamU3Ek__BackingField_6; // System.Boolean BestHTTP.HTTPRequest::k__BackingField bool ___U3CDisposeUploadStreamU3Ek__BackingField_7; // System.Boolean BestHTTP.HTTPRequest::k__BackingField bool ___U3CUseUploadStreamLengthU3Ek__BackingField_8; // BestHTTP.OnUploadProgressDelegate BestHTTP.HTTPRequest::OnUploadProgress OnUploadProgressDelegate_tA62D192773A1C4C68D3049C26CC8CD42AF64843D * ___OnUploadProgress_9; // System.Int32 BestHTTP.HTTPRequest::k__BackingField int32_t ___U3CMaxFragmentQueueLengthU3Ek__BackingField_10; // BestHTTP.OnRequestFinishedDelegate BestHTTP.HTTPRequest::k__BackingField OnRequestFinishedDelegate_t4E35BB5277ED27A8B43D1987DE7F3B47772018B4 * ___U3CCallbackU3Ek__BackingField_11; // BestHTTP.OnDownloadProgressDelegate BestHTTP.HTTPRequest::OnProgress OnDownloadProgressDelegate_t648A73937F176382A3E8E1252C79989D5EBC4F69 * ___OnProgress_12; // BestHTTP.OnRequestFinishedDelegate BestHTTP.HTTPRequest::OnUpgraded OnRequestFinishedDelegate_t4E35BB5277ED27A8B43D1987DE7F3B47772018B4 * ___OnUpgraded_13; // System.Boolean BestHTTP.HTTPRequest::k__BackingField bool ___U3CDisableRetryU3Ek__BackingField_14; // System.Boolean BestHTTP.HTTPRequest::k__BackingField bool ___U3CIsRedirectedU3Ek__BackingField_15; // System.Uri BestHTTP.HTTPRequest::k__BackingField Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___U3CRedirectUriU3Ek__BackingField_16; // BestHTTP.HTTPResponse BestHTTP.HTTPRequest::k__BackingField HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * ___U3CResponseU3Ek__BackingField_17; // BestHTTP.HTTPResponse BestHTTP.HTTPRequest::k__BackingField HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * ___U3CProxyResponseU3Ek__BackingField_18; // System.Exception BestHTTP.HTTPRequest::k__BackingField Exception_t * ___U3CExceptionU3Ek__BackingField_19; // System.Object BestHTTP.HTTPRequest::k__BackingField RuntimeObject * ___U3CTagU3Ek__BackingField_20; // BestHTTP.Authentication.Credentials BestHTTP.HTTPRequest::k__BackingField Credentials_tD6C60AC7DFFD64212481FBCB4AF02846196F5CE8 * ___U3CCredentialsU3Ek__BackingField_21; // BestHTTP.Proxy BestHTTP.HTTPRequest::k__BackingField Proxy_t84F0DDAE5A37016479C7094FFB8F78835B8BD4F6 * ___U3CProxyU3Ek__BackingField_22; // System.Int32 BestHTTP.HTTPRequest::k__BackingField int32_t ___U3CMaxRedirectsU3Ek__BackingField_23; // System.Boolean BestHTTP.HTTPRequest::k__BackingField bool ___U3CUseAlternateSSLU3Ek__BackingField_24; // System.Boolean BestHTTP.HTTPRequest::k__BackingField bool ___U3CIsCookiesEnabledU3Ek__BackingField_25; // System.Collections.Generic.List`1 BestHTTP.HTTPRequest::customCookies List_1_tF9D8E572A8599785D6C36AD7BDC592752B89E0A1 * ___customCookies_26; // BestHTTP.Forms.HTTPFormUsage BestHTTP.HTTPRequest::k__BackingField int32_t ___U3CFormUsageU3Ek__BackingField_27; // BestHTTP.HTTPRequestStates BestHTTP.HTTPRequest::k__BackingField int32_t ___U3CStateU3Ek__BackingField_28; // System.Int32 BestHTTP.HTTPRequest::k__BackingField int32_t ___U3CRedirectCountU3Ek__BackingField_29; // System.Func`4 BestHTTP.HTTPRequest::CustomCertificationValidator Func_4_t0EA5243FC4B656A18B7AC7B130FD78666AA9FE84 * ___CustomCertificationValidator_30; // System.TimeSpan BestHTTP.HTTPRequest::k__BackingField TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___U3CConnectTimeoutU3Ek__BackingField_31; // System.TimeSpan BestHTTP.HTTPRequest::k__BackingField TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___U3CTimeoutU3Ek__BackingField_32; // System.Boolean BestHTTP.HTTPRequest::k__BackingField bool ___U3CEnableTimoutForStreamingU3Ek__BackingField_33; // System.Boolean BestHTTP.HTTPRequest::k__BackingField bool ___U3CEnableSafeReadOnUnknownContentLengthU3Ek__BackingField_34; // System.Int32 BestHTTP.HTTPRequest::k__BackingField int32_t ___U3CPriorityU3Ek__BackingField_35; // Org.BouncyCastle.Crypto.Tls2.ICertificateVerifyer BestHTTP.HTTPRequest::k__BackingField RuntimeObject* ___U3CCustomCertificateVerifyerU3Ek__BackingField_36; // Org.BouncyCastle.Crypto.Tls2.IClientCredentialsProvider BestHTTP.HTTPRequest::k__BackingField RuntimeObject* ___U3CCustomClientCredentialsProviderU3Ek__BackingField_37; // System.Collections.Generic.List`1 BestHTTP.HTTPRequest::k__BackingField List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * ___U3CCustomTLSServerNameListU3Ek__BackingField_38; // BestHTTP.SupportedProtocols BestHTTP.HTTPRequest::k__BackingField int32_t ___U3CProtocolHandlerU3Ek__BackingField_39; // BestHTTP.OnBeforeRedirectionDelegate BestHTTP.HTTPRequest::onBeforeRedirection OnBeforeRedirectionDelegate_t81B75D27201DA4FD218ADB97B6FCF92A176AE238 * ___onBeforeRedirection_40; // BestHTTP.OnBeforeHeaderSendDelegate BestHTTP.HTTPRequest::_onBeforeHeaderSend OnBeforeHeaderSendDelegate_t14E6C0AF9AE042EBCE08E9B5911D7327A37DE05F * ____onBeforeHeaderSend_41; // System.Boolean BestHTTP.HTTPRequest::k__BackingField bool ___U3CTryToMinimizeTCPLatencyU3Ek__BackingField_42; // System.Int64 BestHTTP.HTTPRequest::k__BackingField int64_t ___U3CDownloadedU3Ek__BackingField_43; // System.Int64 BestHTTP.HTTPRequest::k__BackingField int64_t ___U3CDownloadLengthU3Ek__BackingField_44; // System.Boolean BestHTTP.HTTPRequest::k__BackingField bool ___U3CDownloadProgressChangedU3Ek__BackingField_45; // System.Int64 BestHTTP.HTTPRequest::k__BackingField int64_t ___U3CUploadedU3Ek__BackingField_46; // System.Int64 BestHTTP.HTTPRequest::k__BackingField int64_t ___U3CUploadLengthU3Ek__BackingField_47; // System.Boolean BestHTTP.HTTPRequest::k__BackingField bool ___U3CUploadProgressChangedU3Ek__BackingField_48; // System.Boolean BestHTTP.HTTPRequest::isKeepAlive bool ___isKeepAlive_49; // System.Boolean BestHTTP.HTTPRequest::disableCache bool ___disableCache_50; // System.Boolean BestHTTP.HTTPRequest::cacheOnly bool ___cacheOnly_51; // System.Int32 BestHTTP.HTTPRequest::streamFragmentSize int32_t ___streamFragmentSize_52; // System.Boolean BestHTTP.HTTPRequest::useStreaming bool ___useStreaming_53; // System.Collections.Generic.Dictionary`2> BestHTTP.HTTPRequest::k__BackingField Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086 * ___U3CHeadersU3Ek__BackingField_54; // BestHTTP.Forms.HTTPFormBase BestHTTP.HTTPRequest::FieldCollector HTTPFormBase_t62B2F52574B8465343CE4B246C6021BC42A45BF2 * ___FieldCollector_55; // BestHTTP.Forms.HTTPFormBase BestHTTP.HTTPRequest::FormImpl HTTPFormBase_t62B2F52574B8465343CE4B246C6021BC42A45BF2 * ___FormImpl_56; public: inline static int32_t get_offset_of_U3CUriU3Ek__BackingField_3() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CUriU3Ek__BackingField_3)); } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * get_U3CUriU3Ek__BackingField_3() const { return ___U3CUriU3Ek__BackingField_3; } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 ** get_address_of_U3CUriU3Ek__BackingField_3() { return &___U3CUriU3Ek__BackingField_3; } inline void set_U3CUriU3Ek__BackingField_3(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * value) { ___U3CUriU3Ek__BackingField_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CUriU3Ek__BackingField_3), (void*)value); } inline static int32_t get_offset_of_U3CMethodTypeU3Ek__BackingField_4() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CMethodTypeU3Ek__BackingField_4)); } inline uint8_t get_U3CMethodTypeU3Ek__BackingField_4() const { return ___U3CMethodTypeU3Ek__BackingField_4; } inline uint8_t* get_address_of_U3CMethodTypeU3Ek__BackingField_4() { return &___U3CMethodTypeU3Ek__BackingField_4; } inline void set_U3CMethodTypeU3Ek__BackingField_4(uint8_t value) { ___U3CMethodTypeU3Ek__BackingField_4 = value; } inline static int32_t get_offset_of_U3CRawDataU3Ek__BackingField_5() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CRawDataU3Ek__BackingField_5)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_U3CRawDataU3Ek__BackingField_5() const { return ___U3CRawDataU3Ek__BackingField_5; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_U3CRawDataU3Ek__BackingField_5() { return &___U3CRawDataU3Ek__BackingField_5; } inline void set_U3CRawDataU3Ek__BackingField_5(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___U3CRawDataU3Ek__BackingField_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CRawDataU3Ek__BackingField_5), (void*)value); } inline static int32_t get_offset_of_U3CUploadStreamU3Ek__BackingField_6() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CUploadStreamU3Ek__BackingField_6)); } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_U3CUploadStreamU3Ek__BackingField_6() const { return ___U3CUploadStreamU3Ek__BackingField_6; } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_U3CUploadStreamU3Ek__BackingField_6() { return &___U3CUploadStreamU3Ek__BackingField_6; } inline void set_U3CUploadStreamU3Ek__BackingField_6(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value) { ___U3CUploadStreamU3Ek__BackingField_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CUploadStreamU3Ek__BackingField_6), (void*)value); } inline static int32_t get_offset_of_U3CDisposeUploadStreamU3Ek__BackingField_7() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CDisposeUploadStreamU3Ek__BackingField_7)); } inline bool get_U3CDisposeUploadStreamU3Ek__BackingField_7() const { return ___U3CDisposeUploadStreamU3Ek__BackingField_7; } inline bool* get_address_of_U3CDisposeUploadStreamU3Ek__BackingField_7() { return &___U3CDisposeUploadStreamU3Ek__BackingField_7; } inline void set_U3CDisposeUploadStreamU3Ek__BackingField_7(bool value) { ___U3CDisposeUploadStreamU3Ek__BackingField_7 = value; } inline static int32_t get_offset_of_U3CUseUploadStreamLengthU3Ek__BackingField_8() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CUseUploadStreamLengthU3Ek__BackingField_8)); } inline bool get_U3CUseUploadStreamLengthU3Ek__BackingField_8() const { return ___U3CUseUploadStreamLengthU3Ek__BackingField_8; } inline bool* get_address_of_U3CUseUploadStreamLengthU3Ek__BackingField_8() { return &___U3CUseUploadStreamLengthU3Ek__BackingField_8; } inline void set_U3CUseUploadStreamLengthU3Ek__BackingField_8(bool value) { ___U3CUseUploadStreamLengthU3Ek__BackingField_8 = value; } inline static int32_t get_offset_of_OnUploadProgress_9() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___OnUploadProgress_9)); } inline OnUploadProgressDelegate_tA62D192773A1C4C68D3049C26CC8CD42AF64843D * get_OnUploadProgress_9() const { return ___OnUploadProgress_9; } inline OnUploadProgressDelegate_tA62D192773A1C4C68D3049C26CC8CD42AF64843D ** get_address_of_OnUploadProgress_9() { return &___OnUploadProgress_9; } inline void set_OnUploadProgress_9(OnUploadProgressDelegate_tA62D192773A1C4C68D3049C26CC8CD42AF64843D * value) { ___OnUploadProgress_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnUploadProgress_9), (void*)value); } inline static int32_t get_offset_of_U3CMaxFragmentQueueLengthU3Ek__BackingField_10() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CMaxFragmentQueueLengthU3Ek__BackingField_10)); } inline int32_t get_U3CMaxFragmentQueueLengthU3Ek__BackingField_10() const { return ___U3CMaxFragmentQueueLengthU3Ek__BackingField_10; } inline int32_t* get_address_of_U3CMaxFragmentQueueLengthU3Ek__BackingField_10() { return &___U3CMaxFragmentQueueLengthU3Ek__BackingField_10; } inline void set_U3CMaxFragmentQueueLengthU3Ek__BackingField_10(int32_t value) { ___U3CMaxFragmentQueueLengthU3Ek__BackingField_10 = value; } inline static int32_t get_offset_of_U3CCallbackU3Ek__BackingField_11() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CCallbackU3Ek__BackingField_11)); } inline OnRequestFinishedDelegate_t4E35BB5277ED27A8B43D1987DE7F3B47772018B4 * get_U3CCallbackU3Ek__BackingField_11() const { return ___U3CCallbackU3Ek__BackingField_11; } inline OnRequestFinishedDelegate_t4E35BB5277ED27A8B43D1987DE7F3B47772018B4 ** get_address_of_U3CCallbackU3Ek__BackingField_11() { return &___U3CCallbackU3Ek__BackingField_11; } inline void set_U3CCallbackU3Ek__BackingField_11(OnRequestFinishedDelegate_t4E35BB5277ED27A8B43D1987DE7F3B47772018B4 * value) { ___U3CCallbackU3Ek__BackingField_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CCallbackU3Ek__BackingField_11), (void*)value); } inline static int32_t get_offset_of_OnProgress_12() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___OnProgress_12)); } inline OnDownloadProgressDelegate_t648A73937F176382A3E8E1252C79989D5EBC4F69 * get_OnProgress_12() const { return ___OnProgress_12; } inline OnDownloadProgressDelegate_t648A73937F176382A3E8E1252C79989D5EBC4F69 ** get_address_of_OnProgress_12() { return &___OnProgress_12; } inline void set_OnProgress_12(OnDownloadProgressDelegate_t648A73937F176382A3E8E1252C79989D5EBC4F69 * value) { ___OnProgress_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnProgress_12), (void*)value); } inline static int32_t get_offset_of_OnUpgraded_13() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___OnUpgraded_13)); } inline OnRequestFinishedDelegate_t4E35BB5277ED27A8B43D1987DE7F3B47772018B4 * get_OnUpgraded_13() const { return ___OnUpgraded_13; } inline OnRequestFinishedDelegate_t4E35BB5277ED27A8B43D1987DE7F3B47772018B4 ** get_address_of_OnUpgraded_13() { return &___OnUpgraded_13; } inline void set_OnUpgraded_13(OnRequestFinishedDelegate_t4E35BB5277ED27A8B43D1987DE7F3B47772018B4 * value) { ___OnUpgraded_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnUpgraded_13), (void*)value); } inline static int32_t get_offset_of_U3CDisableRetryU3Ek__BackingField_14() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CDisableRetryU3Ek__BackingField_14)); } inline bool get_U3CDisableRetryU3Ek__BackingField_14() const { return ___U3CDisableRetryU3Ek__BackingField_14; } inline bool* get_address_of_U3CDisableRetryU3Ek__BackingField_14() { return &___U3CDisableRetryU3Ek__BackingField_14; } inline void set_U3CDisableRetryU3Ek__BackingField_14(bool value) { ___U3CDisableRetryU3Ek__BackingField_14 = value; } inline static int32_t get_offset_of_U3CIsRedirectedU3Ek__BackingField_15() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CIsRedirectedU3Ek__BackingField_15)); } inline bool get_U3CIsRedirectedU3Ek__BackingField_15() const { return ___U3CIsRedirectedU3Ek__BackingField_15; } inline bool* get_address_of_U3CIsRedirectedU3Ek__BackingField_15() { return &___U3CIsRedirectedU3Ek__BackingField_15; } inline void set_U3CIsRedirectedU3Ek__BackingField_15(bool value) { ___U3CIsRedirectedU3Ek__BackingField_15 = value; } inline static int32_t get_offset_of_U3CRedirectUriU3Ek__BackingField_16() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CRedirectUriU3Ek__BackingField_16)); } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * get_U3CRedirectUriU3Ek__BackingField_16() const { return ___U3CRedirectUriU3Ek__BackingField_16; } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 ** get_address_of_U3CRedirectUriU3Ek__BackingField_16() { return &___U3CRedirectUriU3Ek__BackingField_16; } inline void set_U3CRedirectUriU3Ek__BackingField_16(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * value) { ___U3CRedirectUriU3Ek__BackingField_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CRedirectUriU3Ek__BackingField_16), (void*)value); } inline static int32_t get_offset_of_U3CResponseU3Ek__BackingField_17() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CResponseU3Ek__BackingField_17)); } inline HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * get_U3CResponseU3Ek__BackingField_17() const { return ___U3CResponseU3Ek__BackingField_17; } inline HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD ** get_address_of_U3CResponseU3Ek__BackingField_17() { return &___U3CResponseU3Ek__BackingField_17; } inline void set_U3CResponseU3Ek__BackingField_17(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * value) { ___U3CResponseU3Ek__BackingField_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CResponseU3Ek__BackingField_17), (void*)value); } inline static int32_t get_offset_of_U3CProxyResponseU3Ek__BackingField_18() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CProxyResponseU3Ek__BackingField_18)); } inline HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * get_U3CProxyResponseU3Ek__BackingField_18() const { return ___U3CProxyResponseU3Ek__BackingField_18; } inline HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD ** get_address_of_U3CProxyResponseU3Ek__BackingField_18() { return &___U3CProxyResponseU3Ek__BackingField_18; } inline void set_U3CProxyResponseU3Ek__BackingField_18(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * value) { ___U3CProxyResponseU3Ek__BackingField_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CProxyResponseU3Ek__BackingField_18), (void*)value); } inline static int32_t get_offset_of_U3CExceptionU3Ek__BackingField_19() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CExceptionU3Ek__BackingField_19)); } inline Exception_t * get_U3CExceptionU3Ek__BackingField_19() const { return ___U3CExceptionU3Ek__BackingField_19; } inline Exception_t ** get_address_of_U3CExceptionU3Ek__BackingField_19() { return &___U3CExceptionU3Ek__BackingField_19; } inline void set_U3CExceptionU3Ek__BackingField_19(Exception_t * value) { ___U3CExceptionU3Ek__BackingField_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CExceptionU3Ek__BackingField_19), (void*)value); } inline static int32_t get_offset_of_U3CTagU3Ek__BackingField_20() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CTagU3Ek__BackingField_20)); } inline RuntimeObject * get_U3CTagU3Ek__BackingField_20() const { return ___U3CTagU3Ek__BackingField_20; } inline RuntimeObject ** get_address_of_U3CTagU3Ek__BackingField_20() { return &___U3CTagU3Ek__BackingField_20; } inline void set_U3CTagU3Ek__BackingField_20(RuntimeObject * value) { ___U3CTagU3Ek__BackingField_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CTagU3Ek__BackingField_20), (void*)value); } inline static int32_t get_offset_of_U3CCredentialsU3Ek__BackingField_21() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CCredentialsU3Ek__BackingField_21)); } inline Credentials_tD6C60AC7DFFD64212481FBCB4AF02846196F5CE8 * get_U3CCredentialsU3Ek__BackingField_21() const { return ___U3CCredentialsU3Ek__BackingField_21; } inline Credentials_tD6C60AC7DFFD64212481FBCB4AF02846196F5CE8 ** get_address_of_U3CCredentialsU3Ek__BackingField_21() { return &___U3CCredentialsU3Ek__BackingField_21; } inline void set_U3CCredentialsU3Ek__BackingField_21(Credentials_tD6C60AC7DFFD64212481FBCB4AF02846196F5CE8 * value) { ___U3CCredentialsU3Ek__BackingField_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CCredentialsU3Ek__BackingField_21), (void*)value); } inline static int32_t get_offset_of_U3CProxyU3Ek__BackingField_22() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CProxyU3Ek__BackingField_22)); } inline Proxy_t84F0DDAE5A37016479C7094FFB8F78835B8BD4F6 * get_U3CProxyU3Ek__BackingField_22() const { return ___U3CProxyU3Ek__BackingField_22; } inline Proxy_t84F0DDAE5A37016479C7094FFB8F78835B8BD4F6 ** get_address_of_U3CProxyU3Ek__BackingField_22() { return &___U3CProxyU3Ek__BackingField_22; } inline void set_U3CProxyU3Ek__BackingField_22(Proxy_t84F0DDAE5A37016479C7094FFB8F78835B8BD4F6 * value) { ___U3CProxyU3Ek__BackingField_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CProxyU3Ek__BackingField_22), (void*)value); } inline static int32_t get_offset_of_U3CMaxRedirectsU3Ek__BackingField_23() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CMaxRedirectsU3Ek__BackingField_23)); } inline int32_t get_U3CMaxRedirectsU3Ek__BackingField_23() const { return ___U3CMaxRedirectsU3Ek__BackingField_23; } inline int32_t* get_address_of_U3CMaxRedirectsU3Ek__BackingField_23() { return &___U3CMaxRedirectsU3Ek__BackingField_23; } inline void set_U3CMaxRedirectsU3Ek__BackingField_23(int32_t value) { ___U3CMaxRedirectsU3Ek__BackingField_23 = value; } inline static int32_t get_offset_of_U3CUseAlternateSSLU3Ek__BackingField_24() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CUseAlternateSSLU3Ek__BackingField_24)); } inline bool get_U3CUseAlternateSSLU3Ek__BackingField_24() const { return ___U3CUseAlternateSSLU3Ek__BackingField_24; } inline bool* get_address_of_U3CUseAlternateSSLU3Ek__BackingField_24() { return &___U3CUseAlternateSSLU3Ek__BackingField_24; } inline void set_U3CUseAlternateSSLU3Ek__BackingField_24(bool value) { ___U3CUseAlternateSSLU3Ek__BackingField_24 = value; } inline static int32_t get_offset_of_U3CIsCookiesEnabledU3Ek__BackingField_25() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CIsCookiesEnabledU3Ek__BackingField_25)); } inline bool get_U3CIsCookiesEnabledU3Ek__BackingField_25() const { return ___U3CIsCookiesEnabledU3Ek__BackingField_25; } inline bool* get_address_of_U3CIsCookiesEnabledU3Ek__BackingField_25() { return &___U3CIsCookiesEnabledU3Ek__BackingField_25; } inline void set_U3CIsCookiesEnabledU3Ek__BackingField_25(bool value) { ___U3CIsCookiesEnabledU3Ek__BackingField_25 = value; } inline static int32_t get_offset_of_customCookies_26() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___customCookies_26)); } inline List_1_tF9D8E572A8599785D6C36AD7BDC592752B89E0A1 * get_customCookies_26() const { return ___customCookies_26; } inline List_1_tF9D8E572A8599785D6C36AD7BDC592752B89E0A1 ** get_address_of_customCookies_26() { return &___customCookies_26; } inline void set_customCookies_26(List_1_tF9D8E572A8599785D6C36AD7BDC592752B89E0A1 * value) { ___customCookies_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___customCookies_26), (void*)value); } inline static int32_t get_offset_of_U3CFormUsageU3Ek__BackingField_27() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CFormUsageU3Ek__BackingField_27)); } inline int32_t get_U3CFormUsageU3Ek__BackingField_27() const { return ___U3CFormUsageU3Ek__BackingField_27; } inline int32_t* get_address_of_U3CFormUsageU3Ek__BackingField_27() { return &___U3CFormUsageU3Ek__BackingField_27; } inline void set_U3CFormUsageU3Ek__BackingField_27(int32_t value) { ___U3CFormUsageU3Ek__BackingField_27 = value; } inline static int32_t get_offset_of_U3CStateU3Ek__BackingField_28() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CStateU3Ek__BackingField_28)); } inline int32_t get_U3CStateU3Ek__BackingField_28() const { return ___U3CStateU3Ek__BackingField_28; } inline int32_t* get_address_of_U3CStateU3Ek__BackingField_28() { return &___U3CStateU3Ek__BackingField_28; } inline void set_U3CStateU3Ek__BackingField_28(int32_t value) { ___U3CStateU3Ek__BackingField_28 = value; } inline static int32_t get_offset_of_U3CRedirectCountU3Ek__BackingField_29() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CRedirectCountU3Ek__BackingField_29)); } inline int32_t get_U3CRedirectCountU3Ek__BackingField_29() const { return ___U3CRedirectCountU3Ek__BackingField_29; } inline int32_t* get_address_of_U3CRedirectCountU3Ek__BackingField_29() { return &___U3CRedirectCountU3Ek__BackingField_29; } inline void set_U3CRedirectCountU3Ek__BackingField_29(int32_t value) { ___U3CRedirectCountU3Ek__BackingField_29 = value; } inline static int32_t get_offset_of_CustomCertificationValidator_30() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___CustomCertificationValidator_30)); } inline Func_4_t0EA5243FC4B656A18B7AC7B130FD78666AA9FE84 * get_CustomCertificationValidator_30() const { return ___CustomCertificationValidator_30; } inline Func_4_t0EA5243FC4B656A18B7AC7B130FD78666AA9FE84 ** get_address_of_CustomCertificationValidator_30() { return &___CustomCertificationValidator_30; } inline void set_CustomCertificationValidator_30(Func_4_t0EA5243FC4B656A18B7AC7B130FD78666AA9FE84 * value) { ___CustomCertificationValidator_30 = value; Il2CppCodeGenWriteBarrier((void**)(&___CustomCertificationValidator_30), (void*)value); } inline static int32_t get_offset_of_U3CConnectTimeoutU3Ek__BackingField_31() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CConnectTimeoutU3Ek__BackingField_31)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_U3CConnectTimeoutU3Ek__BackingField_31() const { return ___U3CConnectTimeoutU3Ek__BackingField_31; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_U3CConnectTimeoutU3Ek__BackingField_31() { return &___U3CConnectTimeoutU3Ek__BackingField_31; } inline void set_U3CConnectTimeoutU3Ek__BackingField_31(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___U3CConnectTimeoutU3Ek__BackingField_31 = value; } inline static int32_t get_offset_of_U3CTimeoutU3Ek__BackingField_32() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CTimeoutU3Ek__BackingField_32)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_U3CTimeoutU3Ek__BackingField_32() const { return ___U3CTimeoutU3Ek__BackingField_32; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_U3CTimeoutU3Ek__BackingField_32() { return &___U3CTimeoutU3Ek__BackingField_32; } inline void set_U3CTimeoutU3Ek__BackingField_32(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___U3CTimeoutU3Ek__BackingField_32 = value; } inline static int32_t get_offset_of_U3CEnableTimoutForStreamingU3Ek__BackingField_33() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CEnableTimoutForStreamingU3Ek__BackingField_33)); } inline bool get_U3CEnableTimoutForStreamingU3Ek__BackingField_33() const { return ___U3CEnableTimoutForStreamingU3Ek__BackingField_33; } inline bool* get_address_of_U3CEnableTimoutForStreamingU3Ek__BackingField_33() { return &___U3CEnableTimoutForStreamingU3Ek__BackingField_33; } inline void set_U3CEnableTimoutForStreamingU3Ek__BackingField_33(bool value) { ___U3CEnableTimoutForStreamingU3Ek__BackingField_33 = value; } inline static int32_t get_offset_of_U3CEnableSafeReadOnUnknownContentLengthU3Ek__BackingField_34() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CEnableSafeReadOnUnknownContentLengthU3Ek__BackingField_34)); } inline bool get_U3CEnableSafeReadOnUnknownContentLengthU3Ek__BackingField_34() const { return ___U3CEnableSafeReadOnUnknownContentLengthU3Ek__BackingField_34; } inline bool* get_address_of_U3CEnableSafeReadOnUnknownContentLengthU3Ek__BackingField_34() { return &___U3CEnableSafeReadOnUnknownContentLengthU3Ek__BackingField_34; } inline void set_U3CEnableSafeReadOnUnknownContentLengthU3Ek__BackingField_34(bool value) { ___U3CEnableSafeReadOnUnknownContentLengthU3Ek__BackingField_34 = value; } inline static int32_t get_offset_of_U3CPriorityU3Ek__BackingField_35() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CPriorityU3Ek__BackingField_35)); } inline int32_t get_U3CPriorityU3Ek__BackingField_35() const { return ___U3CPriorityU3Ek__BackingField_35; } inline int32_t* get_address_of_U3CPriorityU3Ek__BackingField_35() { return &___U3CPriorityU3Ek__BackingField_35; } inline void set_U3CPriorityU3Ek__BackingField_35(int32_t value) { ___U3CPriorityU3Ek__BackingField_35 = value; } inline static int32_t get_offset_of_U3CCustomCertificateVerifyerU3Ek__BackingField_36() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CCustomCertificateVerifyerU3Ek__BackingField_36)); } inline RuntimeObject* get_U3CCustomCertificateVerifyerU3Ek__BackingField_36() const { return ___U3CCustomCertificateVerifyerU3Ek__BackingField_36; } inline RuntimeObject** get_address_of_U3CCustomCertificateVerifyerU3Ek__BackingField_36() { return &___U3CCustomCertificateVerifyerU3Ek__BackingField_36; } inline void set_U3CCustomCertificateVerifyerU3Ek__BackingField_36(RuntimeObject* value) { ___U3CCustomCertificateVerifyerU3Ek__BackingField_36 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CCustomCertificateVerifyerU3Ek__BackingField_36), (void*)value); } inline static int32_t get_offset_of_U3CCustomClientCredentialsProviderU3Ek__BackingField_37() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CCustomClientCredentialsProviderU3Ek__BackingField_37)); } inline RuntimeObject* get_U3CCustomClientCredentialsProviderU3Ek__BackingField_37() const { return ___U3CCustomClientCredentialsProviderU3Ek__BackingField_37; } inline RuntimeObject** get_address_of_U3CCustomClientCredentialsProviderU3Ek__BackingField_37() { return &___U3CCustomClientCredentialsProviderU3Ek__BackingField_37; } inline void set_U3CCustomClientCredentialsProviderU3Ek__BackingField_37(RuntimeObject* value) { ___U3CCustomClientCredentialsProviderU3Ek__BackingField_37 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CCustomClientCredentialsProviderU3Ek__BackingField_37), (void*)value); } inline static int32_t get_offset_of_U3CCustomTLSServerNameListU3Ek__BackingField_38() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CCustomTLSServerNameListU3Ek__BackingField_38)); } inline List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * get_U3CCustomTLSServerNameListU3Ek__BackingField_38() const { return ___U3CCustomTLSServerNameListU3Ek__BackingField_38; } inline List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 ** get_address_of_U3CCustomTLSServerNameListU3Ek__BackingField_38() { return &___U3CCustomTLSServerNameListU3Ek__BackingField_38; } inline void set_U3CCustomTLSServerNameListU3Ek__BackingField_38(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * value) { ___U3CCustomTLSServerNameListU3Ek__BackingField_38 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CCustomTLSServerNameListU3Ek__BackingField_38), (void*)value); } inline static int32_t get_offset_of_U3CProtocolHandlerU3Ek__BackingField_39() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CProtocolHandlerU3Ek__BackingField_39)); } inline int32_t get_U3CProtocolHandlerU3Ek__BackingField_39() const { return ___U3CProtocolHandlerU3Ek__BackingField_39; } inline int32_t* get_address_of_U3CProtocolHandlerU3Ek__BackingField_39() { return &___U3CProtocolHandlerU3Ek__BackingField_39; } inline void set_U3CProtocolHandlerU3Ek__BackingField_39(int32_t value) { ___U3CProtocolHandlerU3Ek__BackingField_39 = value; } inline static int32_t get_offset_of_onBeforeRedirection_40() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___onBeforeRedirection_40)); } inline OnBeforeRedirectionDelegate_t81B75D27201DA4FD218ADB97B6FCF92A176AE238 * get_onBeforeRedirection_40() const { return ___onBeforeRedirection_40; } inline OnBeforeRedirectionDelegate_t81B75D27201DA4FD218ADB97B6FCF92A176AE238 ** get_address_of_onBeforeRedirection_40() { return &___onBeforeRedirection_40; } inline void set_onBeforeRedirection_40(OnBeforeRedirectionDelegate_t81B75D27201DA4FD218ADB97B6FCF92A176AE238 * value) { ___onBeforeRedirection_40 = value; Il2CppCodeGenWriteBarrier((void**)(&___onBeforeRedirection_40), (void*)value); } inline static int32_t get_offset_of__onBeforeHeaderSend_41() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ____onBeforeHeaderSend_41)); } inline OnBeforeHeaderSendDelegate_t14E6C0AF9AE042EBCE08E9B5911D7327A37DE05F * get__onBeforeHeaderSend_41() const { return ____onBeforeHeaderSend_41; } inline OnBeforeHeaderSendDelegate_t14E6C0AF9AE042EBCE08E9B5911D7327A37DE05F ** get_address_of__onBeforeHeaderSend_41() { return &____onBeforeHeaderSend_41; } inline void set__onBeforeHeaderSend_41(OnBeforeHeaderSendDelegate_t14E6C0AF9AE042EBCE08E9B5911D7327A37DE05F * value) { ____onBeforeHeaderSend_41 = value; Il2CppCodeGenWriteBarrier((void**)(&____onBeforeHeaderSend_41), (void*)value); } inline static int32_t get_offset_of_U3CTryToMinimizeTCPLatencyU3Ek__BackingField_42() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CTryToMinimizeTCPLatencyU3Ek__BackingField_42)); } inline bool get_U3CTryToMinimizeTCPLatencyU3Ek__BackingField_42() const { return ___U3CTryToMinimizeTCPLatencyU3Ek__BackingField_42; } inline bool* get_address_of_U3CTryToMinimizeTCPLatencyU3Ek__BackingField_42() { return &___U3CTryToMinimizeTCPLatencyU3Ek__BackingField_42; } inline void set_U3CTryToMinimizeTCPLatencyU3Ek__BackingField_42(bool value) { ___U3CTryToMinimizeTCPLatencyU3Ek__BackingField_42 = value; } inline static int32_t get_offset_of_U3CDownloadedU3Ek__BackingField_43() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CDownloadedU3Ek__BackingField_43)); } inline int64_t get_U3CDownloadedU3Ek__BackingField_43() const { return ___U3CDownloadedU3Ek__BackingField_43; } inline int64_t* get_address_of_U3CDownloadedU3Ek__BackingField_43() { return &___U3CDownloadedU3Ek__BackingField_43; } inline void set_U3CDownloadedU3Ek__BackingField_43(int64_t value) { ___U3CDownloadedU3Ek__BackingField_43 = value; } inline static int32_t get_offset_of_U3CDownloadLengthU3Ek__BackingField_44() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CDownloadLengthU3Ek__BackingField_44)); } inline int64_t get_U3CDownloadLengthU3Ek__BackingField_44() const { return ___U3CDownloadLengthU3Ek__BackingField_44; } inline int64_t* get_address_of_U3CDownloadLengthU3Ek__BackingField_44() { return &___U3CDownloadLengthU3Ek__BackingField_44; } inline void set_U3CDownloadLengthU3Ek__BackingField_44(int64_t value) { ___U3CDownloadLengthU3Ek__BackingField_44 = value; } inline static int32_t get_offset_of_U3CDownloadProgressChangedU3Ek__BackingField_45() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CDownloadProgressChangedU3Ek__BackingField_45)); } inline bool get_U3CDownloadProgressChangedU3Ek__BackingField_45() const { return ___U3CDownloadProgressChangedU3Ek__BackingField_45; } inline bool* get_address_of_U3CDownloadProgressChangedU3Ek__BackingField_45() { return &___U3CDownloadProgressChangedU3Ek__BackingField_45; } inline void set_U3CDownloadProgressChangedU3Ek__BackingField_45(bool value) { ___U3CDownloadProgressChangedU3Ek__BackingField_45 = value; } inline static int32_t get_offset_of_U3CUploadedU3Ek__BackingField_46() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CUploadedU3Ek__BackingField_46)); } inline int64_t get_U3CUploadedU3Ek__BackingField_46() const { return ___U3CUploadedU3Ek__BackingField_46; } inline int64_t* get_address_of_U3CUploadedU3Ek__BackingField_46() { return &___U3CUploadedU3Ek__BackingField_46; } inline void set_U3CUploadedU3Ek__BackingField_46(int64_t value) { ___U3CUploadedU3Ek__BackingField_46 = value; } inline static int32_t get_offset_of_U3CUploadLengthU3Ek__BackingField_47() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CUploadLengthU3Ek__BackingField_47)); } inline int64_t get_U3CUploadLengthU3Ek__BackingField_47() const { return ___U3CUploadLengthU3Ek__BackingField_47; } inline int64_t* get_address_of_U3CUploadLengthU3Ek__BackingField_47() { return &___U3CUploadLengthU3Ek__BackingField_47; } inline void set_U3CUploadLengthU3Ek__BackingField_47(int64_t value) { ___U3CUploadLengthU3Ek__BackingField_47 = value; } inline static int32_t get_offset_of_U3CUploadProgressChangedU3Ek__BackingField_48() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CUploadProgressChangedU3Ek__BackingField_48)); } inline bool get_U3CUploadProgressChangedU3Ek__BackingField_48() const { return ___U3CUploadProgressChangedU3Ek__BackingField_48; } inline bool* get_address_of_U3CUploadProgressChangedU3Ek__BackingField_48() { return &___U3CUploadProgressChangedU3Ek__BackingField_48; } inline void set_U3CUploadProgressChangedU3Ek__BackingField_48(bool value) { ___U3CUploadProgressChangedU3Ek__BackingField_48 = value; } inline static int32_t get_offset_of_isKeepAlive_49() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___isKeepAlive_49)); } inline bool get_isKeepAlive_49() const { return ___isKeepAlive_49; } inline bool* get_address_of_isKeepAlive_49() { return &___isKeepAlive_49; } inline void set_isKeepAlive_49(bool value) { ___isKeepAlive_49 = value; } inline static int32_t get_offset_of_disableCache_50() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___disableCache_50)); } inline bool get_disableCache_50() const { return ___disableCache_50; } inline bool* get_address_of_disableCache_50() { return &___disableCache_50; } inline void set_disableCache_50(bool value) { ___disableCache_50 = value; } inline static int32_t get_offset_of_cacheOnly_51() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___cacheOnly_51)); } inline bool get_cacheOnly_51() const { return ___cacheOnly_51; } inline bool* get_address_of_cacheOnly_51() { return &___cacheOnly_51; } inline void set_cacheOnly_51(bool value) { ___cacheOnly_51 = value; } inline static int32_t get_offset_of_streamFragmentSize_52() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___streamFragmentSize_52)); } inline int32_t get_streamFragmentSize_52() const { return ___streamFragmentSize_52; } inline int32_t* get_address_of_streamFragmentSize_52() { return &___streamFragmentSize_52; } inline void set_streamFragmentSize_52(int32_t value) { ___streamFragmentSize_52 = value; } inline static int32_t get_offset_of_useStreaming_53() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___useStreaming_53)); } inline bool get_useStreaming_53() const { return ___useStreaming_53; } inline bool* get_address_of_useStreaming_53() { return &___useStreaming_53; } inline void set_useStreaming_53(bool value) { ___useStreaming_53 = value; } inline static int32_t get_offset_of_U3CHeadersU3Ek__BackingField_54() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CHeadersU3Ek__BackingField_54)); } inline Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086 * get_U3CHeadersU3Ek__BackingField_54() const { return ___U3CHeadersU3Ek__BackingField_54; } inline Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086 ** get_address_of_U3CHeadersU3Ek__BackingField_54() { return &___U3CHeadersU3Ek__BackingField_54; } inline void set_U3CHeadersU3Ek__BackingField_54(Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086 * value) { ___U3CHeadersU3Ek__BackingField_54 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CHeadersU3Ek__BackingField_54), (void*)value); } inline static int32_t get_offset_of_FieldCollector_55() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___FieldCollector_55)); } inline HTTPFormBase_t62B2F52574B8465343CE4B246C6021BC42A45BF2 * get_FieldCollector_55() const { return ___FieldCollector_55; } inline HTTPFormBase_t62B2F52574B8465343CE4B246C6021BC42A45BF2 ** get_address_of_FieldCollector_55() { return &___FieldCollector_55; } inline void set_FieldCollector_55(HTTPFormBase_t62B2F52574B8465343CE4B246C6021BC42A45BF2 * value) { ___FieldCollector_55 = value; Il2CppCodeGenWriteBarrier((void**)(&___FieldCollector_55), (void*)value); } inline static int32_t get_offset_of_FormImpl_56() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___FormImpl_56)); } inline HTTPFormBase_t62B2F52574B8465343CE4B246C6021BC42A45BF2 * get_FormImpl_56() const { return ___FormImpl_56; } inline HTTPFormBase_t62B2F52574B8465343CE4B246C6021BC42A45BF2 ** get_address_of_FormImpl_56() { return &___FormImpl_56; } inline void set_FormImpl_56(HTTPFormBase_t62B2F52574B8465343CE4B246C6021BC42A45BF2 * value) { ___FormImpl_56 = value; Il2CppCodeGenWriteBarrier((void**)(&___FormImpl_56), (void*)value); } }; struct HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42_StaticFields { public: // System.Byte[] BestHTTP.HTTPRequest::EOL ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___EOL_0; // System.String[] BestHTTP.HTTPRequest::MethodNames StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___MethodNames_1; // System.Int32 BestHTTP.HTTPRequest::UploadChunkSize int32_t ___UploadChunkSize_2; public: inline static int32_t get_offset_of_EOL_0() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42_StaticFields, ___EOL_0)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_EOL_0() const { return ___EOL_0; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_EOL_0() { return &___EOL_0; } inline void set_EOL_0(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___EOL_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___EOL_0), (void*)value); } inline static int32_t get_offset_of_MethodNames_1() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42_StaticFields, ___MethodNames_1)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_MethodNames_1() const { return ___MethodNames_1; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_MethodNames_1() { return &___MethodNames_1; } inline void set_MethodNames_1(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___MethodNames_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___MethodNames_1), (void*)value); } inline static int32_t get_offset_of_UploadChunkSize_2() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42_StaticFields, ___UploadChunkSize_2)); } inline int32_t get_UploadChunkSize_2() const { return ___UploadChunkSize_2; } inline int32_t* get_address_of_UploadChunkSize_2() { return &___UploadChunkSize_2; } inline void set_UploadChunkSize_2(int32_t value) { ___UploadChunkSize_2 = value; } }; // BestHTTP.SignalRCore.HubConnection struct HubConnection_tD0CD7A840685CA3DCC65913C32524F0C81F6C8D6 : public RuntimeObject { public: // System.Uri BestHTTP.SignalRCore.HubConnection::k__BackingField Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___U3CUriU3Ek__BackingField_1; // BestHTTP.SignalRCore.ConnectionStates BestHTTP.SignalRCore.HubConnection::k__BackingField int32_t ___U3CStateU3Ek__BackingField_2; // BestHTTP.SignalRCore.ITransport BestHTTP.SignalRCore.HubConnection::k__BackingField RuntimeObject* ___U3CTransportU3Ek__BackingField_3; // BestHTTP.SignalRCore.IProtocol BestHTTP.SignalRCore.HubConnection::k__BackingField RuntimeObject* ___U3CProtocolU3Ek__BackingField_4; // System.Action`3 BestHTTP.SignalRCore.HubConnection::OnRedirected Action_3_t5C90A28BDAA9A129AFA58FD650137BBF1234A4AB * ___OnRedirected_5; // System.Action`1 BestHTTP.SignalRCore.HubConnection::OnConnected Action_1_t792440BC2358C441BC16C0CD54E5534F61AF2E39 * ___OnConnected_6; // System.Action`2 BestHTTP.SignalRCore.HubConnection::OnError Action_2_tC16C2F6D18D21990D877F6B714883A40585C28C9 * ___OnError_7; // System.Action`1 BestHTTP.SignalRCore.HubConnection::OnClosed Action_1_t792440BC2358C441BC16C0CD54E5534F61AF2E39 * ___OnClosed_8; // System.Func`3 BestHTTP.SignalRCore.HubConnection::OnMessage Func_3_tCA813BC300893DEAD302DA936E723B3EC4CAE250 * ___OnMessage_9; // BestHTTP.SignalRCore.IAuthenticationProvider BestHTTP.SignalRCore.HubConnection::k__BackingField RuntimeObject* ___U3CAuthenticationProviderU3Ek__BackingField_10; // BestHTTP.SignalRCore.Messages.NegotiationResult BestHTTP.SignalRCore.HubConnection::k__BackingField NegotiationResult_tB890A884403AA934CA0E2148E53D19DC196D3D85 * ___U3CNegotiationResultU3Ek__BackingField_11; // BestHTTP.SignalRCore.HubOptions BestHTTP.SignalRCore.HubConnection::k__BackingField HubOptions_tC884B652B753EB22CF9664FAB679CEDF2DDAE855 * ___U3COptionsU3Ek__BackingField_12; // System.Int32 BestHTTP.SignalRCore.HubConnection::k__BackingField int32_t ___U3CRedirectCountU3Ek__BackingField_13; // System.Int64 BestHTTP.SignalRCore.HubConnection::lastInvocationId int64_t ___lastInvocationId_14; // System.Collections.Generic.Dictionary`2> BestHTTP.SignalRCore.HubConnection::invocations Dictionary_2_t4474F57334E41AAA4ECBA32CAB32B51B695F0B22 * ___invocations_15; // System.Collections.Generic.Dictionary`2 BestHTTP.SignalRCore.HubConnection::subscriptions Dictionary_2_t88EEF5584BE1724959F1E96256757BBEE5D15F5B * ___subscriptions_16; // System.DateTime BestHTTP.SignalRCore.HubConnection::lastMessageSent DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___lastMessageSent_17; public: inline static int32_t get_offset_of_U3CUriU3Ek__BackingField_1() { return static_cast(offsetof(HubConnection_tD0CD7A840685CA3DCC65913C32524F0C81F6C8D6, ___U3CUriU3Ek__BackingField_1)); } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * get_U3CUriU3Ek__BackingField_1() const { return ___U3CUriU3Ek__BackingField_1; } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 ** get_address_of_U3CUriU3Ek__BackingField_1() { return &___U3CUriU3Ek__BackingField_1; } inline void set_U3CUriU3Ek__BackingField_1(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * value) { ___U3CUriU3Ek__BackingField_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CUriU3Ek__BackingField_1), (void*)value); } inline static int32_t get_offset_of_U3CStateU3Ek__BackingField_2() { return static_cast(offsetof(HubConnection_tD0CD7A840685CA3DCC65913C32524F0C81F6C8D6, ___U3CStateU3Ek__BackingField_2)); } inline int32_t get_U3CStateU3Ek__BackingField_2() const { return ___U3CStateU3Ek__BackingField_2; } inline int32_t* get_address_of_U3CStateU3Ek__BackingField_2() { return &___U3CStateU3Ek__BackingField_2; } inline void set_U3CStateU3Ek__BackingField_2(int32_t value) { ___U3CStateU3Ek__BackingField_2 = value; } inline static int32_t get_offset_of_U3CTransportU3Ek__BackingField_3() { return static_cast(offsetof(HubConnection_tD0CD7A840685CA3DCC65913C32524F0C81F6C8D6, ___U3CTransportU3Ek__BackingField_3)); } inline RuntimeObject* get_U3CTransportU3Ek__BackingField_3() const { return ___U3CTransportU3Ek__BackingField_3; } inline RuntimeObject** get_address_of_U3CTransportU3Ek__BackingField_3() { return &___U3CTransportU3Ek__BackingField_3; } inline void set_U3CTransportU3Ek__BackingField_3(RuntimeObject* value) { ___U3CTransportU3Ek__BackingField_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CTransportU3Ek__BackingField_3), (void*)value); } inline static int32_t get_offset_of_U3CProtocolU3Ek__BackingField_4() { return static_cast(offsetof(HubConnection_tD0CD7A840685CA3DCC65913C32524F0C81F6C8D6, ___U3CProtocolU3Ek__BackingField_4)); } inline RuntimeObject* get_U3CProtocolU3Ek__BackingField_4() const { return ___U3CProtocolU3Ek__BackingField_4; } inline RuntimeObject** get_address_of_U3CProtocolU3Ek__BackingField_4() { return &___U3CProtocolU3Ek__BackingField_4; } inline void set_U3CProtocolU3Ek__BackingField_4(RuntimeObject* value) { ___U3CProtocolU3Ek__BackingField_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CProtocolU3Ek__BackingField_4), (void*)value); } inline static int32_t get_offset_of_OnRedirected_5() { return static_cast(offsetof(HubConnection_tD0CD7A840685CA3DCC65913C32524F0C81F6C8D6, ___OnRedirected_5)); } inline Action_3_t5C90A28BDAA9A129AFA58FD650137BBF1234A4AB * get_OnRedirected_5() const { return ___OnRedirected_5; } inline Action_3_t5C90A28BDAA9A129AFA58FD650137BBF1234A4AB ** get_address_of_OnRedirected_5() { return &___OnRedirected_5; } inline void set_OnRedirected_5(Action_3_t5C90A28BDAA9A129AFA58FD650137BBF1234A4AB * value) { ___OnRedirected_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnRedirected_5), (void*)value); } inline static int32_t get_offset_of_OnConnected_6() { return static_cast(offsetof(HubConnection_tD0CD7A840685CA3DCC65913C32524F0C81F6C8D6, ___OnConnected_6)); } inline Action_1_t792440BC2358C441BC16C0CD54E5534F61AF2E39 * get_OnConnected_6() const { return ___OnConnected_6; } inline Action_1_t792440BC2358C441BC16C0CD54E5534F61AF2E39 ** get_address_of_OnConnected_6() { return &___OnConnected_6; } inline void set_OnConnected_6(Action_1_t792440BC2358C441BC16C0CD54E5534F61AF2E39 * value) { ___OnConnected_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnConnected_6), (void*)value); } inline static int32_t get_offset_of_OnError_7() { return static_cast(offsetof(HubConnection_tD0CD7A840685CA3DCC65913C32524F0C81F6C8D6, ___OnError_7)); } inline Action_2_tC16C2F6D18D21990D877F6B714883A40585C28C9 * get_OnError_7() const { return ___OnError_7; } inline Action_2_tC16C2F6D18D21990D877F6B714883A40585C28C9 ** get_address_of_OnError_7() { return &___OnError_7; } inline void set_OnError_7(Action_2_tC16C2F6D18D21990D877F6B714883A40585C28C9 * value) { ___OnError_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnError_7), (void*)value); } inline static int32_t get_offset_of_OnClosed_8() { return static_cast(offsetof(HubConnection_tD0CD7A840685CA3DCC65913C32524F0C81F6C8D6, ___OnClosed_8)); } inline Action_1_t792440BC2358C441BC16C0CD54E5534F61AF2E39 * get_OnClosed_8() const { return ___OnClosed_8; } inline Action_1_t792440BC2358C441BC16C0CD54E5534F61AF2E39 ** get_address_of_OnClosed_8() { return &___OnClosed_8; } inline void set_OnClosed_8(Action_1_t792440BC2358C441BC16C0CD54E5534F61AF2E39 * value) { ___OnClosed_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnClosed_8), (void*)value); } inline static int32_t get_offset_of_OnMessage_9() { return static_cast(offsetof(HubConnection_tD0CD7A840685CA3DCC65913C32524F0C81F6C8D6, ___OnMessage_9)); } inline Func_3_tCA813BC300893DEAD302DA936E723B3EC4CAE250 * get_OnMessage_9() const { return ___OnMessage_9; } inline Func_3_tCA813BC300893DEAD302DA936E723B3EC4CAE250 ** get_address_of_OnMessage_9() { return &___OnMessage_9; } inline void set_OnMessage_9(Func_3_tCA813BC300893DEAD302DA936E723B3EC4CAE250 * value) { ___OnMessage_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnMessage_9), (void*)value); } inline static int32_t get_offset_of_U3CAuthenticationProviderU3Ek__BackingField_10() { return static_cast(offsetof(HubConnection_tD0CD7A840685CA3DCC65913C32524F0C81F6C8D6, ___U3CAuthenticationProviderU3Ek__BackingField_10)); } inline RuntimeObject* get_U3CAuthenticationProviderU3Ek__BackingField_10() const { return ___U3CAuthenticationProviderU3Ek__BackingField_10; } inline RuntimeObject** get_address_of_U3CAuthenticationProviderU3Ek__BackingField_10() { return &___U3CAuthenticationProviderU3Ek__BackingField_10; } inline void set_U3CAuthenticationProviderU3Ek__BackingField_10(RuntimeObject* value) { ___U3CAuthenticationProviderU3Ek__BackingField_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CAuthenticationProviderU3Ek__BackingField_10), (void*)value); } inline static int32_t get_offset_of_U3CNegotiationResultU3Ek__BackingField_11() { return static_cast(offsetof(HubConnection_tD0CD7A840685CA3DCC65913C32524F0C81F6C8D6, ___U3CNegotiationResultU3Ek__BackingField_11)); } inline NegotiationResult_tB890A884403AA934CA0E2148E53D19DC196D3D85 * get_U3CNegotiationResultU3Ek__BackingField_11() const { return ___U3CNegotiationResultU3Ek__BackingField_11; } inline NegotiationResult_tB890A884403AA934CA0E2148E53D19DC196D3D85 ** get_address_of_U3CNegotiationResultU3Ek__BackingField_11() { return &___U3CNegotiationResultU3Ek__BackingField_11; } inline void set_U3CNegotiationResultU3Ek__BackingField_11(NegotiationResult_tB890A884403AA934CA0E2148E53D19DC196D3D85 * value) { ___U3CNegotiationResultU3Ek__BackingField_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CNegotiationResultU3Ek__BackingField_11), (void*)value); } inline static int32_t get_offset_of_U3COptionsU3Ek__BackingField_12() { return static_cast(offsetof(HubConnection_tD0CD7A840685CA3DCC65913C32524F0C81F6C8D6, ___U3COptionsU3Ek__BackingField_12)); } inline HubOptions_tC884B652B753EB22CF9664FAB679CEDF2DDAE855 * get_U3COptionsU3Ek__BackingField_12() const { return ___U3COptionsU3Ek__BackingField_12; } inline HubOptions_tC884B652B753EB22CF9664FAB679CEDF2DDAE855 ** get_address_of_U3COptionsU3Ek__BackingField_12() { return &___U3COptionsU3Ek__BackingField_12; } inline void set_U3COptionsU3Ek__BackingField_12(HubOptions_tC884B652B753EB22CF9664FAB679CEDF2DDAE855 * value) { ___U3COptionsU3Ek__BackingField_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3COptionsU3Ek__BackingField_12), (void*)value); } inline static int32_t get_offset_of_U3CRedirectCountU3Ek__BackingField_13() { return static_cast(offsetof(HubConnection_tD0CD7A840685CA3DCC65913C32524F0C81F6C8D6, ___U3CRedirectCountU3Ek__BackingField_13)); } inline int32_t get_U3CRedirectCountU3Ek__BackingField_13() const { return ___U3CRedirectCountU3Ek__BackingField_13; } inline int32_t* get_address_of_U3CRedirectCountU3Ek__BackingField_13() { return &___U3CRedirectCountU3Ek__BackingField_13; } inline void set_U3CRedirectCountU3Ek__BackingField_13(int32_t value) { ___U3CRedirectCountU3Ek__BackingField_13 = value; } inline static int32_t get_offset_of_lastInvocationId_14() { return static_cast(offsetof(HubConnection_tD0CD7A840685CA3DCC65913C32524F0C81F6C8D6, ___lastInvocationId_14)); } inline int64_t get_lastInvocationId_14() const { return ___lastInvocationId_14; } inline int64_t* get_address_of_lastInvocationId_14() { return &___lastInvocationId_14; } inline void set_lastInvocationId_14(int64_t value) { ___lastInvocationId_14 = value; } inline static int32_t get_offset_of_invocations_15() { return static_cast(offsetof(HubConnection_tD0CD7A840685CA3DCC65913C32524F0C81F6C8D6, ___invocations_15)); } inline Dictionary_2_t4474F57334E41AAA4ECBA32CAB32B51B695F0B22 * get_invocations_15() const { return ___invocations_15; } inline Dictionary_2_t4474F57334E41AAA4ECBA32CAB32B51B695F0B22 ** get_address_of_invocations_15() { return &___invocations_15; } inline void set_invocations_15(Dictionary_2_t4474F57334E41AAA4ECBA32CAB32B51B695F0B22 * value) { ___invocations_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___invocations_15), (void*)value); } inline static int32_t get_offset_of_subscriptions_16() { return static_cast(offsetof(HubConnection_tD0CD7A840685CA3DCC65913C32524F0C81F6C8D6, ___subscriptions_16)); } inline Dictionary_2_t88EEF5584BE1724959F1E96256757BBEE5D15F5B * get_subscriptions_16() const { return ___subscriptions_16; } inline Dictionary_2_t88EEF5584BE1724959F1E96256757BBEE5D15F5B ** get_address_of_subscriptions_16() { return &___subscriptions_16; } inline void set_subscriptions_16(Dictionary_2_t88EEF5584BE1724959F1E96256757BBEE5D15F5B * value) { ___subscriptions_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___subscriptions_16), (void*)value); } inline static int32_t get_offset_of_lastMessageSent_17() { return static_cast(offsetof(HubConnection_tD0CD7A840685CA3DCC65913C32524F0C81F6C8D6, ___lastMessageSent_17)); } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_lastMessageSent_17() const { return ___lastMessageSent_17; } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_lastMessageSent_17() { return &___lastMessageSent_17; } inline void set_lastMessageSent_17(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value) { ___lastMessageSent_17 = value; } }; struct HubConnection_tD0CD7A840685CA3DCC65913C32524F0C81F6C8D6_StaticFields { public: // System.Object[] BestHTTP.SignalRCore.HubConnection::EmptyArgs ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___EmptyArgs_0; public: inline static int32_t get_offset_of_EmptyArgs_0() { return static_cast(offsetof(HubConnection_tD0CD7A840685CA3DCC65913C32524F0C81F6C8D6_StaticFields, ___EmptyArgs_0)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_EmptyArgs_0() const { return ___EmptyArgs_0; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_EmptyArgs_0() { return &___EmptyArgs_0; } inline void set_EmptyArgs_0(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ___EmptyArgs_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___EmptyArgs_0), (void*)value); } }; // BestHTTP.SignalRCore.Messages.InvocationMessage struct InvocationMessage_t00C6F237BBABEFF9A81BCC9BD79AEB1CD9FF5C89 { public: // BestHTTP.SignalRCore.Messages.MessageTypes BestHTTP.SignalRCore.Messages.InvocationMessage::type int32_t ___type_0; // System.String BestHTTP.SignalRCore.Messages.InvocationMessage::invocationId String_t* ___invocationId_1; // System.Boolean BestHTTP.SignalRCore.Messages.InvocationMessage::nonblocking bool ___nonblocking_2; // System.String BestHTTP.SignalRCore.Messages.InvocationMessage::target String_t* ___target_3; // System.Object[] BestHTTP.SignalRCore.Messages.InvocationMessage::arguments ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___arguments_4; public: inline static int32_t get_offset_of_type_0() { return static_cast(offsetof(InvocationMessage_t00C6F237BBABEFF9A81BCC9BD79AEB1CD9FF5C89, ___type_0)); } inline int32_t get_type_0() const { return ___type_0; } inline int32_t* get_address_of_type_0() { return &___type_0; } inline void set_type_0(int32_t value) { ___type_0 = value; } inline static int32_t get_offset_of_invocationId_1() { return static_cast(offsetof(InvocationMessage_t00C6F237BBABEFF9A81BCC9BD79AEB1CD9FF5C89, ___invocationId_1)); } inline String_t* get_invocationId_1() const { return ___invocationId_1; } inline String_t** get_address_of_invocationId_1() { return &___invocationId_1; } inline void set_invocationId_1(String_t* value) { ___invocationId_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___invocationId_1), (void*)value); } inline static int32_t get_offset_of_nonblocking_2() { return static_cast(offsetof(InvocationMessage_t00C6F237BBABEFF9A81BCC9BD79AEB1CD9FF5C89, ___nonblocking_2)); } inline bool get_nonblocking_2() const { return ___nonblocking_2; } inline bool* get_address_of_nonblocking_2() { return &___nonblocking_2; } inline void set_nonblocking_2(bool value) { ___nonblocking_2 = value; } inline static int32_t get_offset_of_target_3() { return static_cast(offsetof(InvocationMessage_t00C6F237BBABEFF9A81BCC9BD79AEB1CD9FF5C89, ___target_3)); } inline String_t* get_target_3() const { return ___target_3; } inline String_t** get_address_of_target_3() { return &___target_3; } inline void set_target_3(String_t* value) { ___target_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___target_3), (void*)value); } inline static int32_t get_offset_of_arguments_4() { return static_cast(offsetof(InvocationMessage_t00C6F237BBABEFF9A81BCC9BD79AEB1CD9FF5C89, ___arguments_4)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_arguments_4() const { return ___arguments_4; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_arguments_4() { return &___arguments_4; } inline void set_arguments_4(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ___arguments_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___arguments_4), (void*)value); } }; // Native definition for P/Invoke marshalling of BestHTTP.SignalRCore.Messages.InvocationMessage struct InvocationMessage_t00C6F237BBABEFF9A81BCC9BD79AEB1CD9FF5C89_marshaled_pinvoke { int32_t ___type_0; char* ___invocationId_1; int32_t ___nonblocking_2; char* ___target_3; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___arguments_4; }; // Native definition for COM marshalling of BestHTTP.SignalRCore.Messages.InvocationMessage struct InvocationMessage_t00C6F237BBABEFF9A81BCC9BD79AEB1CD9FF5C89_marshaled_com { int32_t ___type_0; Il2CppChar* ___invocationId_1; int32_t ___nonblocking_2; Il2CppChar* ___target_3; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___arguments_4; }; // LitJson.JsonData struct JsonData_tEC3547D1018CC4298487EC54DD677C16BE61D514 : public RuntimeObject { public: // System.Collections.Generic.IList`1 LitJson.JsonData::inst_array RuntimeObject* ___inst_array_0; // System.Boolean LitJson.JsonData::inst_boolean bool ___inst_boolean_1; // System.Double LitJson.JsonData::inst_double double ___inst_double_2; // System.Int32 LitJson.JsonData::inst_int int32_t ___inst_int_3; // System.Int64 LitJson.JsonData::inst_long int64_t ___inst_long_4; // System.Collections.Generic.IDictionary`2 LitJson.JsonData::inst_object RuntimeObject* ___inst_object_5; // System.String LitJson.JsonData::inst_string String_t* ___inst_string_6; // System.String LitJson.JsonData::json String_t* ___json_7; // LitJson.JsonType LitJson.JsonData::type int32_t ___type_8; // System.Collections.Generic.IList`1> LitJson.JsonData::object_list RuntimeObject* ___object_list_9; public: inline static int32_t get_offset_of_inst_array_0() { return static_cast(offsetof(JsonData_tEC3547D1018CC4298487EC54DD677C16BE61D514, ___inst_array_0)); } inline RuntimeObject* get_inst_array_0() const { return ___inst_array_0; } inline RuntimeObject** get_address_of_inst_array_0() { return &___inst_array_0; } inline void set_inst_array_0(RuntimeObject* value) { ___inst_array_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___inst_array_0), (void*)value); } inline static int32_t get_offset_of_inst_boolean_1() { return static_cast(offsetof(JsonData_tEC3547D1018CC4298487EC54DD677C16BE61D514, ___inst_boolean_1)); } inline bool get_inst_boolean_1() const { return ___inst_boolean_1; } inline bool* get_address_of_inst_boolean_1() { return &___inst_boolean_1; } inline void set_inst_boolean_1(bool value) { ___inst_boolean_1 = value; } inline static int32_t get_offset_of_inst_double_2() { return static_cast(offsetof(JsonData_tEC3547D1018CC4298487EC54DD677C16BE61D514, ___inst_double_2)); } inline double get_inst_double_2() const { return ___inst_double_2; } inline double* get_address_of_inst_double_2() { return &___inst_double_2; } inline void set_inst_double_2(double value) { ___inst_double_2 = value; } inline static int32_t get_offset_of_inst_int_3() { return static_cast(offsetof(JsonData_tEC3547D1018CC4298487EC54DD677C16BE61D514, ___inst_int_3)); } inline int32_t get_inst_int_3() const { return ___inst_int_3; } inline int32_t* get_address_of_inst_int_3() { return &___inst_int_3; } inline void set_inst_int_3(int32_t value) { ___inst_int_3 = value; } inline static int32_t get_offset_of_inst_long_4() { return static_cast(offsetof(JsonData_tEC3547D1018CC4298487EC54DD677C16BE61D514, ___inst_long_4)); } inline int64_t get_inst_long_4() const { return ___inst_long_4; } inline int64_t* get_address_of_inst_long_4() { return &___inst_long_4; } inline void set_inst_long_4(int64_t value) { ___inst_long_4 = value; } inline static int32_t get_offset_of_inst_object_5() { return static_cast(offsetof(JsonData_tEC3547D1018CC4298487EC54DD677C16BE61D514, ___inst_object_5)); } inline RuntimeObject* get_inst_object_5() const { return ___inst_object_5; } inline RuntimeObject** get_address_of_inst_object_5() { return &___inst_object_5; } inline void set_inst_object_5(RuntimeObject* value) { ___inst_object_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___inst_object_5), (void*)value); } inline static int32_t get_offset_of_inst_string_6() { return static_cast(offsetof(JsonData_tEC3547D1018CC4298487EC54DD677C16BE61D514, ___inst_string_6)); } inline String_t* get_inst_string_6() const { return ___inst_string_6; } inline String_t** get_address_of_inst_string_6() { return &___inst_string_6; } inline void set_inst_string_6(String_t* value) { ___inst_string_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___inst_string_6), (void*)value); } inline static int32_t get_offset_of_json_7() { return static_cast(offsetof(JsonData_tEC3547D1018CC4298487EC54DD677C16BE61D514, ___json_7)); } inline String_t* get_json_7() const { return ___json_7; } inline String_t** get_address_of_json_7() { return &___json_7; } inline void set_json_7(String_t* value) { ___json_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___json_7), (void*)value); } inline static int32_t get_offset_of_type_8() { return static_cast(offsetof(JsonData_tEC3547D1018CC4298487EC54DD677C16BE61D514, ___type_8)); } inline int32_t get_type_8() const { return ___type_8; } inline int32_t* get_address_of_type_8() { return &___type_8; } inline void set_type_8(int32_t value) { ___type_8 = value; } inline static int32_t get_offset_of_object_list_9() { return static_cast(offsetof(JsonData_tEC3547D1018CC4298487EC54DD677C16BE61D514, ___object_list_9)); } inline RuntimeObject* get_object_list_9() const { return ___object_list_9; } inline RuntimeObject** get_address_of_object_list_9() { return &___object_list_9; } inline void set_object_list_9(RuntimeObject* value) { ___object_list_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___object_list_9), (void*)value); } }; // LitJson.JsonException struct JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C : public Exception_t { public: public: }; // LitJson.JsonReader struct JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 : public RuntimeObject { public: // System.Collections.Generic.Stack`1 LitJson.JsonReader::automaton_stack Stack_1_tC6C298385D16F10F391B84280D21FE059A45CC55 * ___automaton_stack_1; // System.Int32 LitJson.JsonReader::current_input int32_t ___current_input_2; // System.Int32 LitJson.JsonReader::current_symbol int32_t ___current_symbol_3; // System.Boolean LitJson.JsonReader::end_of_json bool ___end_of_json_4; // System.Boolean LitJson.JsonReader::end_of_input bool ___end_of_input_5; // LitJson.Lexer LitJson.JsonReader::lexer Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC * ___lexer_6; // System.Boolean LitJson.JsonReader::parser_in_string bool ___parser_in_string_7; // System.Boolean LitJson.JsonReader::parser_return bool ___parser_return_8; // System.Boolean LitJson.JsonReader::read_started bool ___read_started_9; // System.IO.TextReader LitJson.JsonReader::reader TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * ___reader_10; // System.Boolean LitJson.JsonReader::reader_is_owned bool ___reader_is_owned_11; // System.Boolean LitJson.JsonReader::skip_non_members bool ___skip_non_members_12; // System.Object LitJson.JsonReader::token_value RuntimeObject * ___token_value_13; // LitJson.JsonToken LitJson.JsonReader::token int32_t ___token_14; public: inline static int32_t get_offset_of_automaton_stack_1() { return static_cast(offsetof(JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340, ___automaton_stack_1)); } inline Stack_1_tC6C298385D16F10F391B84280D21FE059A45CC55 * get_automaton_stack_1() const { return ___automaton_stack_1; } inline Stack_1_tC6C298385D16F10F391B84280D21FE059A45CC55 ** get_address_of_automaton_stack_1() { return &___automaton_stack_1; } inline void set_automaton_stack_1(Stack_1_tC6C298385D16F10F391B84280D21FE059A45CC55 * value) { ___automaton_stack_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___automaton_stack_1), (void*)value); } inline static int32_t get_offset_of_current_input_2() { return static_cast(offsetof(JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340, ___current_input_2)); } inline int32_t get_current_input_2() const { return ___current_input_2; } inline int32_t* get_address_of_current_input_2() { return &___current_input_2; } inline void set_current_input_2(int32_t value) { ___current_input_2 = value; } inline static int32_t get_offset_of_current_symbol_3() { return static_cast(offsetof(JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340, ___current_symbol_3)); } inline int32_t get_current_symbol_3() const { return ___current_symbol_3; } inline int32_t* get_address_of_current_symbol_3() { return &___current_symbol_3; } inline void set_current_symbol_3(int32_t value) { ___current_symbol_3 = value; } inline static int32_t get_offset_of_end_of_json_4() { return static_cast(offsetof(JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340, ___end_of_json_4)); } inline bool get_end_of_json_4() const { return ___end_of_json_4; } inline bool* get_address_of_end_of_json_4() { return &___end_of_json_4; } inline void set_end_of_json_4(bool value) { ___end_of_json_4 = value; } inline static int32_t get_offset_of_end_of_input_5() { return static_cast(offsetof(JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340, ___end_of_input_5)); } inline bool get_end_of_input_5() const { return ___end_of_input_5; } inline bool* get_address_of_end_of_input_5() { return &___end_of_input_5; } inline void set_end_of_input_5(bool value) { ___end_of_input_5 = value; } inline static int32_t get_offset_of_lexer_6() { return static_cast(offsetof(JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340, ___lexer_6)); } inline Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC * get_lexer_6() const { return ___lexer_6; } inline Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC ** get_address_of_lexer_6() { return &___lexer_6; } inline void set_lexer_6(Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC * value) { ___lexer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___lexer_6), (void*)value); } inline static int32_t get_offset_of_parser_in_string_7() { return static_cast(offsetof(JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340, ___parser_in_string_7)); } inline bool get_parser_in_string_7() const { return ___parser_in_string_7; } inline bool* get_address_of_parser_in_string_7() { return &___parser_in_string_7; } inline void set_parser_in_string_7(bool value) { ___parser_in_string_7 = value; } inline static int32_t get_offset_of_parser_return_8() { return static_cast(offsetof(JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340, ___parser_return_8)); } inline bool get_parser_return_8() const { return ___parser_return_8; } inline bool* get_address_of_parser_return_8() { return &___parser_return_8; } inline void set_parser_return_8(bool value) { ___parser_return_8 = value; } inline static int32_t get_offset_of_read_started_9() { return static_cast(offsetof(JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340, ___read_started_9)); } inline bool get_read_started_9() const { return ___read_started_9; } inline bool* get_address_of_read_started_9() { return &___read_started_9; } inline void set_read_started_9(bool value) { ___read_started_9 = value; } inline static int32_t get_offset_of_reader_10() { return static_cast(offsetof(JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340, ___reader_10)); } inline TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * get_reader_10() const { return ___reader_10; } inline TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F ** get_address_of_reader_10() { return &___reader_10; } inline void set_reader_10(TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * value) { ___reader_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___reader_10), (void*)value); } inline static int32_t get_offset_of_reader_is_owned_11() { return static_cast(offsetof(JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340, ___reader_is_owned_11)); } inline bool get_reader_is_owned_11() const { return ___reader_is_owned_11; } inline bool* get_address_of_reader_is_owned_11() { return &___reader_is_owned_11; } inline void set_reader_is_owned_11(bool value) { ___reader_is_owned_11 = value; } inline static int32_t get_offset_of_skip_non_members_12() { return static_cast(offsetof(JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340, ___skip_non_members_12)); } inline bool get_skip_non_members_12() const { return ___skip_non_members_12; } inline bool* get_address_of_skip_non_members_12() { return &___skip_non_members_12; } inline void set_skip_non_members_12(bool value) { ___skip_non_members_12 = value; } inline static int32_t get_offset_of_token_value_13() { return static_cast(offsetof(JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340, ___token_value_13)); } inline RuntimeObject * get_token_value_13() const { return ___token_value_13; } inline RuntimeObject ** get_address_of_token_value_13() { return &___token_value_13; } inline void set_token_value_13(RuntimeObject * value) { ___token_value_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___token_value_13), (void*)value); } inline static int32_t get_offset_of_token_14() { return static_cast(offsetof(JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340, ___token_14)); } inline int32_t get_token_14() const { return ___token_14; } inline int32_t* get_address_of_token_14() { return &___token_14; } inline void set_token_14(int32_t value) { ___token_14 = value; } }; struct JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340_StaticFields { public: // System.Collections.Generic.IDictionary`2> LitJson.JsonReader::parse_table RuntimeObject* ___parse_table_0; public: inline static int32_t get_offset_of_parse_table_0() { return static_cast(offsetof(JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340_StaticFields, ___parse_table_0)); } inline RuntimeObject* get_parse_table_0() const { return ___parse_table_0; } inline RuntimeObject** get_address_of_parse_table_0() { return &___parse_table_0; } inline void set_parse_table_0(RuntimeObject* value) { ___parse_table_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___parse_table_0), (void*)value); } }; // BestHTTP.KeepAliveHeader struct KeepAliveHeader_t93C1CC9FD7D51F432D9A50741F9BC0EF59166924 : public RuntimeObject { public: // System.TimeSpan BestHTTP.KeepAliveHeader::k__BackingField TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___U3CTimeOutU3Ek__BackingField_0; // System.Int32 BestHTTP.KeepAliveHeader::k__BackingField int32_t ___U3CMaxRequestsU3Ek__BackingField_1; public: inline static int32_t get_offset_of_U3CTimeOutU3Ek__BackingField_0() { return static_cast(offsetof(KeepAliveHeader_t93C1CC9FD7D51F432D9A50741F9BC0EF59166924, ___U3CTimeOutU3Ek__BackingField_0)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_U3CTimeOutU3Ek__BackingField_0() const { return ___U3CTimeOutU3Ek__BackingField_0; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_U3CTimeOutU3Ek__BackingField_0() { return &___U3CTimeOutU3Ek__BackingField_0; } inline void set_U3CTimeOutU3Ek__BackingField_0(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___U3CTimeOutU3Ek__BackingField_0 = value; } inline static int32_t get_offset_of_U3CMaxRequestsU3Ek__BackingField_1() { return static_cast(offsetof(KeepAliveHeader_t93C1CC9FD7D51F432D9A50741F9BC0EF59166924, ___U3CMaxRequestsU3Ek__BackingField_1)); } inline int32_t get_U3CMaxRequestsU3Ek__BackingField_1() const { return ___U3CMaxRequestsU3Ek__BackingField_1; } inline int32_t* get_address_of_U3CMaxRequestsU3Ek__BackingField_1() { return &___U3CMaxRequestsU3Ek__BackingField_1; } inline void set_U3CMaxRequestsU3Ek__BackingField_1(int32_t value) { ___U3CMaxRequestsU3Ek__BackingField_1 = value; } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.KeyPurposeID struct KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 : public DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 { public: public: }; struct KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.KeyPurposeID BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.KeyPurposeID::AnyExtendedKeyUsage KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * ___AnyExtendedKeyUsage_7; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.KeyPurposeID BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.KeyPurposeID::IdKPServerAuth KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * ___IdKPServerAuth_8; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.KeyPurposeID BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.KeyPurposeID::IdKPClientAuth KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * ___IdKPClientAuth_9; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.KeyPurposeID BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.KeyPurposeID::IdKPCodeSigning KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * ___IdKPCodeSigning_10; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.KeyPurposeID BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.KeyPurposeID::IdKPEmailProtection KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * ___IdKPEmailProtection_11; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.KeyPurposeID BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.KeyPurposeID::IdKPIpsecEndSystem KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * ___IdKPIpsecEndSystem_12; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.KeyPurposeID BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.KeyPurposeID::IdKPIpsecTunnel KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * ___IdKPIpsecTunnel_13; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.KeyPurposeID BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.KeyPurposeID::IdKPIpsecUser KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * ___IdKPIpsecUser_14; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.KeyPurposeID BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.KeyPurposeID::IdKPTimeStamping KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * ___IdKPTimeStamping_15; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.KeyPurposeID BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.KeyPurposeID::IdKPOcspSigning KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * ___IdKPOcspSigning_16; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.KeyPurposeID BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.KeyPurposeID::IdKPSmartCardLogon KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * ___IdKPSmartCardLogon_17; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.KeyPurposeID BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.KeyPurposeID::IdKPMacAddress KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * ___IdKPMacAddress_18; public: inline static int32_t get_offset_of_AnyExtendedKeyUsage_7() { return static_cast(offsetof(KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_StaticFields, ___AnyExtendedKeyUsage_7)); } inline KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * get_AnyExtendedKeyUsage_7() const { return ___AnyExtendedKeyUsage_7; } inline KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 ** get_address_of_AnyExtendedKeyUsage_7() { return &___AnyExtendedKeyUsage_7; } inline void set_AnyExtendedKeyUsage_7(KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * value) { ___AnyExtendedKeyUsage_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___AnyExtendedKeyUsage_7), (void*)value); } inline static int32_t get_offset_of_IdKPServerAuth_8() { return static_cast(offsetof(KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_StaticFields, ___IdKPServerAuth_8)); } inline KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * get_IdKPServerAuth_8() const { return ___IdKPServerAuth_8; } inline KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 ** get_address_of_IdKPServerAuth_8() { return &___IdKPServerAuth_8; } inline void set_IdKPServerAuth_8(KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * value) { ___IdKPServerAuth_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdKPServerAuth_8), (void*)value); } inline static int32_t get_offset_of_IdKPClientAuth_9() { return static_cast(offsetof(KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_StaticFields, ___IdKPClientAuth_9)); } inline KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * get_IdKPClientAuth_9() const { return ___IdKPClientAuth_9; } inline KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 ** get_address_of_IdKPClientAuth_9() { return &___IdKPClientAuth_9; } inline void set_IdKPClientAuth_9(KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * value) { ___IdKPClientAuth_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdKPClientAuth_9), (void*)value); } inline static int32_t get_offset_of_IdKPCodeSigning_10() { return static_cast(offsetof(KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_StaticFields, ___IdKPCodeSigning_10)); } inline KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * get_IdKPCodeSigning_10() const { return ___IdKPCodeSigning_10; } inline KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 ** get_address_of_IdKPCodeSigning_10() { return &___IdKPCodeSigning_10; } inline void set_IdKPCodeSigning_10(KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * value) { ___IdKPCodeSigning_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdKPCodeSigning_10), (void*)value); } inline static int32_t get_offset_of_IdKPEmailProtection_11() { return static_cast(offsetof(KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_StaticFields, ___IdKPEmailProtection_11)); } inline KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * get_IdKPEmailProtection_11() const { return ___IdKPEmailProtection_11; } inline KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 ** get_address_of_IdKPEmailProtection_11() { return &___IdKPEmailProtection_11; } inline void set_IdKPEmailProtection_11(KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * value) { ___IdKPEmailProtection_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdKPEmailProtection_11), (void*)value); } inline static int32_t get_offset_of_IdKPIpsecEndSystem_12() { return static_cast(offsetof(KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_StaticFields, ___IdKPIpsecEndSystem_12)); } inline KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * get_IdKPIpsecEndSystem_12() const { return ___IdKPIpsecEndSystem_12; } inline KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 ** get_address_of_IdKPIpsecEndSystem_12() { return &___IdKPIpsecEndSystem_12; } inline void set_IdKPIpsecEndSystem_12(KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * value) { ___IdKPIpsecEndSystem_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdKPIpsecEndSystem_12), (void*)value); } inline static int32_t get_offset_of_IdKPIpsecTunnel_13() { return static_cast(offsetof(KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_StaticFields, ___IdKPIpsecTunnel_13)); } inline KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * get_IdKPIpsecTunnel_13() const { return ___IdKPIpsecTunnel_13; } inline KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 ** get_address_of_IdKPIpsecTunnel_13() { return &___IdKPIpsecTunnel_13; } inline void set_IdKPIpsecTunnel_13(KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * value) { ___IdKPIpsecTunnel_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdKPIpsecTunnel_13), (void*)value); } inline static int32_t get_offset_of_IdKPIpsecUser_14() { return static_cast(offsetof(KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_StaticFields, ___IdKPIpsecUser_14)); } inline KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * get_IdKPIpsecUser_14() const { return ___IdKPIpsecUser_14; } inline KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 ** get_address_of_IdKPIpsecUser_14() { return &___IdKPIpsecUser_14; } inline void set_IdKPIpsecUser_14(KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * value) { ___IdKPIpsecUser_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdKPIpsecUser_14), (void*)value); } inline static int32_t get_offset_of_IdKPTimeStamping_15() { return static_cast(offsetof(KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_StaticFields, ___IdKPTimeStamping_15)); } inline KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * get_IdKPTimeStamping_15() const { return ___IdKPTimeStamping_15; } inline KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 ** get_address_of_IdKPTimeStamping_15() { return &___IdKPTimeStamping_15; } inline void set_IdKPTimeStamping_15(KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * value) { ___IdKPTimeStamping_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdKPTimeStamping_15), (void*)value); } inline static int32_t get_offset_of_IdKPOcspSigning_16() { return static_cast(offsetof(KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_StaticFields, ___IdKPOcspSigning_16)); } inline KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * get_IdKPOcspSigning_16() const { return ___IdKPOcspSigning_16; } inline KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 ** get_address_of_IdKPOcspSigning_16() { return &___IdKPOcspSigning_16; } inline void set_IdKPOcspSigning_16(KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * value) { ___IdKPOcspSigning_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdKPOcspSigning_16), (void*)value); } inline static int32_t get_offset_of_IdKPSmartCardLogon_17() { return static_cast(offsetof(KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_StaticFields, ___IdKPSmartCardLogon_17)); } inline KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * get_IdKPSmartCardLogon_17() const { return ___IdKPSmartCardLogon_17; } inline KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 ** get_address_of_IdKPSmartCardLogon_17() { return &___IdKPSmartCardLogon_17; } inline void set_IdKPSmartCardLogon_17(KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * value) { ___IdKPSmartCardLogon_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdKPSmartCardLogon_17), (void*)value); } inline static int32_t get_offset_of_IdKPMacAddress_18() { return static_cast(offsetof(KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_StaticFields, ___IdKPMacAddress_18)); } inline KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * get_IdKPMacAddress_18() const { return ___IdKPMacAddress_18; } inline KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 ** get_address_of_IdKPMacAddress_18() { return &___IdKPMacAddress_18; } inline void set_IdKPMacAddress_18(KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * value) { ___IdKPMacAddress_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdKPMacAddress_18), (void*)value); } }; // LanguageFontSize struct LanguageFontSize_t1D69214E22205065DF39D269CA0648625ACB9029 : public RuntimeObject { public: // LanguageEnum LanguageFontSize::language int32_t ___language_0; // System.Int32 LanguageFontSize::fontSize int32_t ___fontSize_1; public: inline static int32_t get_offset_of_language_0() { return static_cast(offsetof(LanguageFontSize_t1D69214E22205065DF39D269CA0648625ACB9029, ___language_0)); } inline int32_t get_language_0() const { return ___language_0; } inline int32_t* get_address_of_language_0() { return &___language_0; } inline void set_language_0(int32_t value) { ___language_0 = value; } inline static int32_t get_offset_of_fontSize_1() { return static_cast(offsetof(LanguageFontSize_t1D69214E22205065DF39D269CA0648625ACB9029, ___fontSize_1)); } inline int32_t get_fontSize_1() const { return ___fontSize_1; } inline int32_t* get_address_of_fontSize_1() { return &___fontSize_1; } inline void set_fontSize_1(int32_t value) { ___fontSize_1 = value; } }; // LanguageImage struct LanguageImage_tBABF4FB868D32CD241E7167C49AC822E5FF3A2E2 : public RuntimeObject { public: // LanguageEnum LanguageImage::language int32_t ___language_0; // UnityEngine.Sprite LanguageImage::sprite Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___sprite_1; // UnityEngine.Vector2 LanguageImage::size Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___size_2; public: inline static int32_t get_offset_of_language_0() { return static_cast(offsetof(LanguageImage_tBABF4FB868D32CD241E7167C49AC822E5FF3A2E2, ___language_0)); } inline int32_t get_language_0() const { return ___language_0; } inline int32_t* get_address_of_language_0() { return &___language_0; } inline void set_language_0(int32_t value) { ___language_0 = value; } inline static int32_t get_offset_of_sprite_1() { return static_cast(offsetof(LanguageImage_tBABF4FB868D32CD241E7167C49AC822E5FF3A2E2, ___sprite_1)); } inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * get_sprite_1() const { return ___sprite_1; } inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 ** get_address_of_sprite_1() { return &___sprite_1; } inline void set_sprite_1(Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * value) { ___sprite_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___sprite_1), (void*)value); } inline static int32_t get_offset_of_size_2() { return static_cast(offsetof(LanguageImage_tBABF4FB868D32CD241E7167C49AC822E5FF3A2E2, ___size_2)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_size_2() const { return ___size_2; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_size_2() { return &___size_2; } inline void set_size_2(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___size_2 = value; } }; // BestHTTP.SignalRCore.Messages.Message struct Message_t7A5AEEC23C8151DAE56A0BF20600B63ED4BEB6D3 { public: // BestHTTP.SignalRCore.Messages.MessageTypes BestHTTP.SignalRCore.Messages.Message::type int32_t ___type_0; // System.String BestHTTP.SignalRCore.Messages.Message::invocationId String_t* ___invocationId_1; // System.Boolean BestHTTP.SignalRCore.Messages.Message::nonblocking bool ___nonblocking_2; // System.String BestHTTP.SignalRCore.Messages.Message::target String_t* ___target_3; // System.Object[] BestHTTP.SignalRCore.Messages.Message::arguments ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___arguments_4; // System.Object BestHTTP.SignalRCore.Messages.Message::item RuntimeObject * ___item_5; // System.Object BestHTTP.SignalRCore.Messages.Message::result RuntimeObject * ___result_6; // System.String BestHTTP.SignalRCore.Messages.Message::error String_t* ___error_7; public: inline static int32_t get_offset_of_type_0() { return static_cast(offsetof(Message_t7A5AEEC23C8151DAE56A0BF20600B63ED4BEB6D3, ___type_0)); } inline int32_t get_type_0() const { return ___type_0; } inline int32_t* get_address_of_type_0() { return &___type_0; } inline void set_type_0(int32_t value) { ___type_0 = value; } inline static int32_t get_offset_of_invocationId_1() { return static_cast(offsetof(Message_t7A5AEEC23C8151DAE56A0BF20600B63ED4BEB6D3, ___invocationId_1)); } inline String_t* get_invocationId_1() const { return ___invocationId_1; } inline String_t** get_address_of_invocationId_1() { return &___invocationId_1; } inline void set_invocationId_1(String_t* value) { ___invocationId_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___invocationId_1), (void*)value); } inline static int32_t get_offset_of_nonblocking_2() { return static_cast(offsetof(Message_t7A5AEEC23C8151DAE56A0BF20600B63ED4BEB6D3, ___nonblocking_2)); } inline bool get_nonblocking_2() const { return ___nonblocking_2; } inline bool* get_address_of_nonblocking_2() { return &___nonblocking_2; } inline void set_nonblocking_2(bool value) { ___nonblocking_2 = value; } inline static int32_t get_offset_of_target_3() { return static_cast(offsetof(Message_t7A5AEEC23C8151DAE56A0BF20600B63ED4BEB6D3, ___target_3)); } inline String_t* get_target_3() const { return ___target_3; } inline String_t** get_address_of_target_3() { return &___target_3; } inline void set_target_3(String_t* value) { ___target_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___target_3), (void*)value); } inline static int32_t get_offset_of_arguments_4() { return static_cast(offsetof(Message_t7A5AEEC23C8151DAE56A0BF20600B63ED4BEB6D3, ___arguments_4)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_arguments_4() const { return ___arguments_4; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_arguments_4() { return &___arguments_4; } inline void set_arguments_4(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ___arguments_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___arguments_4), (void*)value); } inline static int32_t get_offset_of_item_5() { return static_cast(offsetof(Message_t7A5AEEC23C8151DAE56A0BF20600B63ED4BEB6D3, ___item_5)); } inline RuntimeObject * get_item_5() const { return ___item_5; } inline RuntimeObject ** get_address_of_item_5() { return &___item_5; } inline void set_item_5(RuntimeObject * value) { ___item_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___item_5), (void*)value); } inline static int32_t get_offset_of_result_6() { return static_cast(offsetof(Message_t7A5AEEC23C8151DAE56A0BF20600B63ED4BEB6D3, ___result_6)); } inline RuntimeObject * get_result_6() const { return ___result_6; } inline RuntimeObject ** get_address_of_result_6() { return &___result_6; } inline void set_result_6(RuntimeObject * value) { ___result_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___result_6), (void*)value); } inline static int32_t get_offset_of_error_7() { return static_cast(offsetof(Message_t7A5AEEC23C8151DAE56A0BF20600B63ED4BEB6D3, ___error_7)); } inline String_t* get_error_7() const { return ___error_7; } inline String_t** get_address_of_error_7() { return &___error_7; } inline void set_error_7(String_t* value) { ___error_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___error_7), (void*)value); } }; // Native definition for P/Invoke marshalling of BestHTTP.SignalRCore.Messages.Message struct Message_t7A5AEEC23C8151DAE56A0BF20600B63ED4BEB6D3_marshaled_pinvoke { int32_t ___type_0; char* ___invocationId_1; int32_t ___nonblocking_2; char* ___target_3; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___arguments_4; Il2CppIUnknown* ___item_5; Il2CppIUnknown* ___result_6; char* ___error_7; }; // Native definition for COM marshalling of BestHTTP.SignalRCore.Messages.Message struct Message_t7A5AEEC23C8151DAE56A0BF20600B63ED4BEB6D3_marshaled_com { int32_t ___type_0; Il2CppChar* ___invocationId_1; int32_t ___nonblocking_2; Il2CppChar* ___target_3; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___arguments_4; Il2CppIUnknown* ___item_5; Il2CppIUnknown* ___result_6; Il2CppChar* ___error_7; }; // System.MulticastDelegate struct MulticastDelegate_t : public Delegate_t { public: // System.Delegate[] System.MulticastDelegate::delegates DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* ___delegates_11; public: inline static int32_t get_offset_of_delegates_11() { return static_cast(offsetof(MulticastDelegate_t, ___delegates_11)); } inline DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* get_delegates_11() const { return ___delegates_11; } inline DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8** get_address_of_delegates_11() { return &___delegates_11; } inline void set_delegates_11(DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* value) { ___delegates_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___delegates_11), (void*)value); } }; // Native definition for P/Invoke marshalling of System.MulticastDelegate struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke { Delegate_t_marshaled_pinvoke** ___delegates_11; }; // Native definition for COM marshalling of System.MulticastDelegate struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com { Delegate_t_marshaled_com** ___delegates_11; }; // System.Globalization.NumberFormatInfo struct NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D : public RuntimeObject { public: // System.Int32[] System.Globalization.NumberFormatInfo::numberGroupSizes Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___numberGroupSizes_1; // System.Int32[] System.Globalization.NumberFormatInfo::currencyGroupSizes Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___currencyGroupSizes_2; // System.Int32[] System.Globalization.NumberFormatInfo::percentGroupSizes Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___percentGroupSizes_3; // System.String System.Globalization.NumberFormatInfo::positiveSign String_t* ___positiveSign_4; // System.String System.Globalization.NumberFormatInfo::negativeSign String_t* ___negativeSign_5; // System.String System.Globalization.NumberFormatInfo::numberDecimalSeparator String_t* ___numberDecimalSeparator_6; // System.String System.Globalization.NumberFormatInfo::numberGroupSeparator String_t* ___numberGroupSeparator_7; // System.String System.Globalization.NumberFormatInfo::currencyGroupSeparator String_t* ___currencyGroupSeparator_8; // System.String System.Globalization.NumberFormatInfo::currencyDecimalSeparator String_t* ___currencyDecimalSeparator_9; // System.String System.Globalization.NumberFormatInfo::currencySymbol String_t* ___currencySymbol_10; // System.String System.Globalization.NumberFormatInfo::ansiCurrencySymbol String_t* ___ansiCurrencySymbol_11; // System.String System.Globalization.NumberFormatInfo::nanSymbol String_t* ___nanSymbol_12; // System.String System.Globalization.NumberFormatInfo::positiveInfinitySymbol String_t* ___positiveInfinitySymbol_13; // System.String System.Globalization.NumberFormatInfo::negativeInfinitySymbol String_t* ___negativeInfinitySymbol_14; // System.String System.Globalization.NumberFormatInfo::percentDecimalSeparator String_t* ___percentDecimalSeparator_15; // System.String System.Globalization.NumberFormatInfo::percentGroupSeparator String_t* ___percentGroupSeparator_16; // System.String System.Globalization.NumberFormatInfo::percentSymbol String_t* ___percentSymbol_17; // System.String System.Globalization.NumberFormatInfo::perMilleSymbol String_t* ___perMilleSymbol_18; // System.String[] System.Globalization.NumberFormatInfo::nativeDigits StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___nativeDigits_19; // System.Int32 System.Globalization.NumberFormatInfo::m_dataItem int32_t ___m_dataItem_20; // System.Int32 System.Globalization.NumberFormatInfo::numberDecimalDigits int32_t ___numberDecimalDigits_21; // System.Int32 System.Globalization.NumberFormatInfo::currencyDecimalDigits int32_t ___currencyDecimalDigits_22; // System.Int32 System.Globalization.NumberFormatInfo::currencyPositivePattern int32_t ___currencyPositivePattern_23; // System.Int32 System.Globalization.NumberFormatInfo::currencyNegativePattern int32_t ___currencyNegativePattern_24; // System.Int32 System.Globalization.NumberFormatInfo::numberNegativePattern int32_t ___numberNegativePattern_25; // System.Int32 System.Globalization.NumberFormatInfo::percentPositivePattern int32_t ___percentPositivePattern_26; // System.Int32 System.Globalization.NumberFormatInfo::percentNegativePattern int32_t ___percentNegativePattern_27; // System.Int32 System.Globalization.NumberFormatInfo::percentDecimalDigits int32_t ___percentDecimalDigits_28; // System.Int32 System.Globalization.NumberFormatInfo::digitSubstitution int32_t ___digitSubstitution_29; // System.Boolean System.Globalization.NumberFormatInfo::isReadOnly bool ___isReadOnly_30; // System.Boolean System.Globalization.NumberFormatInfo::m_useUserOverride bool ___m_useUserOverride_31; // System.Boolean System.Globalization.NumberFormatInfo::m_isInvariant bool ___m_isInvariant_32; // System.Boolean System.Globalization.NumberFormatInfo::validForParseAsNumber bool ___validForParseAsNumber_33; // System.Boolean System.Globalization.NumberFormatInfo::validForParseAsCurrency bool ___validForParseAsCurrency_34; public: inline static int32_t get_offset_of_numberGroupSizes_1() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___numberGroupSizes_1)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_numberGroupSizes_1() const { return ___numberGroupSizes_1; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_numberGroupSizes_1() { return &___numberGroupSizes_1; } inline void set_numberGroupSizes_1(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___numberGroupSizes_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___numberGroupSizes_1), (void*)value); } inline static int32_t get_offset_of_currencyGroupSizes_2() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___currencyGroupSizes_2)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_currencyGroupSizes_2() const { return ___currencyGroupSizes_2; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_currencyGroupSizes_2() { return &___currencyGroupSizes_2; } inline void set_currencyGroupSizes_2(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___currencyGroupSizes_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___currencyGroupSizes_2), (void*)value); } inline static int32_t get_offset_of_percentGroupSizes_3() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___percentGroupSizes_3)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_percentGroupSizes_3() const { return ___percentGroupSizes_3; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_percentGroupSizes_3() { return &___percentGroupSizes_3; } inline void set_percentGroupSizes_3(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___percentGroupSizes_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___percentGroupSizes_3), (void*)value); } inline static int32_t get_offset_of_positiveSign_4() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___positiveSign_4)); } inline String_t* get_positiveSign_4() const { return ___positiveSign_4; } inline String_t** get_address_of_positiveSign_4() { return &___positiveSign_4; } inline void set_positiveSign_4(String_t* value) { ___positiveSign_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___positiveSign_4), (void*)value); } inline static int32_t get_offset_of_negativeSign_5() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___negativeSign_5)); } inline String_t* get_negativeSign_5() const { return ___negativeSign_5; } inline String_t** get_address_of_negativeSign_5() { return &___negativeSign_5; } inline void set_negativeSign_5(String_t* value) { ___negativeSign_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___negativeSign_5), (void*)value); } inline static int32_t get_offset_of_numberDecimalSeparator_6() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___numberDecimalSeparator_6)); } inline String_t* get_numberDecimalSeparator_6() const { return ___numberDecimalSeparator_6; } inline String_t** get_address_of_numberDecimalSeparator_6() { return &___numberDecimalSeparator_6; } inline void set_numberDecimalSeparator_6(String_t* value) { ___numberDecimalSeparator_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___numberDecimalSeparator_6), (void*)value); } inline static int32_t get_offset_of_numberGroupSeparator_7() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___numberGroupSeparator_7)); } inline String_t* get_numberGroupSeparator_7() const { return ___numberGroupSeparator_7; } inline String_t** get_address_of_numberGroupSeparator_7() { return &___numberGroupSeparator_7; } inline void set_numberGroupSeparator_7(String_t* value) { ___numberGroupSeparator_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___numberGroupSeparator_7), (void*)value); } inline static int32_t get_offset_of_currencyGroupSeparator_8() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___currencyGroupSeparator_8)); } inline String_t* get_currencyGroupSeparator_8() const { return ___currencyGroupSeparator_8; } inline String_t** get_address_of_currencyGroupSeparator_8() { return &___currencyGroupSeparator_8; } inline void set_currencyGroupSeparator_8(String_t* value) { ___currencyGroupSeparator_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___currencyGroupSeparator_8), (void*)value); } inline static int32_t get_offset_of_currencyDecimalSeparator_9() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___currencyDecimalSeparator_9)); } inline String_t* get_currencyDecimalSeparator_9() const { return ___currencyDecimalSeparator_9; } inline String_t** get_address_of_currencyDecimalSeparator_9() { return &___currencyDecimalSeparator_9; } inline void set_currencyDecimalSeparator_9(String_t* value) { ___currencyDecimalSeparator_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___currencyDecimalSeparator_9), (void*)value); } inline static int32_t get_offset_of_currencySymbol_10() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___currencySymbol_10)); } inline String_t* get_currencySymbol_10() const { return ___currencySymbol_10; } inline String_t** get_address_of_currencySymbol_10() { return &___currencySymbol_10; } inline void set_currencySymbol_10(String_t* value) { ___currencySymbol_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___currencySymbol_10), (void*)value); } inline static int32_t get_offset_of_ansiCurrencySymbol_11() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___ansiCurrencySymbol_11)); } inline String_t* get_ansiCurrencySymbol_11() const { return ___ansiCurrencySymbol_11; } inline String_t** get_address_of_ansiCurrencySymbol_11() { return &___ansiCurrencySymbol_11; } inline void set_ansiCurrencySymbol_11(String_t* value) { ___ansiCurrencySymbol_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___ansiCurrencySymbol_11), (void*)value); } inline static int32_t get_offset_of_nanSymbol_12() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___nanSymbol_12)); } inline String_t* get_nanSymbol_12() const { return ___nanSymbol_12; } inline String_t** get_address_of_nanSymbol_12() { return &___nanSymbol_12; } inline void set_nanSymbol_12(String_t* value) { ___nanSymbol_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___nanSymbol_12), (void*)value); } inline static int32_t get_offset_of_positiveInfinitySymbol_13() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___positiveInfinitySymbol_13)); } inline String_t* get_positiveInfinitySymbol_13() const { return ___positiveInfinitySymbol_13; } inline String_t** get_address_of_positiveInfinitySymbol_13() { return &___positiveInfinitySymbol_13; } inline void set_positiveInfinitySymbol_13(String_t* value) { ___positiveInfinitySymbol_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___positiveInfinitySymbol_13), (void*)value); } inline static int32_t get_offset_of_negativeInfinitySymbol_14() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___negativeInfinitySymbol_14)); } inline String_t* get_negativeInfinitySymbol_14() const { return ___negativeInfinitySymbol_14; } inline String_t** get_address_of_negativeInfinitySymbol_14() { return &___negativeInfinitySymbol_14; } inline void set_negativeInfinitySymbol_14(String_t* value) { ___negativeInfinitySymbol_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___negativeInfinitySymbol_14), (void*)value); } inline static int32_t get_offset_of_percentDecimalSeparator_15() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___percentDecimalSeparator_15)); } inline String_t* get_percentDecimalSeparator_15() const { return ___percentDecimalSeparator_15; } inline String_t** get_address_of_percentDecimalSeparator_15() { return &___percentDecimalSeparator_15; } inline void set_percentDecimalSeparator_15(String_t* value) { ___percentDecimalSeparator_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___percentDecimalSeparator_15), (void*)value); } inline static int32_t get_offset_of_percentGroupSeparator_16() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___percentGroupSeparator_16)); } inline String_t* get_percentGroupSeparator_16() const { return ___percentGroupSeparator_16; } inline String_t** get_address_of_percentGroupSeparator_16() { return &___percentGroupSeparator_16; } inline void set_percentGroupSeparator_16(String_t* value) { ___percentGroupSeparator_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___percentGroupSeparator_16), (void*)value); } inline static int32_t get_offset_of_percentSymbol_17() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___percentSymbol_17)); } inline String_t* get_percentSymbol_17() const { return ___percentSymbol_17; } inline String_t** get_address_of_percentSymbol_17() { return &___percentSymbol_17; } inline void set_percentSymbol_17(String_t* value) { ___percentSymbol_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___percentSymbol_17), (void*)value); } inline static int32_t get_offset_of_perMilleSymbol_18() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___perMilleSymbol_18)); } inline String_t* get_perMilleSymbol_18() const { return ___perMilleSymbol_18; } inline String_t** get_address_of_perMilleSymbol_18() { return &___perMilleSymbol_18; } inline void set_perMilleSymbol_18(String_t* value) { ___perMilleSymbol_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___perMilleSymbol_18), (void*)value); } inline static int32_t get_offset_of_nativeDigits_19() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___nativeDigits_19)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_nativeDigits_19() const { return ___nativeDigits_19; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_nativeDigits_19() { return &___nativeDigits_19; } inline void set_nativeDigits_19(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___nativeDigits_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___nativeDigits_19), (void*)value); } inline static int32_t get_offset_of_m_dataItem_20() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___m_dataItem_20)); } inline int32_t get_m_dataItem_20() const { return ___m_dataItem_20; } inline int32_t* get_address_of_m_dataItem_20() { return &___m_dataItem_20; } inline void set_m_dataItem_20(int32_t value) { ___m_dataItem_20 = value; } inline static int32_t get_offset_of_numberDecimalDigits_21() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___numberDecimalDigits_21)); } inline int32_t get_numberDecimalDigits_21() const { return ___numberDecimalDigits_21; } inline int32_t* get_address_of_numberDecimalDigits_21() { return &___numberDecimalDigits_21; } inline void set_numberDecimalDigits_21(int32_t value) { ___numberDecimalDigits_21 = value; } inline static int32_t get_offset_of_currencyDecimalDigits_22() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___currencyDecimalDigits_22)); } inline int32_t get_currencyDecimalDigits_22() const { return ___currencyDecimalDigits_22; } inline int32_t* get_address_of_currencyDecimalDigits_22() { return &___currencyDecimalDigits_22; } inline void set_currencyDecimalDigits_22(int32_t value) { ___currencyDecimalDigits_22 = value; } inline static int32_t get_offset_of_currencyPositivePattern_23() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___currencyPositivePattern_23)); } inline int32_t get_currencyPositivePattern_23() const { return ___currencyPositivePattern_23; } inline int32_t* get_address_of_currencyPositivePattern_23() { return &___currencyPositivePattern_23; } inline void set_currencyPositivePattern_23(int32_t value) { ___currencyPositivePattern_23 = value; } inline static int32_t get_offset_of_currencyNegativePattern_24() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___currencyNegativePattern_24)); } inline int32_t get_currencyNegativePattern_24() const { return ___currencyNegativePattern_24; } inline int32_t* get_address_of_currencyNegativePattern_24() { return &___currencyNegativePattern_24; } inline void set_currencyNegativePattern_24(int32_t value) { ___currencyNegativePattern_24 = value; } inline static int32_t get_offset_of_numberNegativePattern_25() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___numberNegativePattern_25)); } inline int32_t get_numberNegativePattern_25() const { return ___numberNegativePattern_25; } inline int32_t* get_address_of_numberNegativePattern_25() { return &___numberNegativePattern_25; } inline void set_numberNegativePattern_25(int32_t value) { ___numberNegativePattern_25 = value; } inline static int32_t get_offset_of_percentPositivePattern_26() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___percentPositivePattern_26)); } inline int32_t get_percentPositivePattern_26() const { return ___percentPositivePattern_26; } inline int32_t* get_address_of_percentPositivePattern_26() { return &___percentPositivePattern_26; } inline void set_percentPositivePattern_26(int32_t value) { ___percentPositivePattern_26 = value; } inline static int32_t get_offset_of_percentNegativePattern_27() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___percentNegativePattern_27)); } inline int32_t get_percentNegativePattern_27() const { return ___percentNegativePattern_27; } inline int32_t* get_address_of_percentNegativePattern_27() { return &___percentNegativePattern_27; } inline void set_percentNegativePattern_27(int32_t value) { ___percentNegativePattern_27 = value; } inline static int32_t get_offset_of_percentDecimalDigits_28() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___percentDecimalDigits_28)); } inline int32_t get_percentDecimalDigits_28() const { return ___percentDecimalDigits_28; } inline int32_t* get_address_of_percentDecimalDigits_28() { return &___percentDecimalDigits_28; } inline void set_percentDecimalDigits_28(int32_t value) { ___percentDecimalDigits_28 = value; } inline static int32_t get_offset_of_digitSubstitution_29() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___digitSubstitution_29)); } inline int32_t get_digitSubstitution_29() const { return ___digitSubstitution_29; } inline int32_t* get_address_of_digitSubstitution_29() { return &___digitSubstitution_29; } inline void set_digitSubstitution_29(int32_t value) { ___digitSubstitution_29 = value; } inline static int32_t get_offset_of_isReadOnly_30() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___isReadOnly_30)); } inline bool get_isReadOnly_30() const { return ___isReadOnly_30; } inline bool* get_address_of_isReadOnly_30() { return &___isReadOnly_30; } inline void set_isReadOnly_30(bool value) { ___isReadOnly_30 = value; } inline static int32_t get_offset_of_m_useUserOverride_31() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___m_useUserOverride_31)); } inline bool get_m_useUserOverride_31() const { return ___m_useUserOverride_31; } inline bool* get_address_of_m_useUserOverride_31() { return &___m_useUserOverride_31; } inline void set_m_useUserOverride_31(bool value) { ___m_useUserOverride_31 = value; } inline static int32_t get_offset_of_m_isInvariant_32() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___m_isInvariant_32)); } inline bool get_m_isInvariant_32() const { return ___m_isInvariant_32; } inline bool* get_address_of_m_isInvariant_32() { return &___m_isInvariant_32; } inline void set_m_isInvariant_32(bool value) { ___m_isInvariant_32 = value; } inline static int32_t get_offset_of_validForParseAsNumber_33() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___validForParseAsNumber_33)); } inline bool get_validForParseAsNumber_33() const { return ___validForParseAsNumber_33; } inline bool* get_address_of_validForParseAsNumber_33() { return &___validForParseAsNumber_33; } inline void set_validForParseAsNumber_33(bool value) { ___validForParseAsNumber_33 = value; } inline static int32_t get_offset_of_validForParseAsCurrency_34() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___validForParseAsCurrency_34)); } inline bool get_validForParseAsCurrency_34() const { return ___validForParseAsCurrency_34; } inline bool* get_address_of_validForParseAsCurrency_34() { return &___validForParseAsCurrency_34; } inline void set_validForParseAsCurrency_34(bool value) { ___validForParseAsCurrency_34 = value; } }; struct NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D_StaticFields { public: // System.Globalization.NumberFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.NumberFormatInfo::invariantInfo NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * ___invariantInfo_0; public: inline static int32_t get_offset_of_invariantInfo_0() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D_StaticFields, ___invariantInfo_0)); } inline NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * get_invariantInfo_0() const { return ___invariantInfo_0; } inline NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D ** get_address_of_invariantInfo_0() { return &___invariantInfo_0; } inline void set_invariantInfo_0(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * value) { ___invariantInfo_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___invariantInfo_0), (void*)value); } }; // System.Reflection.ParameterInfo struct ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7 : public RuntimeObject { public: // System.Type System.Reflection.ParameterInfo::ClassImpl Type_t * ___ClassImpl_0; // System.Object System.Reflection.ParameterInfo::DefaultValueImpl RuntimeObject * ___DefaultValueImpl_1; // System.Reflection.MemberInfo System.Reflection.ParameterInfo::MemberImpl MemberInfo_t * ___MemberImpl_2; // System.String System.Reflection.ParameterInfo::NameImpl String_t* ___NameImpl_3; // System.Int32 System.Reflection.ParameterInfo::PositionImpl int32_t ___PositionImpl_4; // System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::AttrsImpl int32_t ___AttrsImpl_5; // System.Runtime.InteropServices.MarshalAsAttribute System.Reflection.ParameterInfo::marshalAs MarshalAsAttribute_t1689F84A11C34D0F35491C8F0DA4421467B6EFE6 * ___marshalAs_6; public: inline static int32_t get_offset_of_ClassImpl_0() { return static_cast(offsetof(ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7, ___ClassImpl_0)); } inline Type_t * get_ClassImpl_0() const { return ___ClassImpl_0; } inline Type_t ** get_address_of_ClassImpl_0() { return &___ClassImpl_0; } inline void set_ClassImpl_0(Type_t * value) { ___ClassImpl_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___ClassImpl_0), (void*)value); } inline static int32_t get_offset_of_DefaultValueImpl_1() { return static_cast(offsetof(ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7, ___DefaultValueImpl_1)); } inline RuntimeObject * get_DefaultValueImpl_1() const { return ___DefaultValueImpl_1; } inline RuntimeObject ** get_address_of_DefaultValueImpl_1() { return &___DefaultValueImpl_1; } inline void set_DefaultValueImpl_1(RuntimeObject * value) { ___DefaultValueImpl_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___DefaultValueImpl_1), (void*)value); } inline static int32_t get_offset_of_MemberImpl_2() { return static_cast(offsetof(ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7, ___MemberImpl_2)); } inline MemberInfo_t * get_MemberImpl_2() const { return ___MemberImpl_2; } inline MemberInfo_t ** get_address_of_MemberImpl_2() { return &___MemberImpl_2; } inline void set_MemberImpl_2(MemberInfo_t * value) { ___MemberImpl_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___MemberImpl_2), (void*)value); } inline static int32_t get_offset_of_NameImpl_3() { return static_cast(offsetof(ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7, ___NameImpl_3)); } inline String_t* get_NameImpl_3() const { return ___NameImpl_3; } inline String_t** get_address_of_NameImpl_3() { return &___NameImpl_3; } inline void set_NameImpl_3(String_t* value) { ___NameImpl_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___NameImpl_3), (void*)value); } inline static int32_t get_offset_of_PositionImpl_4() { return static_cast(offsetof(ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7, ___PositionImpl_4)); } inline int32_t get_PositionImpl_4() const { return ___PositionImpl_4; } inline int32_t* get_address_of_PositionImpl_4() { return &___PositionImpl_4; } inline void set_PositionImpl_4(int32_t value) { ___PositionImpl_4 = value; } inline static int32_t get_offset_of_AttrsImpl_5() { return static_cast(offsetof(ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7, ___AttrsImpl_5)); } inline int32_t get_AttrsImpl_5() const { return ___AttrsImpl_5; } inline int32_t* get_address_of_AttrsImpl_5() { return &___AttrsImpl_5; } inline void set_AttrsImpl_5(int32_t value) { ___AttrsImpl_5 = value; } inline static int32_t get_offset_of_marshalAs_6() { return static_cast(offsetof(ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7, ___marshalAs_6)); } inline MarshalAsAttribute_t1689F84A11C34D0F35491C8F0DA4421467B6EFE6 * get_marshalAs_6() const { return ___marshalAs_6; } inline MarshalAsAttribute_t1689F84A11C34D0F35491C8F0DA4421467B6EFE6 ** get_address_of_marshalAs_6() { return &___marshalAs_6; } inline void set_marshalAs_6(MarshalAsAttribute_t1689F84A11C34D0F35491C8F0DA4421467B6EFE6 * value) { ___marshalAs_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___marshalAs_6), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Reflection.ParameterInfo struct ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7_marshaled_pinvoke { Type_t * ___ClassImpl_0; Il2CppIUnknown* ___DefaultValueImpl_1; MemberInfo_t * ___MemberImpl_2; char* ___NameImpl_3; int32_t ___PositionImpl_4; int32_t ___AttrsImpl_5; MarshalAsAttribute_t1689F84A11C34D0F35491C8F0DA4421467B6EFE6 * ___marshalAs_6; }; // Native definition for COM marshalling of System.Reflection.ParameterInfo struct ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7_marshaled_com { Type_t * ___ClassImpl_0; Il2CppIUnknown* ___DefaultValueImpl_1; MemberInfo_t * ___MemberImpl_2; Il2CppChar* ___NameImpl_3; int32_t ___PositionImpl_4; int32_t ___AttrsImpl_5; MarshalAsAttribute_t1689F84A11C34D0F35491C8F0DA4421467B6EFE6 * ___marshalAs_6; }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecurityUtilityException struct SecurityUtilityException_t302EB7051FEB04E7829C028B4BC072B6664255CA : public Exception_t { public: public: }; // System.SystemException struct SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 : public Exception_t { public: public: }; // System.Type struct Type_t : public MemberInfo_t { public: // System.RuntimeTypeHandle System.Type::_impl RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 ____impl_9; public: inline static int32_t get_offset_of__impl_9() { return static_cast(offsetof(Type_t, ____impl_9)); } inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 get__impl_9() const { return ____impl_9; } inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 * get_address_of__impl_9() { return &____impl_9; } inline void set__impl_9(RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 value) { ____impl_9 = value; } }; struct Type_t_StaticFields { public: // System.Reflection.MemberFilter System.Type::FilterAttribute MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterAttribute_0; // System.Reflection.MemberFilter System.Type::FilterName MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterName_1; // System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterNameIgnoreCase_2; // System.Object System.Type::Missing RuntimeObject * ___Missing_3; // System.Char System.Type::Delimiter Il2CppChar ___Delimiter_4; // System.Type[] System.Type::EmptyTypes TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ___EmptyTypes_5; // System.Reflection.Binder System.Type::defaultBinder Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * ___defaultBinder_6; public: inline static int32_t get_offset_of_FilterAttribute_0() { return static_cast(offsetof(Type_t_StaticFields, ___FilterAttribute_0)); } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterAttribute_0() const { return ___FilterAttribute_0; } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; } inline void set_FilterAttribute_0(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value) { ___FilterAttribute_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterAttribute_0), (void*)value); } inline static int32_t get_offset_of_FilterName_1() { return static_cast(offsetof(Type_t_StaticFields, ___FilterName_1)); } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterName_1() const { return ___FilterName_1; } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterName_1() { return &___FilterName_1; } inline void set_FilterName_1(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value) { ___FilterName_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterName_1), (void*)value); } inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; } inline void set_FilterNameIgnoreCase_2(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value) { ___FilterNameIgnoreCase_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterNameIgnoreCase_2), (void*)value); } inline static int32_t get_offset_of_Missing_3() { return static_cast(offsetof(Type_t_StaticFields, ___Missing_3)); } inline RuntimeObject * get_Missing_3() const { return ___Missing_3; } inline RuntimeObject ** get_address_of_Missing_3() { return &___Missing_3; } inline void set_Missing_3(RuntimeObject * value) { ___Missing_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___Missing_3), (void*)value); } inline static int32_t get_offset_of_Delimiter_4() { return static_cast(offsetof(Type_t_StaticFields, ___Delimiter_4)); } inline Il2CppChar get_Delimiter_4() const { return ___Delimiter_4; } inline Il2CppChar* get_address_of_Delimiter_4() { return &___Delimiter_4; } inline void set_Delimiter_4(Il2CppChar value) { ___Delimiter_4 = value; } inline static int32_t get_offset_of_EmptyTypes_5() { return static_cast(offsetof(Type_t_StaticFields, ___EmptyTypes_5)); } inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* get_EmptyTypes_5() const { return ___EmptyTypes_5; } inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; } inline void set_EmptyTypes_5(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* value) { ___EmptyTypes_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___EmptyTypes_5), (void*)value); } inline static int32_t get_offset_of_defaultBinder_6() { return static_cast(offsetof(Type_t_StaticFields, ___defaultBinder_6)); } inline Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * get_defaultBinder_6() const { return ___defaultBinder_6; } inline Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; } inline void set_defaultBinder_6(Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * value) { ___defaultBinder_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultBinder_6), (void*)value); } }; // System.Uri struct Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 : public RuntimeObject { public: // System.String System.Uri::m_String String_t* ___m_String_16; // System.String System.Uri::m_originalUnicodeString String_t* ___m_originalUnicodeString_17; // System.UriParser System.Uri::m_Syntax UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * ___m_Syntax_18; // System.String System.Uri::m_DnsSafeHost String_t* ___m_DnsSafeHost_19; // System.Uri/Flags System.Uri::m_Flags uint64_t ___m_Flags_20; // System.Uri/UriInfo System.Uri::m_Info UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * ___m_Info_21; // System.Boolean System.Uri::m_iriParsing bool ___m_iriParsing_22; public: inline static int32_t get_offset_of_m_String_16() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_String_16)); } inline String_t* get_m_String_16() const { return ___m_String_16; } inline String_t** get_address_of_m_String_16() { return &___m_String_16; } inline void set_m_String_16(String_t* value) { ___m_String_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_String_16), (void*)value); } inline static int32_t get_offset_of_m_originalUnicodeString_17() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_originalUnicodeString_17)); } inline String_t* get_m_originalUnicodeString_17() const { return ___m_originalUnicodeString_17; } inline String_t** get_address_of_m_originalUnicodeString_17() { return &___m_originalUnicodeString_17; } inline void set_m_originalUnicodeString_17(String_t* value) { ___m_originalUnicodeString_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_originalUnicodeString_17), (void*)value); } inline static int32_t get_offset_of_m_Syntax_18() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_Syntax_18)); } inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * get_m_Syntax_18() const { return ___m_Syntax_18; } inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** get_address_of_m_Syntax_18() { return &___m_Syntax_18; } inline void set_m_Syntax_18(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * value) { ___m_Syntax_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Syntax_18), (void*)value); } inline static int32_t get_offset_of_m_DnsSafeHost_19() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_DnsSafeHost_19)); } inline String_t* get_m_DnsSafeHost_19() const { return ___m_DnsSafeHost_19; } inline String_t** get_address_of_m_DnsSafeHost_19() { return &___m_DnsSafeHost_19; } inline void set_m_DnsSafeHost_19(String_t* value) { ___m_DnsSafeHost_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_DnsSafeHost_19), (void*)value); } inline static int32_t get_offset_of_m_Flags_20() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_Flags_20)); } inline uint64_t get_m_Flags_20() const { return ___m_Flags_20; } inline uint64_t* get_address_of_m_Flags_20() { return &___m_Flags_20; } inline void set_m_Flags_20(uint64_t value) { ___m_Flags_20 = value; } inline static int32_t get_offset_of_m_Info_21() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_Info_21)); } inline UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * get_m_Info_21() const { return ___m_Info_21; } inline UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 ** get_address_of_m_Info_21() { return &___m_Info_21; } inline void set_m_Info_21(UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * value) { ___m_Info_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Info_21), (void*)value); } inline static int32_t get_offset_of_m_iriParsing_22() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_iriParsing_22)); } inline bool get_m_iriParsing_22() const { return ___m_iriParsing_22; } inline bool* get_address_of_m_iriParsing_22() { return &___m_iriParsing_22; } inline void set_m_iriParsing_22(bool value) { ___m_iriParsing_22 = value; } }; struct Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields { public: // System.String System.Uri::UriSchemeFile String_t* ___UriSchemeFile_0; // System.String System.Uri::UriSchemeFtp String_t* ___UriSchemeFtp_1; // System.String System.Uri::UriSchemeGopher String_t* ___UriSchemeGopher_2; // System.String System.Uri::UriSchemeHttp String_t* ___UriSchemeHttp_3; // System.String System.Uri::UriSchemeHttps String_t* ___UriSchemeHttps_4; // System.String System.Uri::UriSchemeWs String_t* ___UriSchemeWs_5; // System.String System.Uri::UriSchemeWss String_t* ___UriSchemeWss_6; // System.String System.Uri::UriSchemeMailto String_t* ___UriSchemeMailto_7; // System.String System.Uri::UriSchemeNews String_t* ___UriSchemeNews_8; // System.String System.Uri::UriSchemeNntp String_t* ___UriSchemeNntp_9; // System.String System.Uri::UriSchemeNetTcp String_t* ___UriSchemeNetTcp_10; // System.String System.Uri::UriSchemeNetPipe String_t* ___UriSchemeNetPipe_11; // System.String System.Uri::SchemeDelimiter String_t* ___SchemeDelimiter_12; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_ConfigInitialized bool ___s_ConfigInitialized_23; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_ConfigInitializing bool ___s_ConfigInitializing_24; // System.UriIdnScope modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_IdnScope int32_t ___s_IdnScope_25; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_IriParsing bool ___s_IriParsing_26; // System.Boolean System.Uri::useDotNetRelativeOrAbsolute bool ___useDotNetRelativeOrAbsolute_27; // System.Boolean System.Uri::IsWindowsFileSystem bool ___IsWindowsFileSystem_29; // System.Object System.Uri::s_initLock RuntimeObject * ___s_initLock_30; // System.Char[] System.Uri::HexLowerChars CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___HexLowerChars_34; // System.Char[] System.Uri::_WSchars CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ____WSchars_35; public: inline static int32_t get_offset_of_UriSchemeFile_0() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeFile_0)); } inline String_t* get_UriSchemeFile_0() const { return ___UriSchemeFile_0; } inline String_t** get_address_of_UriSchemeFile_0() { return &___UriSchemeFile_0; } inline void set_UriSchemeFile_0(String_t* value) { ___UriSchemeFile_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeFile_0), (void*)value); } inline static int32_t get_offset_of_UriSchemeFtp_1() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeFtp_1)); } inline String_t* get_UriSchemeFtp_1() const { return ___UriSchemeFtp_1; } inline String_t** get_address_of_UriSchemeFtp_1() { return &___UriSchemeFtp_1; } inline void set_UriSchemeFtp_1(String_t* value) { ___UriSchemeFtp_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeFtp_1), (void*)value); } inline static int32_t get_offset_of_UriSchemeGopher_2() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeGopher_2)); } inline String_t* get_UriSchemeGopher_2() const { return ___UriSchemeGopher_2; } inline String_t** get_address_of_UriSchemeGopher_2() { return &___UriSchemeGopher_2; } inline void set_UriSchemeGopher_2(String_t* value) { ___UriSchemeGopher_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeGopher_2), (void*)value); } inline static int32_t get_offset_of_UriSchemeHttp_3() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeHttp_3)); } inline String_t* get_UriSchemeHttp_3() const { return ___UriSchemeHttp_3; } inline String_t** get_address_of_UriSchemeHttp_3() { return &___UriSchemeHttp_3; } inline void set_UriSchemeHttp_3(String_t* value) { ___UriSchemeHttp_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeHttp_3), (void*)value); } inline static int32_t get_offset_of_UriSchemeHttps_4() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeHttps_4)); } inline String_t* get_UriSchemeHttps_4() const { return ___UriSchemeHttps_4; } inline String_t** get_address_of_UriSchemeHttps_4() { return &___UriSchemeHttps_4; } inline void set_UriSchemeHttps_4(String_t* value) { ___UriSchemeHttps_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeHttps_4), (void*)value); } inline static int32_t get_offset_of_UriSchemeWs_5() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeWs_5)); } inline String_t* get_UriSchemeWs_5() const { return ___UriSchemeWs_5; } inline String_t** get_address_of_UriSchemeWs_5() { return &___UriSchemeWs_5; } inline void set_UriSchemeWs_5(String_t* value) { ___UriSchemeWs_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeWs_5), (void*)value); } inline static int32_t get_offset_of_UriSchemeWss_6() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeWss_6)); } inline String_t* get_UriSchemeWss_6() const { return ___UriSchemeWss_6; } inline String_t** get_address_of_UriSchemeWss_6() { return &___UriSchemeWss_6; } inline void set_UriSchemeWss_6(String_t* value) { ___UriSchemeWss_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeWss_6), (void*)value); } inline static int32_t get_offset_of_UriSchemeMailto_7() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeMailto_7)); } inline String_t* get_UriSchemeMailto_7() const { return ___UriSchemeMailto_7; } inline String_t** get_address_of_UriSchemeMailto_7() { return &___UriSchemeMailto_7; } inline void set_UriSchemeMailto_7(String_t* value) { ___UriSchemeMailto_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeMailto_7), (void*)value); } inline static int32_t get_offset_of_UriSchemeNews_8() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeNews_8)); } inline String_t* get_UriSchemeNews_8() const { return ___UriSchemeNews_8; } inline String_t** get_address_of_UriSchemeNews_8() { return &___UriSchemeNews_8; } inline void set_UriSchemeNews_8(String_t* value) { ___UriSchemeNews_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNews_8), (void*)value); } inline static int32_t get_offset_of_UriSchemeNntp_9() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeNntp_9)); } inline String_t* get_UriSchemeNntp_9() const { return ___UriSchemeNntp_9; } inline String_t** get_address_of_UriSchemeNntp_9() { return &___UriSchemeNntp_9; } inline void set_UriSchemeNntp_9(String_t* value) { ___UriSchemeNntp_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNntp_9), (void*)value); } inline static int32_t get_offset_of_UriSchemeNetTcp_10() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeNetTcp_10)); } inline String_t* get_UriSchemeNetTcp_10() const { return ___UriSchemeNetTcp_10; } inline String_t** get_address_of_UriSchemeNetTcp_10() { return &___UriSchemeNetTcp_10; } inline void set_UriSchemeNetTcp_10(String_t* value) { ___UriSchemeNetTcp_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNetTcp_10), (void*)value); } inline static int32_t get_offset_of_UriSchemeNetPipe_11() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeNetPipe_11)); } inline String_t* get_UriSchemeNetPipe_11() const { return ___UriSchemeNetPipe_11; } inline String_t** get_address_of_UriSchemeNetPipe_11() { return &___UriSchemeNetPipe_11; } inline void set_UriSchemeNetPipe_11(String_t* value) { ___UriSchemeNetPipe_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNetPipe_11), (void*)value); } inline static int32_t get_offset_of_SchemeDelimiter_12() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___SchemeDelimiter_12)); } inline String_t* get_SchemeDelimiter_12() const { return ___SchemeDelimiter_12; } inline String_t** get_address_of_SchemeDelimiter_12() { return &___SchemeDelimiter_12; } inline void set_SchemeDelimiter_12(String_t* value) { ___SchemeDelimiter_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___SchemeDelimiter_12), (void*)value); } inline static int32_t get_offset_of_s_ConfigInitialized_23() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___s_ConfigInitialized_23)); } inline bool get_s_ConfigInitialized_23() const { return ___s_ConfigInitialized_23; } inline bool* get_address_of_s_ConfigInitialized_23() { return &___s_ConfigInitialized_23; } inline void set_s_ConfigInitialized_23(bool value) { ___s_ConfigInitialized_23 = value; } inline static int32_t get_offset_of_s_ConfigInitializing_24() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___s_ConfigInitializing_24)); } inline bool get_s_ConfigInitializing_24() const { return ___s_ConfigInitializing_24; } inline bool* get_address_of_s_ConfigInitializing_24() { return &___s_ConfigInitializing_24; } inline void set_s_ConfigInitializing_24(bool value) { ___s_ConfigInitializing_24 = value; } inline static int32_t get_offset_of_s_IdnScope_25() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___s_IdnScope_25)); } inline int32_t get_s_IdnScope_25() const { return ___s_IdnScope_25; } inline int32_t* get_address_of_s_IdnScope_25() { return &___s_IdnScope_25; } inline void set_s_IdnScope_25(int32_t value) { ___s_IdnScope_25 = value; } inline static int32_t get_offset_of_s_IriParsing_26() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___s_IriParsing_26)); } inline bool get_s_IriParsing_26() const { return ___s_IriParsing_26; } inline bool* get_address_of_s_IriParsing_26() { return &___s_IriParsing_26; } inline void set_s_IriParsing_26(bool value) { ___s_IriParsing_26 = value; } inline static int32_t get_offset_of_useDotNetRelativeOrAbsolute_27() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___useDotNetRelativeOrAbsolute_27)); } inline bool get_useDotNetRelativeOrAbsolute_27() const { return ___useDotNetRelativeOrAbsolute_27; } inline bool* get_address_of_useDotNetRelativeOrAbsolute_27() { return &___useDotNetRelativeOrAbsolute_27; } inline void set_useDotNetRelativeOrAbsolute_27(bool value) { ___useDotNetRelativeOrAbsolute_27 = value; } inline static int32_t get_offset_of_IsWindowsFileSystem_29() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___IsWindowsFileSystem_29)); } inline bool get_IsWindowsFileSystem_29() const { return ___IsWindowsFileSystem_29; } inline bool* get_address_of_IsWindowsFileSystem_29() { return &___IsWindowsFileSystem_29; } inline void set_IsWindowsFileSystem_29(bool value) { ___IsWindowsFileSystem_29 = value; } inline static int32_t get_offset_of_s_initLock_30() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___s_initLock_30)); } inline RuntimeObject * get_s_initLock_30() const { return ___s_initLock_30; } inline RuntimeObject ** get_address_of_s_initLock_30() { return &___s_initLock_30; } inline void set_s_initLock_30(RuntimeObject * value) { ___s_initLock_30 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_initLock_30), (void*)value); } inline static int32_t get_offset_of_HexLowerChars_34() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___HexLowerChars_34)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_HexLowerChars_34() const { return ___HexLowerChars_34; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_HexLowerChars_34() { return &___HexLowerChars_34; } inline void set_HexLowerChars_34(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___HexLowerChars_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___HexLowerChars_34), (void*)value); } inline static int32_t get_offset_of__WSchars_35() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ____WSchars_35)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get__WSchars_35() const { return ____WSchars_35; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of__WSchars_35() { return &____WSchars_35; } inline void set__WSchars_35(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ____WSchars_35 = value; Il2CppCodeGenWriteBarrier((void**)(&____WSchars_35), (void*)value); } }; // System.Action struct Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 : public MulticastDelegate_t { public: public: }; // System.ArgumentException struct ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: // System.String System.ArgumentException::m_paramName String_t* ___m_paramName_17; public: inline static int32_t get_offset_of_m_paramName_17() { return static_cast(offsetof(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00, ___m_paramName_17)); } inline String_t* get_m_paramName_17() const { return ___m_paramName_17; } inline String_t** get_address_of_m_paramName_17() { return &___m_paramName_17; } inline void set_m_paramName_17(String_t* value) { ___m_paramName_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_paramName_17), (void*)value); } }; // UnityEngine.Behaviour struct Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9 : public Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 { public: public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.DataLengthException struct DataLengthException_t084143F55FB641046577C7BD1F58BC059B953180 : public CryptoException_t4585FEA3F67B6ED045D6C9401A9C96B1234E3F27 { public: public: }; // LitJson.ExporterFunc struct ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 : public MulticastDelegate_t { public: public: }; // System.IO.IOException struct IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: // System.String System.IO.IOException::_maybeFullPath String_t* ____maybeFullPath_17; public: inline static int32_t get_offset_of__maybeFullPath_17() { return static_cast(offsetof(IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA, ____maybeFullPath_17)); } inline String_t* get__maybeFullPath_17() const { return ____maybeFullPath_17; } inline String_t** get_address_of__maybeFullPath_17() { return &____maybeFullPath_17; } inline void set__maybeFullPath_17(String_t* value) { ____maybeFullPath_17 = value; Il2CppCodeGenWriteBarrier((void**)(&____maybeFullPath_17), (void*)value); } }; // LitJson.ImporterFunc struct ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D : public MulticastDelegate_t { public: public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.InvalidCipherTextException struct InvalidCipherTextException_tCB4102F353576109DF6723BAD28806C82D61BC8D : public CryptoException_t4585FEA3F67B6ED045D6C9401A9C96B1234E3F27 { public: public: }; // System.InvalidOperationException struct InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.KeyException struct KeyException_t145BB2019F3A9E314C4C8FF15DDDFCD63E89AE62 : public GeneralSecurityException_tB77B003D334D962B16ED6BEB5AD4567AD5B618BA { public: public: }; // System.Collections.Generic.KeyNotFoundException struct KeyNotFoundException_t0A3BE653F7FA27DEA1C91C2FB3DAA6C8D0CBB952 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.KeyUsage struct KeyUsage_tF5D1BD25AB89302E6BE5EF210FF50F4055A77145 : public DerBitString_t305465793A47445626D3541AB8CEDE347D874524 { public: public: }; // BestHTTP.OnDownloadProgressDelegate struct OnDownloadProgressDelegate_t648A73937F176382A3E8E1252C79989D5EBC4F69 : public MulticastDelegate_t { public: public: }; // BestHTTP.OnRequestFinishedDelegate struct OnRequestFinishedDelegate_t4E35BB5277ED27A8B43D1987DE7F3B47772018B4 : public MulticastDelegate_t { public: public: }; // UnityEngine.Rigidbody struct Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A : public Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 { public: public: }; // LitJson.WrapperFactory struct WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C : public MulticastDelegate_t { public: public: }; // UnityEngine.Animator struct Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 : public Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9 { public: public: }; // System.ArgumentNullException struct ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB : public ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 { public: public: }; // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 : public ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 { public: // System.Object System.ArgumentOutOfRangeException::m_actualValue RuntimeObject * ___m_actualValue_19; public: inline static int32_t get_offset_of_m_actualValue_19() { return static_cast(offsetof(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8, ___m_actualValue_19)); } inline RuntimeObject * get_m_actualValue_19() const { return ___m_actualValue_19; } inline RuntimeObject ** get_address_of_m_actualValue_19() { return &___m_actualValue_19; } inline void set_m_actualValue_19(RuntimeObject * value) { ___m_actualValue_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_actualValue_19), (void*)value); } }; struct ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_StaticFields { public: // System.String modreq(System.Runtime.CompilerServices.IsVolatile) System.ArgumentOutOfRangeException::_rangeMessage String_t* ____rangeMessage_18; public: inline static int32_t get_offset_of__rangeMessage_18() { return static_cast(offsetof(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_StaticFields, ____rangeMessage_18)); } inline String_t* get__rangeMessage_18() const { return ____rangeMessage_18; } inline String_t** get_address_of__rangeMessage_18() { return &____rangeMessage_18; } inline void set__rangeMessage_18(String_t* value) { ____rangeMessage_18 = value; Il2CppCodeGenWriteBarrier((void**)(&____rangeMessage_18), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.InvalidKeyException struct InvalidKeyException_t7F19EE8EB26000BAFDF50186FB1DD59F13A7FD8A : public KeyException_t145BB2019F3A9E314C4C8FF15DDDFCD63E89AE62 { public: public: }; // UnityEngine.MonoBehaviour struct MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A : public Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9 { public: public: }; // UnityStandardAssets.Vehicles.Aeroplane.AeroplaneController struct AeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // System.Single UnityStandardAssets.Vehicles.Aeroplane.AeroplaneController::m_MaxEnginePower float ___m_MaxEnginePower_4; // System.Single UnityStandardAssets.Vehicles.Aeroplane.AeroplaneController::m_Lift float ___m_Lift_5; // System.Single UnityStandardAssets.Vehicles.Aeroplane.AeroplaneController::m_ZeroLiftSpeed float ___m_ZeroLiftSpeed_6; // System.Single UnityStandardAssets.Vehicles.Aeroplane.AeroplaneController::m_RollEffect float ___m_RollEffect_7; // System.Single UnityStandardAssets.Vehicles.Aeroplane.AeroplaneController::m_PitchEffect float ___m_PitchEffect_8; // System.Single UnityStandardAssets.Vehicles.Aeroplane.AeroplaneController::m_YawEffect float ___m_YawEffect_9; // System.Single UnityStandardAssets.Vehicles.Aeroplane.AeroplaneController::m_BankedTurnEffect float ___m_BankedTurnEffect_10; // System.Single UnityStandardAssets.Vehicles.Aeroplane.AeroplaneController::m_AerodynamicEffect float ___m_AerodynamicEffect_11; // System.Single UnityStandardAssets.Vehicles.Aeroplane.AeroplaneController::m_AutoTurnPitch float ___m_AutoTurnPitch_12; // System.Single UnityStandardAssets.Vehicles.Aeroplane.AeroplaneController::m_AutoRollLevel float ___m_AutoRollLevel_13; // System.Single UnityStandardAssets.Vehicles.Aeroplane.AeroplaneController::m_AutoPitchLevel float ___m_AutoPitchLevel_14; // System.Single UnityStandardAssets.Vehicles.Aeroplane.AeroplaneController::m_AirBrakesEffect float ___m_AirBrakesEffect_15; // System.Single UnityStandardAssets.Vehicles.Aeroplane.AeroplaneController::m_ThrottleChangeSpeed float ___m_ThrottleChangeSpeed_16; // System.Single UnityStandardAssets.Vehicles.Aeroplane.AeroplaneController::m_DragIncreaseFactor float ___m_DragIncreaseFactor_17; // System.Single UnityStandardAssets.Vehicles.Aeroplane.AeroplaneController::k__BackingField float ___U3CAltitudeU3Ek__BackingField_18; // System.Single UnityStandardAssets.Vehicles.Aeroplane.AeroplaneController::k__BackingField float ___U3CThrottleU3Ek__BackingField_19; // System.Boolean UnityStandardAssets.Vehicles.Aeroplane.AeroplaneController::k__BackingField bool ___U3CAirBrakesU3Ek__BackingField_20; // System.Single UnityStandardAssets.Vehicles.Aeroplane.AeroplaneController::k__BackingField float ___U3CForwardSpeedU3Ek__BackingField_21; // System.Single UnityStandardAssets.Vehicles.Aeroplane.AeroplaneController::k__BackingField float ___U3CEnginePowerU3Ek__BackingField_22; // System.Single UnityStandardAssets.Vehicles.Aeroplane.AeroplaneController::k__BackingField float ___U3CRollAngleU3Ek__BackingField_23; // System.Single UnityStandardAssets.Vehicles.Aeroplane.AeroplaneController::k__BackingField float ___U3CPitchAngleU3Ek__BackingField_24; // System.Single UnityStandardAssets.Vehicles.Aeroplane.AeroplaneController::k__BackingField float ___U3CRollInputU3Ek__BackingField_25; // System.Single UnityStandardAssets.Vehicles.Aeroplane.AeroplaneController::k__BackingField float ___U3CPitchInputU3Ek__BackingField_26; // System.Single UnityStandardAssets.Vehicles.Aeroplane.AeroplaneController::k__BackingField float ___U3CYawInputU3Ek__BackingField_27; // System.Single UnityStandardAssets.Vehicles.Aeroplane.AeroplaneController::k__BackingField float ___U3CThrottleInputU3Ek__BackingField_28; // System.Single UnityStandardAssets.Vehicles.Aeroplane.AeroplaneController::m_OriginalDrag float ___m_OriginalDrag_29; // System.Single UnityStandardAssets.Vehicles.Aeroplane.AeroplaneController::m_OriginalAngularDrag float ___m_OriginalAngularDrag_30; // System.Single UnityStandardAssets.Vehicles.Aeroplane.AeroplaneController::m_AeroFactor float ___m_AeroFactor_31; // System.Boolean UnityStandardAssets.Vehicles.Aeroplane.AeroplaneController::m_Immobilized bool ___m_Immobilized_32; // System.Single UnityStandardAssets.Vehicles.Aeroplane.AeroplaneController::m_BankedTurnAmount float ___m_BankedTurnAmount_33; // UnityEngine.Rigidbody UnityStandardAssets.Vehicles.Aeroplane.AeroplaneController::m_Rigidbody Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * ___m_Rigidbody_34; // UnityEngine.WheelCollider[] UnityStandardAssets.Vehicles.Aeroplane.AeroplaneController::m_WheelColliders WheelColliderU5BU5D_tD116627586657E2002728C2CACF8C5986C4A9CC6* ___m_WheelColliders_35; public: inline static int32_t get_offset_of_m_MaxEnginePower_4() { return static_cast(offsetof(AeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103, ___m_MaxEnginePower_4)); } inline float get_m_MaxEnginePower_4() const { return ___m_MaxEnginePower_4; } inline float* get_address_of_m_MaxEnginePower_4() { return &___m_MaxEnginePower_4; } inline void set_m_MaxEnginePower_4(float value) { ___m_MaxEnginePower_4 = value; } inline static int32_t get_offset_of_m_Lift_5() { return static_cast(offsetof(AeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103, ___m_Lift_5)); } inline float get_m_Lift_5() const { return ___m_Lift_5; } inline float* get_address_of_m_Lift_5() { return &___m_Lift_5; } inline void set_m_Lift_5(float value) { ___m_Lift_5 = value; } inline static int32_t get_offset_of_m_ZeroLiftSpeed_6() { return static_cast(offsetof(AeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103, ___m_ZeroLiftSpeed_6)); } inline float get_m_ZeroLiftSpeed_6() const { return ___m_ZeroLiftSpeed_6; } inline float* get_address_of_m_ZeroLiftSpeed_6() { return &___m_ZeroLiftSpeed_6; } inline void set_m_ZeroLiftSpeed_6(float value) { ___m_ZeroLiftSpeed_6 = value; } inline static int32_t get_offset_of_m_RollEffect_7() { return static_cast(offsetof(AeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103, ___m_RollEffect_7)); } inline float get_m_RollEffect_7() const { return ___m_RollEffect_7; } inline float* get_address_of_m_RollEffect_7() { return &___m_RollEffect_7; } inline void set_m_RollEffect_7(float value) { ___m_RollEffect_7 = value; } inline static int32_t get_offset_of_m_PitchEffect_8() { return static_cast(offsetof(AeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103, ___m_PitchEffect_8)); } inline float get_m_PitchEffect_8() const { return ___m_PitchEffect_8; } inline float* get_address_of_m_PitchEffect_8() { return &___m_PitchEffect_8; } inline void set_m_PitchEffect_8(float value) { ___m_PitchEffect_8 = value; } inline static int32_t get_offset_of_m_YawEffect_9() { return static_cast(offsetof(AeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103, ___m_YawEffect_9)); } inline float get_m_YawEffect_9() const { return ___m_YawEffect_9; } inline float* get_address_of_m_YawEffect_9() { return &___m_YawEffect_9; } inline void set_m_YawEffect_9(float value) { ___m_YawEffect_9 = value; } inline static int32_t get_offset_of_m_BankedTurnEffect_10() { return static_cast(offsetof(AeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103, ___m_BankedTurnEffect_10)); } inline float get_m_BankedTurnEffect_10() const { return ___m_BankedTurnEffect_10; } inline float* get_address_of_m_BankedTurnEffect_10() { return &___m_BankedTurnEffect_10; } inline void set_m_BankedTurnEffect_10(float value) { ___m_BankedTurnEffect_10 = value; } inline static int32_t get_offset_of_m_AerodynamicEffect_11() { return static_cast(offsetof(AeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103, ___m_AerodynamicEffect_11)); } inline float get_m_AerodynamicEffect_11() const { return ___m_AerodynamicEffect_11; } inline float* get_address_of_m_AerodynamicEffect_11() { return &___m_AerodynamicEffect_11; } inline void set_m_AerodynamicEffect_11(float value) { ___m_AerodynamicEffect_11 = value; } inline static int32_t get_offset_of_m_AutoTurnPitch_12() { return static_cast(offsetof(AeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103, ___m_AutoTurnPitch_12)); } inline float get_m_AutoTurnPitch_12() const { return ___m_AutoTurnPitch_12; } inline float* get_address_of_m_AutoTurnPitch_12() { return &___m_AutoTurnPitch_12; } inline void set_m_AutoTurnPitch_12(float value) { ___m_AutoTurnPitch_12 = value; } inline static int32_t get_offset_of_m_AutoRollLevel_13() { return static_cast(offsetof(AeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103, ___m_AutoRollLevel_13)); } inline float get_m_AutoRollLevel_13() const { return ___m_AutoRollLevel_13; } inline float* get_address_of_m_AutoRollLevel_13() { return &___m_AutoRollLevel_13; } inline void set_m_AutoRollLevel_13(float value) { ___m_AutoRollLevel_13 = value; } inline static int32_t get_offset_of_m_AutoPitchLevel_14() { return static_cast(offsetof(AeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103, ___m_AutoPitchLevel_14)); } inline float get_m_AutoPitchLevel_14() const { return ___m_AutoPitchLevel_14; } inline float* get_address_of_m_AutoPitchLevel_14() { return &___m_AutoPitchLevel_14; } inline void set_m_AutoPitchLevel_14(float value) { ___m_AutoPitchLevel_14 = value; } inline static int32_t get_offset_of_m_AirBrakesEffect_15() { return static_cast(offsetof(AeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103, ___m_AirBrakesEffect_15)); } inline float get_m_AirBrakesEffect_15() const { return ___m_AirBrakesEffect_15; } inline float* get_address_of_m_AirBrakesEffect_15() { return &___m_AirBrakesEffect_15; } inline void set_m_AirBrakesEffect_15(float value) { ___m_AirBrakesEffect_15 = value; } inline static int32_t get_offset_of_m_ThrottleChangeSpeed_16() { return static_cast(offsetof(AeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103, ___m_ThrottleChangeSpeed_16)); } inline float get_m_ThrottleChangeSpeed_16() const { return ___m_ThrottleChangeSpeed_16; } inline float* get_address_of_m_ThrottleChangeSpeed_16() { return &___m_ThrottleChangeSpeed_16; } inline void set_m_ThrottleChangeSpeed_16(float value) { ___m_ThrottleChangeSpeed_16 = value; } inline static int32_t get_offset_of_m_DragIncreaseFactor_17() { return static_cast(offsetof(AeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103, ___m_DragIncreaseFactor_17)); } inline float get_m_DragIncreaseFactor_17() const { return ___m_DragIncreaseFactor_17; } inline float* get_address_of_m_DragIncreaseFactor_17() { return &___m_DragIncreaseFactor_17; } inline void set_m_DragIncreaseFactor_17(float value) { ___m_DragIncreaseFactor_17 = value; } inline static int32_t get_offset_of_U3CAltitudeU3Ek__BackingField_18() { return static_cast(offsetof(AeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103, ___U3CAltitudeU3Ek__BackingField_18)); } inline float get_U3CAltitudeU3Ek__BackingField_18() const { return ___U3CAltitudeU3Ek__BackingField_18; } inline float* get_address_of_U3CAltitudeU3Ek__BackingField_18() { return &___U3CAltitudeU3Ek__BackingField_18; } inline void set_U3CAltitudeU3Ek__BackingField_18(float value) { ___U3CAltitudeU3Ek__BackingField_18 = value; } inline static int32_t get_offset_of_U3CThrottleU3Ek__BackingField_19() { return static_cast(offsetof(AeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103, ___U3CThrottleU3Ek__BackingField_19)); } inline float get_U3CThrottleU3Ek__BackingField_19() const { return ___U3CThrottleU3Ek__BackingField_19; } inline float* get_address_of_U3CThrottleU3Ek__BackingField_19() { return &___U3CThrottleU3Ek__BackingField_19; } inline void set_U3CThrottleU3Ek__BackingField_19(float value) { ___U3CThrottleU3Ek__BackingField_19 = value; } inline static int32_t get_offset_of_U3CAirBrakesU3Ek__BackingField_20() { return static_cast(offsetof(AeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103, ___U3CAirBrakesU3Ek__BackingField_20)); } inline bool get_U3CAirBrakesU3Ek__BackingField_20() const { return ___U3CAirBrakesU3Ek__BackingField_20; } inline bool* get_address_of_U3CAirBrakesU3Ek__BackingField_20() { return &___U3CAirBrakesU3Ek__BackingField_20; } inline void set_U3CAirBrakesU3Ek__BackingField_20(bool value) { ___U3CAirBrakesU3Ek__BackingField_20 = value; } inline static int32_t get_offset_of_U3CForwardSpeedU3Ek__BackingField_21() { return static_cast(offsetof(AeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103, ___U3CForwardSpeedU3Ek__BackingField_21)); } inline float get_U3CForwardSpeedU3Ek__BackingField_21() const { return ___U3CForwardSpeedU3Ek__BackingField_21; } inline float* get_address_of_U3CForwardSpeedU3Ek__BackingField_21() { return &___U3CForwardSpeedU3Ek__BackingField_21; } inline void set_U3CForwardSpeedU3Ek__BackingField_21(float value) { ___U3CForwardSpeedU3Ek__BackingField_21 = value; } inline static int32_t get_offset_of_U3CEnginePowerU3Ek__BackingField_22() { return static_cast(offsetof(AeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103, ___U3CEnginePowerU3Ek__BackingField_22)); } inline float get_U3CEnginePowerU3Ek__BackingField_22() const { return ___U3CEnginePowerU3Ek__BackingField_22; } inline float* get_address_of_U3CEnginePowerU3Ek__BackingField_22() { return &___U3CEnginePowerU3Ek__BackingField_22; } inline void set_U3CEnginePowerU3Ek__BackingField_22(float value) { ___U3CEnginePowerU3Ek__BackingField_22 = value; } inline static int32_t get_offset_of_U3CRollAngleU3Ek__BackingField_23() { return static_cast(offsetof(AeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103, ___U3CRollAngleU3Ek__BackingField_23)); } inline float get_U3CRollAngleU3Ek__BackingField_23() const { return ___U3CRollAngleU3Ek__BackingField_23; } inline float* get_address_of_U3CRollAngleU3Ek__BackingField_23() { return &___U3CRollAngleU3Ek__BackingField_23; } inline void set_U3CRollAngleU3Ek__BackingField_23(float value) { ___U3CRollAngleU3Ek__BackingField_23 = value; } inline static int32_t get_offset_of_U3CPitchAngleU3Ek__BackingField_24() { return static_cast(offsetof(AeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103, ___U3CPitchAngleU3Ek__BackingField_24)); } inline float get_U3CPitchAngleU3Ek__BackingField_24() const { return ___U3CPitchAngleU3Ek__BackingField_24; } inline float* get_address_of_U3CPitchAngleU3Ek__BackingField_24() { return &___U3CPitchAngleU3Ek__BackingField_24; } inline void set_U3CPitchAngleU3Ek__BackingField_24(float value) { ___U3CPitchAngleU3Ek__BackingField_24 = value; } inline static int32_t get_offset_of_U3CRollInputU3Ek__BackingField_25() { return static_cast(offsetof(AeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103, ___U3CRollInputU3Ek__BackingField_25)); } inline float get_U3CRollInputU3Ek__BackingField_25() const { return ___U3CRollInputU3Ek__BackingField_25; } inline float* get_address_of_U3CRollInputU3Ek__BackingField_25() { return &___U3CRollInputU3Ek__BackingField_25; } inline void set_U3CRollInputU3Ek__BackingField_25(float value) { ___U3CRollInputU3Ek__BackingField_25 = value; } inline static int32_t get_offset_of_U3CPitchInputU3Ek__BackingField_26() { return static_cast(offsetof(AeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103, ___U3CPitchInputU3Ek__BackingField_26)); } inline float get_U3CPitchInputU3Ek__BackingField_26() const { return ___U3CPitchInputU3Ek__BackingField_26; } inline float* get_address_of_U3CPitchInputU3Ek__BackingField_26() { return &___U3CPitchInputU3Ek__BackingField_26; } inline void set_U3CPitchInputU3Ek__BackingField_26(float value) { ___U3CPitchInputU3Ek__BackingField_26 = value; } inline static int32_t get_offset_of_U3CYawInputU3Ek__BackingField_27() { return static_cast(offsetof(AeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103, ___U3CYawInputU3Ek__BackingField_27)); } inline float get_U3CYawInputU3Ek__BackingField_27() const { return ___U3CYawInputU3Ek__BackingField_27; } inline float* get_address_of_U3CYawInputU3Ek__BackingField_27() { return &___U3CYawInputU3Ek__BackingField_27; } inline void set_U3CYawInputU3Ek__BackingField_27(float value) { ___U3CYawInputU3Ek__BackingField_27 = value; } inline static int32_t get_offset_of_U3CThrottleInputU3Ek__BackingField_28() { return static_cast(offsetof(AeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103, ___U3CThrottleInputU3Ek__BackingField_28)); } inline float get_U3CThrottleInputU3Ek__BackingField_28() const { return ___U3CThrottleInputU3Ek__BackingField_28; } inline float* get_address_of_U3CThrottleInputU3Ek__BackingField_28() { return &___U3CThrottleInputU3Ek__BackingField_28; } inline void set_U3CThrottleInputU3Ek__BackingField_28(float value) { ___U3CThrottleInputU3Ek__BackingField_28 = value; } inline static int32_t get_offset_of_m_OriginalDrag_29() { return static_cast(offsetof(AeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103, ___m_OriginalDrag_29)); } inline float get_m_OriginalDrag_29() const { return ___m_OriginalDrag_29; } inline float* get_address_of_m_OriginalDrag_29() { return &___m_OriginalDrag_29; } inline void set_m_OriginalDrag_29(float value) { ___m_OriginalDrag_29 = value; } inline static int32_t get_offset_of_m_OriginalAngularDrag_30() { return static_cast(offsetof(AeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103, ___m_OriginalAngularDrag_30)); } inline float get_m_OriginalAngularDrag_30() const { return ___m_OriginalAngularDrag_30; } inline float* get_address_of_m_OriginalAngularDrag_30() { return &___m_OriginalAngularDrag_30; } inline void set_m_OriginalAngularDrag_30(float value) { ___m_OriginalAngularDrag_30 = value; } inline static int32_t get_offset_of_m_AeroFactor_31() { return static_cast(offsetof(AeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103, ___m_AeroFactor_31)); } inline float get_m_AeroFactor_31() const { return ___m_AeroFactor_31; } inline float* get_address_of_m_AeroFactor_31() { return &___m_AeroFactor_31; } inline void set_m_AeroFactor_31(float value) { ___m_AeroFactor_31 = value; } inline static int32_t get_offset_of_m_Immobilized_32() { return static_cast(offsetof(AeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103, ___m_Immobilized_32)); } inline bool get_m_Immobilized_32() const { return ___m_Immobilized_32; } inline bool* get_address_of_m_Immobilized_32() { return &___m_Immobilized_32; } inline void set_m_Immobilized_32(bool value) { ___m_Immobilized_32 = value; } inline static int32_t get_offset_of_m_BankedTurnAmount_33() { return static_cast(offsetof(AeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103, ___m_BankedTurnAmount_33)); } inline float get_m_BankedTurnAmount_33() const { return ___m_BankedTurnAmount_33; } inline float* get_address_of_m_BankedTurnAmount_33() { return &___m_BankedTurnAmount_33; } inline void set_m_BankedTurnAmount_33(float value) { ___m_BankedTurnAmount_33 = value; } inline static int32_t get_offset_of_m_Rigidbody_34() { return static_cast(offsetof(AeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103, ___m_Rigidbody_34)); } inline Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * get_m_Rigidbody_34() const { return ___m_Rigidbody_34; } inline Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A ** get_address_of_m_Rigidbody_34() { return &___m_Rigidbody_34; } inline void set_m_Rigidbody_34(Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * value) { ___m_Rigidbody_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Rigidbody_34), (void*)value); } inline static int32_t get_offset_of_m_WheelColliders_35() { return static_cast(offsetof(AeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103, ___m_WheelColliders_35)); } inline WheelColliderU5BU5D_tD116627586657E2002728C2CACF8C5986C4A9CC6* get_m_WheelColliders_35() const { return ___m_WheelColliders_35; } inline WheelColliderU5BU5D_tD116627586657E2002728C2CACF8C5986C4A9CC6** get_address_of_m_WheelColliders_35() { return &___m_WheelColliders_35; } inline void set_m_WheelColliders_35(WheelColliderU5BU5D_tD116627586657E2002728C2CACF8C5986C4A9CC6* value) { ___m_WheelColliders_35 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_WheelColliders_35), (void*)value); } }; // UnityStandardAssets.Vehicles.Aeroplane.LandingGear struct LandingGear_t58C1D02658AD943B7668F9B26376917773B9E1AC : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // System.Single UnityStandardAssets.Vehicles.Aeroplane.LandingGear::raiseAtAltitude float ___raiseAtAltitude_4; // System.Single UnityStandardAssets.Vehicles.Aeroplane.LandingGear::lowerAtAltitude float ___lowerAtAltitude_5; // UnityStandardAssets.Vehicles.Aeroplane.LandingGear/GearState UnityStandardAssets.Vehicles.Aeroplane.LandingGear::m_State int32_t ___m_State_6; // UnityEngine.Animator UnityStandardAssets.Vehicles.Aeroplane.LandingGear::m_Animator Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * ___m_Animator_7; // UnityEngine.Rigidbody UnityStandardAssets.Vehicles.Aeroplane.LandingGear::m_Rigidbody Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * ___m_Rigidbody_8; // UnityStandardAssets.Vehicles.Aeroplane.AeroplaneController UnityStandardAssets.Vehicles.Aeroplane.LandingGear::m_Plane AeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103 * ___m_Plane_9; public: inline static int32_t get_offset_of_raiseAtAltitude_4() { return static_cast(offsetof(LandingGear_t58C1D02658AD943B7668F9B26376917773B9E1AC, ___raiseAtAltitude_4)); } inline float get_raiseAtAltitude_4() const { return ___raiseAtAltitude_4; } inline float* get_address_of_raiseAtAltitude_4() { return &___raiseAtAltitude_4; } inline void set_raiseAtAltitude_4(float value) { ___raiseAtAltitude_4 = value; } inline static int32_t get_offset_of_lowerAtAltitude_5() { return static_cast(offsetof(LandingGear_t58C1D02658AD943B7668F9B26376917773B9E1AC, ___lowerAtAltitude_5)); } inline float get_lowerAtAltitude_5() const { return ___lowerAtAltitude_5; } inline float* get_address_of_lowerAtAltitude_5() { return &___lowerAtAltitude_5; } inline void set_lowerAtAltitude_5(float value) { ___lowerAtAltitude_5 = value; } inline static int32_t get_offset_of_m_State_6() { return static_cast(offsetof(LandingGear_t58C1D02658AD943B7668F9B26376917773B9E1AC, ___m_State_6)); } inline int32_t get_m_State_6() const { return ___m_State_6; } inline int32_t* get_address_of_m_State_6() { return &___m_State_6; } inline void set_m_State_6(int32_t value) { ___m_State_6 = value; } inline static int32_t get_offset_of_m_Animator_7() { return static_cast(offsetof(LandingGear_t58C1D02658AD943B7668F9B26376917773B9E1AC, ___m_Animator_7)); } inline Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * get_m_Animator_7() const { return ___m_Animator_7; } inline Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 ** get_address_of_m_Animator_7() { return &___m_Animator_7; } inline void set_m_Animator_7(Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * value) { ___m_Animator_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Animator_7), (void*)value); } inline static int32_t get_offset_of_m_Rigidbody_8() { return static_cast(offsetof(LandingGear_t58C1D02658AD943B7668F9B26376917773B9E1AC, ___m_Rigidbody_8)); } inline Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * get_m_Rigidbody_8() const { return ___m_Rigidbody_8; } inline Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A ** get_address_of_m_Rigidbody_8() { return &___m_Rigidbody_8; } inline void set_m_Rigidbody_8(Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * value) { ___m_Rigidbody_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Rigidbody_8), (void*)value); } inline static int32_t get_offset_of_m_Plane_9() { return static_cast(offsetof(LandingGear_t58C1D02658AD943B7668F9B26376917773B9E1AC, ___m_Plane_9)); } inline AeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103 * get_m_Plane_9() const { return ___m_Plane_9; } inline AeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103 ** get_address_of_m_Plane_9() { return &___m_Plane_9; } inline void set_m_Plane_9(AeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103 * value) { ___m_Plane_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Plane_9), (void*)value); } }; // BestHTTP.Examples.LargeFileDownloadSample struct LargeFileDownloadSample_t622D5BD7D084CA47719D9B6BFDAB75C369BD2A42 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // BestHTTP.HTTPRequest BestHTTP.Examples.LargeFileDownloadSample::request HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * ___request_5; // System.String BestHTTP.Examples.LargeFileDownloadSample::status String_t* ___status_6; // System.Single BestHTTP.Examples.LargeFileDownloadSample::progress float ___progress_7; // System.Int32 BestHTTP.Examples.LargeFileDownloadSample::fragmentSize int32_t ___fragmentSize_8; public: inline static int32_t get_offset_of_request_5() { return static_cast(offsetof(LargeFileDownloadSample_t622D5BD7D084CA47719D9B6BFDAB75C369BD2A42, ___request_5)); } inline HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * get_request_5() const { return ___request_5; } inline HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 ** get_address_of_request_5() { return &___request_5; } inline void set_request_5(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * value) { ___request_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___request_5), (void*)value); } inline static int32_t get_offset_of_status_6() { return static_cast(offsetof(LargeFileDownloadSample_t622D5BD7D084CA47719D9B6BFDAB75C369BD2A42, ___status_6)); } inline String_t* get_status_6() const { return ___status_6; } inline String_t** get_address_of_status_6() { return &___status_6; } inline void set_status_6(String_t* value) { ___status_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___status_6), (void*)value); } inline static int32_t get_offset_of_progress_7() { return static_cast(offsetof(LargeFileDownloadSample_t622D5BD7D084CA47719D9B6BFDAB75C369BD2A42, ___progress_7)); } inline float get_progress_7() const { return ___progress_7; } inline float* get_address_of_progress_7() { return &___progress_7; } inline void set_progress_7(float value) { ___progress_7 = value; } inline static int32_t get_offset_of_fragmentSize_8() { return static_cast(offsetof(LargeFileDownloadSample_t622D5BD7D084CA47719D9B6BFDAB75C369BD2A42, ___fragmentSize_8)); } inline int32_t get_fragmentSize_8() const { return ___fragmentSize_8; } inline int32_t* get_address_of_fragmentSize_8() { return &___fragmentSize_8; } inline void set_fragmentSize_8(int32_t value) { ___fragmentSize_8 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // System.Reflection.PropertyInfo[] struct PropertyInfoU5BU5D_tE59E95F68533BDA98ABBBEACB6A99BF2C7A4A26A : public RuntimeArray { public: ALIGN_FIELD (8) PropertyInfo_t * m_Items[1]; public: inline PropertyInfo_t * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline PropertyInfo_t ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, PropertyInfo_t * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline PropertyInfo_t * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline PropertyInfo_t ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, PropertyInfo_t * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Reflection.ParameterInfo[] struct ParameterInfoU5BU5D_tB1B367487BAA9E1B2DA7EAA95B443D0B183AF80B : public RuntimeArray { public: ALIGN_FIELD (8) ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7 * m_Items[1]; public: inline ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7 * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7 ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7 * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7 * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7 ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7 * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Reflection.FieldInfo[] struct FieldInfoU5BU5D_tD84513FCA07C63AAFE671A5B39E3ADD6E903938E : public RuntimeArray { public: ALIGN_FIELD (8) FieldInfo_t * m_Items[1]; public: inline FieldInfo_t * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline FieldInfo_t ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, FieldInfo_t * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline FieldInfo_t * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline FieldInfo_t ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, FieldInfo_t * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Type[] struct TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755 : public RuntimeArray { public: ALIGN_FIELD (8) Type_t * m_Items[1]; public: inline Type_t * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Type_t ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Type_t * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline Type_t * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Type_t ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Type_t * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Object[] struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE : public RuntimeArray { public: ALIGN_FIELD (8) RuntimeObject * m_Items[1]; public: inline RuntimeObject * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline RuntimeObject ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, RuntimeObject * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline RuntimeObject * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline RuntimeObject ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Byte[] struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726 : public RuntimeArray { public: ALIGN_FIELD (8) uint8_t m_Items[1]; public: inline uint8_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline uint8_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, uint8_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value) { m_Items[index] = value; } }; // System.Int32[] struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32 : public RuntimeArray { public: ALIGN_FIELD (8) int32_t m_Items[1]; public: inline int32_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline int32_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, int32_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value) { m_Items[index] = value; } }; // System.Char[] struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34 : public RuntimeArray { public: ALIGN_FIELD (8) Il2CppChar m_Items[1]; public: inline Il2CppChar GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Il2CppChar* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Il2CppChar value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Il2CppChar GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Il2CppChar* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Il2CppChar value) { m_Items[index] = value; } }; // System.UInt64[] struct UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2 : public RuntimeArray { public: ALIGN_FIELD (8) uint64_t m_Items[1]; public: inline uint64_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline uint64_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, uint64_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline uint64_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline uint64_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, uint64_t value) { m_Items[index] = value; } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable[] struct Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE : public RuntimeArray { public: ALIGN_FIELD (8) Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * m_Items[1]; public: inline Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.CmpCertificate[] struct CmpCertificateU5BU5D_t61BB8616D2961D5EBE491ED080F0C7361D59CC00 : public RuntimeArray { public: ALIGN_FIELD (8) CmpCertificate_t426B8158788ADFD4E28E4E8F169E1E1D7651F894 * m_Items[1]; public: inline CmpCertificate_t426B8158788ADFD4E28E4E8F169E1E1D7651F894 * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline CmpCertificate_t426B8158788ADFD4E28E4E8F169E1E1D7651F894 ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, CmpCertificate_t426B8158788ADFD4E28E4E8F169E1E1D7651F894 * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline CmpCertificate_t426B8158788ADFD4E28E4E8F169E1E1D7651F894 * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline CmpCertificate_t426B8158788ADFD4E28E4E8F169E1E1D7651F894 ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, CmpCertificate_t426B8158788ADFD4E28E4E8F169E1E1D7651F894 * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.CertifiedKeyPair[] struct CertifiedKeyPairU5BU5D_t76C6C5E8814508C5C8A2BBABEC665A85B29C15D3 : public RuntimeArray { public: ALIGN_FIELD (8) CertifiedKeyPair_t50EB833AED8814B77F5F26FD6F653B3C8A31B807 * m_Items[1]; public: inline CertifiedKeyPair_t50EB833AED8814B77F5F26FD6F653B3C8A31B807 * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline CertifiedKeyPair_t50EB833AED8814B77F5F26FD6F653B3C8A31B807 ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, CertifiedKeyPair_t50EB833AED8814B77F5F26FD6F653B3C8A31B807 * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline CertifiedKeyPair_t50EB833AED8814B77F5F26FD6F653B3C8A31B807 * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline CertifiedKeyPair_t50EB833AED8814B77F5F26FD6F653B3C8A31B807 ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, CertifiedKeyPair_t50EB833AED8814B77F5F26FD6F653B3C8A31B807 * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // UnityEngine.GUILayoutOption[] struct GUILayoutOptionU5BU5D_tA0F031CC36F88BBBD25D6841ADD3913446E6EA2B : public RuntimeArray { public: ALIGN_FIELD (8) GUILayoutOption_t2D992ABCB62BEB24A6F4A826A5CBE7AE236071AB * m_Items[1]; public: inline GUILayoutOption_t2D992ABCB62BEB24A6F4A826A5CBE7AE236071AB * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline GUILayoutOption_t2D992ABCB62BEB24A6F4A826A5CBE7AE236071AB ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, GUILayoutOption_t2D992ABCB62BEB24A6F4A826A5CBE7AE236071AB * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline GUILayoutOption_t2D992ABCB62BEB24A6F4A826A5CBE7AE236071AB * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline GUILayoutOption_t2D992ABCB62BEB24A6F4A826A5CBE7AE236071AB ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, GUILayoutOption_t2D992ABCB62BEB24A6F4A826A5CBE7AE236071AB * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Void System.Collections.Generic.Dictionary`2::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m939A8602382585F3887FC184EFFE8B103DAA2436_gshared (Dictionary_2_t42D8A0D75026C07577E81D6550297EA388E3CD45 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m2C8EE5C13636D67F6C451C4935049F534AEC658F_gshared (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m11EC0E3EC6B679295467F628359F03589A3218E7_gshared (Dictionary_2_tC8BD5FF04F2E267079AB9F5B4F4E97EFA68613F8 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2::.ctor(System.Collections.Generic.IEqualityComparer`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m40567802794707BF41A6AE6D2F334559397F2EFB_gshared (Dictionary_2_t552D4CF591135C5C2E84A9B47F4218E36925080C * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m74E87756C362C1D9275E1B4F30C360439D4C2676_gshared (List_1_t2AF104D60315227C623084E47EED6630D55BBB37 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::Add(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Add_m5661E32F6048E09663B9FA80AB5DE3865851BD08_gshared (List_1_tA4B5BEC690306B3DC7901CEA473C0A5BC3243F8B * __this, Message_t7A5AEEC23C8151DAE56A0BF20600B63ED4BEB6D3 ___item0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Stack`1::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stack_1__ctor_m41EBD1EDB9A3AC64B4EE3B6AAC08868FF28DA954_gshared (Stack_1_tC6C298385D16F10F391B84280D21FE059A45CC55 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Stack`1::Push(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stack_1_Push_m3E6C815B71F17B20A42B72193A29D0FB92F576E4_gshared (Stack_1_tC6C298385D16F10F391B84280D21FE059A45CC55 * __this, int32_t ___item0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_mE7F9D51201F5A72BF4995CA0F3F0E866DB21E638_gshared (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Stack`1::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stack_1_Clear_m65385AD770CB3137B6B0638B1C8B3F135A5E277D_gshared (Stack_1_tC6C298385D16F10F391B84280D21FE059A45CC55 * __this, const RuntimeMethod* method); // !0 System.Collections.Generic.Stack`1::Peek() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Stack_1_Peek_mF3C8F14E215502D1EA5ADF268B0614E8F29675F4_gshared (Stack_1_tC6C298385D16F10F391B84280D21FE059A45CC55 * __this, const RuntimeMethod* method); // !0 System.Collections.Generic.Stack`1::Pop() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Stack_1_Pop_m2F2EC2CE517CA10A558A43B00D072E570AB63437_gshared (Stack_1_tC6C298385D16F10F391B84280D21FE059A45CC55 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Stack`1::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stack_1__ctor_mD782ADAC3AB9809F63B681213A7A39784A9A169A_gshared (Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Stack`1::Push(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stack_1_Push_m8FFF613733BF88B54FCD4498B1E97DE296E27757_gshared (Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 * __this, RuntimeObject * ___item0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Stack`1::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stack_1_Clear_m108C5704F0CF0E476FED5C71BF7A4AA5804F3A61_gshared (Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 * __this, const RuntimeMethod* method); // !0 System.Collections.Generic.Stack`1::Pop() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Stack_1_Pop_m883C5DEF33CA2E556AC710A9BE26F8BD2D4B182C_gshared (Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 * __this, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.Stack`1::get_Count() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Stack_1_get_Count_mFD1C100DE65847CAB033057C77027AA5DB427B54_gshared_inline (Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 * __this, const RuntimeMethod* method); // !0 System.Collections.Generic.Stack`1::Peek() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Stack_1_Peek_m2060B46CD5CCD8A93C5CC558C6D3EF027862FE59_gshared (Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 * __this, const RuntimeMethod* method); // !0 System.Collections.Generic.List`1::get_Item(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_m7B5E3383CB67492E573AC0D875ED82A51350F188_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, int32_t ___index0, const RuntimeMethod* method); // !!0[] System.Array::Empty() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* Array_Empty_TisRuntimeObject_m002765312BF306B1B3B5BFAB9550C0A2A1820CDA_gshared_inline (const RuntimeMethod* method); // System.Int32 System.Collections.Generic.List`1::get_Count() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method); // !!0 UnityEngine.Component::GetComponent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Component_GetComponent_TisRuntimeObject_mDC2250CC3F24F6FE45660AF6153056ABDA5ED60F_gshared (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 * __this, const RuntimeMethod* method); // System.Void System.Exception::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_m0E9BEC861F6DBED197960E5BA23149543B1D7F5B (Exception_t * __this, const RuntimeMethod* method); // System.String System.String::Format(System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mB3D38E5238C3164DB4D7D29339D9E225A4496D17 (String_t* ___format0, RuntimeObject * ___arg01, const RuntimeMethod* method); // System.Void System.Exception::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_m8ECDE8ACA7F2E0EF1144BD1200FB5DB2870B5F11 (Exception_t * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void System.Exception::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_mB842BA6E644CDB9DB058F5628BB90DF5EF22C080 (Exception_t * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method); // System.Void System.Object::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405 (RuntimeObject * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2::.ctor() inline void Dictionary_2__ctor_mF8C3EB0D95A9289CAB90A5ED632A08F2917267FD (Dictionary_2_t3E57AD95AC968E6F62DEE19AB3170D1AC3A30DA2 * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t3E57AD95AC968E6F62DEE19AB3170D1AC3A30DA2 *, const RuntimeMethod*))Dictionary_2__ctor_m939A8602382585F3887FC184EFFE8B103DAA2436_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2>::.ctor() inline void Dictionary_2__ctor_mD909E0A139978659E700B0CE49424A936C710762 (Dictionary_2_t6632F9B7D29C6456BE397B4CC895D950BBB8072A * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t6632F9B7D29C6456BE397B4CC895D950BBB8072A *, const RuntimeMethod*))Dictionary_2__ctor_m2C8EE5C13636D67F6C451C4935049F534AEC658F_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2::.ctor() inline void Dictionary_2__ctor_m92A0844248BB5C63C796AFA2D5E2BF2D9AED62C5 (Dictionary_2_tC9AA680F78F71344FE76A09B6C7008BF8EE73C98 * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_tC9AA680F78F71344FE76A09B6C7008BF8EE73C98 *, const RuntimeMethod*))Dictionary_2__ctor_m11EC0E3EC6B679295467F628359F03589A3218E7_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2>::.ctor() inline void Dictionary_2__ctor_m766165101D17DE264F976EF116EF0DCC521D4CB5 (Dictionary_2_t5F9DFA2CAB73C95A2A252732A4FB00714E5ACB80 * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t5F9DFA2CAB73C95A2A252732A4FB00714E5ACB80 *, const RuntimeMethod*))Dictionary_2__ctor_m2C8EE5C13636D67F6C451C4935049F534AEC658F_gshared)(__this, method); } // System.Void LitJson.JsonWriter::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter__ctor_m9ED10F184FB062CBA458AA65CAF9257467C737AC (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, const RuntimeMethod* method); // System.Globalization.DateTimeFormatInfo System.Globalization.DateTimeFormatInfo::get_InvariantInfo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 * DateTimeFormatInfo_get_InvariantInfo_mF82BD33E66FDFBF82C9E9F58CDA7DDE568401F4B (const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2::.ctor() inline void Dictionary_2__ctor_m675228F70E08EC3116872AA2674282716C1E68ED (Dictionary_2_tBFA9C0296056907B6B0D09647F71CA1E4EA0880D * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_tBFA9C0296056907B6B0D09647F71CA1E4EA0880D *, const RuntimeMethod*))Dictionary_2__ctor_m2C8EE5C13636D67F6C451C4935049F534AEC658F_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2>::.ctor() inline void Dictionary_2__ctor_mD0A87522FCC0B6A0E1B8084B4BD8628ED724177A (Dictionary_2_t39C090DB63033FF202F2C4C95E8261B4D5D67132 * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t39C090DB63033FF202F2C4C95E8261B4D5D67132 *, const RuntimeMethod*))Dictionary_2__ctor_m2C8EE5C13636D67F6C451C4935049F534AEC658F_gshared)(__this, method); } // System.Void LitJson.JsonMapper::RegisterBaseExporters() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper_RegisterBaseExporters_mE267D78B53196A1063C1AFB89F26A567015AA19C (const RuntimeMethod* method); // System.Void LitJson.JsonMapper::RegisterBaseImporters() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper_RegisterBaseImporters_m58FC5B4999B9799F9A53F50375EB53D70268F8BF (const RuntimeMethod* method); // System.Boolean System.Type::op_Inequality(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Inequality_m6DDC5E923203A79BF505F9275B694AD3FAA36DB0 (Type_t * ___left0, Type_t * ___right1, const RuntimeMethod* method); // System.Reflection.PropertyInfo[] System.Type::GetProperties() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyInfoU5BU5D_tE59E95F68533BDA98ABBBEACB6A99BF2C7A4A26A* Type_GetProperties_m4126C117279AD617D8D167367DF953C451FC49E3 (Type_t * __this, const RuntimeMethod* method); // System.Boolean System.Type::get_IsArray() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsArray_m15FE83DD8FAF090F9BDA924753C7750AAEA7CFD1 (Type_t * __this, const RuntimeMethod* method); // System.Void LitJson.ArrayMetadata::set_IsArray(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ArrayMetadata_set_IsArray_m9533C18110BC3274D78D34BE249DD05C5A16CB93_inline (ArrayMetadata_tF0CA4EA5DDA5A3A4E7FFF5549F3807D19592A4B9 * __this, bool ___value0, const RuntimeMethod* method); // System.Boolean LitJson.JsonMapper::HasInterface(System.Type,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonMapper_HasInterface_m036E2B18D59DD19684B05F139975FCCEF7B93A26 (Type_t * ___type0, String_t* ___name1, const RuntimeMethod* method); // System.Void LitJson.ArrayMetadata::set_IsList(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ArrayMetadata_set_IsList_mBCCA4DB64C9A4B97347EC5A93A34C772E92841E5_inline (ArrayMetadata_tF0CA4EA5DDA5A3A4E7FFF5549F3807D19592A4B9 * __this, bool ___value0, const RuntimeMethod* method); // System.Reflection.PropertyInfo[] LitJson.JsonMapper::GetPublicInstanceProperties(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyInfoU5BU5D_tE59E95F68533BDA98ABBBEACB6A99BF2C7A4A26A* JsonMapper_GetPublicInstanceProperties_m3D2607414F64CAAC7F9C5D0148E31D262B150D3A (Type_t * ___type0, const RuntimeMethod* method); // System.Boolean System.String::op_Inequality(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Inequality_mDDA2DDED3E7EF042987EB7180EE3E88105F0AAE2 (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method); // System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E (RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 ___handle0, const RuntimeMethod* method); // System.Boolean System.Type::op_Equality(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046 (Type_t * ___left0, Type_t * ___right1, const RuntimeMethod* method); // System.Void LitJson.ArrayMetadata::set_ElementType(System.Type) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ArrayMetadata_set_ElementType_mDAEF33B6B16B6B2F3B71A53067CE42D6D53EA49B_inline (ArrayMetadata_tF0CA4EA5DDA5A3A4E7FFF5549F3807D19592A4B9 * __this, Type_t * ___value0, const RuntimeMethod* method); // System.Void System.Threading.Monitor::Enter(System.Object,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Enter_mBEB6CC84184B46F26375EC3FC8921D16E48EA4C4 (RuntimeObject * ___obj0, bool* ___lockTaken1, const RuntimeMethod* method); // System.Void System.Threading.Monitor::Exit(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Exit_mA776B403DA88AC77CDEEF67AB9F0D0E77ABD254A (RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Void LitJson.ObjectMetadata::set_IsDictionary(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ObjectMetadata_set_IsDictionary_m35539466DA7C3812A45773BF4157FB02219F82DD_inline (ObjectMetadata_tCC476FD33189C604471B5B5D5ECF7AF098B0DB62 * __this, bool ___value0, const RuntimeMethod* method); // System.StringComparer System.StringComparer::get_OrdinalIgnoreCase() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * StringComparer_get_OrdinalIgnoreCase_m8FD38206B6FFE866E97CE4DF84B037F0DF175288_inline (const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2::.ctor(System.Collections.Generic.IEqualityComparer`1) inline void Dictionary_2__ctor_mDE4AC0E4230C140CC8D9194574091FABDBA80144 (Dictionary_2_t340755D6C3625294F8C87E54F0CA95E023E5C656 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t340755D6C3625294F8C87E54F0CA95E023E5C656 *, RuntimeObject*, const RuntimeMethod*))Dictionary_2__ctor_m40567802794707BF41A6AE6D2F334559397F2EFB_gshared)(__this, ___comparer0, method); } // System.Void LitJson.ObjectMetadata::set_Properties(System.Collections.Generic.IDictionary`2) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ObjectMetadata_set_Properties_m29119CB8832BB41FAA57A97E5EF00B5911C22B3C_inline (ObjectMetadata_tCC476FD33189C604471B5B5D5ECF7AF098B0DB62 * __this, RuntimeObject* ___value0, const RuntimeMethod* method); // System.Boolean System.String::op_Equality(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method); // System.Void LitJson.ObjectMetadata::set_ElementType(System.Type) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ObjectMetadata_set_ElementType_m2BD099120F753C6DB400A0931FACBD985A8D185B_inline (ObjectMetadata_tCC476FD33189C604471B5B5D5ECF7AF098B0DB62 * __this, Type_t * ___value0, const RuntimeMethod* method); // System.Collections.Generic.IDictionary`2 LitJson.ObjectMetadata::get_Properties() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* ObjectMetadata_get_Properties_m807521480FEA523527B13A27B9835B920159547A_inline (ObjectMetadata_tCC476FD33189C604471B5B5D5ECF7AF098B0DB62 * __this, const RuntimeMethod* method); // System.Reflection.FieldInfo[] System.Type::GetFields() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FieldInfoU5BU5D_tD84513FCA07C63AAFE671A5B39E3ADD6E903938E* Type_GetFields_m4E3B89F0F088B46F0C2E77CA537179C30AC5B372 (Type_t * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::.ctor() inline void List_1__ctor_m74E87756C362C1D9275E1B4F30C360439D4C2676 (List_1_t2AF104D60315227C623084E47EED6630D55BBB37 * __this, const RuntimeMethod* method) { (( void (*) (List_1_t2AF104D60315227C623084E47EED6630D55BBB37 *, const RuntimeMethod*))List_1__ctor_m74E87756C362C1D9275E1B4F30C360439D4C2676_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2::.ctor() inline void Dictionary_2__ctor_mDA11F9C0AC023D35E8894E3DB7A7EE64EC772754 (Dictionary_2_tF9B9899EA776F69E6DCE288DC87C61D47E3D8A57 * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_tF9B9899EA776F69E6DCE288DC87C61D47E3D8A57 *, const RuntimeMethod*))Dictionary_2__ctor_m2C8EE5C13636D67F6C451C4935049F534AEC658F_gshared)(__this, method); } // System.Reflection.MethodInfo System.Type::GetMethod(System.String,System.Type[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * Type_GetMethod_mDA3E2A83228C0493894D40D02963D7B07C7B058E (Type_t * __this, String_t* ___name0, TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ___types1, const RuntimeMethod* method); // System.Boolean LitJson.JsonReader::Read() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonReader_Read_m47DD03DE2A2127A1A723BD6D564D97D07BE1E610 (JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * __this, const RuntimeMethod* method); // LitJson.JsonToken LitJson.JsonReader::get_Token() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t JsonReader_get_Token_m99F431E80F34EC42D60383A0C5D664C88BB6DBE2_inline (JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * __this, const RuntimeMethod* method); // System.Boolean System.Type::get_IsClass() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsClass_m2D39ED0DAFC534D527F8B019DA8B90859A7CA787 (Type_t * __this, const RuntimeMethod* method); // System.Void LitJson.JsonException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonException__ctor_m10E9DE1ED8CA46DD4DC5EFDC5825C456B7FC7932 (JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C * __this, String_t* ___message0, const RuntimeMethod* method); // System.Object LitJson.JsonReader::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * JsonReader_get_Value_m41A4AF5CA872B017E062E2CCCEB83398F5B4F419_inline (JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * __this, const RuntimeMethod* method); // System.Type System.Object::GetType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B (RuntimeObject * __this, const RuntimeMethod* method); // System.Object LitJson.ImporterFunc::Invoke(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ImporterFunc_Invoke_m5D419F99EC18670E9A6D9AA2A53807D6F03F39BA (ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * __this, RuntimeObject * ___input0, const RuntimeMethod* method); // System.Object System.Enum::ToObject(System.Type,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_m2A05590A0D581206AAEB48B89187FD175D5F0967 (Type_t * ___enumType0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Reflection.MethodInfo LitJson.JsonMapper::GetConvOp(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * JsonMapper_GetConvOp_mAD108C9536C3ECB5F81A0DA26EE36077B19C30CD (Type_t * ___t10, Type_t * ___t21, const RuntimeMethod* method); // System.Boolean System.Reflection.MethodInfo::op_Inequality(System.Reflection.MethodInfo,System.Reflection.MethodInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodInfo_op_Inequality_mDE1DAA5D330E9C975AC6423FC2D06862637BE68D (MethodInfo_t * ___left0, MethodInfo_t * ___right1, const RuntimeMethod* method); // System.Object System.Reflection.MethodBase::Invoke(System.Object,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * MethodBase_Invoke_m5DA5E74F34F8FFA8133445BAE0266FD54F7D4EB3 (MethodBase_t * __this, RuntimeObject * ___obj0, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___parameters1, const RuntimeMethod* method); // System.String System.String::Format(System.String,System.Object,System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m039737CCD992C5BFC8D16DFD681F5E8786E87FA6 (String_t* ___format0, RuntimeObject * ___arg01, RuntimeObject * ___arg12, RuntimeObject * ___arg23, const RuntimeMethod* method); // System.Void LitJson.JsonMapper::AddArrayMetadata(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper_AddArrayMetadata_mC8A79B845D2850C7F20F368AA0793578D1FDF1C7 (Type_t * ___type0, const RuntimeMethod* method); // System.Boolean LitJson.ArrayMetadata::get_IsArray() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ArrayMetadata_get_IsArray_m73E4CD96BA590BF64CCFA708DE4C6719BB129C3E_inline (ArrayMetadata_tF0CA4EA5DDA5A3A4E7FFF5549F3807D19592A4B9 * __this, const RuntimeMethod* method); // System.Boolean LitJson.ArrayMetadata::get_IsList() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ArrayMetadata_get_IsList_m81203F474BBD2F7CF104919580A49A8F9AD6D09A_inline (ArrayMetadata_tF0CA4EA5DDA5A3A4E7FFF5549F3807D19592A4B9 * __this, const RuntimeMethod* method); // System.Object System.Activator::CreateInstance(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Activator_CreateInstance_m1BACAB5F4FBF138CCCB537DDCB0683A2AC064295 (Type_t * ___type0, const RuntimeMethod* method); // System.Type LitJson.ArrayMetadata::get_ElementType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * ArrayMetadata_get_ElementType_m49C3EF54656E8BC0A9D23270EB40C4F2E8E9F658 (ArrayMetadata_tF0CA4EA5DDA5A3A4E7FFF5549F3807D19592A4B9 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::.ctor() inline void List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method) { (( void (*) (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 *, const RuntimeMethod*))List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared)(__this, method); } // System.Object LitJson.JsonMapper::ReadValue(System.Type,LitJson.JsonReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JsonMapper_ReadValue_mAFB51230BD1563167F207F1BE32BEA869ED3368B (Type_t * ___inst_type0, JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * ___reader1, const RuntimeMethod* method); // System.Array System.Array::CreateInstance(System.Type,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray * Array_CreateInstance_m57AC02F4475AF70CA317B48F09B3C29E3BA9C046 (Type_t * ___elementType0, int32_t ___length1, const RuntimeMethod* method); // System.Void System.Array::SetValue(System.Object,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_SetValue_mD28884941182C5B7118CFBA3D55DB9CEA8797455 (RuntimeArray * __this, RuntimeObject * ___value0, int32_t ___index1, const RuntimeMethod* method); // System.Void LitJson.JsonMapper::AddObjectMetadata(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper_AddObjectMetadata_m9EA6E58A83411B87D2A00E5BB3E271B5D708EE51 (Type_t * ___type0, const RuntimeMethod* method); // System.Void System.Reflection.FieldInfo::SetValue(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FieldInfo_SetValue_mA1EFB5DA5E4B930A617744E29E909FE9DEAA663C (FieldInfo_t * __this, RuntimeObject * ___obj0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Boolean LitJson.ObjectMetadata::get_IsDictionary() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ObjectMetadata_get_IsDictionary_mB0EEA3B92DA70BD1EACE8198B060EB69359F3EEA_inline (ObjectMetadata_tCC476FD33189C604471B5B5D5ECF7AF098B0DB62 * __this, const RuntimeMethod* method); // System.Boolean LitJson.JsonReader::get_SkipNonMembers() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonReader_get_SkipNonMembers_m7502484B14185A0B54F14903DC857CE1F8195CEC_inline (JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * __this, const RuntimeMethod* method); // System.String System.String::Format(System.String,System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m8D1CB0410C35E052A53AE957C914C841E54BAB66 (String_t* ___format0, RuntimeObject * ___arg01, RuntimeObject * ___arg12, const RuntimeMethod* method); // System.Void LitJson.JsonMapper::ReadSkip(LitJson.JsonReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper_ReadSkip_m1D88148DBC55A4A2D3A8920F76B9B5EA08C0C606 (JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * ___reader0, const RuntimeMethod* method); // System.Type LitJson.ObjectMetadata::get_ElementType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * ObjectMetadata_get_ElementType_m9C2D3A36995064670454FACC0239F7FC4972FE0B (ObjectMetadata_tCC476FD33189C604471B5B5D5ECF7AF098B0DB62 * __this, const RuntimeMethod* method); // LitJson.IJsonWrapper LitJson.WrapperFactory::Invoke() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WrapperFactory_Invoke_m2210DB2401DDA822B2A6E32CF64A6F275CC61F94 (WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C * __this, const RuntimeMethod* method); // LitJson.IJsonWrapper LitJson.JsonMapper::ReadValue(LitJson.WrapperFactory,LitJson.JsonReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonMapper_ReadValue_m90F55D903FF73E163375A52F6F9C3CA9DD0B365C (WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C * ___factory0, JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * ___reader1, const RuntimeMethod* method); // System.Void LitJson.WrapperFactory::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WrapperFactory__ctor_mFB575B55E4D60D29BCC1FB395577F0E3EAB38E91 (WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // LitJson.IJsonWrapper LitJson.JsonMapper::ToWrapper(LitJson.WrapperFactory,LitJson.JsonReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonMapper_ToWrapper_m61D788535FA2B054FF82CF0A3A0A2E962EE6BC13 (WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C * ___factory0, JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * ___reader1, const RuntimeMethod* method); // System.Void LitJson.ExporterFunc::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExporterFunc__ctor_m4237FEBFE9ED03085C7D3F0994FD5E4FB27C6051 (ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void LitJson.ImporterFunc::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImporterFunc__ctor_mE340B341FA3A6B4BD788BD90BD0D8F1E242A5289 (ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void LitJson.JsonMapper::RegisterImporter(System.Collections.Generic.IDictionary`2>,System.Type,System.Type,LitJson.ImporterFunc) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper_RegisterImporter_m4148E8E55C8BEE0C991CC14F900A052CF475F8F9 (RuntimeObject* ___table0, Type_t * ___json_type1, Type_t * ___value_type2, ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * ___importer3, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2::.ctor() inline void Dictionary_2__ctor_m43AFD259B50B0DDD526C80278006754D9A780E21 (Dictionary_2_t97A1181D986BCE5FC5CCE0D4E72B74125977DFF9 * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t97A1181D986BCE5FC5CCE0D4E72B74125977DFF9 *, const RuntimeMethod*))Dictionary_2__ctor_m2C8EE5C13636D67F6C451C4935049F534AEC658F_gshared)(__this, method); } // System.Void LitJson.JsonWriter::Write(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Write_m1226D74904B33BC08C33A98D2C12DB0226F6131C (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, String_t* ___str0, const RuntimeMethod* method); // System.IO.TextWriter LitJson.JsonWriter::get_TextWriter() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * JsonWriter_get_TextWriter_mDF41359E2D57495FB968A62FDA3D6FBB76B89B18_inline (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, const RuntimeMethod* method); // System.Void LitJson.JsonWriter::Write(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Write_m2E75C0441EED47A0666850AD2301881952B59C7F (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, double ___number0, const RuntimeMethod* method); // System.Void LitJson.JsonWriter::Write(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Write_m520AAD327374986AC0A8B685CD066F7058E26C47 (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, int32_t ___number0, const RuntimeMethod* method); // System.Void LitJson.JsonWriter::Write(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Write_m8637DCA2F8ED1907C6236C91F5C67311977D9C78 (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, bool ___boolean0, const RuntimeMethod* method); // System.Void LitJson.JsonWriter::Write(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Write_m1E202F293D17802DF6CF641957506832D7220C83 (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, int64_t ___number0, const RuntimeMethod* method); // System.Void LitJson.JsonWriter::WriteArrayStart() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WriteArrayStart_m4AD937F8743225A6A5753BA03FBADE44945F5A2B (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, const RuntimeMethod* method); // System.Collections.IEnumerator System.Array::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Array_GetEnumerator_m7BC171F2F69907FD4585E7B4A3A224473BE32964 (RuntimeArray * __this, const RuntimeMethod* method); // System.Void LitJson.JsonMapper::WriteValue(System.Object,LitJson.JsonWriter,System.Boolean,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper_WriteValue_m82EFBCF4FCE3898C9C97D6646E14A64D4A690E63 (RuntimeObject * ___obj0, JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * ___writer1, bool ___writer_is_private2, int32_t ___depth3, const RuntimeMethod* method); // System.Void LitJson.JsonWriter::WriteArrayEnd() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WriteArrayEnd_mE072C6C05C1CAB7FD8B311778F3945D241470A87 (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, const RuntimeMethod* method); // System.Void LitJson.JsonWriter::WriteObjectStart() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WriteObjectStart_mFD0DB249791378221BCF3329F94D5B9232B72622 (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, const RuntimeMethod* method); // System.Object System.Collections.DictionaryEntry::get_Key() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * DictionaryEntry_get_Key_m9A53AE1FA4CA017F0A7353F71658A9C36079E1D7_inline (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 * __this, const RuntimeMethod* method); // System.Void LitJson.JsonWriter::WritePropertyName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WritePropertyName_mDAAC9B6838862E1651D2DA3F2A9B5E88C07F1ED3 (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, String_t* ___property_name0, const RuntimeMethod* method); // System.Object System.Collections.DictionaryEntry::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * DictionaryEntry_get_Value_m2D618D04C0A8EA2A065B171F528FEA98B059F9BC_inline (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 * __this, const RuntimeMethod* method); // System.Void LitJson.JsonWriter::WriteObjectEnd() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WriteObjectEnd_m141FFC78D2C8B82406EF7F95C9A5ECB1EDC374A9 (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, const RuntimeMethod* method); // System.Void LitJson.ExporterFunc::Invoke(System.Object,LitJson.JsonWriter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExporterFunc_Invoke_mACFCD0E976E5B106FAB2AC2A4B8FFEDC6F95C650 (ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * __this, RuntimeObject * ___obj0, JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * ___writer1, const RuntimeMethod* method); // System.Type System.Enum::GetUnderlyingType(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Enum_GetUnderlyingType_m8BD5EDDA4C9A15C2988B27DD48314AC3C16F7A53 (Type_t * ___enumType0, const RuntimeMethod* method); // System.Void LitJson.JsonWriter::Write(System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Write_m6C70542008EB5A8A437EA966FD767093D9E18BCB (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, uint64_t ___number0, const RuntimeMethod* method); // System.Void LitJson.JsonMapper::AddTypeProperties(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper_AddTypeProperties_m8EE3CF28679D9A8786E453E34B031030174593E0 (Type_t * ___type0, const RuntimeMethod* method); // System.Void LitJson.JsonWriter::Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Reset_mB67DA27FB1A75ADAD33D5BAE25629C1DC2BD2F01 (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, const RuntimeMethod* method); // System.Void LitJson.JsonReader::.ctor(System.IO.TextReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader__ctor_mCED57B34A64E03A1F20590058A8FD614FE0B1E44 (JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * __this, TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * ___reader0, const RuntimeMethod* method); // LitJson.IJsonWrapper LitJson.JsonMapper::ToWrapper(LitJson.WrapperFactory,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonMapper_ToWrapper_m96476C968010DE771BAA8466896D54F804E75829 (WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C * ___factory0, String_t* ___json1, const RuntimeMethod* method); // System.Void LitJson.JsonReader::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader__ctor_m9C1648178CF28BDEF993FD4269448E94DE6C747D (JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * __this, String_t* ___json_text0, const RuntimeMethod* method); // System.Void System.ArgumentNullException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97 (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * __this, String_t* ___paramName0, const RuntimeMethod* method); // System.Void System.ArgumentException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void BestHTTP.SignalRCore.JsonProtocol::set_Encoder(BestHTTP.SignalRCore.IEncoder) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonProtocol_set_Encoder_mDD345DB736CA7EFB764059FAA0BF3797D1CD5E61_inline (JsonProtocol_tB82FEAFDEBC166F53B523853DA071388D57D79A4 * __this, RuntimeObject* ___value0, const RuntimeMethod* method); // System.Int32 System.String::IndexOf(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_mEE2D2F738175E3FF05580366D6226DBD673CA2BE (String_t* __this, Il2CppChar ___value0, const RuntimeMethod* method); // System.String System.String::Substring(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B (String_t* __this, int32_t ___startIndex0, int32_t ___length1, const RuntimeMethod* method); // BestHTTP.SignalRCore.IEncoder BestHTTP.SignalRCore.JsonProtocol::get_Encoder() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* JsonProtocol_get_Encoder_mCC02DE42ADBFD93DF4D54DF3C00D6616C13F1B8C_inline (JsonProtocol_tB82FEAFDEBC166F53B523853DA071388D57D79A4 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::Add(!0) inline void List_1_Add_m5661E32F6048E09663B9FA80AB5DE3865851BD08 (List_1_tA4B5BEC690306B3DC7901CEA473C0A5BC3243F8B * __this, Message_t7A5AEEC23C8151DAE56A0BF20600B63ED4BEB6D3 ___item0, const RuntimeMethod* method) { (( void (*) (List_1_tA4B5BEC690306B3DC7901CEA473C0A5BC3243F8B *, Message_t7A5AEEC23C8151DAE56A0BF20600B63ED4BEB6D3 , const RuntimeMethod*))List_1_Add_m5661E32F6048E09663B9FA80AB5DE3865851BD08_gshared)(__this, ___item0, method); } // System.Int32 System.String::IndexOf(System.Char,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_mAD7052CB25BA1D60A8F055AA89D09809F61233DB (String_t* __this, Il2CppChar ___value0, int32_t ___startIndex1, const RuntimeMethod* method); // System.Boolean System.String::IsNullOrEmpty(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_IsNullOrEmpty_m9AFBB5335B441B94E884B8A9D4A27AD60E3D7F7C (String_t* ___value0, const RuntimeMethod* method); // System.Byte[] BestHTTP.SignalRCore.JsonProtocol::WithSeparator(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* JsonProtocol_WithSeparator_m94FF5F80136E71EFF9668F7ADD9DEA367F4EAB4A (String_t* ___str0, const RuntimeMethod* method); // System.Object BestHTTP.SignalRCore.JsonProtocol::ConvertTo(System.Type,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JsonProtocol_ConvertTo_mF3B677B3DFC9825BB86F42B48316CC951379CF99 (JsonProtocol_tB82FEAFDEBC166F53B523853DA071388D57D79A4 * __this, Type_t * ___toType0, RuntimeObject * ___obj1, const RuntimeMethod* method); // System.Boolean System.Type::get_IsPrimitive() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsPrimitive_m43E50D507C45CE3BD51C0DC07C8AB061AFD6B3C3 (Type_t * __this, const RuntimeMethod* method); // System.Object System.Convert::ChangeType(System.Object,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Convert_ChangeType_mD726EC15920319382D858ECD7FD78339110D7FD4 (RuntimeObject * ___value0, Type_t * ___conversionType1, const RuntimeMethod* method); // System.Text.Encoding System.Text.Encoding::get_UTF8() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * Encoding_get_UTF8_mC877FB3137BBD566AEE7B15F9BF61DC4EF8F5E5E (const RuntimeMethod* method); // System.Int32 System.String::get_Length() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline (String_t* __this, const RuntimeMethod* method); // System.Boolean LitJson.Lexer::get_AllowComments() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Lexer_get_AllowComments_m1A6C52BB3E9393E290FCABF5BAFBF01B3F2E5F65_inline (Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC * __this, const RuntimeMethod* method); // System.Void LitJson.Lexer::set_AllowComments(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Lexer_set_AllowComments_mF05F92B7429CC2BD0F9B0B79F2C1F69CF8DCBB96_inline (Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC * __this, bool ___value0, const RuntimeMethod* method); // System.Boolean LitJson.Lexer::get_AllowSingleQuotedStrings() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Lexer_get_AllowSingleQuotedStrings_m1EC6609CB289B9294B10E28804182CC9DCD25353_inline (Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC * __this, const RuntimeMethod* method); // System.Void LitJson.Lexer::set_AllowSingleQuotedStrings(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Lexer_set_AllowSingleQuotedStrings_mFB60C851F11B2077892BC1F2812F3B7DBAAB404B_inline (Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC * __this, bool ___value0, const RuntimeMethod* method); // System.Void LitJson.JsonReader::PopulateParseTable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader_PopulateParseTable_m8DF0774DB71E90746938CECA8A03E66D2A3E14EE (const RuntimeMethod* method); // System.Void System.IO.StringReader::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringReader__ctor_m7CC29D8E83F4813395ACA9CF4F756B1BCE09A7EE (StringReader_t74E352C280EAC22C878867444978741F19E1F895 * __this, String_t* ___s0, const RuntimeMethod* method); // System.Void LitJson.JsonReader::.ctor(System.IO.TextReader,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader__ctor_mE57B0D768E7062A6AE1675293C00E149D78BB0F3 (JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * __this, TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * ___reader0, bool ___owned1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Stack`1::.ctor() inline void Stack_1__ctor_m41EBD1EDB9A3AC64B4EE3B6AAC08868FF28DA954 (Stack_1_tC6C298385D16F10F391B84280D21FE059A45CC55 * __this, const RuntimeMethod* method) { (( void (*) (Stack_1_tC6C298385D16F10F391B84280D21FE059A45CC55 *, const RuntimeMethod*))Stack_1__ctor_m41EBD1EDB9A3AC64B4EE3B6AAC08868FF28DA954_gshared)(__this, method); } // System.Void System.Collections.Generic.Stack`1::Push(!0) inline void Stack_1_Push_m3E6C815B71F17B20A42B72193A29D0FB92F576E4 (Stack_1_tC6C298385D16F10F391B84280D21FE059A45CC55 * __this, int32_t ___item0, const RuntimeMethod* method) { (( void (*) (Stack_1_tC6C298385D16F10F391B84280D21FE059A45CC55 *, int32_t, const RuntimeMethod*))Stack_1_Push_m3E6C815B71F17B20A42B72193A29D0FB92F576E4_gshared)(__this, ___item0, method); } // System.Void LitJson.Lexer::.ctor(System.IO.TextReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Lexer__ctor_m428FD31159DBAE3BA3279D928ADFAC40258F6614 (Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC * __this, TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * ___reader0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2>::.ctor() inline void Dictionary_2__ctor_m2EBF1ECBC92F80383944B79DCCDA176099E0BF78 (Dictionary_2_tF15AAE882479CD2CDC37ED42D021B9745B61FFD9 * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_tF15AAE882479CD2CDC37ED42D021B9745B61FFD9 *, const RuntimeMethod*))Dictionary_2__ctor_mE7F9D51201F5A72BF4995CA0F3F0E866DB21E638_gshared)(__this, method); } // System.Void LitJson.JsonReader::TableAddRow(LitJson.ParserToken) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader_TableAddRow_m4BBE185CAF48E27D723231D0EAFA45B1ABF7C567 (int32_t ___rule0, const RuntimeMethod* method); // System.Void LitJson.JsonReader::TableAddCol(LitJson.ParserToken,System.Int32,System.Int32[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader_TableAddCol_mF494145B2247103C35FBE7420B274171BB01951F (int32_t ___row0, int32_t ___col1, Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___symbols2, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.RuntimeHelpers::InitializeArray(System.Array,System.RuntimeFieldHandle) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeHelpers_InitializeArray_mE27238308FED781F2D6A719F0903F2E1311B058F (RuntimeArray * ___array0, RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 ___fldHandle1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2::.ctor() inline void Dictionary_2__ctor_m0042AB3E1A64BB363620361BBE7585680D722E16 (Dictionary_2_t8525C1D9F5FB98BBDD9FCEE0F794F993946465C4 * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t8525C1D9F5FB98BBDD9FCEE0F794F993946465C4 *, const RuntimeMethod*))Dictionary_2__ctor_mE7F9D51201F5A72BF4995CA0F3F0E866DB21E638_gshared)(__this, method); } // System.Boolean System.Double::TryParse(System.String,System.Double&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Double_TryParse_m9152D976CDFE0B30C7E251DDD04EAD6BBD0800B0 (String_t* ___s0, double* ___result1, const RuntimeMethod* method); // System.Boolean System.Int32::TryParse(System.String,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int32_TryParse_m748B8DB1D0C9D25C3D1812D7887411C4AFC1DDC2 (String_t* ___s0, int32_t* ___result1, const RuntimeMethod* method); // System.Boolean System.Int64::TryParse(System.String,System.Int64&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int64_TryParse_m6EA988890D7F9954EA49A7227E60B3C674930650 (String_t* ___s0, int64_t* ___result1, const RuntimeMethod* method); // System.String LitJson.Lexer::get_StringValue() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Lexer_get_StringValue_mE578D55A6FC8B0E40A347E23F78D7EB1163C94FE_inline (Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC * __this, const RuntimeMethod* method); // System.Void LitJson.JsonReader::ProcessNumber(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader_ProcessNumber_m38DFF1B871855CD150DB570D595DBC05FE4983AE (JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * __this, String_t* ___number0, const RuntimeMethod* method); // System.Boolean LitJson.Lexer::NextToken() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Lexer_NextToken_mB37EEC3DE449EB8BE2A073FBDBD1E72921948367 (Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC * __this, const RuntimeMethod* method); // System.Boolean LitJson.Lexer::get_EndOfInput() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Lexer_get_EndOfInput_m376873227BFFB7D9FAAC5C470BA8F57D3D6B0F25_inline (Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC * __this, const RuntimeMethod* method); // System.Void LitJson.JsonReader::Close() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader_Close_mC348E7F4CC4CC3A42B3A7ED405D81F29E421B882 (JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * __this, const RuntimeMethod* method); // System.Int32 LitJson.Lexer::get_Token() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Lexer_get_Token_mA19AE42604DC98E18C968FED3898062A88494D26_inline (Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC * __this, const RuntimeMethod* method); // System.Void System.IO.TextReader::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextReader_Dispose_mDF1DCFD8FBE94A453EB2350DB7173027420BA5F8 (TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Stack`1::Clear() inline void Stack_1_Clear_m65385AD770CB3137B6B0638B1C8B3F135A5E277D (Stack_1_tC6C298385D16F10F391B84280D21FE059A45CC55 * __this, const RuntimeMethod* method) { (( void (*) (Stack_1_tC6C298385D16F10F391B84280D21FE059A45CC55 *, const RuntimeMethod*))Stack_1_Clear_m65385AD770CB3137B6B0638B1C8B3F135A5E277D_gshared)(__this, method); } // System.Boolean LitJson.JsonReader::ReadToken() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonReader_ReadToken_mCFD0A51A23E10FF5E9ED3974BF6CEF7E9A683DC3 (JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * __this, const RuntimeMethod* method); // !0 System.Collections.Generic.Stack`1::Peek() inline int32_t Stack_1_Peek_mF3C8F14E215502D1EA5ADF268B0614E8F29675F4 (Stack_1_tC6C298385D16F10F391B84280D21FE059A45CC55 * __this, const RuntimeMethod* method) { return (( int32_t (*) (Stack_1_tC6C298385D16F10F391B84280D21FE059A45CC55 *, const RuntimeMethod*))Stack_1_Peek_mF3C8F14E215502D1EA5ADF268B0614E8F29675F4_gshared)(__this, method); } // !0 System.Collections.Generic.Stack`1::Pop() inline int32_t Stack_1_Pop_m2F2EC2CE517CA10A558A43B00D072E570AB63437 (Stack_1_tC6C298385D16F10F391B84280D21FE059A45CC55 * __this, const RuntimeMethod* method) { return (( int32_t (*) (Stack_1_tC6C298385D16F10F391B84280D21FE059A45CC55 *, const RuntimeMethod*))Stack_1_Pop_m2F2EC2CE517CA10A558A43B00D072E570AB63437_gshared)(__this, method); } // System.Void LitJson.JsonReader::ProcessSymbol() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader_ProcessSymbol_m7E864DB46518CF0E8B4803ADB87DEE7E2F3D1ED6 (JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * __this, const RuntimeMethod* method); // System.Void LitJson.JsonException::.ctor(LitJson.ParserToken,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonException__ctor_mB482011B1B67369831E2C32A69B886E14F48228B (JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C * __this, int32_t ___token0, Exception_t * ___inner_exception1, const RuntimeMethod* method); // System.Globalization.NumberFormatInfo System.Globalization.NumberFormatInfo::get_InvariantInfo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * NumberFormatInfo_get_InvariantInfo_m286BBD095BFCA546BD2CD67E856D1A205436C03F (const RuntimeMethod* method); // System.Void System.Text.StringBuilder::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_m5A81DE19E748F748E19FF13FB6FFD2547F9212D9 (StringBuilder_t * __this, const RuntimeMethod* method); // System.Void System.IO.StringWriter::.ctor(System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringWriter__ctor_mCA0BB9FBAEDB78DF47C385E534F1EB38F6334F66 (StringWriter_t7BEF6B06B35BC25817D8BE28593FB52F0525B839 * __this, StringBuilder_t * ___sb0, const RuntimeMethod* method); // System.Void LitJson.JsonWriter::Init() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Init_mFCFCC27C3499C3A6C5F757A73565190292CBDA0A (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, const RuntimeMethod* method); // System.Void LitJson.JsonWriter::.ctor(System.IO.TextWriter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter__ctor_mCAF0A04C68754E9A06279E46A77239F9936B15F1 (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * ___writer0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Stack`1::.ctor() inline void Stack_1__ctor_mCB755FF2E83784C3E72212BFD18F5EFB3F7824CA (Stack_1_t7B63F93F3C5FA452C37D6EC4E51A4F56AF3D7B92 * __this, const RuntimeMethod* method) { (( void (*) (Stack_1_t7B63F93F3C5FA452C37D6EC4E51A4F56AF3D7B92 *, const RuntimeMethod*))Stack_1__ctor_mD782ADAC3AB9809F63B681213A7A39784A9A169A_gshared)(__this, method); } // System.Void LitJson.WriterContext::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WriterContext__ctor_m13B15DCCAE5EF69EC535CB3C401F12BE421CFF56 (WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Stack`1::Push(!0) inline void Stack_1_Push_mB2E1D58D6814C632B1C0B7A71D32F2A275923315 (Stack_1_t7B63F93F3C5FA452C37D6EC4E51A4F56AF3D7B92 * __this, WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * ___item0, const RuntimeMethod* method) { (( void (*) (Stack_1_t7B63F93F3C5FA452C37D6EC4E51A4F56AF3D7B92 *, WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 *, const RuntimeMethod*))Stack_1_Push_m8FFF613733BF88B54FCD4498B1E97DE296E27757_gshared)(__this, ___item0, method); } // System.Void LitJson.JsonWriter::PutNewline(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_PutNewline_m7966BB02AFE5D597202A8B77928B46579752BBDD (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, bool ___add_comma0, const RuntimeMethod* method); // System.Void LitJson.JsonWriter::Put(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Put_m0C22075651EF25191CBE44E952AC7349C71A4FE7 (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, String_t* ___str0, const RuntimeMethod* method); // System.Char System.String::get_Chars(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70 (String_t* __this, int32_t ___index0, const RuntimeMethod* method); // System.Void LitJson.JsonWriter::IntToHex(System.Int32,System.Char[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_IntToHex_mC3B4AD899D2FCE1E2B5A0DDC21C9766CA06ACBAA (int32_t ___n0, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___hex1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Stack`1::Clear() inline void Stack_1_Clear_mCDD49B62DA8E550FE85E16D09EEE152AEE4828CD (Stack_1_t7B63F93F3C5FA452C37D6EC4E51A4F56AF3D7B92 * __this, const RuntimeMethod* method) { (( void (*) (Stack_1_t7B63F93F3C5FA452C37D6EC4E51A4F56AF3D7B92 *, const RuntimeMethod*))Stack_1_Clear_m108C5704F0CF0E476FED5C71BF7A4AA5804F3A61_gshared)(__this, method); } // System.Int32 System.Text.StringBuilder::get_Length() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StringBuilder_get_Length_m680500263C59ACFD9582BF2AEEED8E92C87FF5C0 (StringBuilder_t * __this, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::Remove(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Remove_m6ABF9CF3D10160EB52E0768262A9B179F987571E (StringBuilder_t * __this, int32_t ___startIndex0, int32_t ___length1, const RuntimeMethod* method); // System.Void LitJson.JsonWriter::DoValidation(LitJson.Condition) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_DoValidation_m671A92C47238ABA1DE030342F20B390A5CD21C71 (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, int32_t ___cond0, const RuntimeMethod* method); // System.Void LitJson.JsonWriter::PutNewline() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_PutNewline_m9593D928ED228E8E6835D30FB01E67EAF1E45A4B (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, const RuntimeMethod* method); // System.String System.Convert::ToString(System.Decimal,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Convert_ToString_m4365C068739D443C5C6EEB5445AAEE1DBB245A4B (Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.String System.Convert::ToString(System.Double,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Convert_ToString_m5BC045F91E837268FECEA78DA859902005EF91D1 (double ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.String System.Convert::ToString(System.Int32,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Convert_ToString_m608712133E3A607F257620CB270C6758F01CB109 (int32_t ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.String System.Convert::ToString(System.Int64,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Convert_ToString_m96D69564ADA9ACFD81958A9AB178D27D7BFECB4E (int64_t ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.Void LitJson.JsonWriter::PutString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_PutString_mA39E1FF366FD962F077242A5D43087B2E6B5E346 (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, String_t* ___str0, const RuntimeMethod* method); // System.String System.Convert::ToString(System.UInt64,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Convert_ToString_m7DC0B782B61A20E04F624E47FD967D246BB78BD6 (uint64_t ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method); // !0 System.Collections.Generic.Stack`1::Pop() inline WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * Stack_1_Pop_m7183B4824686C3DC16EB5A9DEACAA2CFE2C867ED (Stack_1_t7B63F93F3C5FA452C37D6EC4E51A4F56AF3D7B92 * __this, const RuntimeMethod* method) { return (( WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * (*) (Stack_1_t7B63F93F3C5FA452C37D6EC4E51A4F56AF3D7B92 *, const RuntimeMethod*))Stack_1_Pop_m883C5DEF33CA2E556AC710A9BE26F8BD2D4B182C_gshared)(__this, method); } // System.Int32 System.Collections.Generic.Stack`1::get_Count() inline int32_t Stack_1_get_Count_m1FEFAE251314DE96805F70C00B59DAA9EA7B2203_inline (Stack_1_t7B63F93F3C5FA452C37D6EC4E51A4F56AF3D7B92 * __this, const RuntimeMethod* method) { return (( int32_t (*) (Stack_1_t7B63F93F3C5FA452C37D6EC4E51A4F56AF3D7B92 *, const RuntimeMethod*))Stack_1_get_Count_mFD1C100DE65847CAB033057C77027AA5DB427B54_gshared_inline)(__this, method); } // !0 System.Collections.Generic.Stack`1::Peek() inline WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * Stack_1_Peek_mFB80BE4B86D09007389E5EA0BC46F36DE54C1BCC (Stack_1_t7B63F93F3C5FA452C37D6EC4E51A4F56AF3D7B92 * __this, const RuntimeMethod* method) { return (( WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * (*) (Stack_1_t7B63F93F3C5FA452C37D6EC4E51A4F56AF3D7B92 *, const RuntimeMethod*))Stack_1_Peek_m2060B46CD5CCD8A93C5CC558C6D3EF027862FE59_gshared)(__this, method); } // System.Void LitJson.JsonWriter::Unindent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Unindent_m9000A729048AE8EF704ED1FBEA6C721EB79DF271 (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, const RuntimeMethod* method); // System.Void LitJson.JsonWriter::Indent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Indent_m1D369467CC7D2295DE796AE6BBEE0D2156019E0A (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KCcmBlockCipher__ctor_m98219383ED65772D0ADEC63282A0D64D67564C3F (KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511 * __this, RuntimeObject* ___engine0, int32_t ___Nb1, const RuntimeMethod* method); // System.Void System.IO.MemoryStream::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryStream__ctor_mD27B3DF2400D46A4A81EE78B0BD2C29EFCFAA44F (MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::setNb(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KCcmBlockCipher_setNb_m7CC9AA8BC720AC09945941BB2342D909E720863D (KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511 * __this, int32_t ___Nb0, const RuntimeMethod* method); // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ParametersWithIV::GetIV() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ParametersWithIV_GetIV_m17D0EF646E07A2B81A17450A3342DEBB7C42603B (ParametersWithIV_tD5AFAE97C3F7DA4A08BC278F9AC969DA957E87A0 * __this, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ICipherParameters BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ParametersWithIV::get_Parameters() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* ParametersWithIV_get_Parameters_m2B5701D391CF607292513A855051EEF3D8E705E8_inline (ParametersWithIV_tD5AFAE97C3F7DA4A08BC278F9AC969DA957E87A0 * __this, const RuntimeMethod* method); // System.String System.String::Concat(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B (String_t* ___str00, String_t* ___str11, const RuntimeMethod* method); // System.Void System.Array::Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877 (RuntimeArray * ___sourceArray0, int32_t ___sourceIndex1, RuntimeArray * ___destinationArray2, int32_t ___destinationIndex3, int32_t ___length4, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::intToBytes(System.Int32,System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KCcmBlockCipher_intToBytes_m688AA98CE4E772AF70411CF3CBA1DC278E9F5858 (KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511 * __this, int32_t ___num0, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___outBytes1, int32_t ___outOff2, const RuntimeMethod* method); // System.Byte BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::getFlag(System.Boolean,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t KCcmBlockCipher_getFlag_mFD20F7B8427AFC935BC2DFDDA1BBF64A867DC576 (KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511 * __this, bool ___authTextPresents0, int32_t ___macSize1, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Check::DataLength(System.Byte[],System.Int32,System.Int32,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Check_DataLength_m987B9B6E75E7F5711F99C2B1EFC990B922ECAB3F (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___buf0, int32_t ___off1, int32_t ___len2, String_t* ___msg3, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Check::OutputLength(System.Byte[],System.Int32,System.Int32,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Check_OutputLength_mFF38F66673647A1F0F8806CDF8FAD6B168B951B6 (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___buf0, int32_t ___off1, int32_t ___len2, String_t* ___msg3, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::ProcessAAD(System.Byte[],System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KCcmBlockCipher_ProcessAAD_mCA5131BB5A12AAE39B0DD84B73BCB4912D910B7B (KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___assocText0, int32_t ___assocOff1, int32_t ___assocLen2, int32_t ___dataLen3, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Check::DataLength(System.Boolean,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Check_DataLength_m74509F2FBF5A87468D31E9DFA795805313DC13A9 (bool ___condition0, String_t* ___msg1, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::CalculateMac(System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KCcmBlockCipher_CalculateMac_m865D1AFE2B23E43AACA203F65E9A168C001AB0D1 (KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___authText0, int32_t ___authOff1, int32_t ___len2, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::ProcessBlock(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KCcmBlockCipher_ProcessBlock_m6D66A75661B857CAB2C5024BE6879CA1ECBE402B (KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___input0, int32_t ___inOff1, int32_t ___len2, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___output3, int32_t ___outOff4, const RuntimeMethod* method); // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Arrays::ConstantTimeAreEqual(System.Byte[],System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Arrays_ConstantTimeAreEqual_mA8B0D8A56AE0903D0723D146FD1777A01E2014E4 (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___a0, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___b1, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.InvalidCipherTextException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidCipherTextException__ctor_m17000A09278358915AC0F74D4227FA7AC7C72043 (InvalidCipherTextException_tCB4102F353576109DF6723BAD28806C82D61BC8D * __this, String_t* ___message0, const RuntimeMethod* method); // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::ProcessPacket(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t KCcmBlockCipher_ProcessPacket_m728128BCCFDBF1BBEDCA5944CA05087D5AF0B9A9 (KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___input0, int32_t ___inOff1, int32_t ___len2, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___output3, int32_t ___outOff4, const RuntimeMethod* method); // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Arrays::Clone(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* Arrays_Clone_m362B6E8EAA394ABF566EABAF08A37C8232D398D8 (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___data0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Arrays::Fill(System.Byte[],System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Arrays_Fill_m841D30B6E9F2CA374C9F6D5C3A690607C6E1BCFF (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___buf0, uint8_t ___b1, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::Append(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1 (StringBuilder_t * __this, String_t* ___value0, const RuntimeMethod* method); // System.String System.Convert::ToString(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Convert_ToString_mA60945431DE8F2DFDF3A3E4C76C21703562F2906 (int32_t ___value0, int32_t ___toBase1, const RuntimeMethod* method); // System.Void System.Text.StringBuilder::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_m9305A36F9CF53EDD80D132428999934C68904C77 (StringBuilder_t * __this, String_t* ___value0, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::Insert(System.Int32,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Insert_m2B101CF8B6D47CFC7602CBABC101569E513D234F (StringBuilder_t * __this, int32_t ___index0, String_t* ___value1, const RuntimeMethod* method); // System.Int32 System.Convert::ToInt32(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m21526761291049AC762DEAEA073870C8A8583643 (String_t* ___value0, int32_t ___fromBase1, const RuntimeMethod* method); // System.Void System.Array::Clear(System.Array,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Clear_mEB42D172C5E0825D340F6209F28578BDDDDCE34F (RuntimeArray * ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCtrBlockCipher::Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KCtrBlockCipher_Reset_m1D869BF12492B7AA6B2E53A03892255176604698 (KCtrBlockCipher_t4B5FB1183B24BD5B518E83554A2F569A374B566B * __this, const RuntimeMethod* method); // System.Byte BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCtrBlockCipher::CalculateByte(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t KCtrBlockCipher_CalculateByte_m3D7BEE2F0E183725BBFB841262EB72D15C758E76 (KCtrBlockCipher_t4B5FB1183B24BD5B518E83554A2F569A374B566B * __this, uint8_t ___b0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.DataLengthException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataLengthException__ctor_mFEE2A7A2F649E823D91C8863B37120A82C23FACE (DataLengthException_t084143F55FB641046577C7BD1F58BC059B953180 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCtrBlockCipher::incrementCounterAt(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KCtrBlockCipher_incrementCounterAt_m3A0535B913F7ECA710CF329FA1005BA106E9862B (KCtrBlockCipher_t4B5FB1183B24BD5B518E83554A2F569A374B566B * __this, int32_t ___pos0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCtrBlockCipher::checkCounter() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KCtrBlockCipher_checkCounter_m8F76C925E56E96852D58FE44A8FCF86D08D1C5C9 (KCtrBlockCipher_t4B5FB1183B24BD5B518E83554A2F569A374B566B * __this, const RuntimeMethod* method); // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCtrBlockCipher::GetBlockSize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t KCtrBlockCipher_GetBlockSize_m51C0EB37B0AF558BB216CFF3FABB07C546D1C776 (KCtrBlockCipher_t4B5FB1183B24BD5B518E83554A2F569A374B566B * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCtrBlockCipher::ProcessBytes(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KCtrBlockCipher_ProcessBytes_m11E0A007F38C4667FE74EC4B9DF69847EEABCCF3 (KCtrBlockCipher_t4B5FB1183B24BD5B518E83554A2F569A374B566B * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___input0, int32_t ___inOff1, int32_t ___len2, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___output3, int32_t ___outOff4, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Generators.BaseKdfBytesGenerator::.ctor(System.Int32,BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IDigest) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseKdfBytesGenerator__ctor_m569F19A50D54ADBB62A49340AB655849669EFF6F (BaseKdfBytesGenerator_t9F8BAA4766A94011AFFDB7D7C52714FBFD3EB255 * __this, int32_t ___counterStart0, RuntimeObject* ___digest1, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeccakDigest__ctor_m1CE615652B2BB97ABAD7B084C6C8A81EAE0D94BC (KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C * __this, int32_t ___bitLength0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest::Init(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeccakDigest_Init_m3A43B69C1959DE508F606DCAA8E91CBAF16EACE9 (KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C * __this, int32_t ___bitLength0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest::CopyIn(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeccakDigest_CopyIn_m6034E174B39C209FBE99FBEB9478F75DDFBB3166 (KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C * __this, KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C * ___source0, const RuntimeMethod* method); // System.String System.Int32::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411 (int32_t* __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest::Absorb(System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeccakDigest_Absorb_mFC54D89DEC1A52C0B88CB50741B7DEDAD7FE085D (KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___data0, int32_t ___off1, int32_t ___len2, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest::Squeeze(System.Byte[],System.Int32,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeccakDigest_Squeeze_mFE4DA231466C9D5B9F1F4F151C00B48779FCF152 (KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___output0, int32_t ___offset1, int64_t ___outputLength2, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest::AbsorbBits(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeccakDigest_AbsorbBits_mD00DC7B3FB87AB80751A832D3986FFC2867D4CA3 (KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C * __this, int32_t ___data0, int32_t ___bits1, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest::InitSponge(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeccakDigest_InitSponge_m6A2C21DAF849B8B910782F6AFBE32E4BEAFA797A (KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C * __this, int32_t ___rate0, const RuntimeMethod* method); // System.Void System.ArgumentException::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * __this, String_t* ___message0, String_t* ___paramName1, const RuntimeMethod* method); // System.Void System.InvalidOperationException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest::KeccakAbsorb(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeccakDigest_KeccakAbsorb_mDC695381E82D3E73D6752D18CC3891F7237D11C5 (KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___data0, int32_t ___off1, const RuntimeMethod* method); // System.Int32 System.Math::Min(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Math_Min_m4C6E1589800A3AA57C1F430C3903847E8D7B4574 (int32_t ___val10, int32_t ___val21, const RuntimeMethod* method); // System.UInt64 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Utilities.Pack::LE_To_UInt64(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Pack_LE_To_UInt64_m7CC2C29E6C45033ED7B8A580B198ABAC4AA28033 (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___bs0, int32_t ___off1, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest::KeccakPermutation() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeccakDigest_KeccakPermutation_mB81DDEE13F50D5E69A8EE00C1E1833C9C90C9AC7 (KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest::KeccakExtract() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeccakDigest_KeccakExtract_m2ABF5A58BD5120F087661729FBA3D915A6E7DF53 (KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest::PadAndSwitchToSqueezingPhase() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeccakDigest_PadAndSwitchToSqueezingPhase_m6AF9749F5F976E9E072444C83C24FA1CFBF3F700 (KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C * __this, const RuntimeMethod* method); // System.Int64 System.Math::Min(System.Int64,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Math_Min_m63E8ED32ABF3637E5BE49943F6760922C2876087 (int64_t ___val10, int64_t ___val21, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Utilities.Pack::UInt64_To_LE(System.UInt64[],System.Int32,System.Int32,System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Pack_UInt64_To_LE_m2468E70062B0C748F91EF5D4B26254290952B487 (UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* ___ns0, int32_t ___nsOff1, int32_t ___nsLen2, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___bs3, int32_t ___bsOff4, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeccakDigest__ctor_mBD111E83E3D127A088AC34C95DE25C2C01B9AACB (KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C * __this, KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C * ___source0, const RuntimeMethod* method); // !0 System.Collections.Generic.List`1::get_Item(System.Int32) inline String_t* List_1_get_Item_m3F624A80E7853289E4759DE8F16CF23B0958365B_inline (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * __this, int32_t ___index0, const RuntimeMethod* method) { return (( String_t* (*) (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 *, int32_t, const RuntimeMethod*))List_1_get_Item_m7B5E3383CB67492E573AC0D875ED82A51350F188_gshared_inline)(__this, ___index0, method); } // System.Void BestHTTP.Extensions.HeaderParser::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HeaderParser__ctor_m0ED7DAC5F04802F1AED6F04329E34BF296595193 (HeaderParser_t90F5D0027B4A301EFD28FC225846CB32AB67AD5E * __this, String_t* ___headerStr0, const RuntimeMethod* method); // System.Boolean BestHTTP.Extensions.KeyValuePairList::TryGet(System.String,BestHTTP.Extensions.HeaderValue&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool KeyValuePairList_TryGet_m1B462A6661FC7A993D3E0125E8A33BC0BC45CB16 (KeyValuePairList_tFB05264C65689BEB0A93912EE115844C33E3FF0F * __this, String_t* ___valueKeyName0, HeaderValue_tB19EA8836300DA053E7A6E082DD196DA23BA7F77 ** ___param1, const RuntimeMethod* method); // System.Boolean BestHTTP.Extensions.HeaderValue::get_HasValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HeaderValue_get_HasValue_mAAD14705A6CE28E2DB3819071CDFE38014D82E17 (HeaderValue_tB19EA8836300DA053E7A6E082DD196DA23BA7F77 * __this, const RuntimeMethod* method); // System.String BestHTTP.Extensions.HeaderValue::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* HeaderValue_get_Value_mE536CEFE35202D5F10D7594E0A12C6D46CA8DFFF_inline (HeaderValue_tB19EA8836300DA053E7A6E082DD196DA23BA7F77 * __this, const RuntimeMethod* method); // System.TimeSpan System.TimeSpan::FromSeconds(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 TimeSpan_FromSeconds_m4644EABECA69BC6C07AD649C5898A8E53F4FE7B0 (double ___value0, const RuntimeMethod* method); // System.Void BestHTTP.KeepAliveHeader::set_TimeOut(System.TimeSpan) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void KeepAliveHeader_set_TimeOut_m1AEE19DDC7E9E47380B2685C13741228CC94FDAA_inline (KeepAliveHeader_t93C1CC9FD7D51F432D9A50741F9BC0EF59166924 * __this, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___value0, const RuntimeMethod* method); // System.Void BestHTTP.KeepAliveHeader::set_MaxRequests(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void KeepAliveHeader_set_MaxRequests_m872D60B7FDEB997BD1989D3BE73F500D43252EDD_inline (KeepAliveHeader_t93C1CC9FD7D51F432D9A50741F9BC0EF59166924 * __this, int32_t ___value0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Asn1Encodable__ctor_mF956C9DAF4A126B7B4406E2DD0EED16E64ABA126 (Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerOctetString::.ctor(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DerOctetString__ctor_mBD13EC2203DF652C61E5AB45AE95CC51A22F0AF2 (DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___str0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.OtherKeyAttribute BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.OtherKeyAttribute::GetInstance(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR OtherKeyAttribute_tABF4FB6A6D942EF9F90E7BC0C092BFB0E154ABBB * OtherKeyAttribute_GetInstance_mDB51BFAE367AD008B941CECEDE34D39F03D8FF64 (RuntimeObject * ___obj0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::GetInstance(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * Asn1Sequence_GetInstance_m682AEF9FD99CABE589DF0AA4DB2CAC4996AEFD25 (Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0 * ___obj0, bool ___explicitly1, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekIdentifier::GetInstance(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973 * KekIdentifier_GetInstance_mDD0FFFD3AA826C2D4A9E832EA2FD99463DED15D7 (RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekIdentifier::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KekIdentifier__ctor_mA4CD7D3DB0EECDAC3489F8150EEF30ECC96CD2ED (KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973 * __this, Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * ___seq0, const RuntimeMethod* method); // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform::GetTypeName(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Platform_GetTypeName_m6EE4C5C80014DB651B39EAA755D394E21009EADB (RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1EncodableVector::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Asn1EncodableVector__ctor_m1306EB1064C0D4EEC59EA15F8DFF81952B7AE7DE (Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 * __this, Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* ___v0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1EncodableVector::AddOptional(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Asn1EncodableVector_AddOptional_mB97BC076BA9B253F5C10545EE0EE4A839EF34D5A (Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 * __this, Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* ___objs0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerSequence::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1EncodableVector) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DerSequence__ctor_mC969ECDC21E6B8169D0B78BE04B3A08192E13164 (DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 * __this, Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 * ___v0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DerInteger__ctor_m014B0C2AADB00543E51D3621D5B93E030C47F6CA (DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * __this, int32_t ___value0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier::GetInstance(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * AlgorithmIdentifier_GetInstance_m72ED3229FC5112CA144FA81CC150D686073B3964 (RuntimeObject * ___obj0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekRecipientInfo BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekRecipientInfo::GetInstance(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KekRecipientInfo_t49DC4E62062A5E6E070BCBE2704D5AE43A4A7A25 * KekRecipientInfo_GetInstance_m248C7EC4D6807103ABBC5C24359ECF8DD2F7A819 (RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekRecipientInfo::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KekRecipientInfo__ctor_m00AE9E308C1023F147D3FEE79A277B60C02E388F (KekRecipientInfo_t49DC4E62062A5E6E070BCBE2704D5AE43A4A7A25 * __this, Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * ___seq0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerSequence::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DerSequence__ctor_m014F0386FA0EDB7F97747159963DC17F535AF0A2 (DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 * __this, Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* ___v0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KekRecipientInfoGenerator::DetermineKeyEncAlg(System.String,BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.KeyParameter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * KekRecipientInfoGenerator_DetermineKeyEncAlg_m63A85C821965803C1EFBF641392B2A329AD74842 (String_t* ___algorithm0, KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * ___key1, const RuntimeMethod* method); // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.KeyParameter::GetKey() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* KeyParameter_GetKey_mCA2C132B43F669063C426602DD5A8A672531385A (KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * __this, const RuntimeMethod* method); // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::get_Id() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* DerObjectIdentifier_get_Id_m1A4618B1F7ED8630EDC76DF95D8C7086F1E616D6_inline (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * __this, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IWrapper BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsEnvelopedHelper::CreateWrapper(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CmsEnvelopedHelper_CreateWrapper_mD2951A9418E173A69778DEEF45C1BCBAFD454394 (CmsEnvelopedHelper_t4C541C5858FDC5D5FEFBEF5BB39D1E55C9319BF0 * __this, String_t* ___encryptionOid0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ParametersWithRandom::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ICipherParameters,BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParametersWithRandom__ctor_m9CC2D927A9DC93F6BED2DE101C93E19050FEDF97 (ParametersWithRandom_t557A9B373F5F2998BE6C0461812FBE4EB73425AC * __this, RuntimeObject* ___parameters0, SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * ___random1, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekRecipientInfo::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekIdentifier,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KekRecipientInfo__ctor_m4D626470C0CE8DD4EF5146D0AA056C6BFBDFA032 (KekRecipientInfo_t49DC4E62062A5E6E070BCBE2704D5AE43A4A7A25 * __this, KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973 * ___kekID0, AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___keyEncryptionAlgorithm1, Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * ___encryptedKey2, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.RecipientInfo::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekRecipientInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RecipientInfo__ctor_mE50610B87C069DAC135FECCE5E5FA3A6CC1E3ECE (RecipientInfo_tAD4CBFD604399F45BD0D23A4C028E0FC88C19829 * __this, KekRecipientInfo_t49DC4E62062A5E6E070BCBE2704D5AE43A4A7A25 * ___info0, const RuntimeMethod* method); // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform::StartsWith(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Platform_StartsWith_m5AAC2BD78907F92E332405AF241F612A5AF41524 (String_t* ___source0, String_t* ___prefix1, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AlgorithmIdentifier__ctor_m942B7921A63CC0139DAD59B57D2B41BBA20EF608 (AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * __this, DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___algorithm0, Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * ___parameters1, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AlgorithmIdentifier__ctor_mA45787B3AB8C719957BA61423CD3FA852BFB5AE3 (AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * __this, DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___algorithm0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekRecipientInfo::get_KeyEncryptionAlgorithm() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * KekRecipientInfo_get_KeyEncryptionAlgorithm_m71694E9DAB5E4EA5BAF3D026B903143B14992D2B_inline (KekRecipientInfo_t49DC4E62062A5E6E070BCBE2704D5AE43A4A7A25 * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.RecipientInformation::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsSecureReadable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RecipientInformation__ctor_mA31EB17784907EB7929804AEC96F383AC7C7C8BC (RecipientInformation_tB02D0534E5C0851FB482467BA26A52FAD2F853AB * __this, AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___keyEncAlg0, RuntimeObject* ___secureReadable1, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.RecipientID::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RecipientID__ctor_m30284CC4BE38EB6ADBE38A88570543213285A349 (RecipientID_t744700C1480DE017B5D0AB81C6A1044A8C400125 * __this, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekRecipientInfo::get_KekID() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973 * KekRecipientInfo_get_KekID_mFDEA56B9B41F238F47CE50D2D245727C2B79717E_inline (KekRecipientInfo_t49DC4E62062A5E6E070BCBE2704D5AE43A4A7A25 * __this, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekIdentifier::get_KeyIdentifier() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * KekIdentifier_get_KeyIdentifier_mBB47FC76F62C7B823281E2F43DDA5348DE3CF7FB_inline (KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973 * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.RecipientID::set_KeyIdentifier(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RecipientID_set_KeyIdentifier_mECBC820BCA677073642EA311171E9E2E5B2C10CA (RecipientID_t744700C1480DE017B5D0AB81C6A1044A8C400125 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___value0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekRecipientInfo::get_EncryptedKey() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * KekRecipientInfo_get_EncryptedKey_mA9A93096DAB4F1D684D70167B84B0A25DF310A0C_inline (KekRecipientInfo_t49DC4E62062A5E6E070BCBE2704D5AE43A4A7A25 * __this, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IWrapper BestHTTP.SecureProtocol.Org.BouncyCastle.Security.WrapperUtilities::GetWrapper(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WrapperUtilities_GetWrapper_mBD3F21889F0902E5321CD22D3CCE7C6D09B89A65 (String_t* ___algorithm0, const RuntimeMethod* method); // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.RecipientInformation::GetContentAlgorithmName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* RecipientInformation_GetContentAlgorithmName_m64C76DBDEBDB6A3BE04DEA51EA8B54FE664126BD (RecipientInformation_tB02D0534E5C0851FB482467BA26A52FAD2F853AB * __this, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.KeyParameter BestHTTP.SecureProtocol.Org.BouncyCastle.Security.ParameterUtilities::CreateKeyParameter(System.String,System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * ParameterUtilities_CreateKeyParameter_m19FF8F5D0988B47EDF2D296740F966424DE6D877 (String_t* ___algorithm0, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___keyBytes1, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsTypedStream BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.RecipientInformation::GetContentFromSessionKey(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.KeyParameter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CmsTypedStream_t73EEA14F539B2D9626982E55116A232F30D73A21 * RecipientInformation_GetContentFromSessionKey_m0C29E269759D7B87B5D1B84BC1D636DE0E21166A (RecipientInformation_tB02D0534E5C0851FB482467BA26A52FAD2F853AB * __this, KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * ___sKey0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CmsException__ctor_m809D9B85B996E0F6DC9AA0AD774D54178AC5698B (CmsException_tA459F99D1C6C93528CDEC8BBB289A932766EC3DE * __this, String_t* ___msg0, Exception_t * ___e1, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientIdentifier::GetInstance(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyAgreeRecipientIdentifier_tBA5E98B2A6C72F3799020F0A9D1C465116A7A28A * KeyAgreeRecipientIdentifier_GetInstance_m44055CD839221933702BE316BDF3593DFA5457EB (RuntimeObject * ___obj0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber::GetInstance(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64 * IssuerAndSerialNumber_GetInstance_mF4A4D4DB8052366CCFE5E77930352FB0A3725E5B (RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientIdentifier::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyAgreeRecipientIdentifier__ctor_m67BB86FD5400A9E8A8C6D228195EBA61510FEAB8 (KeyAgreeRecipientIdentifier_tBA5E98B2A6C72F3799020F0A9D1C465116A7A28A * __this, IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64 * ___issuerSerial0, const RuntimeMethod* method); // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1TaggedObject::get_TagNo() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Asn1TaggedObject_get_TagNo_m74349C4325A7ADC53200F7A483A878E6B9D53379_inline (Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0 * __this, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.RecipientKeyIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.RecipientKeyIdentifier::GetInstance(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RecipientKeyIdentifier_tCDD2B03857B94474CBA49C1E4FDC30DA4C26F492 * RecipientKeyIdentifier_GetInstance_m38BC74DA83013EDACB53B09A44F378120DBD363E (Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0 * ___ato0, bool ___explicitly1, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientIdentifier::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.RecipientKeyIdentifier) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyAgreeRecipientIdentifier__ctor_m90F47432A825D91FD121F8612CA611FE67830A98 (KeyAgreeRecipientIdentifier_tBA5E98B2A6C72F3799020F0A9D1C465116A7A28A * __this, RecipientKeyIdentifier_tCDD2B03857B94474CBA49C1E4FDC30DA4C26F492 * ___rKeyID0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerTaggedObject::.ctor(System.Boolean,System.Int32,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DerTaggedObject__ctor_m38581F2DCD1C43EC659CD31CDDAB0A43FD42522F (DerTaggedObject_t88BB573E2BED5C1D2971741E012BB29FB0EB0C5E * __this, bool ___explicitly0, int32_t ___tagNo1, Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * ___obj2, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.OriginatorIdentifierOrKey BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.OriginatorIdentifierOrKey::GetInstance(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR OriginatorIdentifierOrKey_t391EC78D0FD29ED45DCF5BFF9AC5BABA8A005603 * OriginatorIdentifierOrKey_GetInstance_m9C751897E52FBE139A39FFE3373960302AC39E5B (Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0 * ___o0, bool ___explicitly1, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString::GetInstance(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * Asn1OctetString_GetInstance_mAECCD06314FEB51EF6B730853C8DBC1FC4BE2FEA (Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0 * ___obj0, bool ___isExplicit1, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo::GetInstance(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC * KeyAgreeRecipientInfo_GetInstance_mCE18116F2686F0464E25B968F0963C73CE357233 (RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyAgreeRecipientInfo__ctor_m68DA2439FBC402DBBBA801F06B9504CCDBB3158D (KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC * __this, Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * ___seq0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1EncodableVector::Add(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Asn1EncodableVector_Add_m6EF01E6775CA3C122AC78B760B5C8AB13AC83EA8 (Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 * __this, Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* ___objs0, const RuntimeMethod* method); // System.Collections.IList BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform::CreateArrayList(System.Collections.ICollection) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Platform_CreateArrayList_m4180B6408FF695EFEC4EE2AC4281B05687EF8DE8 (RuntimeObject* ___collection0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair::get_Public() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * AsymmetricCipherKeyPair_get_Public_mA3C7A50C4C75C3A9003ACC9454F6B941AED2EB98_inline (AsymmetricCipherKeyPair_t975F15F5FD9FD35454E104A768061EAFB010D929 * __this, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair::get_Private() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * AsymmetricCipherKeyPair_get_Private_m74718BBBC8CD464CA09BC88F15ED38156A92280A_inline (AsymmetricCipherKeyPair_t975F15F5FD9FD35454E104A768061EAFB010D929 * __this, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.OriginatorPublicKey BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyAgreeRecipientInfoGenerator::CreateOriginatorPublicKey(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR OriginatorPublicKey_tCFBC1D4932A0818726AED8E4B91FFD9AE1C029F5 * KeyAgreeRecipientInfoGenerator_CreateOriginatorPublicKey_m0D7B426F49A9D141C0D60C89B54DE2E34546CB5E (AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * ___publicKey0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.OriginatorIdentifierOrKey::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.OriginatorPublicKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OriginatorIdentifierOrKey__ctor_m925EE8E6FC3B711FE7AA090558A8D1CEC7077576 (OriginatorIdentifierOrKey_t391EC78D0FD29ED45DCF5BFF9AC5BABA8A005603 * __this, OriginatorPublicKey_tCFBC1D4932A0818726AED8E4B91FFD9AE1C029F5 * ___id0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Security.InvalidKeyException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidKeyException__ctor_m8237DB4630E307D5BF4496918D1F5A07DC10E5CF (InvalidKeyException_t7F19EE8EB26000BAFDF50186FB1DD59F13A7FD8A * __this, String_t* ___message0, const RuntimeMethod* method); // System.Boolean System.String::Equals(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Equals_m8A062B96B61A7D652E7D73C9B3E904F6B0E5F41D (String_t* __this, String_t* ___value0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IAsymmetricCipherKeyPairGenerator BestHTTP.SecureProtocol.Org.BouncyCastle.Security.GeneratorUtilities::GetKeyPairGenerator(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* GeneratorUtilities_GetKeyPairGenerator_m3125F93C6C390699C887BCA383FBF3054B2CEB53 (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___oid0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ECKeyGenerationParameters BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ECKeyParameters::CreateKeyGenerationParameters(BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ECKeyGenerationParameters_t4937721DC10527ECC156FA98F13AE431AD00F565 * ECKeyParameters_CreateKeyGenerationParameters_m93A565EC7577C48D5E69D40E1A4F4E83E94B01C7 (ECKeyParameters_tC564F57CB492506FC8DACDDD142BFEF68E9A3141 * __this, SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * ___random0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.Ecc.MQVuserKeyingMaterial::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.OriginatorPublicKey,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MQVuserKeyingMaterial__ctor_mBBE1A13F84773860E6E384824EF3499439886F9E (MQVuserKeyingMaterial_t0321EDE63C88A779858E39E0D66B18497BCF6A42 * __this, OriginatorPublicKey_tCFBC1D4932A0818726AED8E4B91FFD9AE1C029F5 * ___ephemeralPublicKey0, Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * ___addedukm1, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerOctetString::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DerOctetString__ctor_m64FE8AEC387DB720BB3CE37C7BC6250152FF9914 (DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75 * __this, Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * ___obj0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.MqvPrivateParameters::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters,BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters,BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MqvPrivateParameters__ctor_m2BBAAA09AA8C4BF0737E699B41075651EBD2D94B (MqvPrivateParameters_t5FC169BF7E9130DEB59D0A3E198847975BE0DE87 * __this, ECPrivateKeyParameters_t4F22D9A57AC7E670B61E096835534ECE1D259029 * ___staticPrivateKey0, ECPrivateKeyParameters_t4F22D9A57AC7E670B61E096835534ECE1D259029 * ___ephemeralPrivateKey1, ECPublicKeyParameters_tB75EB7F71DB6B346048D07C4EC9D4968988F92FB * ___ephemeralPublicKey2, const RuntimeMethod* method); // !!0[] System.Array::Empty() inline Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* Array_Empty_TisAsn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC_m6133560D3294995A1E65C8837F69C407350CD6DB_inline (const RuntimeMethod* method) { return (( Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* (*) (const RuntimeMethod*))Array_Empty_TisRuntimeObject_m002765312BF306B1B3B5BFAB9550C0A2A1820CDA_gshared_inline)(method); } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Object BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Object::FromByteArray(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * Asn1Object_FromByteArray_m2DB00E0C5F68F2C4C3CA24B1F3075BC8DA9AD989 (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___data0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateStructure BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateStructure::GetInstance(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3 * TbsCertificateStructure_GetInstance_mDEF4996E745E7C794E90280350E18664322DEF0F (RuntimeObject * ___obj0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateStructure::get_Issuer() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * TbsCertificateStructure_get_Issuer_m7162E5B96B4DC11DC1B815397BFD54D1EABCE1CD_inline (TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3 * __this, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateStructure::get_SerialNumber() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * TbsCertificateStructure_get_SerialNumber_m2179DC4D65B461A04DBFD7415433E06662FCF165_inline (TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3 * __this, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * DerInteger_get_Value_m8C263058A637AE123BD47291A36538E05E374478 (DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name,BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IssuerAndSerialNumber__ctor_m8F2E8B6B4120F01AEC66DD8EB97D203E98509950 (IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64 * __this, X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * ___name0, BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___serialNumber1, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.MqvPublicParameters::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters,BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MqvPublicParameters__ctor_mFDB6054261143F34685DB7BFC82347CE18A7F8D3 (MqvPublicParameters_t45CD88AB7EC58154D669C5D5D68FC11F9BEE6680 * __this, ECPublicKeyParameters_tB75EB7F71DB6B346048D07C4EC9D4968988F92FB * ___staticPublicKey0, ECPublicKeyParameters_tB75EB7F71DB6B346048D07C4EC9D4968988F92FB * ___ephemeralPublicKey1, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBasicAgreement BestHTTP.SecureProtocol.Org.BouncyCastle.Security.AgreementUtilities::GetBasicAgreementWithKdf(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* AgreementUtilities_GetBasicAgreementWithKdf_m2CF32B9EEA7F367A7280EA0C5B6AA16BB44C63AE (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___oid0, String_t* ___wrapAlgorithm1, const RuntimeMethod* method); // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Security.GeneratorUtilities::GetDefaultKeySize(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GeneratorUtilities_GetDefaultKeySize_mB0C7938881B51D602D4B75E938A7611EEA884946 (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___oid0, const RuntimeMethod* method); // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9IntegerConverter::IntegerToBytes(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* X9IntegerConverter_IntegerToBytes_m192434ABE05AFFEA0C3F144E169BA2D46965AEC9 (BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___s0, int32_t ___qLength1, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.KeyParameter BestHTTP.SecureProtocol.Org.BouncyCastle.Security.ParameterUtilities::CreateKeyParameter(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * ParameterUtilities_CreateKeyParameter_m5F5AA5B7BDACBBFBF3BAE63F6778EB4C8821A32C (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___algOid0, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___keyBytes1, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.RecipientEncryptedKey::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientIdentifier,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RecipientEncryptedKey__ctor_mBF5DBF6523A0080AAAC3727511282271B8DA32DB (RecipientEncryptedKey_tED14E5C321F7687BA4201D41E15DE457A7D56BE2 * __this, KeyAgreeRecipientIdentifier_tBA5E98B2A6C72F3799020F0A9D1C465116A7A28A * ___id0, Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * ___encryptedKey1, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.OriginatorIdentifierOrKey,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyAgreeRecipientInfo__ctor_mFD2D5F7D14E77519F44FADBF8BBE0CDBF52255E5 (KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC * __this, OriginatorIdentifierOrKey_t391EC78D0FD29ED45DCF5BFF9AC5BABA8A005603 * ___originator0, Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * ___ukm1, AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___keyEncryptionAlgorithm2, Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * ___recipientEncryptedKeys3, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.RecipientInfo::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RecipientInfo__ctor_m9782568A2798D6E1BEE5673D90F8B2873E91D53C (RecipientInfo_tAD4CBFD604399F45BD0D23A4C028E0FC88C19829 * __this, KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC * ___info0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo BestHTTP.SecureProtocol.Org.BouncyCastle.X509.SubjectPublicKeyInfoFactory::CreateSubjectPublicKeyInfo(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB * SubjectPublicKeyInfoFactory_CreateSubjectPublicKeyInfo_m05DEB0821C10550E622F69B5E83F1A285F4F857D (AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * ___publicKey0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo::get_AlgorithmID() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * SubjectPublicKeyInfo_get_AlgorithmID_mC6D1FC4034C33A9CE53D197B4704A328D8E6AF52_inline (SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB * __this, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo::get_PublicKeyData() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * SubjectPublicKeyInfo_get_PublicKeyData_mE74361F41A82225A09A9A4B95E37C6F5C337D7A4_inline (SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.OriginatorPublicKey::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OriginatorPublicKey__ctor_mD98522B5998A23D4B96D1919C4F7BA416A0EB237 (OriginatorPublicKey_tCFBC1D4932A0818726AED8E4B91FFD9AE1C029F5 * __this, AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___algorithm0, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___publicKey1, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo::get_RecipientEncryptedKeys() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * KeyAgreeRecipientInfo_get_RecipientEncryptedKeys_m3A46FED2E3B37B52C8B3A1C81B03C6AA30FEBDC0_inline (KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC * __this, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.RecipientEncryptedKey BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.RecipientEncryptedKey::GetInstance(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RecipientEncryptedKey_tED14E5C321F7687BA4201D41E15DE457A7D56BE2 * RecipientEncryptedKey_GetInstance_m82B836BBA312A86DB17E4DB68C182FE66DCC0E05 (RuntimeObject * ___obj0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.RecipientEncryptedKey::get_Identifier() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyAgreeRecipientIdentifier_tBA5E98B2A6C72F3799020F0A9D1C465116A7A28A * RecipientEncryptedKey_get_Identifier_mBD0A3CD8FCD8F7287B890C4981354A8B33C27728_inline (RecipientEncryptedKey_tED14E5C321F7687BA4201D41E15DE457A7D56BE2 * __this, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientIdentifier::get_IssuerAndSerialNumber() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64 * KeyAgreeRecipientIdentifier_get_IssuerAndSerialNumber_mE5BF14ED071126E538E4323774F1EBEB9D65F6EE_inline (KeyAgreeRecipientIdentifier_tBA5E98B2A6C72F3799020F0A9D1C465116A7A28A * __this, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber::get_Name() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * IssuerAndSerialNumber_get_Name_m1A73B0BF1416F5634C5CF376455FC28CC1C9621A_inline (IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64 * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Store.X509CertStoreSelector::set_Issuer(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void X509CertStoreSelector_set_Issuer_mF45C905EE0E690870660F61DB38A4011AE4E666C_inline (X509CertStoreSelector_tDC9D1189AE7E9E64F71CF541A2D316686E4E2996 * __this, X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * ___value0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber::get_SerialNumber() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * IssuerAndSerialNumber_get_SerialNumber_mF481C0E59D4CAEB309CE8D4E73C372E65FAD48EB_inline (IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64 * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Store.X509CertStoreSelector::set_SerialNumber(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void X509CertStoreSelector_set_SerialNumber_m8721FD1AD35B54F1E191B115F5335EE7A07A90F5_inline (X509CertStoreSelector_tDC9D1189AE7E9E64F71CF541A2D316686E4E2996 * __this, BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___value0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.RecipientKeyIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientIdentifier::get_RKeyID() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RecipientKeyIdentifier_tCDD2B03857B94474CBA49C1E4FDC30DA4C26F492 * KeyAgreeRecipientIdentifier_get_RKeyID_m70C71C5CC9C18FDC5BF4DE679B3BC8EE579A992C_inline (KeyAgreeRecipientIdentifier_tBA5E98B2A6C72F3799020F0A9D1C465116A7A28A * __this, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.RecipientKeyIdentifier::get_SubjectKeyIdentifier() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * RecipientKeyIdentifier_get_SubjectKeyIdentifier_mCA5B55F5F0C7EF3E611D0185B4701CC5A74A1EA5_inline (RecipientKeyIdentifier_tCDD2B03857B94474CBA49C1E4FDC30DA4C26F492 * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Store.X509CertStoreSelector::set_SubjectKeyIdentifier(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509CertStoreSelector_set_SubjectKeyIdentifier_m2AFAA3AF020DFC2688337E14B1DCCA33DFC05451 (X509CertStoreSelector_tDC9D1189AE7E9E64F71CF541A2D316686E4E2996 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___value0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.RecipientEncryptedKey::get_EncryptedKey() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * RecipientEncryptedKey_get_EncryptedKey_mF42A81C64202F2062416BD071A7DE04986B08251_inline (RecipientEncryptedKey_tED14E5C321F7687BA4201D41E15DE457A7D56BE2 * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyAgreeRecipientInformation::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo,BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.RecipientID,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString,BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsSecureReadable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyAgreeRecipientInformation__ctor_m82957C8697BF60E2D2B9DCC737146B691BD9C63B (KeyAgreeRecipientInformation_t428C88783EA962AE6460155DB641A5385BA20929 * __this, KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC * ___info0, RecipientID_t744700C1480DE017B5D0AB81C6A1044A8C400125 * ___rid1, Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * ___encryptedKey2, RuntimeObject* ___secureReadable3, const RuntimeMethod* method); // System.Void System.ArgumentException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m2D82228EC0D314063BFC7BB308A43927D1D76852 (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo::get_KeyEncryptionAlgorithm() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * KeyAgreeRecipientInfo_get_KeyEncryptionAlgorithm_m978F34E7C0963D5CDE891904BD207EDC068CE9D8_inline (KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC * __this, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.OriginatorPublicKey BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.OriginatorIdentifierOrKey::get_OriginatorPublicKey() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR OriginatorPublicKey_tCFBC1D4932A0818726AED8E4B91FFD9AE1C029F5 * OriginatorIdentifierOrKey_get_OriginatorPublicKey_m1712FE1CDF09E7BF2BD5ECCE4809EF806CDEAA5E (OriginatorIdentifierOrKey_t391EC78D0FD29ED45DCF5BFF9AC5BABA8A005603 * __this, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyAgreeRecipientInformation::GetPublicKeyFromOriginatorPublicKey(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.OriginatorPublicKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * KeyAgreeRecipientInformation_GetPublicKeyFromOriginatorPublicKey_mCA6ABE545036AB50CE389523FB7E206E793F4B27 (KeyAgreeRecipientInformation_t428C88783EA962AE6460155DB641A5385BA20929 * __this, AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * ___receiverPrivateKey0, OriginatorPublicKey_tCFBC1D4932A0818726AED8E4B91FFD9AE1C029F5 * ___originatorPublicKey1, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.OriginatorID::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OriginatorID__ctor_mA3FA7134168F2EF1FB69B9B166414E6E7EE7A233 (OriginatorID_tE315A79325108441760EEF76B4FC3A8E13B422B0 * __this, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.OriginatorIdentifierOrKey::get_IssuerAndSerialNumber() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64 * OriginatorIdentifierOrKey_get_IssuerAndSerialNumber_m73F296D97EDB1E4AEE4AF0CAE1A286CE49E944A8 (OriginatorIdentifierOrKey_t391EC78D0FD29ED45DCF5BFF9AC5BABA8A005603 * __this, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.SubjectKeyIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.OriginatorIdentifierOrKey::get_SubjectKeyIdentifier() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SubjectKeyIdentifier_t572BF9E7277584519251C3E26F9015A145A7FF62 * OriginatorIdentifierOrKey_get_SubjectKeyIdentifier_m5E2ECC3A9135BC8518624DB4DA3F68FF0222BE73 (OriginatorIdentifierOrKey_t391EC78D0FD29ED45DCF5BFF9AC5BABA8A005603 * __this, const RuntimeMethod* method); // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.SubjectKeyIdentifier::GetKeyIdentifier() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* SubjectKeyIdentifier_GetKeyIdentifier_m502BB5B30C0817ECCB75870AF8E69C76E795709F_inline (SubjectKeyIdentifier_t572BF9E7277584519251C3E26F9015A145A7FF62 * __this, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyAgreeRecipientInformation::GetPublicKeyFromOriginatorID(BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.OriginatorID) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * KeyAgreeRecipientInformation_GetPublicKeyFromOriginatorID_m46FF169A61CABBFB8AA2B29C845E14DA8F73442F (KeyAgreeRecipientInformation_t428C88783EA962AE6460155DB641A5385BA20929 * __this, OriginatorID_tE315A79325108441760EEF76B4FC3A8E13B422B0 * ___origID0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs.PrivateKeyInfoFactory::CreatePrivateKeyInfo(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PrivateKeyInfo_t2C1C0514E07F6048B5892B9D988A1CEFE90975AA * PrivateKeyInfoFactory_CreatePrivateKeyInfo_m1AE444AE0B185BF4C7965C724E9474E765D924A6 (AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * ___privateKey0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.OriginatorPublicKey::get_PublicKey() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * OriginatorPublicKey_get_PublicKey_mFEC52A32484C2D8341D71B0EC42C00A629C544FD_inline (OriginatorPublicKey_tCFBC1D4932A0818726AED8E4B91FFD9AE1C029F5 * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SubjectPublicKeyInfo__ctor_mCF35D42388B4DE0226FF173A389D90F16281E32C (SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB * __this, AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___algID0, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___publicKey1, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter BestHTTP.SecureProtocol.Org.BouncyCastle.Security.PublicKeyFactory::CreateKey(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * PublicKeyFactory_CreateKey_mCDC9554A79A6CD26010C632AFB5E37153A4DEFFB (SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB * ___keyInfo0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CmsException__ctor_m3FAFC1C6647EE071C3D9770E42ED15956D8C2E37 (CmsException_tA459F99D1C6C93528CDEC8BBB289A932766EC3DE * __this, String_t* ___msg0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo::get_UserKeyingMaterial() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * KeyAgreeRecipientInfo_get_UserKeyingMaterial_mD37E475EC8E3CBD8E9337338187D4F0860CFC6E0_inline (KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC * __this, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.Ecc.MQVuserKeyingMaterial BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.Ecc.MQVuserKeyingMaterial::GetInstance(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MQVuserKeyingMaterial_t0321EDE63C88A779858E39E0D66B18497BCF6A42 * MQVuserKeyingMaterial_GetInstance_m8FCC92341C31A76244D9F5C51256333DEA70AA41 (RuntimeObject * ___obj0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.OriginatorPublicKey BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.Ecc.MQVuserKeyingMaterial::get_EphemeralPublicKey() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR OriginatorPublicKey_tCFBC1D4932A0818726AED8E4B91FFD9AE1C029F5 * MQVuserKeyingMaterial_get_EphemeralPublicKey_m50727D7ADFA6818FEF31BA1B167F6AB4B4BC8300_inline (MQVuserKeyingMaterial_t0321EDE63C88A779858E39E0D66B18497BCF6A42 * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.MqvPrivateParameters::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters,BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MqvPrivateParameters__ctor_mF28F5ADF43751F21DD141B05289F9C0D81578AC5 (MqvPrivateParameters_t5FC169BF7E9130DEB59D0A3E198847975BE0DE87 * __this, ECPrivateKeyParameters_t4F22D9A57AC7E670B61E096835534ECE1D259029 * ___staticPrivateKey0, ECPrivateKeyParameters_t4F22D9A57AC7E670B61E096835534ECE1D259029 * ___ephemeralPrivateKey1, const RuntimeMethod* method); // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Security.GeneratorUtilities::GetDefaultKeySize(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GeneratorUtilities_GetDefaultKeySize_mD4E88DF91FDDB43E27D9A9E5E1FCC532ECF594D1 (String_t* ___algorithm0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::GetInstance(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * Asn1Sequence_GetInstance_m53E4D5619D84F02123D6C3B6EA8E0EEEF86B244C (RuntimeObject * ___obj0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::GetInstance(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * DerObjectIdentifier_GetInstance_mBE1F50C71CFA8B210307AFD39E62F8AF4D5E34FF (RuntimeObject * ___obj0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.OriginatorIdentifierOrKey BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo::get_Originator() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR OriginatorIdentifierOrKey_t391EC78D0FD29ED45DCF5BFF9AC5BABA8A005603 * KeyAgreeRecipientInfo_get_Originator_m3CAAD9DEAA56A26CCDEE8263D275EF2CD7009999_inline (KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC * __this, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyAgreeRecipientInformation::GetSenderPublicKey(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.OriginatorIdentifierOrKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * KeyAgreeRecipientInformation_GetSenderPublicKey_m9FCB7D93D76FC125D4CEDB8D4F5F04EBEA7671A4 (KeyAgreeRecipientInformation_t428C88783EA962AE6460155DB641A5385BA20929 * __this, AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * ___receiverPrivateKey0, OriginatorIdentifierOrKey_t391EC78D0FD29ED45DCF5BFF9AC5BABA8A005603 * ___originator1, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.KeyParameter BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyAgreeRecipientInformation::CalculateAgreedWrapKey(System.String,BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter,BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * KeyAgreeRecipientInformation_CalculateAgreedWrapKey_mCDC7C42039E921E8091176580B5700B40985DB66 (KeyAgreeRecipientInformation_t428C88783EA962AE6460155DB641A5385BA20929 * __this, String_t* ___wrapAlg0, AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * ___senderPublicKey1, AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * ___receiverPrivateKey2, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.KeyParameter BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyAgreeRecipientInformation::UnwrapSessionKey(System.String,BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.KeyParameter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * KeyAgreeRecipientInformation_UnwrapSessionKey_m1067478250CC975B906D8248460BB9BE1A69E056 (KeyAgreeRecipientInformation_t428C88783EA962AE6460155DB641A5385BA20929 * __this, String_t* ___wrapAlg0, KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * ___agreedKey1, const RuntimeMethod* method); // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter::get_IsPrivate() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool AsymmetricKeyParameter_get_IsPrivate_m4A94334067C062D7991228DDB6CBFE57A5D8244B_inline (AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * __this, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.KeyParameter BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyAgreeRecipientInformation::GetSessionKey(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * KeyAgreeRecipientInformation_GetSessionKey_m7792498485DE277C29E2019BA4ABDE7497BAC00E (KeyAgreeRecipientInformation_t428C88783EA962AE6460155DB641A5385BA20929 * __this, AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * ___receiverPrivateKey0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AlgorithmIdentifier__ctor_m1354F1BB3110797415F21AEE7305B862EF96E838 (AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * __this, Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * ___seq0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Security.GeneralSecurityException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GeneralSecurityException__ctor_m9F2B5464CFE88726238594C5BC58617B9217B22C (GeneralSecurityException_tB77B003D334D962B16ED6BEB5AD4567AD5B618BA * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Security.GeneralSecurityException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GeneralSecurityException__ctor_m489A96C69DCB3F2633EF024AD3A3104F394BA51D (GeneralSecurityException_tB77B003D334D962B16ED6BEB5AD4567AD5B618BA * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Security.GeneralSecurityException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GeneralSecurityException__ctor_m8281CA2286C5173479C6BD01CC65700A62AE2F9D (GeneralSecurityException_tB77B003D334D962B16ED6BEB5AD4567AD5B618BA * __this, String_t* ___message0, Exception_t * ___exception1, const RuntimeMethod* method); // System.Object System.Array::Clone() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_Clone_m3C566B3D3F4333212411BD7C3B61D798BADB3F3C (RuntimeArray * __this, const RuntimeMethod* method); // System.Void System.ArgumentOutOfRangeException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * __this, String_t* ___paramName0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DerObjectIdentifier__ctor_m8009342D7B2AD40B1E19E6AB958141979B7405CD (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * __this, String_t* ___identifier0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.KeyPurposeID::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyPurposeID__ctor_m78621326251A1DB1083007ABDDC92C4C70B1DC07 (KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * __this, String_t* ___id0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo::GetInstance(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PkiStatusInfo_t599558AC728FCD067FBBCD19778BE6228EBA3A17 * PkiStatusInfo_GetInstance_m7A8AAB63793502B45BC23FEDD0C72E5EAC33ABB3 (RuntimeObject * ___obj0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1TaggedObject BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1TaggedObject::GetInstance(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0 * Asn1TaggedObject_GetInstance_m7245B39FCEB8EA160AEFF9F8F724A71CB2EB47A8 (RuntimeObject * ___obj0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Object BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1TaggedObject::GetObject() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * Asn1TaggedObject_GetObject_m67B210FB1D1A9F5F1FE2656AA8539AA73B9C0D64 (Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0 * __this, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.CmpCertificate BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.CmpCertificate::GetInstance(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CmpCertificate_t426B8158788ADFD4E28E4E8F169E1E1D7651F894 * CmpCertificate_GetInstance_mA319EAF3013759A5DD807397463555B70791BBD9 (RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.KeyRecRepContent::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyRecRepContent__ctor_m595F019873FF3BFBC0E8AB8BB8FECCCECEE88757 (KeyRecRepContent_t22F4C88ECE39C1F57BE1F388B10F38BE3CC44E01 * __this, Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * ___seq0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.CertifiedKeyPair BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.CertifiedKeyPair::GetInstance(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CertifiedKeyPair_t50EB833AED8814B77F5F26FD6F653B3C8A31B807 * CertifiedKeyPair_GetInstance_m7EFA59C6E4B3B2F1863EEBB028F2593BD2CD41B8 (RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.KeyRecRepContent::AddOptional(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1EncodableVector,System.Int32,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyRecRepContent_AddOptional_mA988D4FDE0C9155DB5A75243655E67F1F5B84CB9 (KeyRecRepContent_t22F4C88ECE39C1F57BE1F388B10F38BE3CC44E01 * __this, Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 * ___v0, int32_t ___tagNo1, Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * ___obj2, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.RecipientIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.RecipientIdentifier::GetInstance(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RecipientIdentifier_tBC500D2CDE60B57F8CB815C4599D2EE019A2E5C1 * RecipientIdentifier_GetInstance_mF318CCF924FDB2221751F4D79E94AC4B3EAFF250 (RuntimeObject * ___o0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyTransRecipientInfo::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyTransRecipientInfo__ctor_m26B2BCEA78B9B7CCD06FA526EC0ABDCED3DCDA24 (KeyTransRecipientInfo_t5560A4301685119C4400C494D4B8D2D5BCF538A0 * __this, Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * ___seq0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateStructure BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsUtilities::GetTbsCertificateStructure(BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Certificate) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3 * CmsUtilities_GetTbsCertificateStructure_m19289FC9CF866E49974F8FF559BC01CA7F5253C2 (X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06 * ___cert0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateStructure::get_SubjectPublicKeyInfo() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB * TbsCertificateStructure_get_SubjectPublicKeyInfo_m13E8936322F0795F666E00D41974E08E9F9D252D_inline (TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3 * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.RecipientIdentifier::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RecipientIdentifier__ctor_mE50D75025594E7E2F7DFA7AA81713D76FFA811C0 (RecipientIdentifier_tBC500D2CDE60B57F8CB815C4599D2EE019A2E5C1 * __this, IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64 * ___id0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.RecipientIdentifier::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RecipientIdentifier__ctor_m0622884809CB05130B493B339875119CD6F4A1A7 (RecipientIdentifier_tBC500D2CDE60B57F8CB815C4599D2EE019A2E5C1 * __this, Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * ___id0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyTransRecipientInfo::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.RecipientIdentifier,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyTransRecipientInfo__ctor_m88A068A5D7325AC9389D4F0DF65B1C4ACA46AD8D (KeyTransRecipientInfo_t5560A4301685119C4400C494D4B8D2D5BCF538A0 * __this, RecipientIdentifier_tBC500D2CDE60B57F8CB815C4599D2EE019A2E5C1 * ___rid0, AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___keyEncryptionAlgorithm1, Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * ___encryptedKey2, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.RecipientInfo::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyTransRecipientInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RecipientInfo__ctor_mD1DDDBE9E1BD73F5EB13E041354B763A93FD713C (RecipientInfo_tAD4CBFD604399F45BD0D23A4C028E0FC88C19829 * __this, KeyTransRecipientInfo_t5560A4301685119C4400C494D4B8D2D5BCF538A0 * ___info0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyTransRecipientInfo::get_KeyEncryptionAlgorithm() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * KeyTransRecipientInfo_get_KeyEncryptionAlgorithm_mC0911B8C9E051440D2E2E12ECD4B9A3302A54AEE_inline (KeyTransRecipientInfo_t5560A4301685119C4400C494D4B8D2D5BCF538A0 * __this, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.RecipientIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyTransRecipientInfo::get_RecipientIdentifier() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RecipientIdentifier_tBC500D2CDE60B57F8CB815C4599D2EE019A2E5C1 * KeyTransRecipientInfo_get_RecipientIdentifier_m0D266D37414056F3773B123054146FE8C1A71C33_inline (KeyTransRecipientInfo_t5560A4301685119C4400C494D4B8D2D5BCF538A0 * __this, const RuntimeMethod* method); // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.RecipientIdentifier::get_IsTagged() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RecipientIdentifier_get_IsTagged_m03B9AD5B066BB0047E1360C40E58E99C94EAADF3 (RecipientIdentifier_tBC500D2CDE60B57F8CB815C4599D2EE019A2E5C1 * __this, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.RecipientIdentifier::get_ID() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * RecipientIdentifier_get_ID_m54BDBC8850EA87009C9C1F3CDCB17C3F966AC34C (RecipientIdentifier_tBC500D2CDE60B57F8CB815C4599D2EE019A2E5C1 * __this, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString::GetInstance(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * Asn1OctetString_GetInstance_mF572FFBA88CFF4772B2AF3E70E05EB0E8066A3C9 (RuntimeObject * ___obj0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyTransRecipientInfo::get_EncryptedKey() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * KeyTransRecipientInfo_get_EncryptedKey_mB7EC3140CE2F08DE089A1DE4FD4C52C4B1397E05_inline (KeyTransRecipientInfo_t5560A4301685119C4400C494D4B8D2D5BCF538A0 * __this, const RuntimeMethod* method); // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyTransRecipientInformation::GetExchangeEncryptionAlgorithmName(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* KeyTransRecipientInformation_GetExchangeEncryptionAlgorithmName_m94772B533330F5AD0E6B08A878CE43671179976F (KeyTransRecipientInformation_t5A77B5723E83662291A1744A96270F6A153A0830 * __this, DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___oid0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.KeyParameter BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyTransRecipientInformation::UnwrapKey(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ICipherParameters) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * KeyTransRecipientInformation_UnwrapKey_m4A171F3D0EA19AD2C09547A8067457EF5AC298C8 (KeyTransRecipientInformation_t5A77B5723E83662291A1744A96270F6A153A0830 * __this, RuntimeObject* ___key0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Object BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extension::ConvertValueToObject(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extension) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * X509Extension_ConvertValueToObject_m7A8320756D4F6CCD63814B942091D67E78738486 (X509Extension_t977D8DEE7C59707768F9038FE1B97F2E243B80AB * ___ext0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.KeyUsage BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.KeyUsage::GetInstance(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyUsage_tF5D1BD25AB89302E6BE5EF210FF50F4055A77145 * KeyUsage_GetInstance_m72A3EBC76BCAE121DC6E0D693B127FB4BDF30AF2 (RuntimeObject * ___obj0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString::GetInstance(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * DerBitString_GetInstance_mFBA6EA683F6F292F1A15D6E5BE37CFA85104C36A (RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.KeyUsage::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyUsage__ctor_mDB9848F3323407A5145868CDDF2D8F417A5F0EF1 (KeyUsage_tF5D1BD25AB89302E6BE5EF210FF50F4055A77145 * __this, DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * ___usage0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DerBitString__ctor_mF701223D0F3716183973E4CEF77F5558E23321F0 (DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * __this, int32_t ___namedBits0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString::.ctor(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DerBitString__ctor_m3873220573E98B131BF69FFBD42E0A63D738BE17 (DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___data0, int32_t ___padBits1, const RuntimeMethod* method); // System.String System.Int32::ToString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m5398ED0B6625B75CAF70C63B3CF2CE47D3C1B184 (int32_t* __this, String_t* ___format0, const RuntimeMethod* method); // System.Collections.Generic.List`1 BestHTTP.Extensions.KeyValuePairList::get_Values() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_t9C4606F69CB3833861EC4E41C2E8DA5647D07189 * KeyValuePairList_get_Values_mE8EA12BD772DCFDAFAF1D435DFFAEB26A31F7D42_inline (KeyValuePairList_tFB05264C65689BEB0A93912EE115844C33E3FF0F * __this, const RuntimeMethod* method); // !0 System.Collections.Generic.List`1::get_Item(System.Int32) inline HeaderValue_tB19EA8836300DA053E7A6E082DD196DA23BA7F77 * List_1_get_Item_m22277597AF3CBF965433E8285B3F3FEE770EC852_inline (List_1_t9C4606F69CB3833861EC4E41C2E8DA5647D07189 * __this, int32_t ___index0, const RuntimeMethod* method) { return (( HeaderValue_tB19EA8836300DA053E7A6E082DD196DA23BA7F77 * (*) (List_1_t9C4606F69CB3833861EC4E41C2E8DA5647D07189 *, int32_t, const RuntimeMethod*))List_1_get_Item_m7B5E3383CB67492E573AC0D875ED82A51350F188_gshared_inline)(__this, ___index0, method); } // System.String BestHTTP.Extensions.HeaderValue::get_Key() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* HeaderValue_get_Key_mAF2366B71EAC8430909C5CC2DBD6E855ED62347A_inline (HeaderValue_tB19EA8836300DA053E7A6E082DD196DA23BA7F77 * __this, const RuntimeMethod* method); // System.Int32 System.String::CompareOrdinal(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_CompareOrdinal_m1C7F94040504F35C89EBC8826D77FEA81B9C2C0E (String_t* ___strA0, String_t* ___strB1, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.List`1::get_Count() inline int32_t List_1_get_Count_m14830FB8CB94C5F517EE78FFFC8F01F8C07D14E9_inline (List_1_t9C4606F69CB3833861EC4E41C2E8DA5647D07189 * __this, const RuntimeMethod* method) { return (( int32_t (*) (List_1_t9C4606F69CB3833861EC4E41C2E8DA5647D07189 *, const RuntimeMethod*))List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline)(__this, method); } // !!0 UnityEngine.Component::GetComponent() inline AeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103 * Component_GetComponent_TisAeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103_mD88E3A73D39CF612AB9E30CE2D5E83FCB1465116 (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 * __this, const RuntimeMethod* method) { return (( AeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103 * (*) (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 *, const RuntimeMethod*))Component_GetComponent_TisRuntimeObject_mDC2250CC3F24F6FE45660AF6153056ABDA5ED60F_gshared)(__this, method); } // !!0 UnityEngine.Component::GetComponent() inline Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * Component_GetComponent_TisAnimator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149_mF86B79BED8570481BDFC54EAEF1F692E0508BA38 (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 * __this, const RuntimeMethod* method) { return (( Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * (*) (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 *, const RuntimeMethod*))Component_GetComponent_TisRuntimeObject_mDC2250CC3F24F6FE45660AF6153056ABDA5ED60F_gshared)(__this, method); } // !!0 UnityEngine.Component::GetComponent() inline Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * Component_GetComponent_TisRigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A_mB4A92A619135F9258670FB93AE08F229A41D0980 (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 * __this, const RuntimeMethod* method) { return (( Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * (*) (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 *, const RuntimeMethod*))Component_GetComponent_TisRuntimeObject_mDC2250CC3F24F6FE45660AF6153056ABDA5ED60F_gshared)(__this, method); } // System.Single UnityStandardAssets.Vehicles.Aeroplane.AeroplaneController::get_Altitude() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float AeroplaneController_get_Altitude_m4E875DCD8BCB99EE7F07DA2E8762AFD46BE541FE_inline (AeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103 * __this, const RuntimeMethod* method); // UnityEngine.Vector3 UnityEngine.Rigidbody::get_velocity() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Rigidbody_get_velocity_mCFB033F3BD14C2BA68E797DFA4950F9307EC8E2C (Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * __this, const RuntimeMethod* method); // System.Void UnityEngine.Animator::SetInteger(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Animator_SetInteger_mFB04A03AF6C24978BF2BDE9161243F8F6B9762C5 (Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * __this, String_t* ___name0, int32_t ___value1, const RuntimeMethod* method); // System.Void UnityEngine.MonoBehaviour::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoBehaviour__ctor_mC0995D847F6A95B1A553652636C38A2AA8B13BED (MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * __this, const RuntimeMethod* method); // System.Void LanguageDefault::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LanguageDefault__ctor_m0D0C27F099D2B5E96A7292CEE10EF4884F056BB6 (LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783 * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.PlayerPrefs::HasKey(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PlayerPrefs_HasKey_m48BE5886380B51AB495B91C9A26115B7CB958A92 (String_t* ___key0, const RuntimeMethod* method); // System.Int32 UnityEngine.PlayerPrefs::GetInt(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PlayerPrefs_GetInt_m6BCF9F844298D1810A68BAF23ECBA68C6960A986 (String_t* ___key0, const RuntimeMethod* method); // BestHTTP.HTTPRequestStates BestHTTP.HTTPRequest::get_State() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t HTTPRequest_get_State_mA2343B8DDC11F4489B724FDC12DD6671C55DA82A_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::set_Callback(BestHTTP.OnRequestFinishedDelegate) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPRequest_set_Callback_mFF8B458F232390A69C19361510FC68B7B7486D01_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, OnRequestFinishedDelegate_t4E35BB5277ED27A8B43D1987DE7F3B47772018B4 * ___value0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::Abort() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPRequest_Abort_mD093C17FDF52A73A6762C4D1959B86F0464773BE (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method); // System.Void System.Action::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action__ctor_m07BE5EE8A629FBBA52AE6356D57A0D371BE2574B (Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void BestHTTP.Examples.GUIHelper::DrawArea(UnityEngine.Rect,System.Boolean,System.Action) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIHelper_DrawArea_mE1680D37CB32E1AABE105064282386245DC3872D (Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 ___area0, bool ___drawHeader1, Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___action2, const RuntimeMethod* method); // System.Void System.Uri::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri__ctor_m7724F43B1525624FFF97A774B6B909B075714D5C (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, String_t* ___uriString0, const RuntimeMethod* method); // System.Void BestHTTP.OnRequestFinishedDelegate::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OnRequestFinishedDelegate__ctor_m2379F5429ED6B8FB42D7D7D8C3FADE30932BD9FA (OnRequestFinishedDelegate_t4E35BB5277ED27A8B43D1987DE7F3B47772018B4 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::.ctor(System.Uri,BestHTTP.OnRequestFinishedDelegate) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPRequest__ctor_m4F7F6CEC0DFC147AA0BBB24686E845E47324FBF7 (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri0, OnRequestFinishedDelegate_t4E35BB5277ED27A8B43D1987DE7F3B47772018B4 * ___callback1, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::SetRangeHeader(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPRequest_SetRangeHeader_mADDC28E7B2C7ED705518E399232053B1524C15A6 (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, int32_t ___firstBytePos0, const RuntimeMethod* method); // System.Void UnityEngine.PlayerPrefs::SetInt(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerPrefs_SetInt_m0C5C977E960B9CA8F9AB73AF4129C3DCABD067B6 (String_t* ___key0, int32_t ___value1, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::set_DisableCache(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPRequest_set_DisableCache_m7FF877063A703DC79DCD5EB1DE3CC3E964707343 (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, bool ___value0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::set_UseStreaming(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPRequest_set_UseStreaming_mF54D003DEC388C017F116B0C184B20F5602158CB (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, bool ___value0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::set_StreamFragmentSize(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPRequest_set_StreamFragmentSize_mC1FEB4D8020ED43DAA1D03B2736B32BEBA60A88B (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, int32_t ___value0, const RuntimeMethod* method); // BestHTTP.HTTPRequest BestHTTP.HTTPRequest::Send() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * HTTPRequest_Send_m6DFACD89B7BA3689A32616A9B7F7AD41DBA86C46 (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.List`1::get_Count() inline int32_t List_1_get_Count_mCEBCF66B19764A2EFF9F5F81C78323729EC10F60_inline (List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE * __this, const RuntimeMethod* method) { return (( int32_t (*) (List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE *, const RuntimeMethod*))List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline)(__this, method); } // !0 System.Collections.Generic.List`1::get_Item(System.Int32) inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* List_1_get_Item_mA904D48DE837FC82817A13F3F59776C3499098BB_inline (List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE * __this, int32_t ___index0, const RuntimeMethod* method) { return (( ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* (*) (List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE *, int32_t, const RuntimeMethod*))List_1_get_Item_m7B5E3383CB67492E573AC0D875ED82A51350F188_gshared_inline)(__this, ___index0, method); } // System.Void UnityEngine.PlayerPrefs::Save() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerPrefs_Save_m2C1E628FA335095CD88D0DA1CB50ACC924667EEC (const RuntimeMethod* method); // !!0[] System.Array::Empty() inline GUILayoutOptionU5BU5D_tA0F031CC36F88BBBD25D6841ADD3913446E6EA2B* Array_Empty_TisGUILayoutOption_t2D992ABCB62BEB24A6F4A826A5CBE7AE236071AB_mA07E9D2B1A778365E5A956C5674C590821EEC9B4_inline (const RuntimeMethod* method) { return (( GUILayoutOptionU5BU5D_tA0F031CC36F88BBBD25D6841ADD3913446E6EA2B* (*) (const RuntimeMethod*))Array_Empty_TisRuntimeObject_m002765312BF306B1B3B5BFAB9550C0A2A1820CDA_gshared_inline)(method); } // System.Void UnityEngine.GUILayout::Label(System.String,UnityEngine.GUILayoutOption[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayout_Label_m0DD89429577B101820231347FB04CFC489245502 (String_t* ___text0, GUILayoutOptionU5BU5D_tA0F031CC36F88BBBD25D6841ADD3913446E6EA2B* ___options1, const RuntimeMethod* method); // System.Void UnityEngine.GUILayout::Space(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayout_Space_m86E4A2CC27661A11F7D50132217B74E9D76CB9DD (float ___pixels0, const RuntimeMethod* method); // System.Single UnityEngine.GUILayout::HorizontalSlider(System.Single,System.Single,System.Single,UnityEngine.GUILayoutOption[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GUILayout_HorizontalSlider_m03D4AF69A1F1EA05236AB10FAD393580F2A3DC3D (float ___value0, float ___leftValue1, float ___rightValue2, GUILayoutOptionU5BU5D_tA0F031CC36F88BBBD25D6841ADD3913446E6EA2B* ___options3, const RuntimeMethod* method); // System.Boolean UnityEngine.GUILayout::Button(System.String,UnityEngine.GUILayoutOption[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GUILayout_Button_m749F2887D57BDC9B6901F2C35F5C6A7E22154162 (String_t* ___text0, GUILayoutOptionU5BU5D_tA0F031CC36F88BBBD25D6841ADD3913446E6EA2B* ___options1, const RuntimeMethod* method); // System.Void BestHTTP.Examples.LargeFileDownloadSample::StreamLargeFileTest() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LargeFileDownloadSample_StreamLargeFileTest_mBF9526CE0FB315F21D85803EBF5CC2E03BC8ED24 (LargeFileDownloadSample_t622D5BD7D084CA47719D9B6BFDAB75C369BD2A42 * __this, const RuntimeMethod* method); // System.String BestHTTP.HTTPResponse::GetFirstHeaderValue(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* HTTPResponse_GetFirstHeaderValue_mCEE274940680171EC84DC9DEEDB577DBF8A26D1B (HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * __this, String_t* ___name0, const RuntimeMethod* method); // System.Int32 System.Int32::Parse(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int32_Parse_mE5D220FEA7F0BFB1B220B2A30797D7DD83ACF22C (String_t* ___s0, const RuntimeMethod* method); // System.Collections.Generic.List`1 BestHTTP.HTTPResponse::GetStreamedFragments() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE * HTTPResponse_GetStreamedFragments_m5F1F589DAA1731C67037B156E4008965D9343926 (HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * __this, const RuntimeMethod* method); // System.Void BestHTTP.Examples.LargeFileDownloadSample::ProcessFragments(System.Collections.Generic.List`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LargeFileDownloadSample_ProcessFragments_m0CE54E3D9595300EC12E422D8F7B79DC2D37E318 (LargeFileDownloadSample_t622D5BD7D084CA47719D9B6BFDAB75C369BD2A42 * __this, List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE * ___fragments0, const RuntimeMethod* method); // System.Boolean BestHTTP.HTTPResponse::get_IsSuccess() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HTTPResponse_get_IsSuccess_m8DF99D28A8D0B0C58F7C496DA07782BE17A2E37C (HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * __this, const RuntimeMethod* method); // System.Boolean BestHTTP.HTTPResponse::get_IsStreamingFinished() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool HTTPResponse_get_IsStreamingFinished_m659F9CA579047CEBD3CC9E5484F08667FF5D94E6_inline (HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * __this, const RuntimeMethod* method); // System.Void UnityEngine.PlayerPrefs::DeleteKey(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerPrefs_DeleteKey_mCEF6CE08D7D7670AD4072228E261A7E746030554 (String_t* ___key0, const RuntimeMethod* method); // System.Int32 BestHTTP.HTTPResponse::get_StatusCode() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t HTTPResponse_get_StatusCode_m3D1C85F140105D51707DADCD3A376621CFA670DF_inline (HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * __this, const RuntimeMethod* method); // System.String BestHTTP.HTTPResponse::get_Message() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* HTTPResponse_get_Message_m1898E05F9D431E994A4D955B9B6C92A3C98A9383_inline (HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * __this, const RuntimeMethod* method); // System.String BestHTTP.HTTPResponse::get_DataAsText() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* HTTPResponse_get_DataAsText_mE627F5169E5E8FCD960C0503DAC684E82CF38ECA (HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * __this, const RuntimeMethod* method); // System.Void UnityEngine.Debug::LogWarning(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogWarning_m24085D883C9E74D7AB423F0625E13259923960E7 (RuntimeObject * ___message0, const RuntimeMethod* method); // System.Exception BestHTTP.HTTPRequest::get_Exception() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Exception_t * HTTPRequest_get_Exception_mEDB50793ED3C8EE527D30B823A15EC39C657B434_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method); // System.String System.String::Concat(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44 (String_t* ___str00, String_t* ___str11, String_t* ___str22, const RuntimeMethod* method); // System.Void UnityEngine.Debug::LogError(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogError_m8850D65592770A364D494025FF3A73E8D4D70485 (RuntimeObject * ___message0, const RuntimeMethod* method); // System.Void System.ThrowHelper::ThrowArgumentOutOfRangeException() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_m4841366ABC2B2AFA37C10900551D7E07522C0929 (const RuntimeMethod* method); #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void LitJson.JsonException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonException__ctor_m80AA918FF38C55DC2F410D5EFBB0120BB7B62637 (JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public JsonException () : base () IL2CPP_RUNTIME_CLASS_INIT(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_m0E9BEC861F6DBED197960E5BA23149543B1D7F5B(__this, /*hidden argument*/NULL); // } return; } } // System.Void LitJson.JsonException::.ctor(LitJson.ParserToken) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonException__ctor_m2DAE19F970FD1ACF0C9E82E1E00729D6967E05EB (JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C * __this, int32_t ___token0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ParserToken_t51882FFA0865E4E504DFF9B3C42D6EC451D0B6A5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1D59E6177FAE880C9EF94663465FEEDCD97D999F); s_Il2CppMethodInitialized = true; } { // base (String.Format ( // "Invalid token '{0}' in input string", token)) int32_t L_0 = ___token0; int32_t L_1 = L_0; RuntimeObject * L_2 = Box(ParserToken_t51882FFA0865E4E504DFF9B3C42D6EC451D0B6A5_il2cpp_TypeInfo_var, &L_1); String_t* L_3; L_3 = String_Format_mB3D38E5238C3164DB4D7D29339D9E225A4496D17(_stringLiteral1D59E6177FAE880C9EF94663465FEEDCD97D999F, L_2, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_m8ECDE8ACA7F2E0EF1144BD1200FB5DB2870B5F11(__this, L_3, /*hidden argument*/NULL); // } return; } } // System.Void LitJson.JsonException::.ctor(LitJson.ParserToken,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonException__ctor_mB482011B1B67369831E2C32A69B886E14F48228B (JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C * __this, int32_t ___token0, Exception_t * ___inner_exception1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ParserToken_t51882FFA0865E4E504DFF9B3C42D6EC451D0B6A5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1D59E6177FAE880C9EF94663465FEEDCD97D999F); s_Il2CppMethodInitialized = true; } { // base (String.Format ( // "Invalid token '{0}' in input string", token), // inner_exception) int32_t L_0 = ___token0; int32_t L_1 = L_0; RuntimeObject * L_2 = Box(ParserToken_t51882FFA0865E4E504DFF9B3C42D6EC451D0B6A5_il2cpp_TypeInfo_var, &L_1); String_t* L_3; L_3 = String_Format_mB3D38E5238C3164DB4D7D29339D9E225A4496D17(_stringLiteral1D59E6177FAE880C9EF94663465FEEDCD97D999F, L_2, /*hidden argument*/NULL); Exception_t * L_4 = ___inner_exception1; IL2CPP_RUNTIME_CLASS_INIT(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_mB842BA6E644CDB9DB058F5628BB90DF5EF22C080(__this, L_3, L_4, /*hidden argument*/NULL); // } return; } } // System.Void LitJson.JsonException::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonException__ctor_mC9FC5959B0BD752FB3211EA043A38215EB73BF01 (JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C * __this, int32_t ___c0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8515553A5B3BDCBB0920E96A5FD0FC34F11C2713); s_Il2CppMethodInitialized = true; } { // base (String.Format ( // "Invalid character '{0}' in input string", (char) c)) int32_t L_0 = ___c0; Il2CppChar L_1 = ((Il2CppChar)((int32_t)((uint16_t)L_0))); RuntimeObject * L_2 = Box(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var, &L_1); String_t* L_3; L_3 = String_Format_mB3D38E5238C3164DB4D7D29339D9E225A4496D17(_stringLiteral8515553A5B3BDCBB0920E96A5FD0FC34F11C2713, L_2, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_m8ECDE8ACA7F2E0EF1144BD1200FB5DB2870B5F11(__this, L_3, /*hidden argument*/NULL); // } return; } } // System.Void LitJson.JsonException::.ctor(System.Int32,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonException__ctor_m5D7432D521048B0497F705DA61A57A670D84DC4B (JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C * __this, int32_t ___c0, Exception_t * ___inner_exception1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8515553A5B3BDCBB0920E96A5FD0FC34F11C2713); s_Il2CppMethodInitialized = true; } { // base (String.Format ( // "Invalid character '{0}' in input string", (char) c), // inner_exception) int32_t L_0 = ___c0; Il2CppChar L_1 = ((Il2CppChar)((int32_t)((uint16_t)L_0))); RuntimeObject * L_2 = Box(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var, &L_1); String_t* L_3; L_3 = String_Format_mB3D38E5238C3164DB4D7D29339D9E225A4496D17(_stringLiteral8515553A5B3BDCBB0920E96A5FD0FC34F11C2713, L_2, /*hidden argument*/NULL); Exception_t * L_4 = ___inner_exception1; IL2CPP_RUNTIME_CLASS_INIT(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_mB842BA6E644CDB9DB058F5628BB90DF5EF22C080(__this, L_3, L_4, /*hidden argument*/NULL); // } return; } } // System.Void LitJson.JsonException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonException__ctor_m10E9DE1ED8CA46DD4DC5EFDC5825C456B7FC7932 (JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C * __this, String_t* ___message0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public JsonException (string message) : base (message) String_t* L_0 = ___message0; IL2CPP_RUNTIME_CLASS_INIT(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_m8ECDE8ACA7F2E0EF1144BD1200FB5DB2870B5F11(__this, L_0, /*hidden argument*/NULL); // } return; } } // System.Void LitJson.JsonException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonException__ctor_m86A37CE27034375743B07ACB90E4C26360A78F54 (JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C * __this, String_t* ___message0, Exception_t * ___inner_exception1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // base (message, inner_exception) String_t* L_0 = ___message0; Exception_t * L_1 = ___inner_exception1; IL2CPP_RUNTIME_CLASS_INIT(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_mB842BA6E644CDB9DB058F5628BB90DF5EF22C080(__this, L_0, L_1, /*hidden argument*/NULL); // } return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void LitJson.JsonMapper::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper__cctor_m019CF428985F3B1FAB46A74AE04E49F0B85F7E87 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m675228F70E08EC3116872AA2674282716C1E68ED_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m766165101D17DE264F976EF116EF0DCC521D4CB5_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m92A0844248BB5C63C796AFA2D5E2BF2D9AED62C5_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_mD0A87522FCC0B6A0E1B8084B4BD8628ED724177A_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_mD909E0A139978659E700B0CE49424A936C710762_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_mF8C3EB0D95A9289CAB90A5ED632A08F2917267FD_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t39C090DB63033FF202F2C4C95E8261B4D5D67132_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t3E57AD95AC968E6F62DEE19AB3170D1AC3A30DA2_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t5F9DFA2CAB73C95A2A252732A4FB00714E5ACB80_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t6632F9B7D29C6456BE397B4CC895D950BBB8072A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_tBFA9C0296056907B6B0D09647F71CA1E4EA0880D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_tC9AA680F78F71344FE76A09B6C7008BF8EE73C98_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // private static readonly object array_metadata_lock = new Object (); RuntimeObject * L_0 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(L_0, /*hidden argument*/NULL); ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->set_array_metadata_lock_7(L_0); // private static readonly object conv_ops_lock = new Object (); RuntimeObject * L_1 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(L_1, /*hidden argument*/NULL); ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->set_conv_ops_lock_9(L_1); // private static readonly object object_metadata_lock = new Object (); RuntimeObject * L_2 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(L_2, /*hidden argument*/NULL); ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->set_object_metadata_lock_11(L_2); // private static readonly object type_properties_lock = new Object (); RuntimeObject * L_3 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(L_3, /*hidden argument*/NULL); ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->set_type_properties_lock_13(L_3); // private static readonly object static_writer_lock = new Object (); RuntimeObject * L_4 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(L_4, /*hidden argument*/NULL); ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->set_static_writer_lock_15(L_4); // max_nesting_depth = 100; ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->set_max_nesting_depth_0(((int32_t)100)); // array_metadata = new Dictionary (); Dictionary_2_t3E57AD95AC968E6F62DEE19AB3170D1AC3A30DA2 * L_5 = (Dictionary_2_t3E57AD95AC968E6F62DEE19AB3170D1AC3A30DA2 *)il2cpp_codegen_object_new(Dictionary_2_t3E57AD95AC968E6F62DEE19AB3170D1AC3A30DA2_il2cpp_TypeInfo_var); Dictionary_2__ctor_mF8C3EB0D95A9289CAB90A5ED632A08F2917267FD(L_5, /*hidden argument*/Dictionary_2__ctor_mF8C3EB0D95A9289CAB90A5ED632A08F2917267FD_RuntimeMethod_var); ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->set_array_metadata_6(L_5); // conv_ops = new Dictionary> (); Dictionary_2_t6632F9B7D29C6456BE397B4CC895D950BBB8072A * L_6 = (Dictionary_2_t6632F9B7D29C6456BE397B4CC895D950BBB8072A *)il2cpp_codegen_object_new(Dictionary_2_t6632F9B7D29C6456BE397B4CC895D950BBB8072A_il2cpp_TypeInfo_var); Dictionary_2__ctor_mD909E0A139978659E700B0CE49424A936C710762(L_6, /*hidden argument*/Dictionary_2__ctor_mD909E0A139978659E700B0CE49424A936C710762_RuntimeMethod_var); ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->set_conv_ops_8(L_6); // object_metadata = new Dictionary (); Dictionary_2_tC9AA680F78F71344FE76A09B6C7008BF8EE73C98 * L_7 = (Dictionary_2_tC9AA680F78F71344FE76A09B6C7008BF8EE73C98 *)il2cpp_codegen_object_new(Dictionary_2_tC9AA680F78F71344FE76A09B6C7008BF8EE73C98_il2cpp_TypeInfo_var); Dictionary_2__ctor_m92A0844248BB5C63C796AFA2D5E2BF2D9AED62C5(L_7, /*hidden argument*/Dictionary_2__ctor_m92A0844248BB5C63C796AFA2D5E2BF2D9AED62C5_RuntimeMethod_var); ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->set_object_metadata_10(L_7); // type_properties = new Dictionary> (); Dictionary_2_t5F9DFA2CAB73C95A2A252732A4FB00714E5ACB80 * L_8 = (Dictionary_2_t5F9DFA2CAB73C95A2A252732A4FB00714E5ACB80 *)il2cpp_codegen_object_new(Dictionary_2_t5F9DFA2CAB73C95A2A252732A4FB00714E5ACB80_il2cpp_TypeInfo_var); Dictionary_2__ctor_m766165101D17DE264F976EF116EF0DCC521D4CB5(L_8, /*hidden argument*/Dictionary_2__ctor_m766165101D17DE264F976EF116EF0DCC521D4CB5_RuntimeMethod_var); ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->set_type_properties_12(L_8); // static_writer = new JsonWriter (); JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * L_9 = (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A *)il2cpp_codegen_object_new(JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A_il2cpp_TypeInfo_var); JsonWriter__ctor_m9ED10F184FB062CBA458AA65CAF9257467C737AC(L_9, /*hidden argument*/NULL); ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->set_static_writer_14(L_9); // datetime_format = DateTimeFormatInfo.InvariantInfo; IL2CPP_RUNTIME_CLASS_INIT(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90_il2cpp_TypeInfo_var); DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 * L_10; L_10 = DateTimeFormatInfo_get_InvariantInfo_mF82BD33E66FDFBF82C9E9F58CDA7DDE568401F4B(/*hidden argument*/NULL); ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->set_datetime_format_1(L_10); // base_exporters_table = new Dictionary (); Dictionary_2_tBFA9C0296056907B6B0D09647F71CA1E4EA0880D * L_11 = (Dictionary_2_tBFA9C0296056907B6B0D09647F71CA1E4EA0880D *)il2cpp_codegen_object_new(Dictionary_2_tBFA9C0296056907B6B0D09647F71CA1E4EA0880D_il2cpp_TypeInfo_var); Dictionary_2__ctor_m675228F70E08EC3116872AA2674282716C1E68ED(L_11, /*hidden argument*/Dictionary_2__ctor_m675228F70E08EC3116872AA2674282716C1E68ED_RuntimeMethod_var); ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->set_base_exporters_table_2(L_11); // custom_exporters_table = new Dictionary (); Dictionary_2_tBFA9C0296056907B6B0D09647F71CA1E4EA0880D * L_12 = (Dictionary_2_tBFA9C0296056907B6B0D09647F71CA1E4EA0880D *)il2cpp_codegen_object_new(Dictionary_2_tBFA9C0296056907B6B0D09647F71CA1E4EA0880D_il2cpp_TypeInfo_var); Dictionary_2__ctor_m675228F70E08EC3116872AA2674282716C1E68ED(L_12, /*hidden argument*/Dictionary_2__ctor_m675228F70E08EC3116872AA2674282716C1E68ED_RuntimeMethod_var); ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->set_custom_exporters_table_3(L_12); // base_importers_table = new Dictionary> (); Dictionary_2_t39C090DB63033FF202F2C4C95E8261B4D5D67132 * L_13 = (Dictionary_2_t39C090DB63033FF202F2C4C95E8261B4D5D67132 *)il2cpp_codegen_object_new(Dictionary_2_t39C090DB63033FF202F2C4C95E8261B4D5D67132_il2cpp_TypeInfo_var); Dictionary_2__ctor_mD0A87522FCC0B6A0E1B8084B4BD8628ED724177A(L_13, /*hidden argument*/Dictionary_2__ctor_mD0A87522FCC0B6A0E1B8084B4BD8628ED724177A_RuntimeMethod_var); ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->set_base_importers_table_4(L_13); // custom_importers_table = new Dictionary> (); Dictionary_2_t39C090DB63033FF202F2C4C95E8261B4D5D67132 * L_14 = (Dictionary_2_t39C090DB63033FF202F2C4C95E8261B4D5D67132 *)il2cpp_codegen_object_new(Dictionary_2_t39C090DB63033FF202F2C4C95E8261B4D5D67132_il2cpp_TypeInfo_var); Dictionary_2__ctor_mD0A87522FCC0B6A0E1B8084B4BD8628ED724177A(L_14, /*hidden argument*/Dictionary_2__ctor_mD0A87522FCC0B6A0E1B8084B4BD8628ED724177A_RuntimeMethod_var); ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->set_custom_importers_table_5(L_14); // RegisterBaseExporters (); JsonMapper_RegisterBaseExporters_mE267D78B53196A1063C1AFB89F26A567015AA19C(/*hidden argument*/NULL); // RegisterBaseImporters (); JsonMapper_RegisterBaseImporters_m58FC5B4999B9799F9A53F50375EB53D70268F8BF(/*hidden argument*/NULL); // } return; } } // System.Boolean LitJson.JsonMapper::HasInterface(System.Type,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonMapper_HasInterface_m036E2B18D59DD19684B05F139975FCCEF7B93A26 (Type_t * ___type0, String_t* ___name1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // return type.GetInterface(name, true) != null; Type_t * L_0 = ___type0; String_t* L_1 = ___name1; NullCheck(L_0); Type_t * L_2; L_2 = VirtualFuncInvoker2< Type_t *, String_t*, bool >::Invoke(50 /* System.Type System.Type::GetInterface(System.String,System.Boolean) */, L_0, L_1, (bool)1); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_3; L_3 = Type_op_Inequality_m6DDC5E923203A79BF505F9275B694AD3FAA36DB0(L_2, (Type_t *)NULL, /*hidden argument*/NULL); return L_3; } } // System.Reflection.PropertyInfo[] LitJson.JsonMapper::GetPublicInstanceProperties(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyInfoU5BU5D_tE59E95F68533BDA98ABBBEACB6A99BF2C7A4A26A* JsonMapper_GetPublicInstanceProperties_m3D2607414F64CAAC7F9C5D0148E31D262B150D3A (Type_t * ___type0, const RuntimeMethod* method) { { // return type.GetProperties(); Type_t * L_0 = ___type0; NullCheck(L_0); PropertyInfoU5BU5D_tE59E95F68533BDA98ABBBEACB6A99BF2C7A4A26A* L_1; L_1 = Type_GetProperties_m4126C117279AD617D8D167367DF953C451FC49E3(L_0, /*hidden argument*/NULL); return L_1; } } // System.Void LitJson.JsonMapper::AddArrayMetadata(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper_AddArrayMetadata_mC8A79B845D2850C7F20F368AA0793578D1FDF1C7 (Type_t * ___type0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_t59EECA278A417E0FF1F940F199642DCC95B4933D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB6F02FE6CD732AB22BD11BE4254D9546F3BEEE58); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD5DF53EB5CC9A30D6CA4EECD8F9C4882ABF00BB6); s_Il2CppMethodInitialized = true; } ArrayMetadata_tF0CA4EA5DDA5A3A4E7FFF5549F3807D19592A4B9 V_0; memset((&V_0), 0, sizeof(V_0)); PropertyInfoU5BU5D_tE59E95F68533BDA98ABBBEACB6A99BF2C7A4A26A* V_1 = NULL; int32_t V_2 = 0; PropertyInfo_t * V_3 = NULL; ParameterInfoU5BU5D_tB1B367487BAA9E1B2DA7EAA95B443D0B183AF80B* V_4 = NULL; RuntimeObject * V_5 = NULL; bool V_6 = false; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; { // if (array_metadata.ContainsKey (type)) IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_0 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_array_metadata_6(); Type_t * L_1 = ___type0; NullCheck(L_0); bool L_2; L_2 = InterfaceFuncInvoker1< bool, Type_t * >::Invoke(4 /* System.Boolean System.Collections.Generic.IDictionary`2::ContainsKey(!0) */, IDictionary_2_t59EECA278A417E0FF1F940F199642DCC95B4933D_il2cpp_TypeInfo_var, L_0, L_1); if (!L_2) { goto IL_000e; } } { // return; return; } IL_000e: { // ArrayMetadata data = new ArrayMetadata (); il2cpp_codegen_initobj((&V_0), sizeof(ArrayMetadata_tF0CA4EA5DDA5A3A4E7FFF5549F3807D19592A4B9 )); // data.IsArray = type.IsArray; Type_t * L_3 = ___type0; NullCheck(L_3); bool L_4; L_4 = Type_get_IsArray_m15FE83DD8FAF090F9BDA924753C7750AAEA7CFD1(L_3, /*hidden argument*/NULL); ArrayMetadata_set_IsArray_m9533C18110BC3274D78D34BE249DD05C5A16CB93_inline((ArrayMetadata_tF0CA4EA5DDA5A3A4E7FFF5549F3807D19592A4B9 *)(&V_0), L_4, /*hidden argument*/NULL); // if (HasInterface(type, "System.Collections.IList")) Type_t * L_5 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); bool L_6; L_6 = JsonMapper_HasInterface_m036E2B18D59DD19684B05F139975FCCEF7B93A26(L_5, _stringLiteralD5DF53EB5CC9A30D6CA4EECD8F9C4882ABF00BB6, /*hidden argument*/NULL); if (!L_6) { goto IL_0038; } } { // data.IsList = true; ArrayMetadata_set_IsList_mBCCA4DB64C9A4B97347EC5A93A34C772E92841E5_inline((ArrayMetadata_tF0CA4EA5DDA5A3A4E7FFF5549F3807D19592A4B9 *)(&V_0), (bool)1, /*hidden argument*/NULL); } IL_0038: { // foreach (PropertyInfo p_info in GetPublicInstanceProperties(type)) Type_t * L_7 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); PropertyInfoU5BU5D_tE59E95F68533BDA98ABBBEACB6A99BF2C7A4A26A* L_8; L_8 = JsonMapper_GetPublicInstanceProperties_m3D2607414F64CAAC7F9C5D0148E31D262B150D3A(L_7, /*hidden argument*/NULL); V_1 = L_8; V_2 = 0; goto IL_0093; } IL_0043: { // foreach (PropertyInfo p_info in GetPublicInstanceProperties(type)) PropertyInfoU5BU5D_tE59E95F68533BDA98ABBBEACB6A99BF2C7A4A26A* L_9 = V_1; int32_t L_10 = V_2; NullCheck(L_9); int32_t L_11 = L_10; PropertyInfo_t * L_12 = (L_9)->GetAt(static_cast(L_11)); V_3 = L_12; // if (p_info.Name != "Item") PropertyInfo_t * L_13 = V_3; NullCheck(L_13); String_t* L_14; L_14 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_13); bool L_15; L_15 = String_op_Inequality_mDDA2DDED3E7EF042987EB7180EE3E88105F0AAE2(L_14, _stringLiteralB6F02FE6CD732AB22BD11BE4254D9546F3BEEE58, /*hidden argument*/NULL); if (L_15) { goto IL_008f; } } { // ParameterInfo[] parameters = p_info.GetIndexParameters (); PropertyInfo_t * L_16 = V_3; NullCheck(L_16); ParameterInfoU5BU5D_tB1B367487BAA9E1B2DA7EAA95B443D0B183AF80B* L_17; L_17 = VirtualFuncInvoker0< ParameterInfoU5BU5D_tB1B367487BAA9E1B2DA7EAA95B443D0B183AF80B* >::Invoke(28 /* System.Reflection.ParameterInfo[] System.Reflection.PropertyInfo::GetIndexParameters() */, L_16); V_4 = L_17; // if (parameters.Length != 1) ParameterInfoU5BU5D_tB1B367487BAA9E1B2DA7EAA95B443D0B183AF80B* L_18 = V_4; NullCheck(L_18); if ((!(((uint32_t)((int32_t)((int32_t)(((RuntimeArray*)L_18)->max_length)))) == ((uint32_t)1)))) { goto IL_008f; } } { // if (parameters[0].ParameterType == typeof (int)) ParameterInfoU5BU5D_tB1B367487BAA9E1B2DA7EAA95B443D0B183AF80B* L_19 = V_4; NullCheck(L_19); int32_t L_20 = 0; ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7 * L_21 = (L_19)->GetAt(static_cast(L_20)); NullCheck(L_21); Type_t * L_22; L_22 = VirtualFuncInvoker0< Type_t * >::Invoke(8 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_21); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_23 = { reinterpret_cast (Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_24; L_24 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_23, /*hidden argument*/NULL); bool L_25; L_25 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046(L_22, L_24, /*hidden argument*/NULL); if (!L_25) { goto IL_008f; } } { // data.ElementType = p_info.PropertyType; PropertyInfo_t * L_26 = V_3; NullCheck(L_26); Type_t * L_27; L_27 = VirtualFuncInvoker0< Type_t * >::Invoke(24 /* System.Type System.Reflection.PropertyInfo::get_PropertyType() */, L_26); ArrayMetadata_set_ElementType_mDAEF33B6B16B6B2F3B71A53067CE42D6D53EA49B_inline((ArrayMetadata_tF0CA4EA5DDA5A3A4E7FFF5549F3807D19592A4B9 *)(&V_0), L_27, /*hidden argument*/NULL); } IL_008f: { int32_t L_28 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)1)); } IL_0093: { // foreach (PropertyInfo p_info in GetPublicInstanceProperties(type)) int32_t L_29 = V_2; PropertyInfoU5BU5D_tE59E95F68533BDA98ABBBEACB6A99BF2C7A4A26A* L_30 = V_1; NullCheck(L_30); if ((((int32_t)L_29) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_30)->max_length)))))) { goto IL_0043; } } { // lock (array_metadata_lock) { IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject * L_31 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_array_metadata_lock_7(); V_5 = L_31; V_6 = (bool)0; } IL_00a3: try {// begin try (depth: 1) { RuntimeObject * L_32 = V_5; Monitor_Enter_mBEB6CC84184B46F26375EC3FC8921D16E48EA4C4(L_32, (bool*)(&V_6), /*hidden argument*/NULL); } IL_00ac: try {// begin try (depth: 2) // array_metadata.Add (type, data); IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_33 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_array_metadata_6(); Type_t * L_34 = ___type0; ArrayMetadata_tF0CA4EA5DDA5A3A4E7FFF5549F3807D19592A4B9 L_35 = V_0; NullCheck(L_33); InterfaceActionInvoker2< Type_t *, ArrayMetadata_tF0CA4EA5DDA5A3A4E7FFF5549F3807D19592A4B9 >::Invoke(5 /* System.Void System.Collections.Generic.IDictionary`2::Add(!0,!1) */, IDictionary_2_t59EECA278A417E0FF1F940F199642DCC95B4933D_il2cpp_TypeInfo_var, L_33, L_34, L_35); // } catch (ArgumentException) { IL2CPP_LEAVE(0xC9, FINALLY_00bd); }// end try (depth: 2) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_00ba; } throw e; } CATCH_00ba: {// begin catch(System.ArgumentException) // } catch (ArgumentException) { // return; IL2CPP_POP_ACTIVE_EXCEPTION(); IL2CPP_LEAVE(0xC9, FINALLY_00bd); }// end catch (depth: 2) }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00bd; } FINALLY_00bd: {// begin finally (depth: 1) { bool L_36 = V_6; if (!L_36) { goto IL_00c8; } } IL_00c1: { RuntimeObject * L_37 = V_5; Monitor_Exit_mA776B403DA88AC77CDEEF67AB9F0D0E77ABD254A(L_37, /*hidden argument*/NULL); } IL_00c8: { IL2CPP_END_FINALLY(189) } }// end finally (depth: 1) IL2CPP_CLEANUP(189) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0xC9, IL_00c9) } IL_00c9: { // } return; } } // System.Void LitJson.JsonMapper::AddObjectMetadata(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper_AddObjectMetadata_m9EA6E58A83411B87D2A00E5BB3E271B5D708EE51 (Type_t * ___type0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_mDE4AC0E4230C140CC8D9194574091FABDBA80144_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t340755D6C3625294F8C87E54F0CA95E023E5C656_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_t4C0E889AA23D9590A60247E7F731BBA09868028B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_t99C107346145E7116FEB5DE73BBCC65AD5D6B262_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0B4852B6F2412388B50C99BF806BFE926E4FFEA5); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB6F02FE6CD732AB22BD11BE4254D9546F3BEEE58); s_Il2CppMethodInitialized = true; } ObjectMetadata_tCC476FD33189C604471B5B5D5ECF7AF098B0DB62 V_0; memset((&V_0), 0, sizeof(V_0)); PropertyInfoU5BU5D_tE59E95F68533BDA98ABBBEACB6A99BF2C7A4A26A* V_1 = NULL; int32_t V_2 = 0; PropertyInfo_t * V_3 = NULL; PropertyMetadata_t82F32770B33750701D575D2F6E092A8F1EA7858F V_4; memset((&V_4), 0, sizeof(V_4)); ParameterInfoU5BU5D_tB1B367487BAA9E1B2DA7EAA95B443D0B183AF80B* V_5 = NULL; FieldInfoU5BU5D_tD84513FCA07C63AAFE671A5B39E3ADD6E903938E* V_6 = NULL; FieldInfo_t * V_7 = NULL; PropertyMetadata_t82F32770B33750701D575D2F6E092A8F1EA7858F V_8; memset((&V_8), 0, sizeof(V_8)); RuntimeObject * V_9 = NULL; bool V_10 = false; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; { // if (object_metadata.ContainsKey (type)) IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_0 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_object_metadata_10(); Type_t * L_1 = ___type0; NullCheck(L_0); bool L_2; L_2 = InterfaceFuncInvoker1< bool, Type_t * >::Invoke(4 /* System.Boolean System.Collections.Generic.IDictionary`2::ContainsKey(!0) */, IDictionary_2_t4C0E889AA23D9590A60247E7F731BBA09868028B_il2cpp_TypeInfo_var, L_0, L_1); if (!L_2) { goto IL_000e; } } { // return; return; } IL_000e: { // ObjectMetadata data = new ObjectMetadata (); il2cpp_codegen_initobj((&V_0), sizeof(ObjectMetadata_tCC476FD33189C604471B5B5D5ECF7AF098B0DB62 )); // if (HasInterface(type, "System.Collections.IDictionary")) Type_t * L_3 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); bool L_4; L_4 = JsonMapper_HasInterface_m036E2B18D59DD19684B05F139975FCCEF7B93A26(L_3, _stringLiteral0B4852B6F2412388B50C99BF806BFE926E4FFEA5, /*hidden argument*/NULL); if (!L_4) { goto IL_002b; } } { // data.IsDictionary = true; ObjectMetadata_set_IsDictionary_m35539466DA7C3812A45773BF4157FB02219F82DD_inline((ObjectMetadata_tCC476FD33189C604471B5B5D5ECF7AF098B0DB62 *)(&V_0), (bool)1, /*hidden argument*/NULL); } IL_002b: { // data.Properties = new Dictionary (StringComparer.OrdinalIgnoreCase); IL2CPP_RUNTIME_CLASS_INIT(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_il2cpp_TypeInfo_var); StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * L_5; L_5 = StringComparer_get_OrdinalIgnoreCase_m8FD38206B6FFE866E97CE4DF84B037F0DF175288_inline(/*hidden argument*/NULL); Dictionary_2_t340755D6C3625294F8C87E54F0CA95E023E5C656 * L_6 = (Dictionary_2_t340755D6C3625294F8C87E54F0CA95E023E5C656 *)il2cpp_codegen_object_new(Dictionary_2_t340755D6C3625294F8C87E54F0CA95E023E5C656_il2cpp_TypeInfo_var); Dictionary_2__ctor_mDE4AC0E4230C140CC8D9194574091FABDBA80144(L_6, L_5, /*hidden argument*/Dictionary_2__ctor_mDE4AC0E4230C140CC8D9194574091FABDBA80144_RuntimeMethod_var); ObjectMetadata_set_Properties_m29119CB8832BB41FAA57A97E5EF00B5911C22B3C_inline((ObjectMetadata_tCC476FD33189C604471B5B5D5ECF7AF098B0DB62 *)(&V_0), L_6, /*hidden argument*/NULL); // foreach (PropertyInfo p_info in GetPublicInstanceProperties(type)) Type_t * L_7 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); PropertyInfoU5BU5D_tE59E95F68533BDA98ABBBEACB6A99BF2C7A4A26A* L_8; L_8 = JsonMapper_GetPublicInstanceProperties_m3D2607414F64CAAC7F9C5D0148E31D262B150D3A(L_7, /*hidden argument*/NULL); V_1 = L_8; V_2 = 0; goto IL_00cd; } IL_004a: { // foreach (PropertyInfo p_info in GetPublicInstanceProperties(type)) PropertyInfoU5BU5D_tE59E95F68533BDA98ABBBEACB6A99BF2C7A4A26A* L_9 = V_1; int32_t L_10 = V_2; NullCheck(L_9); int32_t L_11 = L_10; PropertyInfo_t * L_12 = (L_9)->GetAt(static_cast(L_11)); V_3 = L_12; // if (p_info.Name == "Item") { PropertyInfo_t * L_13 = V_3; NullCheck(L_13); String_t* L_14; L_14 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_13); bool L_15; L_15 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_14, _stringLiteralB6F02FE6CD732AB22BD11BE4254D9546F3BEEE58, /*hidden argument*/NULL); if (!L_15) { goto IL_0098; } } { // ParameterInfo[] parameters = p_info.GetIndexParameters (); PropertyInfo_t * L_16 = V_3; NullCheck(L_16); ParameterInfoU5BU5D_tB1B367487BAA9E1B2DA7EAA95B443D0B183AF80B* L_17; L_17 = VirtualFuncInvoker0< ParameterInfoU5BU5D_tB1B367487BAA9E1B2DA7EAA95B443D0B183AF80B* >::Invoke(28 /* System.Reflection.ParameterInfo[] System.Reflection.PropertyInfo::GetIndexParameters() */, L_16); V_5 = L_17; // if (parameters.Length != 1) ParameterInfoU5BU5D_tB1B367487BAA9E1B2DA7EAA95B443D0B183AF80B* L_18 = V_5; NullCheck(L_18); if ((!(((uint32_t)((int32_t)((int32_t)(((RuntimeArray*)L_18)->max_length)))) == ((uint32_t)1)))) { goto IL_00c9; } } { // if (parameters[0].ParameterType == typeof (string)) ParameterInfoU5BU5D_tB1B367487BAA9E1B2DA7EAA95B443D0B183AF80B* L_19 = V_5; NullCheck(L_19); int32_t L_20 = 0; ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7 * L_21 = (L_19)->GetAt(static_cast(L_20)); NullCheck(L_21); Type_t * L_22; L_22 = VirtualFuncInvoker0< Type_t * >::Invoke(8 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_21); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_23 = { reinterpret_cast (String_t_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_24; L_24 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_23, /*hidden argument*/NULL); bool L_25; L_25 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046(L_22, L_24, /*hidden argument*/NULL); if (!L_25) { goto IL_00c9; } } { // data.ElementType = p_info.PropertyType; PropertyInfo_t * L_26 = V_3; NullCheck(L_26); Type_t * L_27; L_27 = VirtualFuncInvoker0< Type_t * >::Invoke(24 /* System.Type System.Reflection.PropertyInfo::get_PropertyType() */, L_26); ObjectMetadata_set_ElementType_m2BD099120F753C6DB400A0931FACBD985A8D185B_inline((ObjectMetadata_tCC476FD33189C604471B5B5D5ECF7AF098B0DB62 *)(&V_0), L_27, /*hidden argument*/NULL); // continue; goto IL_00c9; } IL_0098: { // PropertyMetadata p_data = new PropertyMetadata (); il2cpp_codegen_initobj((&V_4), sizeof(PropertyMetadata_t82F32770B33750701D575D2F6E092A8F1EA7858F )); // p_data.Info = p_info; PropertyInfo_t * L_28 = V_3; (&V_4)->set_Info_0(L_28); // p_data.Type = p_info.PropertyType; PropertyInfo_t * L_29 = V_3; NullCheck(L_29); Type_t * L_30; L_30 = VirtualFuncInvoker0< Type_t * >::Invoke(24 /* System.Type System.Reflection.PropertyInfo::get_PropertyType() */, L_29); (&V_4)->set_Type_2(L_30); // data.Properties.Add (p_info.Name, p_data); RuntimeObject* L_31; L_31 = ObjectMetadata_get_Properties_m807521480FEA523527B13A27B9835B920159547A_inline((ObjectMetadata_tCC476FD33189C604471B5B5D5ECF7AF098B0DB62 *)(&V_0), /*hidden argument*/NULL); PropertyInfo_t * L_32 = V_3; NullCheck(L_32); String_t* L_33; L_33 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_32); PropertyMetadata_t82F32770B33750701D575D2F6E092A8F1EA7858F L_34 = V_4; NullCheck(L_31); InterfaceActionInvoker2< String_t*, PropertyMetadata_t82F32770B33750701D575D2F6E092A8F1EA7858F >::Invoke(5 /* System.Void System.Collections.Generic.IDictionary`2::Add(!0,!1) */, IDictionary_2_t99C107346145E7116FEB5DE73BBCC65AD5D6B262_il2cpp_TypeInfo_var, L_31, L_33, L_34); } IL_00c9: { int32_t L_35 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_35, (int32_t)1)); } IL_00cd: { // foreach (PropertyInfo p_info in GetPublicInstanceProperties(type)) int32_t L_36 = V_2; PropertyInfoU5BU5D_tE59E95F68533BDA98ABBBEACB6A99BF2C7A4A26A* L_37 = V_1; NullCheck(L_37); if ((((int32_t)L_36) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_37)->max_length)))))) { goto IL_004a; } } { // type.GetFields() Type_t * L_38 = ___type0; NullCheck(L_38); FieldInfoU5BU5D_tD84513FCA07C63AAFE671A5B39E3ADD6E903938E* L_39; L_39 = Type_GetFields_m4E3B89F0F088B46F0C2E77CA537179C30AC5B372(L_38, /*hidden argument*/NULL); V_6 = L_39; V_2 = 0; goto IL_013d; } IL_00e2: { // foreach (FieldInfo f_info in FieldInfoU5BU5D_tD84513FCA07C63AAFE671A5B39E3ADD6E903938E* L_40 = V_6; int32_t L_41 = V_2; NullCheck(L_40); int32_t L_42 = L_41; FieldInfo_t * L_43 = (L_40)->GetAt(static_cast(L_42)); V_7 = L_43; // PropertyMetadata p_data = new PropertyMetadata (); il2cpp_codegen_initobj((&V_8), sizeof(PropertyMetadata_t82F32770B33750701D575D2F6E092A8F1EA7858F )); // p_data.Info = f_info; FieldInfo_t * L_44 = V_7; (&V_8)->set_Info_0(L_44); // p_data.IsField = true; (&V_8)->set_IsField_1((bool)1); // p_data.Type = f_info.FieldType; FieldInfo_t * L_45 = V_7; NullCheck(L_45); Type_t * L_46; L_46 = VirtualFuncInvoker0< Type_t * >::Invoke(20 /* System.Type System.Reflection.FieldInfo::get_FieldType() */, L_45); (&V_8)->set_Type_2(L_46); // if (!data.Properties.ContainsKey(f_info.Name)) RuntimeObject* L_47; L_47 = ObjectMetadata_get_Properties_m807521480FEA523527B13A27B9835B920159547A_inline((ObjectMetadata_tCC476FD33189C604471B5B5D5ECF7AF098B0DB62 *)(&V_0), /*hidden argument*/NULL); FieldInfo_t * L_48 = V_7; NullCheck(L_48); String_t* L_49; L_49 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_48); NullCheck(L_47); bool L_50; L_50 = InterfaceFuncInvoker1< bool, String_t* >::Invoke(4 /* System.Boolean System.Collections.Generic.IDictionary`2::ContainsKey(!0) */, IDictionary_2_t99C107346145E7116FEB5DE73BBCC65AD5D6B262_il2cpp_TypeInfo_var, L_47, L_49); if (L_50) { goto IL_0139; } } { // data.Properties.Add (f_info.Name, p_data); RuntimeObject* L_51; L_51 = ObjectMetadata_get_Properties_m807521480FEA523527B13A27B9835B920159547A_inline((ObjectMetadata_tCC476FD33189C604471B5B5D5ECF7AF098B0DB62 *)(&V_0), /*hidden argument*/NULL); FieldInfo_t * L_52 = V_7; NullCheck(L_52); String_t* L_53; L_53 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_52); PropertyMetadata_t82F32770B33750701D575D2F6E092A8F1EA7858F L_54 = V_8; NullCheck(L_51); InterfaceActionInvoker2< String_t*, PropertyMetadata_t82F32770B33750701D575D2F6E092A8F1EA7858F >::Invoke(5 /* System.Void System.Collections.Generic.IDictionary`2::Add(!0,!1) */, IDictionary_2_t99C107346145E7116FEB5DE73BBCC65AD5D6B262_il2cpp_TypeInfo_var, L_51, L_53, L_54); } IL_0139: { int32_t L_55 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_55, (int32_t)1)); } IL_013d: { // foreach (FieldInfo f_info in int32_t L_56 = V_2; FieldInfoU5BU5D_tD84513FCA07C63AAFE671A5B39E3ADD6E903938E* L_57 = V_6; NullCheck(L_57); if ((((int32_t)L_56) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_57)->max_length)))))) { goto IL_00e2; } } { // lock (object_metadata_lock) { IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject * L_58 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_object_metadata_lock_11(); V_9 = L_58; V_10 = (bool)0; } IL_014e: try {// begin try (depth: 1) { RuntimeObject * L_59 = V_9; Monitor_Enter_mBEB6CC84184B46F26375EC3FC8921D16E48EA4C4(L_59, (bool*)(&V_10), /*hidden argument*/NULL); } IL_0157: try {// begin try (depth: 2) // object_metadata.Add (type, data); IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_60 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_object_metadata_10(); Type_t * L_61 = ___type0; ObjectMetadata_tCC476FD33189C604471B5B5D5ECF7AF098B0DB62 L_62 = V_0; NullCheck(L_60); InterfaceActionInvoker2< Type_t *, ObjectMetadata_tCC476FD33189C604471B5B5D5ECF7AF098B0DB62 >::Invoke(5 /* System.Void System.Collections.Generic.IDictionary`2::Add(!0,!1) */, IDictionary_2_t4C0E889AA23D9590A60247E7F731BBA09868028B_il2cpp_TypeInfo_var, L_60, L_61, L_62); // } catch (ArgumentException) { IL2CPP_LEAVE(0x174, FINALLY_0168); }// end try (depth: 2) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0165; } throw e; } CATCH_0165: {// begin catch(System.ArgumentException) // } catch (ArgumentException) { // return; IL2CPP_POP_ACTIVE_EXCEPTION(); IL2CPP_LEAVE(0x174, FINALLY_0168); }// end catch (depth: 2) }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0168; } FINALLY_0168: {// begin finally (depth: 1) { bool L_63 = V_10; if (!L_63) { goto IL_0173; } } IL_016c: { RuntimeObject * L_64 = V_9; Monitor_Exit_mA776B403DA88AC77CDEEF67AB9F0D0E77ABD254A(L_64, /*hidden argument*/NULL); } IL_0173: { IL2CPP_END_FINALLY(360) } }// end finally (depth: 1) IL2CPP_CLEANUP(360) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x174, IL_0174) } IL_0174: { // } return; } } // System.Void LitJson.JsonMapper::AddTypeProperties(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper_AddTypeProperties_m8EE3CF28679D9A8786E453E34B031030174593E0 (Type_t * ___type0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_tC10574690E5689A8AF8F6E2F0674E0CEE77C04BE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_t16CDACDB46F2C22D302194A4E428A5CACCEB02F1_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m74E87756C362C1D9275E1B4F30C360439D4C2676_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t2AF104D60315227C623084E47EED6630D55BBB37_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB6F02FE6CD732AB22BD11BE4254D9546F3BEEE58); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; PropertyInfoU5BU5D_tE59E95F68533BDA98ABBBEACB6A99BF2C7A4A26A* V_1 = NULL; int32_t V_2 = 0; PropertyInfo_t * V_3 = NULL; PropertyMetadata_t82F32770B33750701D575D2F6E092A8F1EA7858F V_4; memset((&V_4), 0, sizeof(V_4)); FieldInfoU5BU5D_tD84513FCA07C63AAFE671A5B39E3ADD6E903938E* V_5 = NULL; FieldInfo_t * V_6 = NULL; PropertyMetadata_t82F32770B33750701D575D2F6E092A8F1EA7858F V_7; memset((&V_7), 0, sizeof(V_7)); RuntimeObject * V_8 = NULL; bool V_9 = false; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; { // if (type_properties.ContainsKey (type)) IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_0 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_type_properties_12(); Type_t * L_1 = ___type0; NullCheck(L_0); bool L_2; L_2 = InterfaceFuncInvoker1< bool, Type_t * >::Invoke(4 /* System.Boolean System.Collections.Generic.IDictionary`2>::ContainsKey(!0) */, IDictionary_2_t16CDACDB46F2C22D302194A4E428A5CACCEB02F1_il2cpp_TypeInfo_var, L_0, L_1); if (!L_2) { goto IL_000e; } } { // return; return; } IL_000e: { // IList props = new List (); List_1_t2AF104D60315227C623084E47EED6630D55BBB37 * L_3 = (List_1_t2AF104D60315227C623084E47EED6630D55BBB37 *)il2cpp_codegen_object_new(List_1_t2AF104D60315227C623084E47EED6630D55BBB37_il2cpp_TypeInfo_var); List_1__ctor_m74E87756C362C1D9275E1B4F30C360439D4C2676(L_3, /*hidden argument*/List_1__ctor_m74E87756C362C1D9275E1B4F30C360439D4C2676_RuntimeMethod_var); V_0 = (RuntimeObject*)L_3; // foreach (PropertyInfo p_info in GetPublicInstanceProperties(type)) { Type_t * L_4 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); PropertyInfoU5BU5D_tE59E95F68533BDA98ABBBEACB6A99BF2C7A4A26A* L_5; L_5 = JsonMapper_GetPublicInstanceProperties_m3D2607414F64CAAC7F9C5D0148E31D262B150D3A(L_4, /*hidden argument*/NULL); V_1 = L_5; V_2 = 0; goto IL_0059; } IL_001f: { // foreach (PropertyInfo p_info in GetPublicInstanceProperties(type)) { PropertyInfoU5BU5D_tE59E95F68533BDA98ABBBEACB6A99BF2C7A4A26A* L_6 = V_1; int32_t L_7 = V_2; NullCheck(L_6); int32_t L_8 = L_7; PropertyInfo_t * L_9 = (L_6)->GetAt(static_cast(L_8)); V_3 = L_9; // if (p_info.Name == "Item") PropertyInfo_t * L_10 = V_3; NullCheck(L_10); String_t* L_11; L_11 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_10); bool L_12; L_12 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_11, _stringLiteralB6F02FE6CD732AB22BD11BE4254D9546F3BEEE58, /*hidden argument*/NULL); if (L_12) { goto IL_0055; } } { // PropertyMetadata p_data = new PropertyMetadata (); il2cpp_codegen_initobj((&V_4), sizeof(PropertyMetadata_t82F32770B33750701D575D2F6E092A8F1EA7858F )); // p_data.Info = p_info; PropertyInfo_t * L_13 = V_3; (&V_4)->set_Info_0(L_13); // p_data.IsField = false; (&V_4)->set_IsField_1((bool)0); // props.Add (p_data); RuntimeObject* L_14 = V_0; PropertyMetadata_t82F32770B33750701D575D2F6E092A8F1EA7858F L_15 = V_4; NullCheck(L_14); InterfaceActionInvoker1< PropertyMetadata_t82F32770B33750701D575D2F6E092A8F1EA7858F >::Invoke(2 /* System.Void System.Collections.Generic.ICollection`1::Add(!0) */, ICollection_1_tC10574690E5689A8AF8F6E2F0674E0CEE77C04BE_il2cpp_TypeInfo_var, L_14, L_15); } IL_0055: { int32_t L_16 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_0059: { // foreach (PropertyInfo p_info in GetPublicInstanceProperties(type)) { int32_t L_17 = V_2; PropertyInfoU5BU5D_tE59E95F68533BDA98ABBBEACB6A99BF2C7A4A26A* L_18 = V_1; NullCheck(L_18); if ((((int32_t)L_17) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_18)->max_length)))))) { goto IL_001f; } } { // type.GetFields() Type_t * L_19 = ___type0; NullCheck(L_19); FieldInfoU5BU5D_tD84513FCA07C63AAFE671A5B39E3ADD6E903938E* L_20; L_20 = Type_GetFields_m4E3B89F0F088B46F0C2E77CA537179C30AC5B372(L_19, /*hidden argument*/NULL); V_5 = L_20; V_2 = 0; goto IL_0096; } IL_006b: { // foreach (FieldInfo f_info in FieldInfoU5BU5D_tD84513FCA07C63AAFE671A5B39E3ADD6E903938E* L_21 = V_5; int32_t L_22 = V_2; NullCheck(L_21); int32_t L_23 = L_22; FieldInfo_t * L_24 = (L_21)->GetAt(static_cast(L_23)); V_6 = L_24; // PropertyMetadata p_data = new PropertyMetadata (); il2cpp_codegen_initobj((&V_7), sizeof(PropertyMetadata_t82F32770B33750701D575D2F6E092A8F1EA7858F )); // p_data.Info = f_info; FieldInfo_t * L_25 = V_6; (&V_7)->set_Info_0(L_25); // p_data.IsField = true; (&V_7)->set_IsField_1((bool)1); // props.Add (p_data); RuntimeObject* L_26 = V_0; PropertyMetadata_t82F32770B33750701D575D2F6E092A8F1EA7858F L_27 = V_7; NullCheck(L_26); InterfaceActionInvoker1< PropertyMetadata_t82F32770B33750701D575D2F6E092A8F1EA7858F >::Invoke(2 /* System.Void System.Collections.Generic.ICollection`1::Add(!0) */, ICollection_1_tC10574690E5689A8AF8F6E2F0674E0CEE77C04BE_il2cpp_TypeInfo_var, L_26, L_27); int32_t L_28 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)1)); } IL_0096: { // foreach (FieldInfo f_info in int32_t L_29 = V_2; FieldInfoU5BU5D_tD84513FCA07C63AAFE671A5B39E3ADD6E903938E* L_30 = V_5; NullCheck(L_30); if ((((int32_t)L_29) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_30)->max_length)))))) { goto IL_006b; } } { // lock (type_properties_lock) { IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject * L_31 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_type_properties_lock_13(); V_8 = L_31; V_9 = (bool)0; } IL_00a7: try {// begin try (depth: 1) { RuntimeObject * L_32 = V_8; Monitor_Enter_mBEB6CC84184B46F26375EC3FC8921D16E48EA4C4(L_32, (bool*)(&V_9), /*hidden argument*/NULL); } IL_00b0: try {// begin try (depth: 2) // type_properties.Add (type, props); IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_33 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_type_properties_12(); Type_t * L_34 = ___type0; RuntimeObject* L_35 = V_0; NullCheck(L_33); InterfaceActionInvoker2< Type_t *, RuntimeObject* >::Invoke(5 /* System.Void System.Collections.Generic.IDictionary`2>::Add(!0,!1) */, IDictionary_2_t16CDACDB46F2C22D302194A4E428A5CACCEB02F1_il2cpp_TypeInfo_var, L_33, L_34, L_35); // } catch (ArgumentException) { IL2CPP_LEAVE(0xCD, FINALLY_00c1); }// end try (depth: 2) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_00be; } throw e; } CATCH_00be: {// begin catch(System.ArgumentException) // } catch (ArgumentException) { // return; IL2CPP_POP_ACTIVE_EXCEPTION(); IL2CPP_LEAVE(0xCD, FINALLY_00c1); }// end catch (depth: 2) }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00c1; } FINALLY_00c1: {// begin finally (depth: 1) { bool L_36 = V_9; if (!L_36) { goto IL_00cc; } } IL_00c5: { RuntimeObject * L_37 = V_8; Monitor_Exit_mA776B403DA88AC77CDEEF67AB9F0D0E77ABD254A(L_37, /*hidden argument*/NULL); } IL_00cc: { IL2CPP_END_FINALLY(193) } }// end finally (depth: 1) IL2CPP_CLEANUP(193) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0xCD, IL_00cd) } IL_00cd: { // } return; } } // System.Reflection.MethodInfo LitJson.JsonMapper::GetConvOp(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * JsonMapper_GetConvOp_mAD108C9536C3ECB5F81A0DA26EE36077B19C30CD (Type_t * ___t10, Type_t * ___t21, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_mDA11F9C0AC023D35E8894E3DB7A7EE64EC772754_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_tF9B9899EA776F69E6DCE288DC87C61D47E3D8A57_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_tD1343974D8E73F191FA522E7396756FE56054410_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_tF18CA5AA122FDD12A1A3DEDDEC417CC451BE7354_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral437906DA6527EA9BAA9A971EC5171183BEB85B59); s_Il2CppMethodInitialized = true; } MethodInfo_t * V_0 = NULL; RuntimeObject * V_1 = NULL; bool V_2 = false; MethodInfo_t * V_3 = NULL; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; { // lock (conv_ops_lock) { IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject * L_0 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_conv_ops_lock_9(); V_1 = L_0; V_2 = (bool)0; } IL_0008: try {// begin try (depth: 1) { RuntimeObject * L_1 = V_1; Monitor_Enter_mBEB6CC84184B46F26375EC3FC8921D16E48EA4C4(L_1, (bool*)(&V_2), /*hidden argument*/NULL); // if (! conv_ops.ContainsKey (t1)) IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_2 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_conv_ops_8(); Type_t * L_3 = ___t10; NullCheck(L_2); bool L_4; L_4 = InterfaceFuncInvoker1< bool, Type_t * >::Invoke(4 /* System.Boolean System.Collections.Generic.IDictionary`2>::ContainsKey(!0) */, IDictionary_2_tF18CA5AA122FDD12A1A3DEDDEC417CC451BE7354_il2cpp_TypeInfo_var, L_2, L_3); if (L_4) { goto IL_002d; } } IL_001d: { // conv_ops.Add (t1, new Dictionary ()); IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_5 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_conv_ops_8(); Type_t * L_6 = ___t10; Dictionary_2_tF9B9899EA776F69E6DCE288DC87C61D47E3D8A57 * L_7 = (Dictionary_2_tF9B9899EA776F69E6DCE288DC87C61D47E3D8A57 *)il2cpp_codegen_object_new(Dictionary_2_tF9B9899EA776F69E6DCE288DC87C61D47E3D8A57_il2cpp_TypeInfo_var); Dictionary_2__ctor_mDA11F9C0AC023D35E8894E3DB7A7EE64EC772754(L_7, /*hidden argument*/Dictionary_2__ctor_mDA11F9C0AC023D35E8894E3DB7A7EE64EC772754_RuntimeMethod_var); NullCheck(L_5); InterfaceActionInvoker2< Type_t *, RuntimeObject* >::Invoke(5 /* System.Void System.Collections.Generic.IDictionary`2>::Add(!0,!1) */, IDictionary_2_tF18CA5AA122FDD12A1A3DEDDEC417CC451BE7354_il2cpp_TypeInfo_var, L_5, L_6, L_7); } IL_002d: { // } IL2CPP_LEAVE(0x39, FINALLY_002f); } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_002f; } FINALLY_002f: {// begin finally (depth: 1) { bool L_8 = V_2; if (!L_8) { goto IL_0038; } } IL_0032: { RuntimeObject * L_9 = V_1; Monitor_Exit_mA776B403DA88AC77CDEEF67AB9F0D0E77ABD254A(L_9, /*hidden argument*/NULL); } IL_0038: { IL2CPP_END_FINALLY(47) } }// end finally (depth: 1) IL2CPP_CLEANUP(47) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x39, IL_0039) } IL_0039: { // if (conv_ops[t1].ContainsKey (t2)) IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_10 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_conv_ops_8(); Type_t * L_11 = ___t10; NullCheck(L_10); RuntimeObject* L_12; L_12 = InterfaceFuncInvoker1< RuntimeObject*, Type_t * >::Invoke(0 /* !1 System.Collections.Generic.IDictionary`2>::get_Item(!0) */, IDictionary_2_tF18CA5AA122FDD12A1A3DEDDEC417CC451BE7354_il2cpp_TypeInfo_var, L_10, L_11); Type_t * L_13 = ___t21; NullCheck(L_12); bool L_14; L_14 = InterfaceFuncInvoker1< bool, Type_t * >::Invoke(4 /* System.Boolean System.Collections.Generic.IDictionary`2::ContainsKey(!0) */, IDictionary_2_tD1343974D8E73F191FA522E7396756FE56054410_il2cpp_TypeInfo_var, L_12, L_13); if (!L_14) { goto IL_005e; } } { // return conv_ops[t1][t2]; IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_15 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_conv_ops_8(); Type_t * L_16 = ___t10; NullCheck(L_15); RuntimeObject* L_17; L_17 = InterfaceFuncInvoker1< RuntimeObject*, Type_t * >::Invoke(0 /* !1 System.Collections.Generic.IDictionary`2>::get_Item(!0) */, IDictionary_2_tF18CA5AA122FDD12A1A3DEDDEC417CC451BE7354_il2cpp_TypeInfo_var, L_15, L_16); Type_t * L_18 = ___t21; NullCheck(L_17); MethodInfo_t * L_19; L_19 = InterfaceFuncInvoker1< MethodInfo_t *, Type_t * >::Invoke(0 /* !1 System.Collections.Generic.IDictionary`2::get_Item(!0) */, IDictionary_2_tD1343974D8E73F191FA522E7396756FE56054410_il2cpp_TypeInfo_var, L_17, L_18); return L_19; } IL_005e: { // MethodInfo op = // #if NETFX_CORE // t1.GetRuntimeMethod ("op_Implicit", new Type[] { t2 }); // #else // t1.GetMethod("op_Implicit", new Type[] { t2 }); Type_t * L_20 = ___t10; TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_21 = (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)SZArrayNew(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755_il2cpp_TypeInfo_var, (uint32_t)1); TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_22 = L_21; Type_t * L_23 = ___t21; NullCheck(L_22); ArrayElementTypeCheck (L_22, L_23); (L_22)->SetAt(static_cast(0), (Type_t *)L_23); NullCheck(L_20); MethodInfo_t * L_24; L_24 = Type_GetMethod_mDA3E2A83228C0493894D40D02963D7B07C7B058E(L_20, _stringLiteral437906DA6527EA9BAA9A971EC5171183BEB85B59, L_22, /*hidden argument*/NULL); V_0 = L_24; // lock (conv_ops_lock) { IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject * L_25 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_conv_ops_lock_9(); V_1 = L_25; V_2 = (bool)0; } IL_007c: try {// begin try (depth: 1) { RuntimeObject * L_26 = V_1; Monitor_Enter_mBEB6CC84184B46F26375EC3FC8921D16E48EA4C4(L_26, (bool*)(&V_2), /*hidden argument*/NULL); } IL_0084: try {// begin try (depth: 2) // conv_ops[t1].Add (t2, op); IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_27 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_conv_ops_8(); Type_t * L_28 = ___t10; NullCheck(L_27); RuntimeObject* L_29; L_29 = InterfaceFuncInvoker1< RuntimeObject*, Type_t * >::Invoke(0 /* !1 System.Collections.Generic.IDictionary`2>::get_Item(!0) */, IDictionary_2_tF18CA5AA122FDD12A1A3DEDDEC417CC451BE7354_il2cpp_TypeInfo_var, L_27, L_28); Type_t * L_30 = ___t21; MethodInfo_t * L_31 = V_0; NullCheck(L_29); InterfaceActionInvoker2< Type_t *, MethodInfo_t * >::Invoke(5 /* System.Void System.Collections.Generic.IDictionary`2::Add(!0,!1) */, IDictionary_2_tD1343974D8E73F191FA522E7396756FE56054410_il2cpp_TypeInfo_var, L_29, L_30, L_31); // } catch (ArgumentException) { IL2CPP_LEAVE(0xB7, FINALLY_00ad); }// end try (depth: 2) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0098; } throw e; } CATCH_0098: {// begin catch(System.ArgumentException) // } catch (ArgumentException) { // return conv_ops[t1][t2]; IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))); RuntimeObject* L_32 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))))->get_conv_ops_8(); Type_t * L_33 = ___t10; NullCheck(L_32); RuntimeObject* L_34; L_34 = InterfaceFuncInvoker1< RuntimeObject*, Type_t * >::Invoke(0 /* !1 System.Collections.Generic.IDictionary`2>::get_Item(!0) */, ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IDictionary_2_tF18CA5AA122FDD12A1A3DEDDEC417CC451BE7354_il2cpp_TypeInfo_var)), L_32, L_33); Type_t * L_35 = ___t21; NullCheck(L_34); MethodInfo_t * L_36; L_36 = InterfaceFuncInvoker1< MethodInfo_t *, Type_t * >::Invoke(0 /* !1 System.Collections.Generic.IDictionary`2::get_Item(!0) */, ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IDictionary_2_tD1343974D8E73F191FA522E7396756FE56054410_il2cpp_TypeInfo_var)), L_34, L_35); V_3 = L_36; IL2CPP_POP_ACTIVE_EXCEPTION(); IL2CPP_LEAVE(0xB9, FINALLY_00ad); }// end catch (depth: 2) }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00ad; } FINALLY_00ad: {// begin finally (depth: 1) { bool L_37 = V_2; if (!L_37) { goto IL_00b6; } } IL_00b0: { RuntimeObject * L_38 = V_1; Monitor_Exit_mA776B403DA88AC77CDEEF67AB9F0D0E77ABD254A(L_38, /*hidden argument*/NULL); } IL_00b6: { IL2CPP_END_FINALLY(173) } }// end finally (depth: 1) IL2CPP_CLEANUP(173) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0xB7, IL_00b7) IL2CPP_JUMP_TBL(0xB9, IL_00b9) } IL_00b7: { // return op; MethodInfo_t * L_39 = V_0; return L_39; } IL_00b9: { // } MethodInfo_t * L_40 = V_3; return L_40; } } // System.Object LitJson.JsonMapper::ReadValue(System.Type,LitJson.JsonReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JsonMapper_ReadValue_mAFB51230BD1563167F207F1BE32BEA869ED3368B (Type_t * ___inst_type0, JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * ___reader1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t692011309BA94F599C6042A381FC9F8B3CB08399_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enum_t23B90B40F60E677A8025267341651C94AE079CDA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FieldInfo_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_tC1E1DED86C0A66845675392606B302452210D5DA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_t1A4BDA70AEEDCCFB8771B529481FAF6F64C8D648_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_t4C0E889AA23D9590A60247E7F731BBA09868028B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_t59EECA278A417E0FF1F940F199642DCC95B4933D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_t99C107346145E7116FEB5DE73BBCC65AD5D6B262_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_tF27308BB3222A674775FAEEE05A80B858247C394_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_tB15A9D6625D09661D6E47976BB626C703EC81910_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyInfo_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeArray_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral94152201B24834B0EF60CA96399C126BAED45FB6); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; Type_t * V_1 = NULL; MethodInfo_t * V_2 = NULL; ArrayMetadata_tF0CA4EA5DDA5A3A4E7FFF5549F3807D19592A4B9 V_3; memset((&V_3), 0, sizeof(V_3)); RuntimeObject* V_4 = NULL; Type_t * V_5 = NULL; RuntimeObject * V_6 = NULL; int32_t V_7 = 0; int32_t V_8 = 0; ObjectMetadata_tCC476FD33189C604471B5B5D5ECF7AF098B0DB62 V_9; memset((&V_9), 0, sizeof(V_9)); String_t* V_10 = NULL; PropertyMetadata_t82F32770B33750701D575D2F6E092A8F1EA7858F V_11; memset((&V_11), 0, sizeof(V_11)); PropertyInfo_t * V_12 = NULL; { // reader.Read (); JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_0 = ___reader1; NullCheck(L_0); bool L_1; L_1 = JsonReader_Read_m47DD03DE2A2127A1A723BD6D564D97D07BE1E610(L_0, /*hidden argument*/NULL); // if (reader.Token == JsonToken.ArrayEnd) JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_2 = ___reader1; NullCheck(L_2); int32_t L_3; L_3 = JsonReader_get_Token_m99F431E80F34EC42D60383A0C5D664C88BB6DBE2_inline(L_2, /*hidden argument*/NULL); if ((!(((uint32_t)L_3) == ((uint32_t)5)))) { goto IL_0012; } } { // return null; return NULL; } IL_0012: { // if (reader.Token == JsonToken.Null) { JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_4 = ___reader1; NullCheck(L_4); int32_t L_5; L_5 = JsonReader_get_Token_m99F431E80F34EC42D60383A0C5D664C88BB6DBE2_inline(L_4, /*hidden argument*/NULL); if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)11))))) { goto IL_0037; } } { // if (! inst_type.IsClass) Type_t * L_6 = ___inst_type0; NullCheck(L_6); bool L_7; L_7 = Type_get_IsClass_m2D39ED0DAFC534D527F8B019DA8B90859A7CA787(L_6, /*hidden argument*/NULL); if (L_7) { goto IL_0035; } } { // throw new JsonException (String.Format ( // "Can't assign null to an instance of type {0}", // inst_type)); Type_t * L_8 = ___inst_type0; String_t* L_9; L_9 = String_Format_mB3D38E5238C3164DB4D7D29339D9E225A4496D17(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC2B624A34AE5F3AF1DE39F5AA12C5DBF59299E28)), L_8, /*hidden argument*/NULL); JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C * L_10 = (JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C_il2cpp_TypeInfo_var))); JsonException__ctor_m10E9DE1ED8CA46DD4DC5EFDC5825C456B7FC7932(L_10, L_9, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonMapper_ReadValue_mAFB51230BD1563167F207F1BE32BEA869ED3368B_RuntimeMethod_var))); } IL_0035: { // return null; return NULL; } IL_0037: { // if (reader.Token == JsonToken.Double || // reader.Token == JsonToken.Int || // reader.Token == JsonToken.Long || // reader.Token == JsonToken.String || // reader.Token == JsonToken.Boolean) { JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_11 = ___reader1; NullCheck(L_11); int32_t L_12; L_12 = JsonReader_get_Token_m99F431E80F34EC42D60383A0C5D664C88BB6DBE2_inline(L_11, /*hidden argument*/NULL); if ((((int32_t)L_12) == ((int32_t)8))) { goto IL_0069; } } { JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_13 = ___reader1; NullCheck(L_13); int32_t L_14; L_14 = JsonReader_get_Token_m99F431E80F34EC42D60383A0C5D664C88BB6DBE2_inline(L_13, /*hidden argument*/NULL); if ((((int32_t)L_14) == ((int32_t)6))) { goto IL_0069; } } { JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_15 = ___reader1; NullCheck(L_15); int32_t L_16; L_16 = JsonReader_get_Token_m99F431E80F34EC42D60383A0C5D664C88BB6DBE2_inline(L_15, /*hidden argument*/NULL); if ((((int32_t)L_16) == ((int32_t)7))) { goto IL_0069; } } { JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_17 = ___reader1; NullCheck(L_17); int32_t L_18; L_18 = JsonReader_get_Token_m99F431E80F34EC42D60383A0C5D664C88BB6DBE2_inline(L_17, /*hidden argument*/NULL); if ((((int32_t)L_18) == ((int32_t)((int32_t)9)))) { goto IL_0069; } } { JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_19 = ___reader1; NullCheck(L_19); int32_t L_20; L_20 = JsonReader_get_Token_m99F431E80F34EC42D60383A0C5D664C88BB6DBE2_inline(L_19, /*hidden argument*/NULL); if ((!(((uint32_t)L_20) == ((uint32_t)((int32_t)10))))) { goto IL_0154; } } IL_0069: { // Type json_type = reader.Value.GetType (); JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_21 = ___reader1; NullCheck(L_21); RuntimeObject * L_22; L_22 = JsonReader_get_Value_m41A4AF5CA872B017E062E2CCCEB83398F5B4F419_inline(L_21, /*hidden argument*/NULL); NullCheck(L_22); Type_t * L_23; L_23 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_22, /*hidden argument*/NULL); V_1 = L_23; // if (inst_type.IsAssignableFrom(json_type)) Type_t * L_24 = ___inst_type0; Type_t * L_25 = V_1; NullCheck(L_24); bool L_26; L_26 = VirtualFuncInvoker1< bool, Type_t * >::Invoke(121 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_24, L_25); if (!L_26) { goto IL_0085; } } { // return reader.Value; JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_27 = ___reader1; NullCheck(L_27); RuntimeObject * L_28; L_28 = JsonReader_get_Value_m41A4AF5CA872B017E062E2CCCEB83398F5B4F419_inline(L_27, /*hidden argument*/NULL); return L_28; } IL_0085: { // if (custom_importers_table.ContainsKey (json_type) && // custom_importers_table[json_type].ContainsKey ( // inst_type)) { IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_29 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_custom_importers_table_5(); Type_t * L_30 = V_1; NullCheck(L_29); bool L_31; L_31 = InterfaceFuncInvoker1< bool, Type_t * >::Invoke(4 /* System.Boolean System.Collections.Generic.IDictionary`2>::ContainsKey(!0) */, IDictionary_2_tF27308BB3222A674775FAEEE05A80B858247C394_il2cpp_TypeInfo_var, L_29, L_30); if (!L_31) { goto IL_00c2; } } { IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_32 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_custom_importers_table_5(); Type_t * L_33 = V_1; NullCheck(L_32); RuntimeObject* L_34; L_34 = InterfaceFuncInvoker1< RuntimeObject*, Type_t * >::Invoke(0 /* !1 System.Collections.Generic.IDictionary`2>::get_Item(!0) */, IDictionary_2_tF27308BB3222A674775FAEEE05A80B858247C394_il2cpp_TypeInfo_var, L_32, L_33); Type_t * L_35 = ___inst_type0; NullCheck(L_34); bool L_36; L_36 = InterfaceFuncInvoker1< bool, Type_t * >::Invoke(4 /* System.Boolean System.Collections.Generic.IDictionary`2::ContainsKey(!0) */, IDictionary_2_t1A4BDA70AEEDCCFB8771B529481FAF6F64C8D648_il2cpp_TypeInfo_var, L_34, L_35); if (!L_36) { goto IL_00c2; } } { // ImporterFunc importer = // custom_importers_table[json_type][inst_type]; IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_37 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_custom_importers_table_5(); Type_t * L_38 = V_1; NullCheck(L_37); RuntimeObject* L_39; L_39 = InterfaceFuncInvoker1< RuntimeObject*, Type_t * >::Invoke(0 /* !1 System.Collections.Generic.IDictionary`2>::get_Item(!0) */, IDictionary_2_tF27308BB3222A674775FAEEE05A80B858247C394_il2cpp_TypeInfo_var, L_37, L_38); Type_t * L_40 = ___inst_type0; NullCheck(L_39); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_41; L_41 = InterfaceFuncInvoker1< ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D *, Type_t * >::Invoke(0 /* !1 System.Collections.Generic.IDictionary`2::get_Item(!0) */, IDictionary_2_t1A4BDA70AEEDCCFB8771B529481FAF6F64C8D648_il2cpp_TypeInfo_var, L_39, L_40); // return importer (reader.Value); JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_42 = ___reader1; NullCheck(L_42); RuntimeObject * L_43; L_43 = JsonReader_get_Value_m41A4AF5CA872B017E062E2CCCEB83398F5B4F419_inline(L_42, /*hidden argument*/NULL); NullCheck(L_41); RuntimeObject * L_44; L_44 = ImporterFunc_Invoke_m5D419F99EC18670E9A6D9AA2A53807D6F03F39BA(L_41, L_43, /*hidden argument*/NULL); return L_44; } IL_00c2: { // if (base_importers_table.ContainsKey (json_type) && // base_importers_table[json_type].ContainsKey ( // inst_type)) { IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_45 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_base_importers_table_4(); Type_t * L_46 = V_1; NullCheck(L_45); bool L_47; L_47 = InterfaceFuncInvoker1< bool, Type_t * >::Invoke(4 /* System.Boolean System.Collections.Generic.IDictionary`2>::ContainsKey(!0) */, IDictionary_2_tF27308BB3222A674775FAEEE05A80B858247C394_il2cpp_TypeInfo_var, L_45, L_46); if (!L_47) { goto IL_00ff; } } { IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_48 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_base_importers_table_4(); Type_t * L_49 = V_1; NullCheck(L_48); RuntimeObject* L_50; L_50 = InterfaceFuncInvoker1< RuntimeObject*, Type_t * >::Invoke(0 /* !1 System.Collections.Generic.IDictionary`2>::get_Item(!0) */, IDictionary_2_tF27308BB3222A674775FAEEE05A80B858247C394_il2cpp_TypeInfo_var, L_48, L_49); Type_t * L_51 = ___inst_type0; NullCheck(L_50); bool L_52; L_52 = InterfaceFuncInvoker1< bool, Type_t * >::Invoke(4 /* System.Boolean System.Collections.Generic.IDictionary`2::ContainsKey(!0) */, IDictionary_2_t1A4BDA70AEEDCCFB8771B529481FAF6F64C8D648_il2cpp_TypeInfo_var, L_50, L_51); if (!L_52) { goto IL_00ff; } } { // ImporterFunc importer = // base_importers_table[json_type][inst_type]; IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_53 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_base_importers_table_4(); Type_t * L_54 = V_1; NullCheck(L_53); RuntimeObject* L_55; L_55 = InterfaceFuncInvoker1< RuntimeObject*, Type_t * >::Invoke(0 /* !1 System.Collections.Generic.IDictionary`2>::get_Item(!0) */, IDictionary_2_tF27308BB3222A674775FAEEE05A80B858247C394_il2cpp_TypeInfo_var, L_53, L_54); Type_t * L_56 = ___inst_type0; NullCheck(L_55); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_57; L_57 = InterfaceFuncInvoker1< ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D *, Type_t * >::Invoke(0 /* !1 System.Collections.Generic.IDictionary`2::get_Item(!0) */, IDictionary_2_t1A4BDA70AEEDCCFB8771B529481FAF6F64C8D648_il2cpp_TypeInfo_var, L_55, L_56); // return importer (reader.Value); JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_58 = ___reader1; NullCheck(L_58); RuntimeObject * L_59; L_59 = JsonReader_get_Value_m41A4AF5CA872B017E062E2CCCEB83398F5B4F419_inline(L_58, /*hidden argument*/NULL); NullCheck(L_57); RuntimeObject * L_60; L_60 = ImporterFunc_Invoke_m5D419F99EC18670E9A6D9AA2A53807D6F03F39BA(L_57, L_59, /*hidden argument*/NULL); return L_60; } IL_00ff: { // if (inst_type.IsEnum) Type_t * L_61 = ___inst_type0; NullCheck(L_61); bool L_62; L_62 = VirtualFuncInvoker0< bool >::Invoke(80 /* System.Boolean System.Type::get_IsEnum() */, L_61); if (!L_62) { goto IL_0114; } } { // return Enum.ToObject (inst_type, reader.Value); Type_t * L_63 = ___inst_type0; JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_64 = ___reader1; NullCheck(L_64); RuntimeObject * L_65; L_65 = JsonReader_get_Value_m41A4AF5CA872B017E062E2CCCEB83398F5B4F419_inline(L_64, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Enum_t23B90B40F60E677A8025267341651C94AE079CDA_il2cpp_TypeInfo_var); RuntimeObject * L_66; L_66 = Enum_ToObject_m2A05590A0D581206AAEB48B89187FD175D5F0967(L_63, L_65, /*hidden argument*/NULL); return L_66; } IL_0114: { // MethodInfo conv_op = GetConvOp (inst_type, json_type); Type_t * L_67 = ___inst_type0; Type_t * L_68 = V_1; IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); MethodInfo_t * L_69; L_69 = JsonMapper_GetConvOp_mAD108C9536C3ECB5F81A0DA26EE36077B19C30CD(L_67, L_68, /*hidden argument*/NULL); V_2 = L_69; // if (conv_op != null) MethodInfo_t * L_70 = V_2; bool L_71; L_71 = MethodInfo_op_Inequality_mDE1DAA5D330E9C975AC6423FC2D06862637BE68D(L_70, (MethodInfo_t *)NULL, /*hidden argument*/NULL); if (!L_71) { goto IL_013c; } } { // return conv_op.Invoke (null, // new object[] { reader.Value }); MethodInfo_t * L_72 = V_2; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_73 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_74 = L_73; JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_75 = ___reader1; NullCheck(L_75); RuntimeObject * L_76; L_76 = JsonReader_get_Value_m41A4AF5CA872B017E062E2CCCEB83398F5B4F419_inline(L_75, /*hidden argument*/NULL); NullCheck(L_74); ArrayElementTypeCheck (L_74, L_76); (L_74)->SetAt(static_cast(0), (RuntimeObject *)L_76); NullCheck(L_72); RuntimeObject * L_77; L_77 = MethodBase_Invoke_m5DA5E74F34F8FFA8133445BAE0266FD54F7D4EB3(L_72, NULL, L_74, /*hidden argument*/NULL); return L_77; } IL_013c: { // throw new JsonException (String.Format ( // "Can't assign value '{0}' (type {1}) to type {2}", // reader.Value, json_type, inst_type)); JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_78 = ___reader1; NullCheck(L_78); RuntimeObject * L_79; L_79 = JsonReader_get_Value_m41A4AF5CA872B017E062E2CCCEB83398F5B4F419_inline(L_78, /*hidden argument*/NULL); Type_t * L_80 = V_1; Type_t * L_81 = ___inst_type0; String_t* L_82; L_82 = String_Format_m039737CCD992C5BFC8D16DFD681F5E8786E87FA6(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF7E5EFDC670ACA0D3155DEFB95477AD16E9744EB)), L_79, L_80, L_81, /*hidden argument*/NULL); JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C * L_83 = (JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C_il2cpp_TypeInfo_var))); JsonException__ctor_m10E9DE1ED8CA46DD4DC5EFDC5825C456B7FC7932(L_83, L_82, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_83, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonMapper_ReadValue_mAFB51230BD1563167F207F1BE32BEA869ED3368B_RuntimeMethod_var))); } IL_0154: { // object instance = null; V_0 = NULL; // if (reader.Token == JsonToken.ArrayStart) { JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_84 = ___reader1; NullCheck(L_84); int32_t L_85; L_85 = JsonReader_get_Token_m99F431E80F34EC42D60383A0C5D664C88BB6DBE2_inline(L_84, /*hidden argument*/NULL); if ((!(((uint32_t)L_85) == ((uint32_t)4)))) { goto IL_0258; } } { // if (inst_type.FullName == "System.Object") Type_t * L_86 = ___inst_type0; NullCheck(L_86); String_t* L_87; L_87 = VirtualFuncInvoker0< String_t* >::Invoke(27 /* System.String System.Type::get_FullName() */, L_86); bool L_88; L_88 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_87, _stringLiteral94152201B24834B0EF60CA96399C126BAED45FB6, /*hidden argument*/NULL); if (!L_88) { goto IL_0180; } } { // inst_type = typeof(object[]); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_89 = { reinterpret_cast (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_90; L_90 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_89, /*hidden argument*/NULL); ___inst_type0 = L_90; } IL_0180: { // AddArrayMetadata (inst_type); Type_t * L_91 = ___inst_type0; IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); JsonMapper_AddArrayMetadata_mC8A79B845D2850C7F20F368AA0793578D1FDF1C7(L_91, /*hidden argument*/NULL); // ArrayMetadata t_data = array_metadata[inst_type]; RuntimeObject* L_92 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_array_metadata_6(); Type_t * L_93 = ___inst_type0; NullCheck(L_92); ArrayMetadata_tF0CA4EA5DDA5A3A4E7FFF5549F3807D19592A4B9 L_94; L_94 = InterfaceFuncInvoker1< ArrayMetadata_tF0CA4EA5DDA5A3A4E7FFF5549F3807D19592A4B9 , Type_t * >::Invoke(0 /* !1 System.Collections.Generic.IDictionary`2::get_Item(!0) */, IDictionary_2_t59EECA278A417E0FF1F940F199642DCC95B4933D_il2cpp_TypeInfo_var, L_92, L_93); V_3 = L_94; // if (! t_data.IsArray && ! t_data.IsList) bool L_95; L_95 = ArrayMetadata_get_IsArray_m73E4CD96BA590BF64CCFA708DE4C6719BB129C3E_inline((ArrayMetadata_tF0CA4EA5DDA5A3A4E7FFF5549F3807D19592A4B9 *)(&V_3), /*hidden argument*/NULL); if (L_95) { goto IL_01b5; } } { bool L_96; L_96 = ArrayMetadata_get_IsList_m81203F474BBD2F7CF104919580A49A8F9AD6D09A_inline((ArrayMetadata_tF0CA4EA5DDA5A3A4E7FFF5549F3807D19592A4B9 *)(&V_3), /*hidden argument*/NULL); if (L_96) { goto IL_01b5; } } { // throw new JsonException (String.Format ( // "Type {0} can't act as an array", // inst_type)); Type_t * L_97 = ___inst_type0; String_t* L_98; L_98 = String_Format_mB3D38E5238C3164DB4D7D29339D9E225A4496D17(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAB6E8D33884A8AB4625102A8EEE80D34FD589540)), L_97, /*hidden argument*/NULL); JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C * L_99 = (JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C_il2cpp_TypeInfo_var))); JsonException__ctor_m10E9DE1ED8CA46DD4DC5EFDC5825C456B7FC7932(L_99, L_98, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_99, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonMapper_ReadValue_mAFB51230BD1563167F207F1BE32BEA869ED3368B_RuntimeMethod_var))); } IL_01b5: { // if (! t_data.IsArray) { bool L_100; L_100 = ArrayMetadata_get_IsArray_m73E4CD96BA590BF64CCFA708DE4C6719BB129C3E_inline((ArrayMetadata_tF0CA4EA5DDA5A3A4E7FFF5549F3807D19592A4B9 *)(&V_3), /*hidden argument*/NULL); if (L_100) { goto IL_01d6; } } { // list = (IList) Activator.CreateInstance (inst_type); Type_t * L_101 = ___inst_type0; RuntimeObject * L_102; L_102 = Activator_CreateInstance_m1BACAB5F4FBF138CCCB537DDCB0683A2AC064295(L_101, /*hidden argument*/NULL); V_4 = ((RuntimeObject*)Castclass((RuntimeObject*)L_102, IList_tB15A9D6625D09661D6E47976BB626C703EC81910_il2cpp_TypeInfo_var)); // elem_type = t_data.ElementType; Type_t * L_103; L_103 = ArrayMetadata_get_ElementType_m49C3EF54656E8BC0A9D23270EB40C4F2E8E9F658((ArrayMetadata_tF0CA4EA5DDA5A3A4E7FFF5549F3807D19592A4B9 *)(&V_3), /*hidden argument*/NULL); V_5 = L_103; // } else { goto IL_01e5; } IL_01d6: { // list = new System.Collections.Generic.List(); List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * L_104 = (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 *)il2cpp_codegen_object_new(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5_il2cpp_TypeInfo_var); List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B(L_104, /*hidden argument*/List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_RuntimeMethod_var); V_4 = L_104; // elem_type = inst_type.GetElementType (); Type_t * L_105 = ___inst_type0; NullCheck(L_105); Type_t * L_106; L_106 = VirtualFuncInvoker0< Type_t * >::Invoke(108 /* System.Type System.Type::GetElementType() */, L_105); V_5 = L_106; } IL_01e5: { // object item = ReadValue (elem_type, reader); Type_t * L_107 = V_5; JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_108 = ___reader1; IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject * L_109; L_109 = JsonMapper_ReadValue_mAFB51230BD1563167F207F1BE32BEA869ED3368B(L_107, L_108, /*hidden argument*/NULL); V_6 = L_109; // if (item == null && reader.Token == JsonToken.ArrayEnd) RuntimeObject * L_110 = V_6; if (L_110) { goto IL_01fc; } } { JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_111 = ___reader1; NullCheck(L_111); int32_t L_112; L_112 = JsonReader_get_Token_m99F431E80F34EC42D60383A0C5D664C88BB6DBE2_inline(L_111, /*hidden argument*/NULL); if ((((int32_t)L_112) == ((int32_t)5))) { goto IL_0208; } } IL_01fc: { // list.Add (item); RuntimeObject* L_113 = V_4; RuntimeObject * L_114 = V_6; NullCheck(L_113); int32_t L_115; L_115 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(2 /* System.Int32 System.Collections.IList::Add(System.Object) */, IList_tB15A9D6625D09661D6E47976BB626C703EC81910_il2cpp_TypeInfo_var, L_113, L_114); // while (true) { goto IL_01e5; } IL_0208: { // if (t_data.IsArray) { bool L_116; L_116 = ArrayMetadata_get_IsArray_m73E4CD96BA590BF64CCFA708DE4C6719BB129C3E_inline((ArrayMetadata_tF0CA4EA5DDA5A3A4E7FFF5549F3807D19592A4B9 *)(&V_3), /*hidden argument*/NULL); if (!L_116) { goto IL_0250; } } { // int n = list.Count; RuntimeObject* L_117 = V_4; NullCheck(L_117); int32_t L_118; L_118 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_tC1E1DED86C0A66845675392606B302452210D5DA_il2cpp_TypeInfo_var, L_117); V_7 = L_118; // instance = Array.CreateInstance (elem_type, n); Type_t * L_119 = V_5; int32_t L_120 = V_7; RuntimeArray * L_121; L_121 = Array_CreateInstance_m57AC02F4475AF70CA317B48F09B3C29E3BA9C046(L_119, L_120, /*hidden argument*/NULL); V_0 = L_121; // for (int i = 0; i < n; i++) V_8 = 0; goto IL_0245; } IL_0229: { // ((Array) instance).SetValue (list[i], i); RuntimeObject * L_122 = V_0; RuntimeObject* L_123 = V_4; int32_t L_124 = V_8; NullCheck(L_123); RuntimeObject * L_125; L_125 = InterfaceFuncInvoker1< RuntimeObject *, int32_t >::Invoke(0 /* System.Object System.Collections.IList::get_Item(System.Int32) */, IList_tB15A9D6625D09661D6E47976BB626C703EC81910_il2cpp_TypeInfo_var, L_123, L_124); int32_t L_126 = V_8; NullCheck(((RuntimeArray *)CastclassClass((RuntimeObject*)L_122, RuntimeArray_il2cpp_TypeInfo_var))); Array_SetValue_mD28884941182C5B7118CFBA3D55DB9CEA8797455(((RuntimeArray *)CastclassClass((RuntimeObject*)L_122, RuntimeArray_il2cpp_TypeInfo_var)), L_125, L_126, /*hidden argument*/NULL); // for (int i = 0; i < n; i++) int32_t L_127 = V_8; V_8 = ((int32_t)il2cpp_codegen_add((int32_t)L_127, (int32_t)1)); } IL_0245: { // for (int i = 0; i < n; i++) int32_t L_128 = V_8; int32_t L_129 = V_7; if ((((int32_t)L_128) < ((int32_t)L_129))) { goto IL_0229; } } { // } else goto IL_0399; } IL_0250: { // instance = list; RuntimeObject* L_130 = V_4; V_0 = L_130; // } else if (reader.Token == JsonToken.ObjectStart) { goto IL_0399; } IL_0258: { // } else if (reader.Token == JsonToken.ObjectStart) { JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_131 = ___reader1; NullCheck(L_131); int32_t L_132; L_132 = JsonReader_get_Token_m99F431E80F34EC42D60383A0C5D664C88BB6DBE2_inline(L_131, /*hidden argument*/NULL); if ((!(((uint32_t)L_132) == ((uint32_t)1)))) { goto IL_0399; } } { // if (inst_type == typeof(System.Object)) Type_t * L_133 = ___inst_type0; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_134 = { reinterpret_cast (RuntimeObject_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_135; L_135 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_134, /*hidden argument*/NULL); bool L_136; L_136 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046(L_133, L_135, /*hidden argument*/NULL); if (!L_136) { goto IL_0282; } } { // inst_type = typeof(Dictionary); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_137 = { reinterpret_cast (Dictionary_2_t692011309BA94F599C6042A381FC9F8B3CB08399_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_138; L_138 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_137, /*hidden argument*/NULL); ___inst_type0 = L_138; } IL_0282: { // AddObjectMetadata (inst_type); Type_t * L_139 = ___inst_type0; IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); JsonMapper_AddObjectMetadata_m9EA6E58A83411B87D2A00E5BB3E271B5D708EE51(L_139, /*hidden argument*/NULL); // ObjectMetadata t_data = object_metadata[inst_type]; RuntimeObject* L_140 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_object_metadata_10(); Type_t * L_141 = ___inst_type0; NullCheck(L_140); ObjectMetadata_tCC476FD33189C604471B5B5D5ECF7AF098B0DB62 L_142; L_142 = InterfaceFuncInvoker1< ObjectMetadata_tCC476FD33189C604471B5B5D5ECF7AF098B0DB62 , Type_t * >::Invoke(0 /* !1 System.Collections.Generic.IDictionary`2::get_Item(!0) */, IDictionary_2_t4C0E889AA23D9590A60247E7F731BBA09868028B_il2cpp_TypeInfo_var, L_140, L_141); V_9 = L_142; // instance = Activator.CreateInstance (inst_type); Type_t * L_143 = ___inst_type0; RuntimeObject * L_144; L_144 = Activator_CreateInstance_m1BACAB5F4FBF138CCCB537DDCB0683A2AC064295(L_143, /*hidden argument*/NULL); V_0 = L_144; } IL_029c: { // reader.Read (); JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_145 = ___reader1; NullCheck(L_145); bool L_146; L_146 = JsonReader_Read_m47DD03DE2A2127A1A723BD6D564D97D07BE1E610(L_145, /*hidden argument*/NULL); // if (reader.Token == JsonToken.ObjectEnd) JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_147 = ___reader1; NullCheck(L_147); int32_t L_148; L_148 = JsonReader_get_Token_m99F431E80F34EC42D60383A0C5D664C88BB6DBE2_inline(L_147, /*hidden argument*/NULL); if ((((int32_t)L_148) == ((int32_t)3))) { goto IL_0399; } } { // string property = (string) reader.Value; JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_149 = ___reader1; NullCheck(L_149); RuntimeObject * L_150; L_150 = JsonReader_get_Value_m41A4AF5CA872B017E062E2CCCEB83398F5B4F419_inline(L_149, /*hidden argument*/NULL); V_10 = ((String_t*)CastclassSealed((RuntimeObject*)L_150, String_t_il2cpp_TypeInfo_var)); // if (t_data.Properties.ContainsKey (property)) { RuntimeObject* L_151; L_151 = ObjectMetadata_get_Properties_m807521480FEA523527B13A27B9835B920159547A_inline((ObjectMetadata_tCC476FD33189C604471B5B5D5ECF7AF098B0DB62 *)(&V_9), /*hidden argument*/NULL); String_t* L_152 = V_10; NullCheck(L_151); bool L_153; L_153 = InterfaceFuncInvoker1< bool, String_t* >::Invoke(4 /* System.Boolean System.Collections.Generic.IDictionary`2::ContainsKey(!0) */, IDictionary_2_t99C107346145E7116FEB5DE73BBCC65AD5D6B262_il2cpp_TypeInfo_var, L_151, L_152); if (!L_153) { goto IL_034b; } } { // PropertyMetadata prop_data = // t_data.Properties[property]; RuntimeObject* L_154; L_154 = ObjectMetadata_get_Properties_m807521480FEA523527B13A27B9835B920159547A_inline((ObjectMetadata_tCC476FD33189C604471B5B5D5ECF7AF098B0DB62 *)(&V_9), /*hidden argument*/NULL); String_t* L_155 = V_10; NullCheck(L_154); PropertyMetadata_t82F32770B33750701D575D2F6E092A8F1EA7858F L_156; L_156 = InterfaceFuncInvoker1< PropertyMetadata_t82F32770B33750701D575D2F6E092A8F1EA7858F , String_t* >::Invoke(0 /* !1 System.Collections.Generic.IDictionary`2::get_Item(!0) */, IDictionary_2_t99C107346145E7116FEB5DE73BBCC65AD5D6B262_il2cpp_TypeInfo_var, L_154, L_155); V_11 = L_156; // if (prop_data.IsField) { PropertyMetadata_t82F32770B33750701D575D2F6E092A8F1EA7858F L_157 = V_11; bool L_158 = L_157.get_IsField_1(); if (!L_158) { goto IL_0306; } } { // ((FieldInfo) prop_data.Info).SetValue ( // instance, ReadValue (prop_data.Type, reader)); PropertyMetadata_t82F32770B33750701D575D2F6E092A8F1EA7858F L_159 = V_11; MemberInfo_t * L_160 = L_159.get_Info_0(); RuntimeObject * L_161 = V_0; PropertyMetadata_t82F32770B33750701D575D2F6E092A8F1EA7858F L_162 = V_11; Type_t * L_163 = L_162.get_Type_2(); JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_164 = ___reader1; IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject * L_165; L_165 = JsonMapper_ReadValue_mAFB51230BD1563167F207F1BE32BEA869ED3368B(L_163, L_164, /*hidden argument*/NULL); NullCheck(((FieldInfo_t *)CastclassClass((RuntimeObject*)L_160, FieldInfo_t_il2cpp_TypeInfo_var))); FieldInfo_SetValue_mA1EFB5DA5E4B930A617744E29E909FE9DEAA663C(((FieldInfo_t *)CastclassClass((RuntimeObject*)L_160, FieldInfo_t_il2cpp_TypeInfo_var)), L_161, L_165, /*hidden argument*/NULL); // } else { goto IL_029c; } IL_0306: { // PropertyInfo p_info = // (PropertyInfo) prop_data.Info; PropertyMetadata_t82F32770B33750701D575D2F6E092A8F1EA7858F L_166 = V_11; MemberInfo_t * L_167 = L_166.get_Info_0(); V_12 = ((PropertyInfo_t *)CastclassClass((RuntimeObject*)L_167, PropertyInfo_t_il2cpp_TypeInfo_var)); // if (p_info.CanWrite) PropertyInfo_t * L_168 = V_12; NullCheck(L_168); bool L_169; L_169 = VirtualFuncInvoker0< bool >::Invoke(20 /* System.Boolean System.Reflection.PropertyInfo::get_CanWrite() */, L_168); if (!L_169) { goto IL_0338; } } { // p_info.SetValue ( // instance, // ReadValue (prop_data.Type, reader), // null); PropertyInfo_t * L_170 = V_12; RuntimeObject * L_171 = V_0; PropertyMetadata_t82F32770B33750701D575D2F6E092A8F1EA7858F L_172 = V_11; Type_t * L_173 = L_172.get_Type_2(); JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_174 = ___reader1; IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject * L_175; L_175 = JsonMapper_ReadValue_mAFB51230BD1563167F207F1BE32BEA869ED3368B(L_173, L_174, /*hidden argument*/NULL); NullCheck(L_170); VirtualActionInvoker3< RuntimeObject *, RuntimeObject *, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* >::Invoke(33 /* System.Void System.Reflection.PropertyInfo::SetValue(System.Object,System.Object,System.Object[]) */, L_170, L_171, L_175, (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)NULL); goto IL_029c; } IL_0338: { // ReadValue (prop_data.Type, reader); PropertyMetadata_t82F32770B33750701D575D2F6E092A8F1EA7858F L_176 = V_11; Type_t * L_177 = L_176.get_Type_2(); JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_178 = ___reader1; IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject * L_179; L_179 = JsonMapper_ReadValue_mAFB51230BD1563167F207F1BE32BEA869ED3368B(L_177, L_178, /*hidden argument*/NULL); // } else { goto IL_029c; } IL_034b: { // if (! t_data.IsDictionary) { bool L_180; L_180 = ObjectMetadata_get_IsDictionary_mB0EEA3B92DA70BD1EACE8198B060EB69359F3EEA_inline((ObjectMetadata_tCC476FD33189C604471B5B5D5ECF7AF098B0DB62 *)(&V_9), /*hidden argument*/NULL); if (L_180) { goto IL_037a; } } { // if (! reader.SkipNonMembers) { JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_181 = ___reader1; NullCheck(L_181); bool L_182; L_182 = JsonReader_get_SkipNonMembers_m7502484B14185A0B54F14903DC857CE1F8195CEC_inline(L_181, /*hidden argument*/NULL); if (L_182) { goto IL_036f; } } { // throw new JsonException (String.Format ( // "The type {0} doesn't have the " + // "property '{1}'", // inst_type, property)); Type_t * L_183 = ___inst_type0; String_t* L_184 = V_10; String_t* L_185; L_185 = String_Format_m8D1CB0410C35E052A53AE957C914C841E54BAB66(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3898E7D2C1147692B865B70C530E4BB2264D9234)), L_183, L_184, /*hidden argument*/NULL); JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C * L_186 = (JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C_il2cpp_TypeInfo_var))); JsonException__ctor_m10E9DE1ED8CA46DD4DC5EFDC5825C456B7FC7932(L_186, L_185, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_186, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonMapper_ReadValue_mAFB51230BD1563167F207F1BE32BEA869ED3368B_RuntimeMethod_var))); } IL_036f: { // ReadSkip (reader); JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_187 = ___reader1; IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); JsonMapper_ReadSkip_m1D88148DBC55A4A2D3A8920F76B9B5EA08C0C606(L_187, /*hidden argument*/NULL); // continue; goto IL_029c; } IL_037a: { // ((IDictionary) instance).Add ( // property, ReadValue ( // t_data.ElementType, reader)); RuntimeObject * L_188 = V_0; String_t* L_189 = V_10; Type_t * L_190; L_190 = ObjectMetadata_get_ElementType_m9C2D3A36995064670454FACC0239F7FC4972FE0B((ObjectMetadata_tCC476FD33189C604471B5B5D5ECF7AF098B0DB62 *)(&V_9), /*hidden argument*/NULL); JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_191 = ___reader1; IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject * L_192; L_192 = JsonMapper_ReadValue_mAFB51230BD1563167F207F1BE32BEA869ED3368B(L_190, L_191, /*hidden argument*/NULL); NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_188, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var))); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_188, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var)), L_189, L_192); // while (true) { goto IL_029c; } IL_0399: { // return instance; RuntimeObject * L_193 = V_0; return L_193; } } // LitJson.IJsonWrapper LitJson.JsonMapper::ReadValue(LitJson.WrapperFactory,LitJson.JsonReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonMapper_ReadValue_m90F55D903FF73E163375A52F6F9C3CA9DD0B365C (WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C * ___factory0, JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * ___reader1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IJsonWrapper_tB61715FD55AC86C87980FB4363433C0376095ADD_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_tB15A9D6625D09661D6E47976BB626C703EC81910_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; RuntimeObject* V_1 = NULL; String_t* V_2 = NULL; { // reader.Read (); JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_0 = ___reader1; NullCheck(L_0); bool L_1; L_1 = JsonReader_Read_m47DD03DE2A2127A1A723BD6D564D97D07BE1E610(L_0, /*hidden argument*/NULL); // if (reader.Token == JsonToken.ArrayEnd || // reader.Token == JsonToken.Null) JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_2 = ___reader1; NullCheck(L_2); int32_t L_3; L_3 = JsonReader_get_Token_m99F431E80F34EC42D60383A0C5D664C88BB6DBE2_inline(L_2, /*hidden argument*/NULL); if ((((int32_t)L_3) == ((int32_t)5))) { goto IL_001a; } } { JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_4 = ___reader1; NullCheck(L_4); int32_t L_5; L_5 = JsonReader_get_Token_m99F431E80F34EC42D60383A0C5D664C88BB6DBE2_inline(L_4, /*hidden argument*/NULL); if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)11))))) { goto IL_001c; } } IL_001a: { // return null; return (RuntimeObject*)NULL; } IL_001c: { // IJsonWrapper instance = factory (); WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C * L_6 = ___factory0; NullCheck(L_6); RuntimeObject* L_7; L_7 = WrapperFactory_Invoke_m2210DB2401DDA822B2A6E32CF64A6F275CC61F94(L_6, /*hidden argument*/NULL); V_0 = L_7; // if (reader.Token == JsonToken.String) { JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_8 = ___reader1; NullCheck(L_8); int32_t L_9; L_9 = JsonReader_get_Token_m99F431E80F34EC42D60383A0C5D664C88BB6DBE2_inline(L_8, /*hidden argument*/NULL); if ((!(((uint32_t)L_9) == ((uint32_t)((int32_t)9))))) { goto IL_0040; } } { // instance.SetString ((string) reader.Value); RuntimeObject* L_10 = V_0; JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_11 = ___reader1; NullCheck(L_11); RuntimeObject * L_12; L_12 = JsonReader_get_Value_m41A4AF5CA872B017E062E2CCCEB83398F5B4F419_inline(L_11, /*hidden argument*/NULL); NullCheck(L_10); InterfaceActionInvoker1< String_t* >::Invoke(18 /* System.Void LitJson.IJsonWrapper::SetString(System.String) */, IJsonWrapper_tB61715FD55AC86C87980FB4363433C0376095ADD_il2cpp_TypeInfo_var, L_10, ((String_t*)CastclassSealed((RuntimeObject*)L_12, String_t_il2cpp_TypeInfo_var))); // return instance; RuntimeObject* L_13 = V_0; return L_13; } IL_0040: { // if (reader.Token == JsonToken.Double) { JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_14 = ___reader1; NullCheck(L_14); int32_t L_15; L_15 = JsonReader_get_Token_m99F431E80F34EC42D60383A0C5D664C88BB6DBE2_inline(L_14, /*hidden argument*/NULL); if ((!(((uint32_t)L_15) == ((uint32_t)8)))) { goto IL_005c; } } { // instance.SetDouble ((double) reader.Value); RuntimeObject* L_16 = V_0; JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_17 = ___reader1; NullCheck(L_17); RuntimeObject * L_18; L_18 = JsonReader_get_Value_m41A4AF5CA872B017E062E2CCCEB83398F5B4F419_inline(L_17, /*hidden argument*/NULL); NullCheck(L_16); InterfaceActionInvoker1< double >::Invoke(14 /* System.Void LitJson.IJsonWrapper::SetDouble(System.Double) */, IJsonWrapper_tB61715FD55AC86C87980FB4363433C0376095ADD_il2cpp_TypeInfo_var, L_16, ((*(double*)((double*)UnBox(L_18, Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_il2cpp_TypeInfo_var))))); // return instance; RuntimeObject* L_19 = V_0; return L_19; } IL_005c: { // if (reader.Token == JsonToken.Int) { JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_20 = ___reader1; NullCheck(L_20); int32_t L_21; L_21 = JsonReader_get_Token_m99F431E80F34EC42D60383A0C5D664C88BB6DBE2_inline(L_20, /*hidden argument*/NULL); if ((!(((uint32_t)L_21) == ((uint32_t)6)))) { goto IL_0078; } } { // instance.SetInt ((int) reader.Value); RuntimeObject* L_22 = V_0; JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_23 = ___reader1; NullCheck(L_23); RuntimeObject * L_24; L_24 = JsonReader_get_Value_m41A4AF5CA872B017E062E2CCCEB83398F5B4F419_inline(L_23, /*hidden argument*/NULL); NullCheck(L_22); InterfaceActionInvoker1< int32_t >::Invoke(15 /* System.Void LitJson.IJsonWrapper::SetInt(System.Int32) */, IJsonWrapper_tB61715FD55AC86C87980FB4363433C0376095ADD_il2cpp_TypeInfo_var, L_22, ((*(int32_t*)((int32_t*)UnBox(L_24, Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var))))); // return instance; RuntimeObject* L_25 = V_0; return L_25; } IL_0078: { // if (reader.Token == JsonToken.Long) { JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_26 = ___reader1; NullCheck(L_26); int32_t L_27; L_27 = JsonReader_get_Token_m99F431E80F34EC42D60383A0C5D664C88BB6DBE2_inline(L_26, /*hidden argument*/NULL); if ((!(((uint32_t)L_27) == ((uint32_t)7)))) { goto IL_0094; } } { // instance.SetLong ((long) reader.Value); RuntimeObject* L_28 = V_0; JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_29 = ___reader1; NullCheck(L_29); RuntimeObject * L_30; L_30 = JsonReader_get_Value_m41A4AF5CA872B017E062E2CCCEB83398F5B4F419_inline(L_29, /*hidden argument*/NULL); NullCheck(L_28); InterfaceActionInvoker1< int64_t >::Invoke(17 /* System.Void LitJson.IJsonWrapper::SetLong(System.Int64) */, IJsonWrapper_tB61715FD55AC86C87980FB4363433C0376095ADD_il2cpp_TypeInfo_var, L_28, ((*(int64_t*)((int64_t*)UnBox(L_30, Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var))))); // return instance; RuntimeObject* L_31 = V_0; return L_31; } IL_0094: { // if (reader.Token == JsonToken.Boolean) { JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_32 = ___reader1; NullCheck(L_32); int32_t L_33; L_33 = JsonReader_get_Token_m99F431E80F34EC42D60383A0C5D664C88BB6DBE2_inline(L_32, /*hidden argument*/NULL); if ((!(((uint32_t)L_33) == ((uint32_t)((int32_t)10))))) { goto IL_00b1; } } { // instance.SetBoolean ((bool) reader.Value); RuntimeObject* L_34 = V_0; JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_35 = ___reader1; NullCheck(L_35); RuntimeObject * L_36; L_36 = JsonReader_get_Value_m41A4AF5CA872B017E062E2CCCEB83398F5B4F419_inline(L_35, /*hidden argument*/NULL); NullCheck(L_34); InterfaceActionInvoker1< bool >::Invoke(13 /* System.Void LitJson.IJsonWrapper::SetBoolean(System.Boolean) */, IJsonWrapper_tB61715FD55AC86C87980FB4363433C0376095ADD_il2cpp_TypeInfo_var, L_34, ((*(bool*)((bool*)UnBox(L_36, Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var))))); // return instance; RuntimeObject* L_37 = V_0; return L_37; } IL_00b1: { // if (reader.Token == JsonToken.ArrayStart) { JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_38 = ___reader1; NullCheck(L_38); int32_t L_39; L_39 = JsonReader_get_Token_m99F431E80F34EC42D60383A0C5D664C88BB6DBE2_inline(L_38, /*hidden argument*/NULL); if ((!(((uint32_t)L_39) == ((uint32_t)4)))) { goto IL_00df; } } { // instance.SetJsonType (JsonType.Array); RuntimeObject* L_40 = V_0; NullCheck(L_40); InterfaceActionInvoker1< int32_t >::Invoke(16 /* System.Void LitJson.IJsonWrapper::SetJsonType(LitJson.JsonType) */, IJsonWrapper_tB61715FD55AC86C87980FB4363433C0376095ADD_il2cpp_TypeInfo_var, L_40, 2); } IL_00c1: { // IJsonWrapper item = ReadValue (factory, reader); WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C * L_41 = ___factory0; JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_42 = ___reader1; IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_43; L_43 = JsonMapper_ReadValue_m90F55D903FF73E163375A52F6F9C3CA9DD0B365C(L_41, L_42, /*hidden argument*/NULL); V_1 = L_43; // if (item == null && reader.Token == JsonToken.ArrayEnd) RuntimeObject* L_44 = V_1; if (L_44) { goto IL_00d5; } } { JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_45 = ___reader1; NullCheck(L_45); int32_t L_46; L_46 = JsonReader_get_Token_m99F431E80F34EC42D60383A0C5D664C88BB6DBE2_inline(L_45, /*hidden argument*/NULL); if ((((int32_t)L_46) == ((int32_t)5))) { goto IL_011b; } } IL_00d5: { // ((IList) instance).Add (item); RuntimeObject* L_47 = V_0; RuntimeObject* L_48 = V_1; NullCheck(L_47); int32_t L_49; L_49 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(2 /* System.Int32 System.Collections.IList::Add(System.Object) */, IList_tB15A9D6625D09661D6E47976BB626C703EC81910_il2cpp_TypeInfo_var, L_47, L_48); // while (true) { goto IL_00c1; } IL_00df: { // else if (reader.Token == JsonToken.ObjectStart) { JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_50 = ___reader1; NullCheck(L_50); int32_t L_51; L_51 = JsonReader_get_Token_m99F431E80F34EC42D60383A0C5D664C88BB6DBE2_inline(L_50, /*hidden argument*/NULL); if ((!(((uint32_t)L_51) == ((uint32_t)1)))) { goto IL_011b; } } { // instance.SetJsonType (JsonType.Object); RuntimeObject* L_52 = V_0; NullCheck(L_52); InterfaceActionInvoker1< int32_t >::Invoke(16 /* System.Void LitJson.IJsonWrapper::SetJsonType(LitJson.JsonType) */, IJsonWrapper_tB61715FD55AC86C87980FB4363433C0376095ADD_il2cpp_TypeInfo_var, L_52, 1); } IL_00ef: { // reader.Read (); JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_53 = ___reader1; NullCheck(L_53); bool L_54; L_54 = JsonReader_Read_m47DD03DE2A2127A1A723BD6D564D97D07BE1E610(L_53, /*hidden argument*/NULL); // if (reader.Token == JsonToken.ObjectEnd) JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_55 = ___reader1; NullCheck(L_55); int32_t L_56; L_56 = JsonReader_get_Token_m99F431E80F34EC42D60383A0C5D664C88BB6DBE2_inline(L_55, /*hidden argument*/NULL); if ((((int32_t)L_56) == ((int32_t)3))) { goto IL_011b; } } { // string property = (string) reader.Value; JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_57 = ___reader1; NullCheck(L_57); RuntimeObject * L_58; L_58 = JsonReader_get_Value_m41A4AF5CA872B017E062E2CCCEB83398F5B4F419_inline(L_57, /*hidden argument*/NULL); V_2 = ((String_t*)CastclassSealed((RuntimeObject*)L_58, String_t_il2cpp_TypeInfo_var)); // ((IDictionary) instance)[property] = ReadValue ( // factory, reader); RuntimeObject* L_59 = V_0; String_t* L_60 = V_2; WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C * L_61 = ___factory0; JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_62 = ___reader1; IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_63; L_63 = JsonMapper_ReadValue_m90F55D903FF73E163375A52F6F9C3CA9DD0B365C(L_61, L_62, /*hidden argument*/NULL); NullCheck(L_59); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(1 /* System.Void System.Collections.IDictionary::set_Item(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_59, L_60, L_63); // while (true) { goto IL_00ef; } IL_011b: { // return instance; RuntimeObject* L_64 = V_0; return L_64; } } // System.Void LitJson.JsonMapper::ReadSkip(LitJson.JsonReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper_ReadSkip_m1D88148DBC55A4A2D3A8920F76B9B5EA08C0C606 (JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * ___reader0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CReadSkipU3Eb__25_0_m6FEB7F0D965965A9F14FB7FAB05D0A74698DF9F3_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C * G_B2_0 = NULL; WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C * G_B1_0 = NULL; { // ToWrapper ( // delegate { return new JsonMockWrapper (); }, reader); IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C * L_0 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9__25_0_1(); WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C * L_1 = L_0; G_B1_0 = L_1; if (L_1) { G_B2_0 = L_1; goto IL_001f; } } { IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318 * L_2 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9_0(); WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C * L_3 = (WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C *)il2cpp_codegen_object_new(WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C_il2cpp_TypeInfo_var); WrapperFactory__ctor_mFB575B55E4D60D29BCC1FB395577F0E3EAB38E91(L_3, L_2, (intptr_t)((intptr_t)U3CU3Ec_U3CReadSkipU3Eb__25_0_m6FEB7F0D965965A9F14FB7FAB05D0A74698DF9F3_RuntimeMethod_var), /*hidden argument*/NULL); WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C * L_4 = L_3; ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->set_U3CU3E9__25_0_1(L_4); G_B2_0 = L_4; } IL_001f: { JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_5 = ___reader0; IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_6; L_6 = JsonMapper_ToWrapper_m61D788535FA2B054FF82CF0A3A0A2E962EE6BC13(G_B2_0, L_5, /*hidden argument*/NULL); // } return; } } // System.Void LitJson.JsonMapper::RegisterBaseExporters() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper_RegisterBaseExporters_mE267D78B53196A1063C1AFB89F26A567015AA19C (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_t100B461C37F79E2F9CF3817F1BBEE5DC8495E0F5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int16_tD0F031114106263BB459DA1F099FF9F42691295A_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SByte_t928712DD662DC29BA4FAAE8CE2230AFB23447F0B_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterBaseExportersU3Eb__26_0_m65DBB1C78BFDBEEA0F5B18812EBA5136DC6CFE23_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterBaseExportersU3Eb__26_1_mA6AF7F05D38115C68CB69B6CCF002D9913B80EC8_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterBaseExportersU3Eb__26_2_m36FAD15F97256C344EA9D44945E53BCCB3D840FF_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterBaseExportersU3Eb__26_3_mA76CF5C67B4BAF51D76D787EE0E21EB2F2A0EC69_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterBaseExportersU3Eb__26_4_mB12F5BE85941DFB6ABACC85896A07544BB48503E_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterBaseExportersU3Eb__26_5_m56A41556B27F1F72A8B9B670880703A56C133EDF_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterBaseExportersU3Eb__26_6_m3C10C7A82FFC3E4625A54905631D86A6EBA8D720_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterBaseExportersU3Eb__26_7_mB30D9177D4121E5A19915E7F08AFF98B7DEAC09B_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterBaseExportersU3Eb__26_8_mB48444FB56F525049BEB057EDC490F13708C654C_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32_tE60352A06233E4E69DD198BCC67142159F686B15_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281_0_0_0_var); s_Il2CppMethodInitialized = true; } ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * G_B2_0 = NULL; Type_t * G_B2_1 = NULL; RuntimeObject* G_B2_2 = NULL; ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * G_B1_0 = NULL; Type_t * G_B1_1 = NULL; RuntimeObject* G_B1_2 = NULL; ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * G_B4_0 = NULL; Type_t * G_B4_1 = NULL; RuntimeObject* G_B4_2 = NULL; ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * G_B3_0 = NULL; Type_t * G_B3_1 = NULL; RuntimeObject* G_B3_2 = NULL; ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * G_B6_0 = NULL; Type_t * G_B6_1 = NULL; RuntimeObject* G_B6_2 = NULL; ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * G_B5_0 = NULL; Type_t * G_B5_1 = NULL; RuntimeObject* G_B5_2 = NULL; ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * G_B8_0 = NULL; Type_t * G_B8_1 = NULL; RuntimeObject* G_B8_2 = NULL; ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * G_B7_0 = NULL; Type_t * G_B7_1 = NULL; RuntimeObject* G_B7_2 = NULL; ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * G_B10_0 = NULL; Type_t * G_B10_1 = NULL; RuntimeObject* G_B10_2 = NULL; ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * G_B9_0 = NULL; Type_t * G_B9_1 = NULL; RuntimeObject* G_B9_2 = NULL; ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * G_B12_0 = NULL; Type_t * G_B12_1 = NULL; RuntimeObject* G_B12_2 = NULL; ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * G_B11_0 = NULL; Type_t * G_B11_1 = NULL; RuntimeObject* G_B11_2 = NULL; ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * G_B14_0 = NULL; Type_t * G_B14_1 = NULL; RuntimeObject* G_B14_2 = NULL; ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * G_B13_0 = NULL; Type_t * G_B13_1 = NULL; RuntimeObject* G_B13_2 = NULL; ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * G_B16_0 = NULL; Type_t * G_B16_1 = NULL; RuntimeObject* G_B16_2 = NULL; ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * G_B15_0 = NULL; Type_t * G_B15_1 = NULL; RuntimeObject* G_B15_2 = NULL; ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * G_B18_0 = NULL; Type_t * G_B18_1 = NULL; RuntimeObject* G_B18_2 = NULL; ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * G_B17_0 = NULL; Type_t * G_B17_1 = NULL; RuntimeObject* G_B17_2 = NULL; { // base_exporters_table[typeof (byte)] = // delegate (object obj, JsonWriter writer) { // writer.Write (Convert.ToInt32 ((byte) obj)); // }; IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_0 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_base_exporters_table_2(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_1 = { reinterpret_cast (Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_2; L_2 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_1, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * L_3 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9__26_0_2(); ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * L_4 = L_3; G_B1_0 = L_4; G_B1_1 = L_2; G_B1_2 = L_0; if (L_4) { G_B2_0 = L_4; G_B2_1 = L_2; G_B2_2 = L_0; goto IL_002e; } } { IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318 * L_5 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9_0(); ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * L_6 = (ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 *)il2cpp_codegen_object_new(ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773_il2cpp_TypeInfo_var); ExporterFunc__ctor_m4237FEBFE9ED03085C7D3F0994FD5E4FB27C6051(L_6, L_5, (intptr_t)((intptr_t)U3CU3Ec_U3CRegisterBaseExportersU3Eb__26_0_m65DBB1C78BFDBEEA0F5B18812EBA5136DC6CFE23_RuntimeMethod_var), /*hidden argument*/NULL); ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * L_7 = L_6; ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->set_U3CU3E9__26_0_2(L_7); G_B2_0 = L_7; G_B2_1 = G_B1_1; G_B2_2 = G_B1_2; } IL_002e: { NullCheck(G_B2_2); InterfaceActionInvoker2< Type_t *, ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * >::Invoke(1 /* System.Void System.Collections.Generic.IDictionary`2::set_Item(!0,!1) */, IDictionary_2_t100B461C37F79E2F9CF3817F1BBEE5DC8495E0F5_il2cpp_TypeInfo_var, G_B2_2, G_B2_1, G_B2_0); // base_exporters_table[typeof (char)] = // delegate (object obj, JsonWriter writer) { // writer.Write (Convert.ToString ((char) obj)); // }; IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_8 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_base_exporters_table_2(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_9 = { reinterpret_cast (Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_10; L_10 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_9, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * L_11 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9__26_1_3(); ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * L_12 = L_11; G_B3_0 = L_12; G_B3_1 = L_10; G_B3_2 = L_8; if (L_12) { G_B4_0 = L_12; G_B4_1 = L_10; G_B4_2 = L_8; goto IL_0061; } } { IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318 * L_13 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9_0(); ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * L_14 = (ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 *)il2cpp_codegen_object_new(ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773_il2cpp_TypeInfo_var); ExporterFunc__ctor_m4237FEBFE9ED03085C7D3F0994FD5E4FB27C6051(L_14, L_13, (intptr_t)((intptr_t)U3CU3Ec_U3CRegisterBaseExportersU3Eb__26_1_mA6AF7F05D38115C68CB69B6CCF002D9913B80EC8_RuntimeMethod_var), /*hidden argument*/NULL); ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * L_15 = L_14; ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->set_U3CU3E9__26_1_3(L_15); G_B4_0 = L_15; G_B4_1 = G_B3_1; G_B4_2 = G_B3_2; } IL_0061: { NullCheck(G_B4_2); InterfaceActionInvoker2< Type_t *, ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * >::Invoke(1 /* System.Void System.Collections.Generic.IDictionary`2::set_Item(!0,!1) */, IDictionary_2_t100B461C37F79E2F9CF3817F1BBEE5DC8495E0F5_il2cpp_TypeInfo_var, G_B4_2, G_B4_1, G_B4_0); // base_exporters_table[typeof (DateTime)] = // delegate (object obj, JsonWriter writer) { // writer.Write (Convert.ToString ((DateTime) obj, // datetime_format)); // }; IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_16 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_base_exporters_table_2(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_17 = { reinterpret_cast (DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_18; L_18 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_17, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * L_19 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9__26_2_4(); ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * L_20 = L_19; G_B5_0 = L_20; G_B5_1 = L_18; G_B5_2 = L_16; if (L_20) { G_B6_0 = L_20; G_B6_1 = L_18; G_B6_2 = L_16; goto IL_0094; } } { IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318 * L_21 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9_0(); ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * L_22 = (ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 *)il2cpp_codegen_object_new(ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773_il2cpp_TypeInfo_var); ExporterFunc__ctor_m4237FEBFE9ED03085C7D3F0994FD5E4FB27C6051(L_22, L_21, (intptr_t)((intptr_t)U3CU3Ec_U3CRegisterBaseExportersU3Eb__26_2_m36FAD15F97256C344EA9D44945E53BCCB3D840FF_RuntimeMethod_var), /*hidden argument*/NULL); ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * L_23 = L_22; ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->set_U3CU3E9__26_2_4(L_23); G_B6_0 = L_23; G_B6_1 = G_B5_1; G_B6_2 = G_B5_2; } IL_0094: { NullCheck(G_B6_2); InterfaceActionInvoker2< Type_t *, ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * >::Invoke(1 /* System.Void System.Collections.Generic.IDictionary`2::set_Item(!0,!1) */, IDictionary_2_t100B461C37F79E2F9CF3817F1BBEE5DC8495E0F5_il2cpp_TypeInfo_var, G_B6_2, G_B6_1, G_B6_0); // base_exporters_table[typeof (decimal)] = // delegate (object obj, JsonWriter writer) { // writer.Write ((decimal) obj); // }; IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_24 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_base_exporters_table_2(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_25 = { reinterpret_cast (Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_26; L_26 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_25, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * L_27 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9__26_3_5(); ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * L_28 = L_27; G_B7_0 = L_28; G_B7_1 = L_26; G_B7_2 = L_24; if (L_28) { G_B8_0 = L_28; G_B8_1 = L_26; G_B8_2 = L_24; goto IL_00c7; } } { IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318 * L_29 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9_0(); ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * L_30 = (ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 *)il2cpp_codegen_object_new(ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773_il2cpp_TypeInfo_var); ExporterFunc__ctor_m4237FEBFE9ED03085C7D3F0994FD5E4FB27C6051(L_30, L_29, (intptr_t)((intptr_t)U3CU3Ec_U3CRegisterBaseExportersU3Eb__26_3_mA76CF5C67B4BAF51D76D787EE0E21EB2F2A0EC69_RuntimeMethod_var), /*hidden argument*/NULL); ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * L_31 = L_30; ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->set_U3CU3E9__26_3_5(L_31); G_B8_0 = L_31; G_B8_1 = G_B7_1; G_B8_2 = G_B7_2; } IL_00c7: { NullCheck(G_B8_2); InterfaceActionInvoker2< Type_t *, ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * >::Invoke(1 /* System.Void System.Collections.Generic.IDictionary`2::set_Item(!0,!1) */, IDictionary_2_t100B461C37F79E2F9CF3817F1BBEE5DC8495E0F5_il2cpp_TypeInfo_var, G_B8_2, G_B8_1, G_B8_0); // base_exporters_table[typeof (sbyte)] = // delegate (object obj, JsonWriter writer) { // writer.Write (Convert.ToInt32 ((sbyte) obj)); // }; IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_32 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_base_exporters_table_2(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_33 = { reinterpret_cast (SByte_t928712DD662DC29BA4FAAE8CE2230AFB23447F0B_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_34; L_34 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_33, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * L_35 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9__26_4_6(); ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * L_36 = L_35; G_B9_0 = L_36; G_B9_1 = L_34; G_B9_2 = L_32; if (L_36) { G_B10_0 = L_36; G_B10_1 = L_34; G_B10_2 = L_32; goto IL_00fa; } } { IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318 * L_37 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9_0(); ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * L_38 = (ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 *)il2cpp_codegen_object_new(ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773_il2cpp_TypeInfo_var); ExporterFunc__ctor_m4237FEBFE9ED03085C7D3F0994FD5E4FB27C6051(L_38, L_37, (intptr_t)((intptr_t)U3CU3Ec_U3CRegisterBaseExportersU3Eb__26_4_mB12F5BE85941DFB6ABACC85896A07544BB48503E_RuntimeMethod_var), /*hidden argument*/NULL); ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * L_39 = L_38; ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->set_U3CU3E9__26_4_6(L_39); G_B10_0 = L_39; G_B10_1 = G_B9_1; G_B10_2 = G_B9_2; } IL_00fa: { NullCheck(G_B10_2); InterfaceActionInvoker2< Type_t *, ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * >::Invoke(1 /* System.Void System.Collections.Generic.IDictionary`2::set_Item(!0,!1) */, IDictionary_2_t100B461C37F79E2F9CF3817F1BBEE5DC8495E0F5_il2cpp_TypeInfo_var, G_B10_2, G_B10_1, G_B10_0); // base_exporters_table[typeof (short)] = // delegate (object obj, JsonWriter writer) { // writer.Write (Convert.ToInt32 ((short) obj)); // }; IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_40 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_base_exporters_table_2(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_41 = { reinterpret_cast (Int16_tD0F031114106263BB459DA1F099FF9F42691295A_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_42; L_42 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_41, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * L_43 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9__26_5_7(); ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * L_44 = L_43; G_B11_0 = L_44; G_B11_1 = L_42; G_B11_2 = L_40; if (L_44) { G_B12_0 = L_44; G_B12_1 = L_42; G_B12_2 = L_40; goto IL_012d; } } { IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318 * L_45 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9_0(); ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * L_46 = (ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 *)il2cpp_codegen_object_new(ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773_il2cpp_TypeInfo_var); ExporterFunc__ctor_m4237FEBFE9ED03085C7D3F0994FD5E4FB27C6051(L_46, L_45, (intptr_t)((intptr_t)U3CU3Ec_U3CRegisterBaseExportersU3Eb__26_5_m56A41556B27F1F72A8B9B670880703A56C133EDF_RuntimeMethod_var), /*hidden argument*/NULL); ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * L_47 = L_46; ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->set_U3CU3E9__26_5_7(L_47); G_B12_0 = L_47; G_B12_1 = G_B11_1; G_B12_2 = G_B11_2; } IL_012d: { NullCheck(G_B12_2); InterfaceActionInvoker2< Type_t *, ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * >::Invoke(1 /* System.Void System.Collections.Generic.IDictionary`2::set_Item(!0,!1) */, IDictionary_2_t100B461C37F79E2F9CF3817F1BBEE5DC8495E0F5_il2cpp_TypeInfo_var, G_B12_2, G_B12_1, G_B12_0); // base_exporters_table[typeof (ushort)] = // delegate (object obj, JsonWriter writer) { // writer.Write (Convert.ToInt32 ((ushort) obj)); // }; IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_48 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_base_exporters_table_2(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_49 = { reinterpret_cast (UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_50; L_50 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_49, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * L_51 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9__26_6_8(); ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * L_52 = L_51; G_B13_0 = L_52; G_B13_1 = L_50; G_B13_2 = L_48; if (L_52) { G_B14_0 = L_52; G_B14_1 = L_50; G_B14_2 = L_48; goto IL_0160; } } { IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318 * L_53 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9_0(); ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * L_54 = (ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 *)il2cpp_codegen_object_new(ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773_il2cpp_TypeInfo_var); ExporterFunc__ctor_m4237FEBFE9ED03085C7D3F0994FD5E4FB27C6051(L_54, L_53, (intptr_t)((intptr_t)U3CU3Ec_U3CRegisterBaseExportersU3Eb__26_6_m3C10C7A82FFC3E4625A54905631D86A6EBA8D720_RuntimeMethod_var), /*hidden argument*/NULL); ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * L_55 = L_54; ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->set_U3CU3E9__26_6_8(L_55); G_B14_0 = L_55; G_B14_1 = G_B13_1; G_B14_2 = G_B13_2; } IL_0160: { NullCheck(G_B14_2); InterfaceActionInvoker2< Type_t *, ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * >::Invoke(1 /* System.Void System.Collections.Generic.IDictionary`2::set_Item(!0,!1) */, IDictionary_2_t100B461C37F79E2F9CF3817F1BBEE5DC8495E0F5_il2cpp_TypeInfo_var, G_B14_2, G_B14_1, G_B14_0); // base_exporters_table[typeof (uint)] = // delegate (object obj, JsonWriter writer) { // writer.Write (Convert.ToUInt64 ((uint) obj)); // }; IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_56 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_base_exporters_table_2(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_57 = { reinterpret_cast (UInt32_tE60352A06233E4E69DD198BCC67142159F686B15_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_58; L_58 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_57, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * L_59 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9__26_7_9(); ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * L_60 = L_59; G_B15_0 = L_60; G_B15_1 = L_58; G_B15_2 = L_56; if (L_60) { G_B16_0 = L_60; G_B16_1 = L_58; G_B16_2 = L_56; goto IL_0193; } } { IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318 * L_61 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9_0(); ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * L_62 = (ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 *)il2cpp_codegen_object_new(ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773_il2cpp_TypeInfo_var); ExporterFunc__ctor_m4237FEBFE9ED03085C7D3F0994FD5E4FB27C6051(L_62, L_61, (intptr_t)((intptr_t)U3CU3Ec_U3CRegisterBaseExportersU3Eb__26_7_mB30D9177D4121E5A19915E7F08AFF98B7DEAC09B_RuntimeMethod_var), /*hidden argument*/NULL); ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * L_63 = L_62; ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->set_U3CU3E9__26_7_9(L_63); G_B16_0 = L_63; G_B16_1 = G_B15_1; G_B16_2 = G_B15_2; } IL_0193: { NullCheck(G_B16_2); InterfaceActionInvoker2< Type_t *, ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * >::Invoke(1 /* System.Void System.Collections.Generic.IDictionary`2::set_Item(!0,!1) */, IDictionary_2_t100B461C37F79E2F9CF3817F1BBEE5DC8495E0F5_il2cpp_TypeInfo_var, G_B16_2, G_B16_1, G_B16_0); // base_exporters_table[typeof (ulong)] = // delegate (object obj, JsonWriter writer) { // writer.Write ((ulong) obj); // }; IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_64 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_base_exporters_table_2(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_65 = { reinterpret_cast (UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_66; L_66 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_65, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * L_67 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9__26_8_10(); ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * L_68 = L_67; G_B17_0 = L_68; G_B17_1 = L_66; G_B17_2 = L_64; if (L_68) { G_B18_0 = L_68; G_B18_1 = L_66; G_B18_2 = L_64; goto IL_01c6; } } { IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318 * L_69 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9_0(); ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * L_70 = (ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 *)il2cpp_codegen_object_new(ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773_il2cpp_TypeInfo_var); ExporterFunc__ctor_m4237FEBFE9ED03085C7D3F0994FD5E4FB27C6051(L_70, L_69, (intptr_t)((intptr_t)U3CU3Ec_U3CRegisterBaseExportersU3Eb__26_8_mB48444FB56F525049BEB057EDC490F13708C654C_RuntimeMethod_var), /*hidden argument*/NULL); ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * L_71 = L_70; ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->set_U3CU3E9__26_8_10(L_71); G_B18_0 = L_71; G_B18_1 = G_B17_1; G_B18_2 = G_B17_2; } IL_01c6: { NullCheck(G_B18_2); InterfaceActionInvoker2< Type_t *, ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * >::Invoke(1 /* System.Void System.Collections.Generic.IDictionary`2::set_Item(!0,!1) */, IDictionary_2_t100B461C37F79E2F9CF3817F1BBEE5DC8495E0F5_il2cpp_TypeInfo_var, G_B18_2, G_B18_1, G_B18_0); // } return; } } // System.Void LitJson.JsonMapper::RegisterBaseImporters() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper_RegisterBaseImporters_m58FC5B4999B9799F9A53F50375EB53D70268F8BF (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int16_tD0F031114106263BB459DA1F099FF9F42691295A_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SByte_t928712DD662DC29BA4FAAE8CE2230AFB23447F0B_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterBaseImportersU3Eb__27_0_m1B52B0C2FED88A3CE73B78FB974A13BCAF60A5D2_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterBaseImportersU3Eb__27_10_m7ABF9F0DDC9F134F02FD5B4230DDFAEE969EB56A_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterBaseImportersU3Eb__27_11_mA4A035F3FB771CAB37BB98CB6DDE696E18271657_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterBaseImportersU3Eb__27_1_m6EE22BD7E8A6A30727EF1651DB2818AAF7322E95_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterBaseImportersU3Eb__27_2_mD94D45CC4C45C946AB061A716ECE9DD0361266D2_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterBaseImportersU3Eb__27_3_m2F83441405759C02980B61D4421858D92FC9973C_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterBaseImportersU3Eb__27_4_mF06A035412AC1A1159EB6AC7F97EB90F605E3B35_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterBaseImportersU3Eb__27_5_m15E2C2163125791CC47190E283CF8093B3E43A79_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterBaseImportersU3Eb__27_6_m36AE8C041B7A472ADADD2252BE2A30EC98D540CC_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterBaseImportersU3Eb__27_7_mAC9BFC51C25E1729DC1EE1C34D409BD6BF7F4AE6_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterBaseImportersU3Eb__27_8_m14BBCF6705ED098BFF3CFABAE0FAA1A51DD2DBAC_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRegisterBaseImportersU3Eb__27_9_m1AD16760D3E691E402A0D525FD7CAC1B0E2FFF79_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32_tE60352A06233E4E69DD198BCC67142159F686B15_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281_0_0_0_var); s_Il2CppMethodInitialized = true; } ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * V_0 = NULL; ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * G_B2_0 = NULL; ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * G_B1_0 = NULL; ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * G_B4_0 = NULL; ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * G_B3_0 = NULL; ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * G_B6_0 = NULL; ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * G_B5_0 = NULL; ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * G_B8_0 = NULL; ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * G_B7_0 = NULL; ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * G_B10_0 = NULL; ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * G_B9_0 = NULL; ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * G_B12_0 = NULL; ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * G_B11_0 = NULL; ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * G_B14_0 = NULL; ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * G_B13_0 = NULL; ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * G_B16_0 = NULL; ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * G_B15_0 = NULL; ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * G_B18_0 = NULL; ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * G_B17_0 = NULL; ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * G_B20_0 = NULL; ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * G_B19_0 = NULL; ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * G_B22_0 = NULL; ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * G_B21_0 = NULL; ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * G_B24_0 = NULL; ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * G_B23_0 = NULL; { // importer = delegate (object input) { // return Convert.ToByte ((int) input); // }; IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_0 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9__27_0_11(); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_1 = L_0; G_B1_0 = L_1; if (L_1) { G_B2_0 = L_1; goto IL_001f; } } { IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318 * L_2 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9_0(); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_3 = (ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D *)il2cpp_codegen_object_new(ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D_il2cpp_TypeInfo_var); ImporterFunc__ctor_mE340B341FA3A6B4BD788BD90BD0D8F1E242A5289(L_3, L_2, (intptr_t)((intptr_t)U3CU3Ec_U3CRegisterBaseImportersU3Eb__27_0_m1B52B0C2FED88A3CE73B78FB974A13BCAF60A5D2_RuntimeMethod_var), /*hidden argument*/NULL); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_4 = L_3; ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->set_U3CU3E9__27_0_11(L_4); G_B2_0 = L_4; } IL_001f: { V_0 = G_B2_0; // RegisterImporter (base_importers_table, typeof (int), // typeof (byte), importer); IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_5 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_base_importers_table_4(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_6 = { reinterpret_cast (Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_7; L_7 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_6, /*hidden argument*/NULL); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_8 = { reinterpret_cast (Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_0_0_0_var) }; Type_t * L_9; L_9 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_8, /*hidden argument*/NULL); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_10 = V_0; JsonMapper_RegisterImporter_m4148E8E55C8BEE0C991CC14F900A052CF475F8F9(L_5, L_7, L_9, L_10, /*hidden argument*/NULL); // importer = delegate (object input) { // return Convert.ToUInt64 ((int) input); // }; IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_11 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9__27_1_12(); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_12 = L_11; G_B3_0 = L_12; if (L_12) { G_B4_0 = L_12; goto IL_005e; } } { IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318 * L_13 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9_0(); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_14 = (ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D *)il2cpp_codegen_object_new(ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D_il2cpp_TypeInfo_var); ImporterFunc__ctor_mE340B341FA3A6B4BD788BD90BD0D8F1E242A5289(L_14, L_13, (intptr_t)((intptr_t)U3CU3Ec_U3CRegisterBaseImportersU3Eb__27_1_m6EE22BD7E8A6A30727EF1651DB2818AAF7322E95_RuntimeMethod_var), /*hidden argument*/NULL); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_15 = L_14; ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->set_U3CU3E9__27_1_12(L_15); G_B4_0 = L_15; } IL_005e: { V_0 = G_B4_0; // RegisterImporter (base_importers_table, typeof (int), // typeof (ulong), importer); IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_16 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_base_importers_table_4(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_17 = { reinterpret_cast (Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_18; L_18 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_17, /*hidden argument*/NULL); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_19 = { reinterpret_cast (UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281_0_0_0_var) }; Type_t * L_20; L_20 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_19, /*hidden argument*/NULL); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_21 = V_0; JsonMapper_RegisterImporter_m4148E8E55C8BEE0C991CC14F900A052CF475F8F9(L_16, L_18, L_20, L_21, /*hidden argument*/NULL); // importer = delegate (object input) { // return Convert.ToSByte ((int) input); // }; IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_22 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9__27_2_13(); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_23 = L_22; G_B5_0 = L_23; if (L_23) { G_B6_0 = L_23; goto IL_009d; } } { IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318 * L_24 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9_0(); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_25 = (ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D *)il2cpp_codegen_object_new(ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D_il2cpp_TypeInfo_var); ImporterFunc__ctor_mE340B341FA3A6B4BD788BD90BD0D8F1E242A5289(L_25, L_24, (intptr_t)((intptr_t)U3CU3Ec_U3CRegisterBaseImportersU3Eb__27_2_mD94D45CC4C45C946AB061A716ECE9DD0361266D2_RuntimeMethod_var), /*hidden argument*/NULL); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_26 = L_25; ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->set_U3CU3E9__27_2_13(L_26); G_B6_0 = L_26; } IL_009d: { V_0 = G_B6_0; // RegisterImporter (base_importers_table, typeof (int), // typeof (sbyte), importer); IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_27 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_base_importers_table_4(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_28 = { reinterpret_cast (Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_29; L_29 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_28, /*hidden argument*/NULL); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_30 = { reinterpret_cast (SByte_t928712DD662DC29BA4FAAE8CE2230AFB23447F0B_0_0_0_var) }; Type_t * L_31; L_31 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_30, /*hidden argument*/NULL); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_32 = V_0; JsonMapper_RegisterImporter_m4148E8E55C8BEE0C991CC14F900A052CF475F8F9(L_27, L_29, L_31, L_32, /*hidden argument*/NULL); // importer = delegate (object input) { // return Convert.ToInt16 ((int) input); // }; IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_33 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9__27_3_14(); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_34 = L_33; G_B7_0 = L_34; if (L_34) { G_B8_0 = L_34; goto IL_00dc; } } { IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318 * L_35 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9_0(); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_36 = (ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D *)il2cpp_codegen_object_new(ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D_il2cpp_TypeInfo_var); ImporterFunc__ctor_mE340B341FA3A6B4BD788BD90BD0D8F1E242A5289(L_36, L_35, (intptr_t)((intptr_t)U3CU3Ec_U3CRegisterBaseImportersU3Eb__27_3_m2F83441405759C02980B61D4421858D92FC9973C_RuntimeMethod_var), /*hidden argument*/NULL); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_37 = L_36; ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->set_U3CU3E9__27_3_14(L_37); G_B8_0 = L_37; } IL_00dc: { V_0 = G_B8_0; // RegisterImporter (base_importers_table, typeof (int), // typeof (short), importer); IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_38 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_base_importers_table_4(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_39 = { reinterpret_cast (Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_40; L_40 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_39, /*hidden argument*/NULL); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_41 = { reinterpret_cast (Int16_tD0F031114106263BB459DA1F099FF9F42691295A_0_0_0_var) }; Type_t * L_42; L_42 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_41, /*hidden argument*/NULL); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_43 = V_0; JsonMapper_RegisterImporter_m4148E8E55C8BEE0C991CC14F900A052CF475F8F9(L_38, L_40, L_42, L_43, /*hidden argument*/NULL); // importer = delegate (object input) { // return Convert.ToUInt16 ((int) input); // }; IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_44 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9__27_4_15(); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_45 = L_44; G_B9_0 = L_45; if (L_45) { G_B10_0 = L_45; goto IL_011b; } } { IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318 * L_46 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9_0(); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_47 = (ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D *)il2cpp_codegen_object_new(ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D_il2cpp_TypeInfo_var); ImporterFunc__ctor_mE340B341FA3A6B4BD788BD90BD0D8F1E242A5289(L_47, L_46, (intptr_t)((intptr_t)U3CU3Ec_U3CRegisterBaseImportersU3Eb__27_4_mF06A035412AC1A1159EB6AC7F97EB90F605E3B35_RuntimeMethod_var), /*hidden argument*/NULL); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_48 = L_47; ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->set_U3CU3E9__27_4_15(L_48); G_B10_0 = L_48; } IL_011b: { V_0 = G_B10_0; // RegisterImporter (base_importers_table, typeof (int), // typeof (ushort), importer); IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_49 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_base_importers_table_4(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_50 = { reinterpret_cast (Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_51; L_51 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_50, /*hidden argument*/NULL); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_52 = { reinterpret_cast (UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD_0_0_0_var) }; Type_t * L_53; L_53 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_52, /*hidden argument*/NULL); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_54 = V_0; JsonMapper_RegisterImporter_m4148E8E55C8BEE0C991CC14F900A052CF475F8F9(L_49, L_51, L_53, L_54, /*hidden argument*/NULL); // importer = delegate (object input) { // return Convert.ToUInt32 ((int) input); // }; IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_55 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9__27_5_16(); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_56 = L_55; G_B11_0 = L_56; if (L_56) { G_B12_0 = L_56; goto IL_015a; } } { IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318 * L_57 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9_0(); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_58 = (ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D *)il2cpp_codegen_object_new(ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D_il2cpp_TypeInfo_var); ImporterFunc__ctor_mE340B341FA3A6B4BD788BD90BD0D8F1E242A5289(L_58, L_57, (intptr_t)((intptr_t)U3CU3Ec_U3CRegisterBaseImportersU3Eb__27_5_m15E2C2163125791CC47190E283CF8093B3E43A79_RuntimeMethod_var), /*hidden argument*/NULL); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_59 = L_58; ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->set_U3CU3E9__27_5_16(L_59); G_B12_0 = L_59; } IL_015a: { V_0 = G_B12_0; // RegisterImporter (base_importers_table, typeof (int), // typeof (uint), importer); IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_60 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_base_importers_table_4(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_61 = { reinterpret_cast (Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_62; L_62 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_61, /*hidden argument*/NULL); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_63 = { reinterpret_cast (UInt32_tE60352A06233E4E69DD198BCC67142159F686B15_0_0_0_var) }; Type_t * L_64; L_64 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_63, /*hidden argument*/NULL); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_65 = V_0; JsonMapper_RegisterImporter_m4148E8E55C8BEE0C991CC14F900A052CF475F8F9(L_60, L_62, L_64, L_65, /*hidden argument*/NULL); // importer = delegate (object input) { // return Convert.ToSingle ((int) input); // }; IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_66 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9__27_6_17(); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_67 = L_66; G_B13_0 = L_67; if (L_67) { G_B14_0 = L_67; goto IL_0199; } } { IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318 * L_68 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9_0(); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_69 = (ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D *)il2cpp_codegen_object_new(ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D_il2cpp_TypeInfo_var); ImporterFunc__ctor_mE340B341FA3A6B4BD788BD90BD0D8F1E242A5289(L_69, L_68, (intptr_t)((intptr_t)U3CU3Ec_U3CRegisterBaseImportersU3Eb__27_6_m36AE8C041B7A472ADADD2252BE2A30EC98D540CC_RuntimeMethod_var), /*hidden argument*/NULL); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_70 = L_69; ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->set_U3CU3E9__27_6_17(L_70); G_B14_0 = L_70; } IL_0199: { V_0 = G_B14_0; // RegisterImporter (base_importers_table, typeof (int), // typeof (float), importer); IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_71 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_base_importers_table_4(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_72 = { reinterpret_cast (Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_73; L_73 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_72, /*hidden argument*/NULL); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_74 = { reinterpret_cast (Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_0_0_0_var) }; Type_t * L_75; L_75 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_74, /*hidden argument*/NULL); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_76 = V_0; JsonMapper_RegisterImporter_m4148E8E55C8BEE0C991CC14F900A052CF475F8F9(L_71, L_73, L_75, L_76, /*hidden argument*/NULL); // importer = delegate (object input) { // return Convert.ToDouble ((int) input); // }; IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_77 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9__27_7_18(); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_78 = L_77; G_B15_0 = L_78; if (L_78) { G_B16_0 = L_78; goto IL_01d8; } } { IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318 * L_79 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9_0(); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_80 = (ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D *)il2cpp_codegen_object_new(ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D_il2cpp_TypeInfo_var); ImporterFunc__ctor_mE340B341FA3A6B4BD788BD90BD0D8F1E242A5289(L_80, L_79, (intptr_t)((intptr_t)U3CU3Ec_U3CRegisterBaseImportersU3Eb__27_7_mAC9BFC51C25E1729DC1EE1C34D409BD6BF7F4AE6_RuntimeMethod_var), /*hidden argument*/NULL); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_81 = L_80; ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->set_U3CU3E9__27_7_18(L_81); G_B16_0 = L_81; } IL_01d8: { V_0 = G_B16_0; // RegisterImporter (base_importers_table, typeof (int), // typeof (double), importer); IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_82 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_base_importers_table_4(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_83 = { reinterpret_cast (Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_84; L_84 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_83, /*hidden argument*/NULL); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_85 = { reinterpret_cast (Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_0_0_0_var) }; Type_t * L_86; L_86 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_85, /*hidden argument*/NULL); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_87 = V_0; JsonMapper_RegisterImporter_m4148E8E55C8BEE0C991CC14F900A052CF475F8F9(L_82, L_84, L_86, L_87, /*hidden argument*/NULL); // importer = delegate (object input) { // return Convert.ToDecimal ((double) input); // }; IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_88 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9__27_8_19(); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_89 = L_88; G_B17_0 = L_89; if (L_89) { G_B18_0 = L_89; goto IL_0217; } } { IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318 * L_90 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9_0(); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_91 = (ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D *)il2cpp_codegen_object_new(ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D_il2cpp_TypeInfo_var); ImporterFunc__ctor_mE340B341FA3A6B4BD788BD90BD0D8F1E242A5289(L_91, L_90, (intptr_t)((intptr_t)U3CU3Ec_U3CRegisterBaseImportersU3Eb__27_8_m14BBCF6705ED098BFF3CFABAE0FAA1A51DD2DBAC_RuntimeMethod_var), /*hidden argument*/NULL); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_92 = L_91; ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->set_U3CU3E9__27_8_19(L_92); G_B18_0 = L_92; } IL_0217: { V_0 = G_B18_0; // RegisterImporter (base_importers_table, typeof (double), // typeof (decimal), importer); IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_93 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_base_importers_table_4(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_94 = { reinterpret_cast (Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_95; L_95 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_94, /*hidden argument*/NULL); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_96 = { reinterpret_cast (Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_0_0_0_var) }; Type_t * L_97; L_97 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_96, /*hidden argument*/NULL); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_98 = V_0; JsonMapper_RegisterImporter_m4148E8E55C8BEE0C991CC14F900A052CF475F8F9(L_93, L_95, L_97, L_98, /*hidden argument*/NULL); // importer = delegate (object input) { // return Convert.ToUInt32 ((long) input); // }; IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_99 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9__27_9_20(); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_100 = L_99; G_B19_0 = L_100; if (L_100) { G_B20_0 = L_100; goto IL_0256; } } { IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318 * L_101 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9_0(); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_102 = (ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D *)il2cpp_codegen_object_new(ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D_il2cpp_TypeInfo_var); ImporterFunc__ctor_mE340B341FA3A6B4BD788BD90BD0D8F1E242A5289(L_102, L_101, (intptr_t)((intptr_t)U3CU3Ec_U3CRegisterBaseImportersU3Eb__27_9_m1AD16760D3E691E402A0D525FD7CAC1B0E2FFF79_RuntimeMethod_var), /*hidden argument*/NULL); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_103 = L_102; ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->set_U3CU3E9__27_9_20(L_103); G_B20_0 = L_103; } IL_0256: { V_0 = G_B20_0; // RegisterImporter (base_importers_table, typeof (long), // typeof (uint), importer); IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_104 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_base_importers_table_4(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_105 = { reinterpret_cast (Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_106; L_106 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_105, /*hidden argument*/NULL); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_107 = { reinterpret_cast (UInt32_tE60352A06233E4E69DD198BCC67142159F686B15_0_0_0_var) }; Type_t * L_108; L_108 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_107, /*hidden argument*/NULL); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_109 = V_0; JsonMapper_RegisterImporter_m4148E8E55C8BEE0C991CC14F900A052CF475F8F9(L_104, L_106, L_108, L_109, /*hidden argument*/NULL); // importer = delegate (object input) { // return Convert.ToChar ((string) input); // }; IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_110 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9__27_10_21(); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_111 = L_110; G_B21_0 = L_111; if (L_111) { G_B22_0 = L_111; goto IL_0295; } } { IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318 * L_112 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9_0(); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_113 = (ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D *)il2cpp_codegen_object_new(ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D_il2cpp_TypeInfo_var); ImporterFunc__ctor_mE340B341FA3A6B4BD788BD90BD0D8F1E242A5289(L_113, L_112, (intptr_t)((intptr_t)U3CU3Ec_U3CRegisterBaseImportersU3Eb__27_10_m7ABF9F0DDC9F134F02FD5B4230DDFAEE969EB56A_RuntimeMethod_var), /*hidden argument*/NULL); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_114 = L_113; ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->set_U3CU3E9__27_10_21(L_114); G_B22_0 = L_114; } IL_0295: { V_0 = G_B22_0; // RegisterImporter (base_importers_table, typeof (string), // typeof (char), importer); IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_115 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_base_importers_table_4(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_116 = { reinterpret_cast (String_t_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_117; L_117 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_116, /*hidden argument*/NULL); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_118 = { reinterpret_cast (Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_0_0_0_var) }; Type_t * L_119; L_119 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_118, /*hidden argument*/NULL); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_120 = V_0; JsonMapper_RegisterImporter_m4148E8E55C8BEE0C991CC14F900A052CF475F8F9(L_115, L_117, L_119, L_120, /*hidden argument*/NULL); // importer = delegate (object input) { // return Convert.ToDateTime ((string) input, datetime_format); // }; IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_121 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9__27_11_22(); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_122 = L_121; G_B23_0 = L_122; if (L_122) { G_B24_0 = L_122; goto IL_02d4; } } { IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318 * L_123 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9_0(); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_124 = (ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D *)il2cpp_codegen_object_new(ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D_il2cpp_TypeInfo_var); ImporterFunc__ctor_mE340B341FA3A6B4BD788BD90BD0D8F1E242A5289(L_124, L_123, (intptr_t)((intptr_t)U3CU3Ec_U3CRegisterBaseImportersU3Eb__27_11_mA4A035F3FB771CAB37BB98CB6DDE696E18271657_RuntimeMethod_var), /*hidden argument*/NULL); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_125 = L_124; ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->set_U3CU3E9__27_11_22(L_125); G_B24_0 = L_125; } IL_02d4: { V_0 = G_B24_0; // RegisterImporter (base_importers_table, typeof (string), // typeof (DateTime), importer); IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_126 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_base_importers_table_4(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_127 = { reinterpret_cast (String_t_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_128; L_128 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_127, /*hidden argument*/NULL); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_129 = { reinterpret_cast (DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_0_0_0_var) }; Type_t * L_130; L_130 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_129, /*hidden argument*/NULL); ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_131 = V_0; JsonMapper_RegisterImporter_m4148E8E55C8BEE0C991CC14F900A052CF475F8F9(L_126, L_128, L_130, L_131, /*hidden argument*/NULL); // } return; } } // System.Void LitJson.JsonMapper::RegisterImporter(System.Collections.Generic.IDictionary`2>,System.Type,System.Type,LitJson.ImporterFunc) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper_RegisterImporter_m4148E8E55C8BEE0C991CC14F900A052CF475F8F9 (RuntimeObject* ___table0, Type_t * ___json_type1, Type_t * ___value_type2, ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * ___importer3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m43AFD259B50B0DDD526C80278006754D9A780E21_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t97A1181D986BCE5FC5CCE0D4E72B74125977DFF9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_t1A4BDA70AEEDCCFB8771B529481FAF6F64C8D648_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_tF27308BB3222A674775FAEEE05A80B858247C394_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (! table.ContainsKey (json_type)) RuntimeObject* L_0 = ___table0; Type_t * L_1 = ___json_type1; NullCheck(L_0); bool L_2; L_2 = InterfaceFuncInvoker1< bool, Type_t * >::Invoke(4 /* System.Boolean System.Collections.Generic.IDictionary`2>::ContainsKey(!0) */, IDictionary_2_tF27308BB3222A674775FAEEE05A80B858247C394_il2cpp_TypeInfo_var, L_0, L_1); if (L_2) { goto IL_0015; } } { // table.Add (json_type, new Dictionary ()); RuntimeObject* L_3 = ___table0; Type_t * L_4 = ___json_type1; Dictionary_2_t97A1181D986BCE5FC5CCE0D4E72B74125977DFF9 * L_5 = (Dictionary_2_t97A1181D986BCE5FC5CCE0D4E72B74125977DFF9 *)il2cpp_codegen_object_new(Dictionary_2_t97A1181D986BCE5FC5CCE0D4E72B74125977DFF9_il2cpp_TypeInfo_var); Dictionary_2__ctor_m43AFD259B50B0DDD526C80278006754D9A780E21(L_5, /*hidden argument*/Dictionary_2__ctor_m43AFD259B50B0DDD526C80278006754D9A780E21_RuntimeMethod_var); NullCheck(L_3); InterfaceActionInvoker2< Type_t *, RuntimeObject* >::Invoke(5 /* System.Void System.Collections.Generic.IDictionary`2>::Add(!0,!1) */, IDictionary_2_tF27308BB3222A674775FAEEE05A80B858247C394_il2cpp_TypeInfo_var, L_3, L_4, L_5); } IL_0015: { // table[json_type][value_type] = importer; RuntimeObject* L_6 = ___table0; Type_t * L_7 = ___json_type1; NullCheck(L_6); RuntimeObject* L_8; L_8 = InterfaceFuncInvoker1< RuntimeObject*, Type_t * >::Invoke(0 /* !1 System.Collections.Generic.IDictionary`2>::get_Item(!0) */, IDictionary_2_tF27308BB3222A674775FAEEE05A80B858247C394_il2cpp_TypeInfo_var, L_6, L_7); Type_t * L_9 = ___value_type2; ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * L_10 = ___importer3; NullCheck(L_8); InterfaceActionInvoker2< Type_t *, ImporterFunc_t1AAC6FE78DB8A3455E43F188F24D75C806A6089D * >::Invoke(1 /* System.Void System.Collections.Generic.IDictionary`2::set_Item(!0,!1) */, IDictionary_2_t1A4BDA70AEEDCCFB8771B529481FAF6F64C8D648_il2cpp_TypeInfo_var, L_8, L_9, L_10); // } return; } } // System.Void LitJson.JsonMapper::WriteValue(System.Object,LitJson.JsonWriter,System.Boolean,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper_WriteValue_m82EFBCF4FCE3898C9C97D6646E14A64D4A690E63 (RuntimeObject * ___obj0, JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * ___writer1, bool ___writer_is_private2, int32_t ___depth3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enum_t23B90B40F60E677A8025267341651C94AE079CDA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FieldInfo_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_t100B461C37F79E2F9CF3817F1BBEE5DC8495E0F5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_t16CDACDB46F2C22D302194A4E428A5CACCEB02F1_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_tFC51C807276A02FCAAC439CA512B1831AC5FD6AA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t47A618747A1BB2A868710316F7372094849163A2_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_tC7CF758C4E4735FD13952A84823441F9BCD3C064_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IJsonWrapper_tB61715FD55AC86C87980FB4363433C0376095ADD_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_tB15A9D6625D09661D6E47976BB626C703EC81910_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyInfo_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeArray_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32_tE60352A06233E4E69DD198BCC67142159F686B15_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; RuntimeObject* V_1 = NULL; RuntimeObject* V_2 = NULL; RuntimeObject* V_3 = NULL; DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 V_4; memset((&V_4), 0, sizeof(V_4)); Type_t * V_5 = NULL; RuntimeObject* V_6 = NULL; PropertyMetadata_t82F32770B33750701D575D2F6E092A8F1EA7858F V_7; memset((&V_7), 0, sizeof(V_7)); PropertyInfo_t * V_8 = NULL; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; { // if (depth > max_nesting_depth) int32_t L_0 = ___depth3; IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); int32_t L_1 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_max_nesting_depth_0(); if ((((int32_t)L_0) <= ((int32_t)L_1))) { goto IL_001e; } } { // throw new JsonException ( // String.Format ("Max allowed object depth reached while " + // "trying to export from type {0}", // obj.GetType ())); RuntimeObject * L_2 = ___obj0; NullCheck(L_2); Type_t * L_3; L_3 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_2, /*hidden argument*/NULL); String_t* L_4; L_4 = String_Format_mB3D38E5238C3164DB4D7D29339D9E225A4496D17(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral456BA6DFA4ECDFAAD0D654A1EC48EE0C8CB90B18)), L_3, /*hidden argument*/NULL); JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C * L_5 = (JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C_il2cpp_TypeInfo_var))); JsonException__ctor_m10E9DE1ED8CA46DD4DC5EFDC5825C456B7FC7932(L_5, L_4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonMapper_WriteValue_m82EFBCF4FCE3898C9C97D6646E14A64D4A690E63_RuntimeMethod_var))); } IL_001e: { // if (obj == null) { RuntimeObject * L_6 = ___obj0; if (L_6) { goto IL_0029; } } { // writer.Write (null); JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * L_7 = ___writer1; NullCheck(L_7); JsonWriter_Write_m1226D74904B33BC08C33A98D2C12DB0226F6131C(L_7, (String_t*)NULL, /*hidden argument*/NULL); // return; return; } IL_0029: { // if (obj is IJsonWrapper) { RuntimeObject * L_8 = ___obj0; if (!((RuntimeObject*)IsInst((RuntimeObject*)L_8, IJsonWrapper_tB61715FD55AC86C87980FB4363433C0376095ADD_il2cpp_TypeInfo_var))) { goto IL_0058; } } { // if (writer_is_private) bool L_9 = ___writer_is_private2; if (!L_9) { goto IL_004b; } } { // writer.TextWriter.Write (((IJsonWrapper) obj).ToJson ()); JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * L_10 = ___writer1; NullCheck(L_10); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_11; L_11 = JsonWriter_get_TextWriter_mDF41359E2D57495FB968A62FDA3D6FBB76B89B18_inline(L_10, /*hidden argument*/NULL); RuntimeObject * L_12 = ___obj0; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_12, IJsonWrapper_tB61715FD55AC86C87980FB4363433C0376095ADD_il2cpp_TypeInfo_var))); String_t* L_13; L_13 = InterfaceFuncInvoker0< String_t* >::Invoke(19 /* System.String LitJson.IJsonWrapper::ToJson() */, IJsonWrapper_tB61715FD55AC86C87980FB4363433C0376095ADD_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_12, IJsonWrapper_tB61715FD55AC86C87980FB4363433C0376095ADD_il2cpp_TypeInfo_var))); NullCheck(L_11); VirtualActionInvoker1< String_t* >::Invoke(15 /* System.Void System.IO.TextWriter::Write(System.String) */, L_11, L_13); return; } IL_004b: { // ((IJsonWrapper) obj).ToJson (writer); RuntimeObject * L_14 = ___obj0; JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * L_15 = ___writer1; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_14, IJsonWrapper_tB61715FD55AC86C87980FB4363433C0376095ADD_il2cpp_TypeInfo_var))); InterfaceActionInvoker1< JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * >::Invoke(20 /* System.Void LitJson.IJsonWrapper::ToJson(LitJson.JsonWriter) */, IJsonWrapper_tB61715FD55AC86C87980FB4363433C0376095ADD_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_14, IJsonWrapper_tB61715FD55AC86C87980FB4363433C0376095ADD_il2cpp_TypeInfo_var)), L_15); // return; return; } IL_0058: { // if (obj is String) { RuntimeObject * L_16 = ___obj0; if (!((String_t*)IsInstSealed((RuntimeObject*)L_16, String_t_il2cpp_TypeInfo_var))) { goto IL_006d; } } { // writer.Write ((string) obj); JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * L_17 = ___writer1; RuntimeObject * L_18 = ___obj0; NullCheck(L_17); JsonWriter_Write_m1226D74904B33BC08C33A98D2C12DB0226F6131C(L_17, ((String_t*)CastclassSealed((RuntimeObject*)L_18, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); // return; return; } IL_006d: { // if (obj is Double) { RuntimeObject * L_19 = ___obj0; if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_19, Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_il2cpp_TypeInfo_var))) { goto IL_0082; } } { // writer.Write ((double) obj); JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * L_20 = ___writer1; RuntimeObject * L_21 = ___obj0; NullCheck(L_20); JsonWriter_Write_m2E75C0441EED47A0666850AD2301881952B59C7F(L_20, ((*(double*)((double*)UnBox(L_21, Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); // return; return; } IL_0082: { // if (obj is Int32) { RuntimeObject * L_22 = ___obj0; if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_22, Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var))) { goto IL_0097; } } { // writer.Write ((int) obj); JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * L_23 = ___writer1; RuntimeObject * L_24 = ___obj0; NullCheck(L_23); JsonWriter_Write_m520AAD327374986AC0A8B685CD066F7058E26C47(L_23, ((*(int32_t*)((int32_t*)UnBox(L_24, Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); // return; return; } IL_0097: { // if (obj is Boolean) { RuntimeObject * L_25 = ___obj0; if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_25, Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var))) { goto IL_00ac; } } { // writer.Write ((bool) obj); JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * L_26 = ___writer1; RuntimeObject * L_27 = ___obj0; NullCheck(L_26); JsonWriter_Write_m8637DCA2F8ED1907C6236C91F5C67311977D9C78(L_26, ((*(bool*)((bool*)UnBox(L_27, Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); // return; return; } IL_00ac: { // if (obj is Int64) { RuntimeObject * L_28 = ___obj0; if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_28, Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var))) { goto IL_00c1; } } { // writer.Write ((long) obj); JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * L_29 = ___writer1; RuntimeObject * L_30 = ___obj0; NullCheck(L_29); JsonWriter_Write_m1E202F293D17802DF6CF641957506832D7220C83(L_29, ((*(int64_t*)((int64_t*)UnBox(L_30, Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); // return; return; } IL_00c1: { // if (obj is Array) { RuntimeObject * L_31 = ___obj0; if (!((RuntimeArray *)IsInstClass((RuntimeObject*)L_31, RuntimeArray_il2cpp_TypeInfo_var))) { goto IL_010f; } } { // writer.WriteArrayStart (); JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * L_32 = ___writer1; NullCheck(L_32); JsonWriter_WriteArrayStart_m4AD937F8743225A6A5753BA03FBADE44945F5A2B(L_32, /*hidden argument*/NULL); // foreach (object elem in (Array) obj) RuntimeObject * L_33 = ___obj0; NullCheck(((RuntimeArray *)CastclassClass((RuntimeObject*)L_33, RuntimeArray_il2cpp_TypeInfo_var))); RuntimeObject* L_34; L_34 = Array_GetEnumerator_m7BC171F2F69907FD4585E7B4A3A224473BE32964(((RuntimeArray *)CastclassClass((RuntimeObject*)L_33, RuntimeArray_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); V_1 = L_34; } IL_00db: try {// begin try (depth: 1) { goto IL_00ed; } IL_00dd: { // foreach (object elem in (Array) obj) RuntimeObject* L_35 = V_1; NullCheck(L_35); RuntimeObject * L_36; L_36 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_35); // WriteValue (elem, writer, writer_is_private, depth + 1); JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * L_37 = ___writer1; bool L_38 = ___writer_is_private2; int32_t L_39 = ___depth3; IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); JsonMapper_WriteValue_m82EFBCF4FCE3898C9C97D6646E14A64D4A690E63(L_36, L_37, L_38, ((int32_t)il2cpp_codegen_add((int32_t)L_39, (int32_t)1)), /*hidden argument*/NULL); } IL_00ed: { // foreach (object elem in (Array) obj) RuntimeObject* L_40 = V_1; NullCheck(L_40); bool L_41; L_41 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_40); if (L_41) { goto IL_00dd; } } IL_00f5: { IL2CPP_LEAVE(0x108, FINALLY_00f7); } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00f7; } FINALLY_00f7: {// begin finally (depth: 1) { RuntimeObject* L_42 = V_1; V_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_42, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var)); RuntimeObject* L_43 = V_2; if (!L_43) { goto IL_0107; } } IL_0101: { RuntimeObject* L_44 = V_2; NullCheck(L_44); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_44); } IL_0107: { IL2CPP_END_FINALLY(247) } }// end finally (depth: 1) IL2CPP_CLEANUP(247) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x108, IL_0108) } IL_0108: { // writer.WriteArrayEnd (); JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * L_45 = ___writer1; NullCheck(L_45); JsonWriter_WriteArrayEnd_mE072C6C05C1CAB7FD8B311778F3945D241470A87(L_45, /*hidden argument*/NULL); // return; return; } IL_010f: { // if (obj is IList) { RuntimeObject * L_46 = ___obj0; if (!((RuntimeObject*)IsInst((RuntimeObject*)L_46, IList_tB15A9D6625D09661D6E47976BB626C703EC81910_il2cpp_TypeInfo_var))) { goto IL_015d; } } { // writer.WriteArrayStart (); JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * L_47 = ___writer1; NullCheck(L_47); JsonWriter_WriteArrayStart_m4AD937F8743225A6A5753BA03FBADE44945F5A2B(L_47, /*hidden argument*/NULL); // foreach (object elem in (IList) obj) RuntimeObject * L_48 = ___obj0; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_48, IList_tB15A9D6625D09661D6E47976BB626C703EC81910_il2cpp_TypeInfo_var))); RuntimeObject* L_49; L_49 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t47A618747A1BB2A868710316F7372094849163A2_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_48, IList_tB15A9D6625D09661D6E47976BB626C703EC81910_il2cpp_TypeInfo_var))); V_1 = L_49; } IL_0129: try {// begin try (depth: 1) { goto IL_013b; } IL_012b: { // foreach (object elem in (IList) obj) RuntimeObject* L_50 = V_1; NullCheck(L_50); RuntimeObject * L_51; L_51 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_50); // WriteValue (elem, writer, writer_is_private, depth + 1); JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * L_52 = ___writer1; bool L_53 = ___writer_is_private2; int32_t L_54 = ___depth3; IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); JsonMapper_WriteValue_m82EFBCF4FCE3898C9C97D6646E14A64D4A690E63(L_51, L_52, L_53, ((int32_t)il2cpp_codegen_add((int32_t)L_54, (int32_t)1)), /*hidden argument*/NULL); } IL_013b: { // foreach (object elem in (IList) obj) RuntimeObject* L_55 = V_1; NullCheck(L_55); bool L_56; L_56 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_55); if (L_56) { goto IL_012b; } } IL_0143: { IL2CPP_LEAVE(0x156, FINALLY_0145); } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0145; } FINALLY_0145: {// begin finally (depth: 1) { RuntimeObject* L_57 = V_1; V_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_57, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var)); RuntimeObject* L_58 = V_2; if (!L_58) { goto IL_0155; } } IL_014f: { RuntimeObject* L_59 = V_2; NullCheck(L_59); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_59); } IL_0155: { IL2CPP_END_FINALLY(325) } }// end finally (depth: 1) IL2CPP_CLEANUP(325) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x156, IL_0156) } IL_0156: { // writer.WriteArrayEnd (); JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * L_60 = ___writer1; NullCheck(L_60); JsonWriter_WriteArrayEnd_mE072C6C05C1CAB7FD8B311778F3945D241470A87(L_60, /*hidden argument*/NULL); // return; return; } IL_015d: { // if (obj is IDictionary) { RuntimeObject * L_61 = ___obj0; if (!((RuntimeObject*)IsInst((RuntimeObject*)L_61, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var))) { goto IL_01cb; } } { // writer.WriteObjectStart (); JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * L_62 = ___writer1; NullCheck(L_62); JsonWriter_WriteObjectStart_mFD0DB249791378221BCF3329F94D5B9232B72622(L_62, /*hidden argument*/NULL); // foreach (DictionaryEntry entity in (IDictionary)obj) RuntimeObject * L_63 = ___obj0; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_63, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var))); RuntimeObject* L_64; L_64 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(9 /* System.Collections.IDictionaryEnumerator System.Collections.IDictionary::GetEnumerator() */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_63, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var))); V_3 = L_64; } IL_0177: try {// begin try (depth: 1) { goto IL_01a9; } IL_0179: { // foreach (DictionaryEntry entity in (IDictionary)obj) RuntimeObject* L_65 = V_3; NullCheck(L_65); RuntimeObject * L_66; L_66 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_65); V_4 = ((*(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 *)((DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 *)UnBox(L_66, DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var)))); // writer.WritePropertyName ((string) entity.Key); JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * L_67 = ___writer1; RuntimeObject * L_68; L_68 = DictionaryEntry_get_Key_m9A53AE1FA4CA017F0A7353F71658A9C36079E1D7_inline((DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 *)(&V_4), /*hidden argument*/NULL); NullCheck(L_67); JsonWriter_WritePropertyName_mDAAC9B6838862E1651D2DA3F2A9B5E88C07F1ED3(L_67, ((String_t*)CastclassSealed((RuntimeObject*)L_68, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); // WriteValue (entity.Value, writer, writer_is_private, // depth + 1); RuntimeObject * L_69; L_69 = DictionaryEntry_get_Value_m2D618D04C0A8EA2A065B171F528FEA98B059F9BC_inline((DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 *)(&V_4), /*hidden argument*/NULL); JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * L_70 = ___writer1; bool L_71 = ___writer_is_private2; int32_t L_72 = ___depth3; IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); JsonMapper_WriteValue_m82EFBCF4FCE3898C9C97D6646E14A64D4A690E63(L_69, L_70, L_71, ((int32_t)il2cpp_codegen_add((int32_t)L_72, (int32_t)1)), /*hidden argument*/NULL); } IL_01a9: { // foreach (DictionaryEntry entity in (IDictionary)obj) RuntimeObject* L_73 = V_3; NullCheck(L_73); bool L_74; L_74 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_73); if (L_74) { goto IL_0179; } } IL_01b1: { IL2CPP_LEAVE(0x1C4, FINALLY_01b3); } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_01b3; } FINALLY_01b3: {// begin finally (depth: 1) { RuntimeObject* L_75 = V_3; V_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_75, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var)); RuntimeObject* L_76 = V_2; if (!L_76) { goto IL_01c3; } } IL_01bd: { RuntimeObject* L_77 = V_2; NullCheck(L_77); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_77); } IL_01c3: { IL2CPP_END_FINALLY(435) } }// end finally (depth: 1) IL2CPP_CLEANUP(435) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x1C4, IL_01c4) } IL_01c4: { // writer.WriteObjectEnd (); JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * L_78 = ___writer1; NullCheck(L_78); JsonWriter_WriteObjectEnd_m141FFC78D2C8B82406EF7F95C9A5ECB1EDC374A9(L_78, /*hidden argument*/NULL); // return; return; } IL_01cb: { // Type obj_type = obj.GetType (); RuntimeObject * L_79 = ___obj0; NullCheck(L_79); Type_t * L_80; L_80 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_79, /*hidden argument*/NULL); V_0 = L_80; // if (custom_exporters_table.ContainsKey (obj_type)) { IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_81 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_custom_exporters_table_3(); Type_t * L_82 = V_0; NullCheck(L_81); bool L_83; L_83 = InterfaceFuncInvoker1< bool, Type_t * >::Invoke(4 /* System.Boolean System.Collections.Generic.IDictionary`2::ContainsKey(!0) */, IDictionary_2_t100B461C37F79E2F9CF3817F1BBEE5DC8495E0F5_il2cpp_TypeInfo_var, L_81, L_82); if (!L_83) { goto IL_01f2; } } { // ExporterFunc exporter = custom_exporters_table[obj_type]; IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_84 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_custom_exporters_table_3(); Type_t * L_85 = V_0; NullCheck(L_84); ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * L_86; L_86 = InterfaceFuncInvoker1< ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 *, Type_t * >::Invoke(0 /* !1 System.Collections.Generic.IDictionary`2::get_Item(!0) */, IDictionary_2_t100B461C37F79E2F9CF3817F1BBEE5DC8495E0F5_il2cpp_TypeInfo_var, L_84, L_85); // exporter (obj, writer); RuntimeObject * L_87 = ___obj0; JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * L_88 = ___writer1; NullCheck(L_86); ExporterFunc_Invoke_mACFCD0E976E5B106FAB2AC2A4B8FFEDC6F95C650(L_86, L_87, L_88, /*hidden argument*/NULL); // return; return; } IL_01f2: { // if (base_exporters_table.ContainsKey (obj_type)) { IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_89 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_base_exporters_table_2(); Type_t * L_90 = V_0; NullCheck(L_89); bool L_91; L_91 = InterfaceFuncInvoker1< bool, Type_t * >::Invoke(4 /* System.Boolean System.Collections.Generic.IDictionary`2::ContainsKey(!0) */, IDictionary_2_t100B461C37F79E2F9CF3817F1BBEE5DC8495E0F5_il2cpp_TypeInfo_var, L_89, L_90); if (!L_91) { goto IL_0212; } } { // ExporterFunc exporter = base_exporters_table[obj_type]; IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_92 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_base_exporters_table_2(); Type_t * L_93 = V_0; NullCheck(L_92); ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 * L_94; L_94 = InterfaceFuncInvoker1< ExporterFunc_t990009C675F597513B6CF9ACF400B391E9AE9773 *, Type_t * >::Invoke(0 /* !1 System.Collections.Generic.IDictionary`2::get_Item(!0) */, IDictionary_2_t100B461C37F79E2F9CF3817F1BBEE5DC8495E0F5_il2cpp_TypeInfo_var, L_92, L_93); // exporter (obj, writer); RuntimeObject * L_95 = ___obj0; JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * L_96 = ___writer1; NullCheck(L_94); ExporterFunc_Invoke_mACFCD0E976E5B106FAB2AC2A4B8FFEDC6F95C650(L_94, L_95, L_96, /*hidden argument*/NULL); // return; return; } IL_0212: { // if (obj is Enum) { RuntimeObject * L_97 = ___obj0; if (!((Enum_t23B90B40F60E677A8025267341651C94AE079CDA *)IsInstClass((RuntimeObject*)L_97, Enum_t23B90B40F60E677A8025267341651C94AE079CDA_il2cpp_TypeInfo_var))) { goto IL_0275; } } { // Type e_type = Enum.GetUnderlyingType (obj_type); Type_t * L_98 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Enum_t23B90B40F60E677A8025267341651C94AE079CDA_il2cpp_TypeInfo_var); Type_t * L_99; L_99 = Enum_GetUnderlyingType_m8BD5EDDA4C9A15C2988B27DD48314AC3C16F7A53(L_98, /*hidden argument*/NULL); V_5 = L_99; // if (e_type == typeof (long) // || e_type == typeof (uint) // || e_type == typeof (ulong)) Type_t * L_100 = V_5; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_101 = { reinterpret_cast (Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_102; L_102 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_101, /*hidden argument*/NULL); bool L_103; L_103 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046(L_100, L_102, /*hidden argument*/NULL); if (L_103) { goto IL_025b; } } { Type_t * L_104 = V_5; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_105 = { reinterpret_cast (UInt32_tE60352A06233E4E69DD198BCC67142159F686B15_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_106; L_106 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_105, /*hidden argument*/NULL); bool L_107; L_107 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046(L_104, L_106, /*hidden argument*/NULL); if (L_107) { goto IL_025b; } } { Type_t * L_108 = V_5; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_109 = { reinterpret_cast (UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_110; L_110 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_109, /*hidden argument*/NULL); bool L_111; L_111 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046(L_108, L_110, /*hidden argument*/NULL); if (!L_111) { goto IL_0268; } } IL_025b: { // writer.Write ((ulong) obj); JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * L_112 = ___writer1; RuntimeObject * L_113 = ___obj0; NullCheck(L_112); JsonWriter_Write_m6C70542008EB5A8A437EA966FD767093D9E18BCB(L_112, ((*(uint64_t*)((uint64_t*)UnBox(L_113, UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); return; } IL_0268: { // writer.Write ((int) obj); JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * L_114 = ___writer1; RuntimeObject * L_115 = ___obj0; NullCheck(L_114); JsonWriter_Write_m520AAD327374986AC0A8B685CD066F7058E26C47(L_114, ((*(int32_t*)((int32_t*)UnBox(L_115, Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); // return; return; } IL_0275: { // AddTypeProperties (obj_type); Type_t * L_116 = V_0; IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); JsonMapper_AddTypeProperties_m8EE3CF28679D9A8786E453E34B031030174593E0(L_116, /*hidden argument*/NULL); // IList props = type_properties[obj_type]; RuntimeObject* L_117 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_type_properties_12(); Type_t * L_118 = V_0; NullCheck(L_117); RuntimeObject* L_119; L_119 = InterfaceFuncInvoker1< RuntimeObject*, Type_t * >::Invoke(0 /* !1 System.Collections.Generic.IDictionary`2>::get_Item(!0) */, IDictionary_2_t16CDACDB46F2C22D302194A4E428A5CACCEB02F1_il2cpp_TypeInfo_var, L_117, L_118); // writer.WriteObjectStart (); JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * L_120 = ___writer1; NullCheck(L_120); JsonWriter_WriteObjectStart_mFD0DB249791378221BCF3329F94D5B9232B72622(L_120, /*hidden argument*/NULL); // foreach (PropertyMetadata p_data in props) { NullCheck(L_119); RuntimeObject* L_121; L_121 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1 System.Collections.Generic.IEnumerable`1::GetEnumerator() */, IEnumerable_1_tFC51C807276A02FCAAC439CA512B1831AC5FD6AA_il2cpp_TypeInfo_var, L_119); V_6 = L_121; } IL_0293: try {// begin try (depth: 1) { goto IL_0313; } IL_0295: { // foreach (PropertyMetadata p_data in props) { RuntimeObject* L_122 = V_6; NullCheck(L_122); PropertyMetadata_t82F32770B33750701D575D2F6E092A8F1EA7858F L_123; L_123 = InterfaceFuncInvoker0< PropertyMetadata_t82F32770B33750701D575D2F6E092A8F1EA7858F >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1::get_Current() */, IEnumerator_1_tC7CF758C4E4735FD13952A84823441F9BCD3C064_il2cpp_TypeInfo_var, L_122); V_7 = L_123; // if (p_data.IsField) { PropertyMetadata_t82F32770B33750701D575D2F6E092A8F1EA7858F L_124 = V_7; bool L_125 = L_124.get_IsField_1(); if (!L_125) { goto IL_02d7; } } IL_02a7: { // writer.WritePropertyName (p_data.Info.Name); JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * L_126 = ___writer1; PropertyMetadata_t82F32770B33750701D575D2F6E092A8F1EA7858F L_127 = V_7; MemberInfo_t * L_128 = L_127.get_Info_0(); NullCheck(L_128); String_t* L_129; L_129 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_128); NullCheck(L_126); JsonWriter_WritePropertyName_mDAAC9B6838862E1651D2DA3F2A9B5E88C07F1ED3(L_126, L_129, /*hidden argument*/NULL); // WriteValue (((FieldInfo) p_data.Info).GetValue (obj), // writer, writer_is_private, depth + 1); PropertyMetadata_t82F32770B33750701D575D2F6E092A8F1EA7858F L_130 = V_7; MemberInfo_t * L_131 = L_130.get_Info_0(); RuntimeObject * L_132 = ___obj0; NullCheck(((FieldInfo_t *)CastclassClass((RuntimeObject*)L_131, FieldInfo_t_il2cpp_TypeInfo_var))); RuntimeObject * L_133; L_133 = VirtualFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Object System.Reflection.FieldInfo::GetValue(System.Object) */, ((FieldInfo_t *)CastclassClass((RuntimeObject*)L_131, FieldInfo_t_il2cpp_TypeInfo_var)), L_132); JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * L_134 = ___writer1; bool L_135 = ___writer_is_private2; int32_t L_136 = ___depth3; IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); JsonMapper_WriteValue_m82EFBCF4FCE3898C9C97D6646E14A64D4A690E63(L_133, L_134, L_135, ((int32_t)il2cpp_codegen_add((int32_t)L_136, (int32_t)1)), /*hidden argument*/NULL); // } goto IL_0313; } IL_02d7: { // PropertyInfo p_info = (PropertyInfo) p_data.Info; PropertyMetadata_t82F32770B33750701D575D2F6E092A8F1EA7858F L_137 = V_7; MemberInfo_t * L_138 = L_137.get_Info_0(); V_8 = ((PropertyInfo_t *)CastclassClass((RuntimeObject*)L_138, PropertyInfo_t_il2cpp_TypeInfo_var)); // if (p_info.CanRead) { PropertyInfo_t * L_139 = V_8; NullCheck(L_139); bool L_140; L_140 = VirtualFuncInvoker0< bool >::Invoke(19 /* System.Boolean System.Reflection.PropertyInfo::get_CanRead() */, L_139); if (!L_140) { goto IL_0313; } } IL_02ee: { // writer.WritePropertyName (p_data.Info.Name); JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * L_141 = ___writer1; PropertyMetadata_t82F32770B33750701D575D2F6E092A8F1EA7858F L_142 = V_7; MemberInfo_t * L_143 = L_142.get_Info_0(); NullCheck(L_143); String_t* L_144; L_144 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_143); NullCheck(L_141); JsonWriter_WritePropertyName_mDAAC9B6838862E1651D2DA3F2A9B5E88C07F1ED3(L_141, L_144, /*hidden argument*/NULL); // WriteValue (p_info.GetValue (obj, null), // writer, writer_is_private, depth + 1); PropertyInfo_t * L_145 = V_8; RuntimeObject * L_146 = ___obj0; NullCheck(L_145); RuntimeObject * L_147; L_147 = VirtualFuncInvoker2< RuntimeObject *, RuntimeObject *, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* >::Invoke(31 /* System.Object System.Reflection.PropertyInfo::GetValue(System.Object,System.Object[]) */, L_145, L_146, (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)NULL); JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * L_148 = ___writer1; bool L_149 = ___writer_is_private2; int32_t L_150 = ___depth3; IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); JsonMapper_WriteValue_m82EFBCF4FCE3898C9C97D6646E14A64D4A690E63(L_147, L_148, L_149, ((int32_t)il2cpp_codegen_add((int32_t)L_150, (int32_t)1)), /*hidden argument*/NULL); } IL_0313: { // foreach (PropertyMetadata p_data in props) { RuntimeObject* L_151 = V_6; NullCheck(L_151); bool L_152; L_152 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_151); if (L_152) { goto IL_0295; } } IL_031f: { IL2CPP_LEAVE(0x32D, FINALLY_0321); } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0321; } FINALLY_0321: {// begin finally (depth: 1) { RuntimeObject* L_153 = V_6; if (!L_153) { goto IL_032c; } } IL_0325: { RuntimeObject* L_154 = V_6; NullCheck(L_154); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_154); } IL_032c: { IL2CPP_END_FINALLY(801) } }// end finally (depth: 1) IL2CPP_CLEANUP(801) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x32D, IL_032d) } IL_032d: { // writer.WriteObjectEnd (); JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * L_155 = ___writer1; NullCheck(L_155); JsonWriter_WriteObjectEnd_m141FFC78D2C8B82406EF7F95C9A5ECB1EDC374A9(L_155, /*hidden argument*/NULL); // } return; } } // System.String LitJson.JsonMapper::ToJson(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonMapper_ToJson_mA7C889D6779CF3A06F3A78A4213AD88A3D691175 (RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; bool V_1 = false; String_t* V_2 = NULL; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; { // lock (static_writer_lock) { IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject * L_0 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_static_writer_lock_15(); V_0 = L_0; V_1 = (bool)0; } IL_0008: try {// begin try (depth: 1) RuntimeObject * L_1 = V_0; Monitor_Enter_mBEB6CC84184B46F26375EC3FC8921D16E48EA4C4(L_1, (bool*)(&V_1), /*hidden argument*/NULL); // static_writer.Reset (); IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * L_2 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_static_writer_14(); NullCheck(L_2); JsonWriter_Reset_mB67DA27FB1A75ADAD33D5BAE25629C1DC2BD2F01(L_2, /*hidden argument*/NULL); // WriteValue (obj, static_writer, true, 0); RuntimeObject * L_3 = ___obj0; JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * L_4 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_static_writer_14(); JsonMapper_WriteValue_m82EFBCF4FCE3898C9C97D6646E14A64D4A690E63(L_3, L_4, (bool)1, 0, /*hidden argument*/NULL); // return static_writer.ToString (); JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * L_5 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_static_writer_14(); NullCheck(L_5); String_t* L_6; L_6 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_5); V_2 = L_6; IL2CPP_LEAVE(0x3E, FINALLY_0034); }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0034; } FINALLY_0034: {// begin finally (depth: 1) { bool L_7 = V_1; if (!L_7) { goto IL_003d; } } IL_0037: { RuntimeObject * L_8 = V_0; Monitor_Exit_mA776B403DA88AC77CDEEF67AB9F0D0E77ABD254A(L_8, /*hidden argument*/NULL); } IL_003d: { IL2CPP_END_FINALLY(52) } }// end finally (depth: 1) IL2CPP_CLEANUP(52) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x3E, IL_003e) } IL_003e: { // } String_t* L_9 = V_2; return L_9; } } // System.Void LitJson.JsonMapper::ToJson(System.Object,LitJson.JsonWriter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper_ToJson_m103748C77CBC86F0B33B0CA5F95DB9DD34426F35 (RuntimeObject * ___obj0, JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * ___writer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // WriteValue (obj, writer, false, 0); RuntimeObject * L_0 = ___obj0; JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * L_1 = ___writer1; IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); JsonMapper_WriteValue_m82EFBCF4FCE3898C9C97D6646E14A64D4A690E63(L_0, L_1, (bool)0, 0, /*hidden argument*/NULL); // } return; } } // LitJson.JsonData LitJson.JsonMapper::ToObject(LitJson.JsonReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonData_tEC3547D1018CC4298487EC54DD677C16BE61D514 * JsonMapper_ToObject_mE546887A3A57D4AE5B175613A37A23F6AD5DA648 (JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * ___reader0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonData_tEC3547D1018CC4298487EC54DD677C16BE61D514_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CToObjectU3Eb__32_0_m8C7E637DCAE84FB49AF7F853742294401C46BAE2_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C * G_B2_0 = NULL; WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C * G_B1_0 = NULL; { // return (JsonData) ToWrapper ( // delegate { return new JsonData (); }, reader); IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C * L_0 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9__32_0_23(); WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C * L_1 = L_0; G_B1_0 = L_1; if (L_1) { G_B2_0 = L_1; goto IL_001f; } } { IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318 * L_2 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9_0(); WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C * L_3 = (WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C *)il2cpp_codegen_object_new(WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C_il2cpp_TypeInfo_var); WrapperFactory__ctor_mFB575B55E4D60D29BCC1FB395577F0E3EAB38E91(L_3, L_2, (intptr_t)((intptr_t)U3CU3Ec_U3CToObjectU3Eb__32_0_m8C7E637DCAE84FB49AF7F853742294401C46BAE2_RuntimeMethod_var), /*hidden argument*/NULL); WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C * L_4 = L_3; ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->set_U3CU3E9__32_0_23(L_4); G_B2_0 = L_4; } IL_001f: { JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_5 = ___reader0; IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_6; L_6 = JsonMapper_ToWrapper_m61D788535FA2B054FF82CF0A3A0A2E962EE6BC13(G_B2_0, L_5, /*hidden argument*/NULL); return ((JsonData_tEC3547D1018CC4298487EC54DD677C16BE61D514 *)CastclassSealed((RuntimeObject*)L_6, JsonData_tEC3547D1018CC4298487EC54DD677C16BE61D514_il2cpp_TypeInfo_var)); } } // LitJson.JsonData LitJson.JsonMapper::ToObject(System.IO.TextReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonData_tEC3547D1018CC4298487EC54DD677C16BE61D514 * JsonMapper_ToObject_m8851C480676BB791F0DC8CE495628B918BCA5294 (TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * ___reader0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonData_tEC3547D1018CC4298487EC54DD677C16BE61D514_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CToObjectU3Eb__33_0_mEE93C599633DAA7F99DDB30BFEF7BFAFA5F1C5A5_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * V_0 = NULL; WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C * G_B2_0 = NULL; WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C * G_B1_0 = NULL; { // JsonReader json_reader = new JsonReader (reader); TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * L_0 = ___reader0; JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_1 = (JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 *)il2cpp_codegen_object_new(JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340_il2cpp_TypeInfo_var); JsonReader__ctor_mCED57B34A64E03A1F20590058A8FD614FE0B1E44(L_1, L_0, /*hidden argument*/NULL); V_0 = L_1; // return (JsonData) ToWrapper ( // delegate { return new JsonData (); }, json_reader); IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C * L_2 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9__33_0_24(); WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C * L_3 = L_2; G_B1_0 = L_3; if (L_3) { G_B2_0 = L_3; goto IL_0026; } } { IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318 * L_4 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9_0(); WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C * L_5 = (WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C *)il2cpp_codegen_object_new(WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C_il2cpp_TypeInfo_var); WrapperFactory__ctor_mFB575B55E4D60D29BCC1FB395577F0E3EAB38E91(L_5, L_4, (intptr_t)((intptr_t)U3CU3Ec_U3CToObjectU3Eb__33_0_mEE93C599633DAA7F99DDB30BFEF7BFAFA5F1C5A5_RuntimeMethod_var), /*hidden argument*/NULL); WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C * L_6 = L_5; ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->set_U3CU3E9__33_0_24(L_6); G_B2_0 = L_6; } IL_0026: { JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_7 = V_0; IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_8; L_8 = JsonMapper_ToWrapper_m61D788535FA2B054FF82CF0A3A0A2E962EE6BC13(G_B2_0, L_7, /*hidden argument*/NULL); return ((JsonData_tEC3547D1018CC4298487EC54DD677C16BE61D514 *)CastclassSealed((RuntimeObject*)L_8, JsonData_tEC3547D1018CC4298487EC54DD677C16BE61D514_il2cpp_TypeInfo_var)); } } // LitJson.JsonData LitJson.JsonMapper::ToObject(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonData_tEC3547D1018CC4298487EC54DD677C16BE61D514 * JsonMapper_ToObject_mA439B3408096233E8EB4611CFC585BA3B9243869 (String_t* ___json0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonData_tEC3547D1018CC4298487EC54DD677C16BE61D514_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CToObjectU3Eb__34_0_m043C3A7D95BD6CE729E9A7ED0F92ABF346CBEF0E_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C * G_B2_0 = NULL; WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C * G_B1_0 = NULL; { // return (JsonData) ToWrapper ( // delegate { return new JsonData (); }, json); IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C * L_0 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9__34_0_25(); WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C * L_1 = L_0; G_B1_0 = L_1; if (L_1) { G_B2_0 = L_1; goto IL_001f; } } { IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var); U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318 * L_2 = ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->get_U3CU3E9_0(); WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C * L_3 = (WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C *)il2cpp_codegen_object_new(WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C_il2cpp_TypeInfo_var); WrapperFactory__ctor_mFB575B55E4D60D29BCC1FB395577F0E3EAB38E91(L_3, L_2, (intptr_t)((intptr_t)U3CU3Ec_U3CToObjectU3Eb__34_0_m043C3A7D95BD6CE729E9A7ED0F92ABF346CBEF0E_RuntimeMethod_var), /*hidden argument*/NULL); WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C * L_4 = L_3; ((U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t11C52A76F7A303927739AB645A073139A0A72318_il2cpp_TypeInfo_var))->set_U3CU3E9__34_0_25(L_4); G_B2_0 = L_4; } IL_001f: { String_t* L_5 = ___json0; IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_6; L_6 = JsonMapper_ToWrapper_m96476C968010DE771BAA8466896D54F804E75829(G_B2_0, L_5, /*hidden argument*/NULL); return ((JsonData_tEC3547D1018CC4298487EC54DD677C16BE61D514 *)CastclassSealed((RuntimeObject*)L_6, JsonData_tEC3547D1018CC4298487EC54DD677C16BE61D514_il2cpp_TypeInfo_var)); } } // System.Object LitJson.JsonMapper::ToObject(System.Type,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JsonMapper_ToObject_m679EFCC56A8098D204F11402F165EB86E3465C9C (Type_t * ___toType0, String_t* ___json1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * V_0 = NULL; { // JsonReader reader = new JsonReader(json); String_t* L_0 = ___json1; JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_1 = (JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 *)il2cpp_codegen_object_new(JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340_il2cpp_TypeInfo_var); JsonReader__ctor_m9C1648178CF28BDEF993FD4269448E94DE6C747D(L_1, L_0, /*hidden argument*/NULL); V_0 = L_1; // return ReadValue(toType, reader); Type_t * L_2 = ___toType0; JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_3 = V_0; IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject * L_4; L_4 = JsonMapper_ReadValue_mAFB51230BD1563167F207F1BE32BEA869ED3368B(L_2, L_3, /*hidden argument*/NULL); return L_4; } } // LitJson.IJsonWrapper LitJson.JsonMapper::ToWrapper(LitJson.WrapperFactory,LitJson.JsonReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonMapper_ToWrapper_m61D788535FA2B054FF82CF0A3A0A2E962EE6BC13 (WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C * ___factory0, JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * ___reader1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // return ReadValue (factory, reader); WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C * L_0 = ___factory0; JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_1 = ___reader1; IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_2; L_2 = JsonMapper_ReadValue_m90F55D903FF73E163375A52F6F9C3CA9DD0B365C(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // LitJson.IJsonWrapper LitJson.JsonMapper::ToWrapper(LitJson.WrapperFactory,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonMapper_ToWrapper_m96476C968010DE771BAA8466896D54F804E75829 (WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C * ___factory0, String_t* ___json1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * V_0 = NULL; { // JsonReader reader = new JsonReader (json); String_t* L_0 = ___json1; JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_1 = (JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 *)il2cpp_codegen_object_new(JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340_il2cpp_TypeInfo_var); JsonReader__ctor_m9C1648178CF28BDEF993FD4269448E94DE6C747D(L_1, L_0, /*hidden argument*/NULL); V_0 = L_1; // return ReadValue (factory, reader); WrapperFactory_tC16B9815728DCF373075A58613C53F04F640941C * L_2 = ___factory0; JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * L_3 = V_0; IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_4; L_4 = JsonMapper_ReadValue_m90F55D903FF73E163375A52F6F9C3CA9DD0B365C(L_2, L_3, /*hidden argument*/NULL); return L_4; } } // System.Void LitJson.JsonMapper::UnregisterExporters() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper_UnregisterExporters_mB05355C86FB239B097B78660FB96AFCC630548AB (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_tB1D7EB08AB25512108A69980F1B665280DB9F197_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // custom_exporters_table.Clear (); IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_0 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_custom_exporters_table_3(); NullCheck(L_0); InterfaceActionInvoker0::Invoke(3 /* System.Void System.Collections.Generic.ICollection`1>::Clear() */, ICollection_1_tB1D7EB08AB25512108A69980F1B665280DB9F197_il2cpp_TypeInfo_var, L_0); // } return; } } // System.Void LitJson.JsonMapper::UnregisterImporters() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper_UnregisterImporters_m02AA044BF4C8E12AC53EDB641F58CFD7E06781FB (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_tAD4208B4A8FADCE4C52B4DBDD2845C84C2BC3445_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // custom_importers_table.Clear (); IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var); RuntimeObject* L_0 = ((JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_StaticFields*)il2cpp_codegen_static_fields_for(JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5_il2cpp_TypeInfo_var))->get_custom_importers_table_5(); NullCheck(L_0); InterfaceActionInvoker0::Invoke(3 /* System.Void System.Collections.Generic.ICollection`1>>::Clear() */, ICollection_1_tAD4208B4A8FADCE4C52B4DBDD2845C84C2BC3445_il2cpp_TypeInfo_var, L_0); // } return; } } // System.Void LitJson.JsonMapper::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMapper__ctor_m11BC123A163FCFDF38A0F4B6FFF3BDD1E4420144 (JsonMapper_tA04417DF2855139F8E6214DAE1241EF6D9E521C5 * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Boolean LitJson.JsonMockWrapper::get_IsArray() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonMockWrapper_get_IsArray_mEA480C67660B3651DC79165D3076F886F60FB9A8 (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, const RuntimeMethod* method) { { // public bool IsArray { get { return false; } } return (bool)0; } } // System.Boolean LitJson.JsonMockWrapper::get_IsBoolean() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonMockWrapper_get_IsBoolean_mD4C3181B4B3683B11357E38F0F722F9AD8147F53 (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, const RuntimeMethod* method) { { // public bool IsBoolean { get { return false; } } return (bool)0; } } // System.Boolean LitJson.JsonMockWrapper::get_IsDouble() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonMockWrapper_get_IsDouble_m96546021B4D2AA48D3CE080550920F6A1329C843 (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, const RuntimeMethod* method) { { // public bool IsDouble { get { return false; } } return (bool)0; } } // System.Boolean LitJson.JsonMockWrapper::get_IsInt() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonMockWrapper_get_IsInt_m4D1BE85AFADDD67F7412A7AD8F1AD4EE5E3B33DB (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, const RuntimeMethod* method) { { // public bool IsInt { get { return false; } } return (bool)0; } } // System.Boolean LitJson.JsonMockWrapper::get_IsLong() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonMockWrapper_get_IsLong_m49B22099A90EDF5390E78B42E3FBD30F1058D4CA (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, const RuntimeMethod* method) { { // public bool IsLong { get { return false; } } return (bool)0; } } // System.Boolean LitJson.JsonMockWrapper::get_IsObject() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonMockWrapper_get_IsObject_m4B5B434DDFE62F2840C84CFF2622FCDDFF1B664A (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, const RuntimeMethod* method) { { // public bool IsObject { get { return false; } } return (bool)0; } } // System.Boolean LitJson.JsonMockWrapper::get_IsString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonMockWrapper_get_IsString_mC4A7934288A9ED508239D2538E09E933357424F8 (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, const RuntimeMethod* method) { { // public bool IsString { get { return false; } } return (bool)0; } } // System.Boolean LitJson.JsonMockWrapper::GetBoolean() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonMockWrapper_GetBoolean_m02C570FD50F4A7B79D294CBFC13688CBA97FF54A (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, const RuntimeMethod* method) { { // public bool GetBoolean () { return false; } return (bool)0; } } // System.Double LitJson.JsonMockWrapper::GetDouble() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double JsonMockWrapper_GetDouble_mFEDD2E782EB2A31ED2EED00B2F3298EC4B807156 (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, const RuntimeMethod* method) { { // public double GetDouble () { return 0.0; } return (0.0); } } // System.Int32 LitJson.JsonMockWrapper::GetInt() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonMockWrapper_GetInt_mCA5432D355D4FFB707F1A30348C3148A9A6D1176 (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, const RuntimeMethod* method) { { // public int GetInt () { return 0; } return 0; } } // LitJson.JsonType LitJson.JsonMockWrapper::GetJsonType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonMockWrapper_GetJsonType_mE07A79C24BF8AC7797406261A1F93A0AE98B54CB (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, const RuntimeMethod* method) { { // public JsonType GetJsonType () { return JsonType.None; } return (int32_t)(0); } } // System.Int64 LitJson.JsonMockWrapper::GetLong() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t JsonMockWrapper_GetLong_m7116079555857AAF947B72EEAE8055DC7018C62C (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, const RuntimeMethod* method) { { // public long GetLong () { return 0L; } return ((int64_t)((int64_t)0)); } } // System.String LitJson.JsonMockWrapper::GetString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonMockWrapper_GetString_mFEA72B5E341F5FE9ED550FB4A46BD44C360223C5 (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709); s_Il2CppMethodInitialized = true; } { // public string GetString () { return ""; } return _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709; } } // System.Void LitJson.JsonMockWrapper::SetBoolean(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMockWrapper_SetBoolean_m69FB03F3F0D1C2907186A928D50D6C6ABFCA63B5 (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, bool ___val0, const RuntimeMethod* method) { { // public void SetBoolean (bool val) {} return; } } // System.Void LitJson.JsonMockWrapper::SetDouble(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMockWrapper_SetDouble_m634CA4F64A2A24CDF30042948AED02DC37450418 (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, double ___val0, const RuntimeMethod* method) { { // public void SetDouble (double val) {} return; } } // System.Void LitJson.JsonMockWrapper::SetInt(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMockWrapper_SetInt_m173AD7E1760F34A22DF3CBAE65ACC5216B02531D (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, int32_t ___val0, const RuntimeMethod* method) { { // public void SetInt (int val) {} return; } } // System.Void LitJson.JsonMockWrapper::SetJsonType(LitJson.JsonType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMockWrapper_SetJsonType_m6DD202C9F07FADA1E9C89EFFED7A7F480CDEE28E (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, int32_t ___type0, const RuntimeMethod* method) { { // public void SetJsonType (JsonType type) {} return; } } // System.Void LitJson.JsonMockWrapper::SetLong(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMockWrapper_SetLong_m43B9C2D52CC829692FA452FB9EE8B2EE7011CBBD (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, int64_t ___val0, const RuntimeMethod* method) { { // public void SetLong (long val) {} return; } } // System.Void LitJson.JsonMockWrapper::SetString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMockWrapper_SetString_m3A2382CA8847628F00E1742E2F46571CADBA4001 (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, String_t* ___val0, const RuntimeMethod* method) { { // public void SetString (string val) {} return; } } // System.String LitJson.JsonMockWrapper::ToJson() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonMockWrapper_ToJson_m23CA8C5EDCB483AAA3366AED7026A6797E6A8884 (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709); s_Il2CppMethodInitialized = true; } { // public string ToJson () { return ""; } return _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709; } } // System.Void LitJson.JsonMockWrapper::ToJson(LitJson.JsonWriter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMockWrapper_ToJson_m9B3998507C078CC8F25C8A03CE9612DA69EAD428 (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * ___writer0, const RuntimeMethod* method) { { // public void ToJson (JsonWriter writer) {} return; } } // System.Boolean LitJson.JsonMockWrapper::System.Collections.IList.get_IsFixedSize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonMockWrapper_System_Collections_IList_get_IsFixedSize_m5A477B5FD724745884271AB8DBAD2B0A043DCBA3 (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, const RuntimeMethod* method) { { // bool IList.IsFixedSize { get { return true; } } return (bool)1; } } // System.Boolean LitJson.JsonMockWrapper::System.Collections.IList.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonMockWrapper_System_Collections_IList_get_IsReadOnly_m3CC31F24F2763752A673CD810E79D1D79F14653E (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, const RuntimeMethod* method) { { // bool IList.IsReadOnly { get { return true; } } return (bool)1; } } // System.Object LitJson.JsonMockWrapper::System.Collections.IList.get_Item(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JsonMockWrapper_System_Collections_IList_get_Item_m2F44723EACB5715CCCB8C9E3A545F6F1C4F68455 (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, int32_t ___index0, const RuntimeMethod* method) { { // get { return null; } return NULL; } } // System.Void LitJson.JsonMockWrapper::System.Collections.IList.set_Item(System.Int32,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMockWrapper_System_Collections_IList_set_Item_mB6D58B2A23408FC784E849DC1C8CAFEDBC6CE6FE (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method) { { // set {} return; } } // System.Int32 LitJson.JsonMockWrapper::System.Collections.IList.Add(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonMockWrapper_System_Collections_IList_Add_mB9EE241833727EBA111EF3CB98873FFDF50590DF (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { // int IList.Add (object value) { return 0; } return 0; } } // System.Void LitJson.JsonMockWrapper::System.Collections.IList.Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMockWrapper_System_Collections_IList_Clear_mEB05CA51F00F182DB2A2D3B886949089782B4943 (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, const RuntimeMethod* method) { { // void IList.Clear () {} return; } } // System.Boolean LitJson.JsonMockWrapper::System.Collections.IList.Contains(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonMockWrapper_System_Collections_IList_Contains_m89EB8E849435E65E7EEBDCFB5C480EA6A4A566FF (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { // bool IList.Contains (object value) { return false; } return (bool)0; } } // System.Int32 LitJson.JsonMockWrapper::System.Collections.IList.IndexOf(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonMockWrapper_System_Collections_IList_IndexOf_m2509EEC3D203E15C1C5B96DC889BA75F48E3740C (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { // int IList.IndexOf (object value) { return -1; } return (-1); } } // System.Void LitJson.JsonMockWrapper::System.Collections.IList.Insert(System.Int32,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMockWrapper_System_Collections_IList_Insert_m54B7D5CA9DBC19DA9103D574521D734453455968 (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, int32_t ___i0, RuntimeObject * ___v1, const RuntimeMethod* method) { { // void IList.Insert (int i, object v) {} return; } } // System.Void LitJson.JsonMockWrapper::System.Collections.IList.Remove(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMockWrapper_System_Collections_IList_Remove_m31CB9957330C657560EC79318E30BD1D0D84CE5A (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { // void IList.Remove (object value) {} return; } } // System.Void LitJson.JsonMockWrapper::System.Collections.IList.RemoveAt(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMockWrapper_System_Collections_IList_RemoveAt_m8AB68F9FDD8A3AB95A24D39F6DB8AC909BD3D15D (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, int32_t ___index0, const RuntimeMethod* method) { { // void IList.RemoveAt (int index) {} return; } } // System.Int32 LitJson.JsonMockWrapper::System.Collections.ICollection.get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonMockWrapper_System_Collections_ICollection_get_Count_m81A41E40573F652634A4237B76BCE7D23F86EFC3 (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, const RuntimeMethod* method) { { // int ICollection.Count { get { return 0; } } return 0; } } // System.Boolean LitJson.JsonMockWrapper::System.Collections.ICollection.get_IsSynchronized() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonMockWrapper_System_Collections_ICollection_get_IsSynchronized_m84A54E8E1F43065075A2BD9F52931C84DE85F404 (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, const RuntimeMethod* method) { { // bool ICollection.IsSynchronized { get { return false; } } return (bool)0; } } // System.Object LitJson.JsonMockWrapper::System.Collections.ICollection.get_SyncRoot() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JsonMockWrapper_System_Collections_ICollection_get_SyncRoot_mF00020F6384AE129E07A4713CF6BC280AEFEDD5E (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, const RuntimeMethod* method) { { // object ICollection.SyncRoot { get { return null; } } return NULL; } } // System.Void LitJson.JsonMockWrapper::System.Collections.ICollection.CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMockWrapper_System_Collections_ICollection_CopyTo_m78125C7BC31B4DA20862024A23153FB9111977F2 (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { { // void ICollection.CopyTo (Array array, int index) {} return; } } // System.Collections.IEnumerator LitJson.JsonMockWrapper::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonMockWrapper_System_Collections_IEnumerable_GetEnumerator_m851769464F5CB91713F0CD75C772BD1DED5D2640 (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, const RuntimeMethod* method) { { // IEnumerator IEnumerable.GetEnumerator () { return null; } return (RuntimeObject*)NULL; } } // System.Boolean LitJson.JsonMockWrapper::System.Collections.IDictionary.get_IsFixedSize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonMockWrapper_System_Collections_IDictionary_get_IsFixedSize_m49039B9568AEC8DC6F545EA416C77586C0927AE4 (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, const RuntimeMethod* method) { { // bool IDictionary.IsFixedSize { get { return true; } } return (bool)1; } } // System.Boolean LitJson.JsonMockWrapper::System.Collections.IDictionary.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonMockWrapper_System_Collections_IDictionary_get_IsReadOnly_m334A900DB215F22A29A008ABA3FA9EAB12C6FD19 (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, const RuntimeMethod* method) { { // bool IDictionary.IsReadOnly { get { return true; } } return (bool)1; } } // System.Collections.ICollection LitJson.JsonMockWrapper::System.Collections.IDictionary.get_Keys() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonMockWrapper_System_Collections_IDictionary_get_Keys_m09B3DBE231752795597DC20BF71D024816630948 (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, const RuntimeMethod* method) { { // ICollection IDictionary.Keys { get { return null; } } return (RuntimeObject*)NULL; } } // System.Collections.ICollection LitJson.JsonMockWrapper::System.Collections.IDictionary.get_Values() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonMockWrapper_System_Collections_IDictionary_get_Values_mD41BDECE466EBFDE0DF5E7705EEF7D41A88F3697 (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, const RuntimeMethod* method) { { // ICollection IDictionary.Values { get { return null; } } return (RuntimeObject*)NULL; } } // System.Object LitJson.JsonMockWrapper::System.Collections.IDictionary.get_Item(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JsonMockWrapper_System_Collections_IDictionary_get_Item_m7F373B5878A25AF8A40650E21FDD93BA39AB9AA9 (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { { // get { return null; } return NULL; } } // System.Void LitJson.JsonMockWrapper::System.Collections.IDictionary.set_Item(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMockWrapper_System_Collections_IDictionary_set_Item_mC9C9DF05A1C09B95DA09AB9C9B1E2CD6B367ABBD (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { { // set {} return; } } // System.Void LitJson.JsonMockWrapper::System.Collections.IDictionary.Add(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMockWrapper_System_Collections_IDictionary_Add_m07B4BA38E8BA9DA3F070D8F95B7D09D0502E2CBA (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, RuntimeObject * ___k0, RuntimeObject * ___v1, const RuntimeMethod* method) { { // void IDictionary.Add (object k, object v) {} return; } } // System.Void LitJson.JsonMockWrapper::System.Collections.IDictionary.Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMockWrapper_System_Collections_IDictionary_Clear_m02E62DCEB2CD7127219928D97D0569A847809486 (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, const RuntimeMethod* method) { { // void IDictionary.Clear () {} return; } } // System.Boolean LitJson.JsonMockWrapper::System.Collections.IDictionary.Contains(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonMockWrapper_System_Collections_IDictionary_Contains_m48142B47A6CD839843E12935298042C4760236AA (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { { // bool IDictionary.Contains (object key) { return false; } return (bool)0; } } // System.Void LitJson.JsonMockWrapper::System.Collections.IDictionary.Remove(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMockWrapper_System_Collections_IDictionary_Remove_mBD15E664A6B1898D0447D429036D70C7AC2B276F (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { { // void IDictionary.Remove (object key) {} return; } } // System.Collections.IDictionaryEnumerator LitJson.JsonMockWrapper::System.Collections.IDictionary.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonMockWrapper_System_Collections_IDictionary_GetEnumerator_m2A860BD8234E24973EEF3183991AC2CF5A3BA0FD (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, const RuntimeMethod* method) { { // IDictionaryEnumerator IDictionary.GetEnumerator () { return null; } return (RuntimeObject*)NULL; } } // System.Object LitJson.JsonMockWrapper::LitJson.IOrderedDictionary.get_Item(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JsonMockWrapper_LitJson_IOrderedDictionary_get_Item_m0B149F8E8D5BF204600313D534EF70822A6F0D1D (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, int32_t ___idx0, const RuntimeMethod* method) { { // get { return null; } return NULL; } } // System.Void LitJson.JsonMockWrapper::LitJson.IOrderedDictionary.set_Item(System.Int32,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMockWrapper_LitJson_IOrderedDictionary_set_Item_mF88EFE07B3BFE7E9C943F4387DCAB296DD5738CC (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, int32_t ___idx0, RuntimeObject * ___value1, const RuntimeMethod* method) { { // set {} return; } } // System.Collections.IDictionaryEnumerator LitJson.JsonMockWrapper::LitJson.IOrderedDictionary.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonMockWrapper_LitJson_IOrderedDictionary_GetEnumerator_m435E71BF4C971BF228F7D68BEAEE10C25124FAB0 (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, const RuntimeMethod* method) { { // return null; return (RuntimeObject*)NULL; } } // System.Void LitJson.JsonMockWrapper::LitJson.IOrderedDictionary.Insert(System.Int32,System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMockWrapper_LitJson_IOrderedDictionary_Insert_mFCEF48AB6C5764D20C9E2EB499A0675AE8EF84AB (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, int32_t ___i0, RuntimeObject * ___k1, RuntimeObject * ___v2, const RuntimeMethod* method) { { // void IOrderedDictionary.Insert (int i, object k, object v) {} return; } } // System.Void LitJson.JsonMockWrapper::LitJson.IOrderedDictionary.RemoveAt(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMockWrapper_LitJson_IOrderedDictionary_RemoveAt_m330947334EE22FC5275360E7181FF615248010F4 (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, int32_t ___i0, const RuntimeMethod* method) { { // void IOrderedDictionary.RemoveAt (int i) {} return; } } // System.Void LitJson.JsonMockWrapper::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonMockWrapper__ctor_mF53990CB7535C9D24A1A36AD384483CE56640A6B (JsonMockWrapper_tCCD1B9DAF40AF5D5CDB657BB1F4E6FE931E8CA24 * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // BestHTTP.SignalRCore.TransferModes BestHTTP.SignalRCore.JsonProtocol::get_Type() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonProtocol_get_Type_m6EFB2A92C33F9A651D9D2D113771C6B50CDE9E77 (JsonProtocol_tB82FEAFDEBC166F53B523853DA071388D57D79A4 * __this, const RuntimeMethod* method) { { // public TransferModes Type { get { return TransferModes.Text; } } return (int32_t)(1); } } // BestHTTP.SignalRCore.IEncoder BestHTTP.SignalRCore.JsonProtocol::get_Encoder() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonProtocol_get_Encoder_mCC02DE42ADBFD93DF4D54DF3C00D6616C13F1B8C (JsonProtocol_tB82FEAFDEBC166F53B523853DA071388D57D79A4 * __this, const RuntimeMethod* method) { { // public IEncoder Encoder { get; private set; } RuntimeObject* L_0 = __this->get_U3CEncoderU3Ek__BackingField_1(); return L_0; } } // System.Void BestHTTP.SignalRCore.JsonProtocol::set_Encoder(BestHTTP.SignalRCore.IEncoder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonProtocol_set_Encoder_mDD345DB736CA7EFB764059FAA0BF3797D1CD5E61 (JsonProtocol_tB82FEAFDEBC166F53B523853DA071388D57D79A4 * __this, RuntimeObject* ___value0, const RuntimeMethod* method) { { // public IEncoder Encoder { get; private set; } RuntimeObject* L_0 = ___value0; __this->set_U3CEncoderU3Ek__BackingField_1(L_0); return; } } // BestHTTP.SignalRCore.HubConnection BestHTTP.SignalRCore.JsonProtocol::get_Connection() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HubConnection_tD0CD7A840685CA3DCC65913C32524F0C81F6C8D6 * JsonProtocol_get_Connection_m6506EF14AB435C9A558FCCEEF7D8B5CA8E1A479C (JsonProtocol_tB82FEAFDEBC166F53B523853DA071388D57D79A4 * __this, const RuntimeMethod* method) { { // public HubConnection Connection { get; set; } HubConnection_tD0CD7A840685CA3DCC65913C32524F0C81F6C8D6 * L_0 = __this->get_U3CConnectionU3Ek__BackingField_2(); return L_0; } } // System.Void BestHTTP.SignalRCore.JsonProtocol::set_Connection(BestHTTP.SignalRCore.HubConnection) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonProtocol_set_Connection_m3AE153169000D4B0C8750A5A816EBB0BAC8DE391 (JsonProtocol_tB82FEAFDEBC166F53B523853DA071388D57D79A4 * __this, HubConnection_tD0CD7A840685CA3DCC65913C32524F0C81F6C8D6 * ___value0, const RuntimeMethod* method) { { // public HubConnection Connection { get; set; } HubConnection_tD0CD7A840685CA3DCC65913C32524F0C81F6C8D6 * L_0 = ___value0; __this->set_U3CConnectionU3Ek__BackingField_2(L_0); return; } } // System.Void BestHTTP.SignalRCore.JsonProtocol::.ctor(BestHTTP.SignalRCore.IEncoder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonProtocol__ctor_m3704CA0FF00FEDBA16CE9315BF0BFE2B9A38C436 (JsonProtocol_tB82FEAFDEBC166F53B523853DA071388D57D79A4 * __this, RuntimeObject* ___encoder0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEncoder_t24E72EE05B58DEC15E03A38641A9B0E2C95197A4_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral43187C90BBB5DFB063A95733C9BD65ECD25A2E84); s_Il2CppMethodInitialized = true; } { // public JsonProtocol(IEncoder encoder) Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); // if (encoder == null) RuntimeObject* L_0 = ___encoder0; if (L_0) { goto IL_0014; } } { // throw new ArgumentNullException("encoder"); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8ECE837BA7230B14B050EF37843797187D4C7113)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonProtocol__ctor_m3704CA0FF00FEDBA16CE9315BF0BFE2B9A38C436_RuntimeMethod_var))); } IL_0014: { // if (encoder.Name != "json") RuntimeObject* L_2 = ___encoder0; NullCheck(L_2); String_t* L_3; L_3 = InterfaceFuncInvoker0< String_t* >::Invoke(0 /* System.String BestHTTP.SignalRCore.IEncoder::get_Name() */, IEncoder_t24E72EE05B58DEC15E03A38641A9B0E2C95197A4_il2cpp_TypeInfo_var, L_2); bool L_4; L_4 = String_op_Inequality_mDDA2DDED3E7EF042987EB7180EE3E88105F0AAE2(L_3, _stringLiteral43187C90BBB5DFB063A95733C9BD65ECD25A2E84, /*hidden argument*/NULL); if (!L_4) { goto IL_0031; } } { // throw new ArgumentException("Encoder must be a json encoder!"); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_5 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE320A9D44FCB2BAE27A21C6114E4A8014023E000)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonProtocol__ctor_m3704CA0FF00FEDBA16CE9315BF0BFE2B9A38C436_RuntimeMethod_var))); } IL_0031: { // this.Encoder = encoder; RuntimeObject* L_6 = ___encoder0; JsonProtocol_set_Encoder_mDD345DB736CA7EFB764059FAA0BF3797D1CD5E61_inline(__this, L_6, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SignalRCore.JsonProtocol::ParseMessages(System.String,System.Collections.Generic.List`1&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonProtocol_ParseMessages_m1281E9FDA7EC765308D5551A8F9F1708DD4A16B3 (JsonProtocol_tB82FEAFDEBC166F53B523853DA071388D57D79A4 * __this, String_t* ___data0, List_1_tA4B5BEC690306B3DC7901CEA473C0A5BC3243F8B ** ___messages1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEncoder_DecodeAs_TisMessage_t7A5AEEC23C8151DAE56A0BF20600B63ED4BEB6D3_m48192623E7743070C3F3A151EEB1E9756F2894BC_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m5661E32F6048E09663B9FA80AB5DE3865851BD08_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; String_t* V_2 = NULL; Message_t7A5AEEC23C8151DAE56A0BF20600B63ED4BEB6D3 V_3; memset((&V_3), 0, sizeof(V_3)); { // int from = 0; V_0 = 0; // int separatorIdx = data.IndexOf(JsonProtocol.Separator); String_t* L_0 = ___data0; NullCheck(L_0); int32_t L_1; L_1 = String_IndexOf_mEE2D2F738175E3FF05580366D6226DBD673CA2BE(L_0, ((int32_t)30), /*hidden argument*/NULL); V_1 = L_1; // if (separatorIdx == -1) int32_t L_2 = V_1; if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_0048; } } { // throw new Exception("Missing separator!"); Exception_t * L_3 = (Exception_t *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var))); Exception__ctor_m8ECDE8ACA7F2E0EF1144BD1200FB5DB2870B5F11(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA93413BFB1B213BA9C49EEC7909A02015AE02DA9)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonProtocol_ParseMessages_m1281E9FDA7EC765308D5551A8F9F1708DD4A16B3_RuntimeMethod_var))); } IL_001a: { // string sub = data.Substring(from, separatorIdx - from); String_t* L_4 = ___data0; int32_t L_5 = V_0; int32_t L_6 = V_1; int32_t L_7 = V_0; NullCheck(L_4); String_t* L_8; L_8 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_4, L_5, ((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)L_7)), /*hidden argument*/NULL); V_2 = L_8; // var message = this.Encoder.DecodeAs(sub); RuntimeObject* L_9; L_9 = JsonProtocol_get_Encoder_mCC02DE42ADBFD93DF4D54DF3C00D6616C13F1B8C_inline(__this, /*hidden argument*/NULL); String_t* L_10 = V_2; NullCheck(L_9); Message_t7A5AEEC23C8151DAE56A0BF20600B63ED4BEB6D3 L_11; L_11 = GenericInterfaceFuncInvoker1< Message_t7A5AEEC23C8151DAE56A0BF20600B63ED4BEB6D3 , String_t* >::Invoke(IEncoder_DecodeAs_TisMessage_t7A5AEEC23C8151DAE56A0BF20600B63ED4BEB6D3_m48192623E7743070C3F3A151EEB1E9756F2894BC_RuntimeMethod_var, L_9, L_10); V_3 = L_11; // messages.Add(message); List_1_tA4B5BEC690306B3DC7901CEA473C0A5BC3243F8B ** L_12 = ___messages1; List_1_tA4B5BEC690306B3DC7901CEA473C0A5BC3243F8B * L_13 = *((List_1_tA4B5BEC690306B3DC7901CEA473C0A5BC3243F8B **)L_12); Message_t7A5AEEC23C8151DAE56A0BF20600B63ED4BEB6D3 L_14 = V_3; NullCheck(L_13); List_1_Add_m5661E32F6048E09663B9FA80AB5DE3865851BD08(L_13, L_14, /*hidden argument*/List_1_Add_m5661E32F6048E09663B9FA80AB5DE3865851BD08_RuntimeMethod_var); // from = separatorIdx + 1; int32_t L_15 = V_1; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); // separatorIdx = data.IndexOf(JsonProtocol.Separator, from); String_t* L_16 = ___data0; int32_t L_17 = V_0; NullCheck(L_16); int32_t L_18; L_18 = String_IndexOf_mAD7052CB25BA1D60A8F055AA89D09809F61233DB(L_16, ((int32_t)30), L_17, /*hidden argument*/NULL); V_1 = L_18; } IL_0048: { // while (separatorIdx != -1) int32_t L_19 = V_1; if ((!(((uint32_t)L_19) == ((uint32_t)(-1))))) { goto IL_001a; } } { // } return; } } // System.Void BestHTTP.SignalRCore.JsonProtocol::ParseMessages(System.Byte[],System.Collections.Generic.List`1&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonProtocol_ParseMessages_m55C86679D417E2DFCAACD1164D3207DD1FB972B9 (JsonProtocol_tB82FEAFDEBC166F53B523853DA071388D57D79A4 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___data0, List_1_tA4B5BEC690306B3DC7901CEA473C0A5BC3243F8B ** ___messages1, const RuntimeMethod* method) { { // public void ParseMessages(byte[] data, ref List messages) { } return; } } // System.Byte[] BestHTTP.SignalRCore.JsonProtocol::EncodeMessage(BestHTTP.SignalRCore.Messages.Message) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* JsonProtocol_EncodeMessage_m19A4C114B5CC1A932D526B5EAE76171B4A77F275 (JsonProtocol_tB82FEAFDEBC166F53B523853DA071388D57D79A4 * __this, Message_t7A5AEEC23C8151DAE56A0BF20600B63ED4BEB6D3 ___message0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEncoder_EncodeAsText_TisCancelInvocationMessage_t11BB5BF6A7125A5CFD91D367AB77D627B9C6394D_mB2086879E399DB420DAB295936D9AE17EA967522_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEncoder_EncodeAsText_TisInvocationMessage_t00C6F237BBABEFF9A81BCC9BD79AEB1CD9FF5C89_m5B697F005F63F49F113316DE0B81C240384CF3BA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEncoder_EncodeAsText_TisPingMessage_t05D03F8804B9C5668F98CFEB5761D5AE95CD63AA_m9E0737D492D1E77FE905A8BB15B09A88DA5F01B7_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; int32_t V_1 = 0; InvocationMessage_t00C6F237BBABEFF9A81BCC9BD79AEB1CD9FF5C89 V_2; memset((&V_2), 0, sizeof(V_2)); CancelInvocationMessage_t11BB5BF6A7125A5CFD91D367AB77D627B9C6394D V_3; memset((&V_3), 0, sizeof(V_3)); PingMessage_t05D03F8804B9C5668F98CFEB5761D5AE95CD63AA V_4; memset((&V_4), 0, sizeof(V_4)); { // string json = null; V_0 = (String_t*)NULL; // switch (message.type) Message_t7A5AEEC23C8151DAE56A0BF20600B63ED4BEB6D3 L_0 = ___message0; int32_t L_1 = L_0.get_type_0(); V_1 = L_1; int32_t L_2 = V_1; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)1))) { case 0: { goto IL_002e; } case 1: { goto IL_00c0; } case 2: { goto IL_00c0; } case 3: { goto IL_002e; } case 4: { goto IL_0086; } case 5: { goto IL_00aa; } } } { goto IL_00c0; } IL_002e: { // json = this.Encoder.EncodeAsText(new InvocationMessage() // { // type = message.type, // invocationId = message.invocationId, // nonblocking = message.nonblocking, // target = message.target, // arguments = message.arguments // }); RuntimeObject* L_3; L_3 = JsonProtocol_get_Encoder_mCC02DE42ADBFD93DF4D54DF3C00D6616C13F1B8C_inline(__this, /*hidden argument*/NULL); il2cpp_codegen_initobj((&V_2), sizeof(InvocationMessage_t00C6F237BBABEFF9A81BCC9BD79AEB1CD9FF5C89 )); Message_t7A5AEEC23C8151DAE56A0BF20600B63ED4BEB6D3 L_4 = ___message0; int32_t L_5 = L_4.get_type_0(); (&V_2)->set_type_0(L_5); Message_t7A5AEEC23C8151DAE56A0BF20600B63ED4BEB6D3 L_6 = ___message0; String_t* L_7 = L_6.get_invocationId_1(); (&V_2)->set_invocationId_1(L_7); Message_t7A5AEEC23C8151DAE56A0BF20600B63ED4BEB6D3 L_8 = ___message0; bool L_9 = L_8.get_nonblocking_2(); (&V_2)->set_nonblocking_2(L_9); Message_t7A5AEEC23C8151DAE56A0BF20600B63ED4BEB6D3 L_10 = ___message0; String_t* L_11 = L_10.get_target_3(); (&V_2)->set_target_3(L_11); Message_t7A5AEEC23C8151DAE56A0BF20600B63ED4BEB6D3 L_12 = ___message0; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_13 = L_12.get_arguments_4(); (&V_2)->set_arguments_4(L_13); InvocationMessage_t00C6F237BBABEFF9A81BCC9BD79AEB1CD9FF5C89 L_14 = V_2; NullCheck(L_3); String_t* L_15; L_15 = GenericInterfaceFuncInvoker1< String_t*, InvocationMessage_t00C6F237BBABEFF9A81BCC9BD79AEB1CD9FF5C89 >::Invoke(IEncoder_EncodeAsText_TisInvocationMessage_t00C6F237BBABEFF9A81BCC9BD79AEB1CD9FF5C89_m5B697F005F63F49F113316DE0B81C240384CF3BA_RuntimeMethod_var, L_3, L_14); V_0 = L_15; // break; goto IL_00c0; } IL_0086: { // json = this.Encoder.EncodeAsText(new CancelInvocationMessage() // { // invocationId = message.invocationId // }); RuntimeObject* L_16; L_16 = JsonProtocol_get_Encoder_mCC02DE42ADBFD93DF4D54DF3C00D6616C13F1B8C_inline(__this, /*hidden argument*/NULL); il2cpp_codegen_initobj((&V_3), sizeof(CancelInvocationMessage_t11BB5BF6A7125A5CFD91D367AB77D627B9C6394D )); Message_t7A5AEEC23C8151DAE56A0BF20600B63ED4BEB6D3 L_17 = ___message0; String_t* L_18 = L_17.get_invocationId_1(); (&V_3)->set_invocationId_0(L_18); CancelInvocationMessage_t11BB5BF6A7125A5CFD91D367AB77D627B9C6394D L_19 = V_3; NullCheck(L_16); String_t* L_20; L_20 = GenericInterfaceFuncInvoker1< String_t*, CancelInvocationMessage_t11BB5BF6A7125A5CFD91D367AB77D627B9C6394D >::Invoke(IEncoder_EncodeAsText_TisCancelInvocationMessage_t11BB5BF6A7125A5CFD91D367AB77D627B9C6394D_mB2086879E399DB420DAB295936D9AE17EA967522_RuntimeMethod_var, L_16, L_19); V_0 = L_20; // break; goto IL_00c0; } IL_00aa: { // json = this.Encoder.EncodeAsText(new PingMessage()); RuntimeObject* L_21; L_21 = JsonProtocol_get_Encoder_mCC02DE42ADBFD93DF4D54DF3C00D6616C13F1B8C_inline(__this, /*hidden argument*/NULL); il2cpp_codegen_initobj((&V_4), sizeof(PingMessage_t05D03F8804B9C5668F98CFEB5761D5AE95CD63AA )); PingMessage_t05D03F8804B9C5668F98CFEB5761D5AE95CD63AA L_22 = V_4; NullCheck(L_21); String_t* L_23; L_23 = GenericInterfaceFuncInvoker1< String_t*, PingMessage_t05D03F8804B9C5668F98CFEB5761D5AE95CD63AA >::Invoke(IEncoder_EncodeAsText_TisPingMessage_t05D03F8804B9C5668F98CFEB5761D5AE95CD63AA_m9E0737D492D1E77FE905A8BB15B09A88DA5F01B7_RuntimeMethod_var, L_21, L_22); V_0 = L_23; } IL_00c0: { // return !string.IsNullOrEmpty(json) ? JsonProtocol.WithSeparator(json) : null; String_t* L_24 = V_0; bool L_25; L_25 = String_IsNullOrEmpty_m9AFBB5335B441B94E884B8A9D4A27AD60E3D7F7C(L_24, /*hidden argument*/NULL); if (!L_25) { goto IL_00ca; } } { return (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)NULL; } IL_00ca: { String_t* L_26 = V_0; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_27; L_27 = JsonProtocol_WithSeparator_m94FF5F80136E71EFF9668F7ADD9DEA367F4EAB4A(L_26, /*hidden argument*/NULL); return L_27; } } // System.Object[] BestHTTP.SignalRCore.JsonProtocol::GetRealArguments(System.Type[],System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* JsonProtocol_GetRealArguments_m2E5EE9FA6894C6C1B3E13CFF94DE1A42E3F868E9 (JsonProtocol_tB82FEAFDEBC166F53B523853DA071388D57D79A4 * __this, TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ___argTypes0, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___arguments1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_0 = NULL; int32_t V_1 = 0; { // if (arguments == null || arguments.Length == 0) ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = ___arguments1; if (!L_0) { goto IL_0007; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = ___arguments1; NullCheck(L_1); if ((((RuntimeArray*)L_1)->max_length)) { goto IL_0009; } } IL_0007: { // return null; return (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)NULL; } IL_0009: { // if (argTypes.Length > arguments.Length) TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_2 = ___argTypes0; NullCheck(L_2); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_3 = ___arguments1; NullCheck(L_3); if ((((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))) <= ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))) { goto IL_0031; } } { // throw new Exception(string.Format("argType.Length({0}) < arguments.length({1})", argTypes.Length, arguments.Length)); TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_4 = ___argTypes0; NullCheck(L_4); int32_t L_5 = ((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))); RuntimeObject * L_6 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)), &L_5); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_7 = ___arguments1; NullCheck(L_7); int32_t L_8 = ((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length))); RuntimeObject * L_9 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)), &L_8); String_t* L_10; L_10 = String_Format_m8D1CB0410C35E052A53AE957C914C841E54BAB66(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral908E865567AA1C41537CA9ED31282C445994DD4B)), L_6, L_9, /*hidden argument*/NULL); Exception_t * L_11 = (Exception_t *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var))); Exception__ctor_m8ECDE8ACA7F2E0EF1144BD1200FB5DB2870B5F11(L_11, L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonProtocol_GetRealArguments_m2E5EE9FA6894C6C1B3E13CFF94DE1A42E3F868E9_RuntimeMethod_var))); } IL_0031: { // object[] realArgs = new object[arguments.Length]; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_12 = ___arguments1; NullCheck(L_12); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_13 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))); V_0 = L_13; // for (int i = 0; i < arguments.Length; ++i) V_1 = 0; goto IL_0051; } IL_003e: { // realArgs[i] = ConvertTo(argTypes[i], arguments[i]); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_14 = V_0; int32_t L_15 = V_1; TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_16 = ___argTypes0; int32_t L_17 = V_1; NullCheck(L_16); int32_t L_18 = L_17; Type_t * L_19 = (L_16)->GetAt(static_cast(L_18)); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_20 = ___arguments1; int32_t L_21 = V_1; NullCheck(L_20); int32_t L_22 = L_21; RuntimeObject * L_23 = (L_20)->GetAt(static_cast(L_22)); RuntimeObject * L_24; L_24 = JsonProtocol_ConvertTo_mF3B677B3DFC9825BB86F42B48316CC951379CF99(__this, L_19, L_23, /*hidden argument*/NULL); NullCheck(L_14); ArrayElementTypeCheck (L_14, L_24); (L_14)->SetAt(static_cast(L_15), (RuntimeObject *)L_24); // for (int i = 0; i < arguments.Length; ++i) int32_t L_25 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1)); } IL_0051: { // for (int i = 0; i < arguments.Length; ++i) int32_t L_26 = V_1; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_27 = ___arguments1; NullCheck(L_27); if ((((int32_t)L_26) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_27)->max_length)))))) { goto IL_003e; } } { // return realArgs; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_28 = V_0; return L_28; } } // System.Object BestHTTP.SignalRCore.JsonProtocol::ConvertTo(System.Type,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JsonProtocol_ConvertTo_mF3B677B3DFC9825BB86F42B48316CC951379CF99 (JsonProtocol_tB82FEAFDEBC166F53B523853DA071388D57D79A4 * __this, Type_t * ___toType0, RuntimeObject * ___obj1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEncoder_t24E72EE05B58DEC15E03A38641A9B0E2C95197A4_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (obj == null) RuntimeObject * L_0 = ___obj1; if (L_0) { goto IL_0005; } } { // return null; return NULL; } IL_0005: { // if (toType.IsPrimitive || toType.IsEnum) Type_t * L_1 = ___toType0; NullCheck(L_1); bool L_2; L_2 = Type_get_IsPrimitive_m43E50D507C45CE3BD51C0DC07C8AB061AFD6B3C3(L_1, /*hidden argument*/NULL); if (L_2) { goto IL_0015; } } { Type_t * L_3 = ___toType0; NullCheck(L_3); bool L_4; L_4 = VirtualFuncInvoker0< bool >::Invoke(80 /* System.Boolean System.Type::get_IsEnum() */, L_3); if (!L_4) { goto IL_001d; } } IL_0015: { // return Convert.ChangeType(obj, toType); RuntimeObject * L_5 = ___obj1; Type_t * L_6 = ___toType0; IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var); RuntimeObject * L_7; L_7 = Convert_ChangeType_mD726EC15920319382D858ECD7FD78339110D7FD4(L_5, L_6, /*hidden argument*/NULL); return L_7; } IL_001d: { // if (toType == typeof(string)) Type_t * L_8 = ___toType0; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_9 = { reinterpret_cast (String_t_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_10; L_10 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_9, /*hidden argument*/NULL); bool L_11; L_11 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046(L_8, L_10, /*hidden argument*/NULL); if (!L_11) { goto IL_0036; } } { // return obj.ToString(); RuntimeObject * L_12 = ___obj1; NullCheck(L_12); String_t* L_13; L_13 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_12); return L_13; } IL_0036: { // return this.Encoder.ConvertTo(toType, obj); RuntimeObject* L_14; L_14 = JsonProtocol_get_Encoder_mCC02DE42ADBFD93DF4D54DF3C00D6616C13F1B8C_inline(__this, /*hidden argument*/NULL); Type_t * L_15 = ___toType0; RuntimeObject * L_16 = ___obj1; NullCheck(L_14); RuntimeObject * L_17; L_17 = InterfaceFuncInvoker2< RuntimeObject *, Type_t *, RuntimeObject * >::Invoke(5 /* System.Object BestHTTP.SignalRCore.IEncoder::ConvertTo(System.Type,System.Object) */, IEncoder_t24E72EE05B58DEC15E03A38641A9B0E2C95197A4_il2cpp_TypeInfo_var, L_14, L_15, L_16); return L_17; } } // System.Byte[] BestHTTP.SignalRCore.JsonProtocol::WithSeparator(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* JsonProtocol_WithSeparator_m94FF5F80136E71EFF9668F7ADD9DEA367F4EAB4A (String_t* ___str0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_1 = NULL; { // int len = System.Text.Encoding.UTF8.GetByteCount(str); Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_0; L_0 = Encoding_get_UTF8_mC877FB3137BBD566AEE7B15F9BF61DC4EF8F5E5E(/*hidden argument*/NULL); String_t* L_1 = ___str0; NullCheck(L_0); int32_t L_2; L_2 = VirtualFuncInvoker1< int32_t, String_t* >::Invoke(11 /* System.Int32 System.Text.Encoding::GetByteCount(System.String) */, L_0, L_1); V_0 = L_2; // byte[] buffer = new byte[len + 1]; int32_t L_3 = V_0; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))); V_1 = L_4; // System.Text.Encoding.UTF8.GetBytes(str, 0, str.Length, buffer, 0); Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_5; L_5 = Encoding_get_UTF8_mC877FB3137BBD566AEE7B15F9BF61DC4EF8F5E5E(/*hidden argument*/NULL); String_t* L_6 = ___str0; String_t* L_7 = ___str0; NullCheck(L_7); int32_t L_8; L_8 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_7, /*hidden argument*/NULL); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_9 = V_1; NullCheck(L_5); int32_t L_10; L_10 = VirtualFuncInvoker5< int32_t, String_t*, int32_t, int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t >::Invoke(19 /* System.Int32 System.Text.Encoding::GetBytes(System.String,System.Int32,System.Int32,System.Byte[],System.Int32) */, L_5, L_6, 0, L_8, L_9, 0); // buffer[len] = 0x1e; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_11 = V_1; int32_t L_12 = V_0; NullCheck(L_11); (L_11)->SetAt(static_cast(L_12), (uint8_t)((int32_t)30)); // return buffer; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_13 = V_1; return L_13; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Boolean LitJson.JsonReader::get_AllowComments() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonReader_get_AllowComments_m1E0AEA421372A20C208B21C6D5205B7B0A9628F1 (JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * __this, const RuntimeMethod* method) { { // get { return lexer.AllowComments; } Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC * L_0 = __this->get_lexer_6(); NullCheck(L_0); bool L_1; L_1 = Lexer_get_AllowComments_m1A6C52BB3E9393E290FCABF5BAFBF01B3F2E5F65_inline(L_0, /*hidden argument*/NULL); return L_1; } } // System.Void LitJson.JsonReader::set_AllowComments(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader_set_AllowComments_mB6A11160A4EE4D0861CBA86FD17E13AC6BE323AF (JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * __this, bool ___value0, const RuntimeMethod* method) { { // set { lexer.AllowComments = value; } Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC * L_0 = __this->get_lexer_6(); bool L_1 = ___value0; NullCheck(L_0); Lexer_set_AllowComments_mF05F92B7429CC2BD0F9B0B79F2C1F69CF8DCBB96_inline(L_0, L_1, /*hidden argument*/NULL); // set { lexer.AllowComments = value; } return; } } // System.Boolean LitJson.JsonReader::get_AllowSingleQuotedStrings() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonReader_get_AllowSingleQuotedStrings_m159BA3E2A5906E0DC3C258CE282F3ED43243B4B6 (JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * __this, const RuntimeMethod* method) { { // get { return lexer.AllowSingleQuotedStrings; } Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC * L_0 = __this->get_lexer_6(); NullCheck(L_0); bool L_1; L_1 = Lexer_get_AllowSingleQuotedStrings_m1EC6609CB289B9294B10E28804182CC9DCD25353_inline(L_0, /*hidden argument*/NULL); return L_1; } } // System.Void LitJson.JsonReader::set_AllowSingleQuotedStrings(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader_set_AllowSingleQuotedStrings_m5222EA78AB23D061D6CC839C5C6EAA2B08A09FD0 (JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * __this, bool ___value0, const RuntimeMethod* method) { { // set { lexer.AllowSingleQuotedStrings = value; } Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC * L_0 = __this->get_lexer_6(); bool L_1 = ___value0; NullCheck(L_0); Lexer_set_AllowSingleQuotedStrings_mFB60C851F11B2077892BC1F2812F3B7DBAAB404B_inline(L_0, L_1, /*hidden argument*/NULL); // set { lexer.AllowSingleQuotedStrings = value; } return; } } // System.Boolean LitJson.JsonReader::get_SkipNonMembers() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonReader_get_SkipNonMembers_m7502484B14185A0B54F14903DC857CE1F8195CEC (JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * __this, const RuntimeMethod* method) { { // get { return skip_non_members; } bool L_0 = __this->get_skip_non_members_12(); return L_0; } } // System.Void LitJson.JsonReader::set_SkipNonMembers(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader_set_SkipNonMembers_m9AB7F89F6BB65B9E38626D27922EC0D53EF4E584 (JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * __this, bool ___value0, const RuntimeMethod* method) { { // set { skip_non_members = value; } bool L_0 = ___value0; __this->set_skip_non_members_12(L_0); // set { skip_non_members = value; } return; } } // System.Boolean LitJson.JsonReader::get_EndOfInput() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonReader_get_EndOfInput_mF57E06167F04018F1AB1FD6A07578F65F33F1ACF (JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * __this, const RuntimeMethod* method) { { // get { return end_of_input; } bool L_0 = __this->get_end_of_input_5(); return L_0; } } // System.Boolean LitJson.JsonReader::get_EndOfJson() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonReader_get_EndOfJson_m9DFF6ABD3CE3E774E9D03D86C73A68B59E24A868 (JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * __this, const RuntimeMethod* method) { { // get { return end_of_json; } bool L_0 = __this->get_end_of_json_4(); return L_0; } } // LitJson.JsonToken LitJson.JsonReader::get_Token() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonReader_get_Token_m99F431E80F34EC42D60383A0C5D664C88BB6DBE2 (JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * __this, const RuntimeMethod* method) { { // get { return token; } int32_t L_0 = __this->get_token_14(); return L_0; } } // System.Object LitJson.JsonReader::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JsonReader_get_Value_m41A4AF5CA872B017E062E2CCCEB83398F5B4F419 (JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * __this, const RuntimeMethod* method) { { // get { return token_value; } RuntimeObject * L_0 = __this->get_token_value_13(); return L_0; } } // System.Void LitJson.JsonReader::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader__cctor_m74DF9001EB4383A62C331F5228E1AEC05D3D4BFD (const RuntimeMethod* method) { { // PopulateParseTable (); JsonReader_PopulateParseTable_m8DF0774DB71E90746938CECA8A03E66D2A3E14EE(/*hidden argument*/NULL); // } return; } } // System.Void LitJson.JsonReader::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader__ctor_m9C1648178CF28BDEF993FD4269448E94DE6C747D (JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * __this, String_t* ___json_text0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringReader_t74E352C280EAC22C878867444978741F19E1F895_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // this (new StringReader (json_text), true) String_t* L_0 = ___json_text0; StringReader_t74E352C280EAC22C878867444978741F19E1F895 * L_1 = (StringReader_t74E352C280EAC22C878867444978741F19E1F895 *)il2cpp_codegen_object_new(StringReader_t74E352C280EAC22C878867444978741F19E1F895_il2cpp_TypeInfo_var); StringReader__ctor_m7CC29D8E83F4813395ACA9CF4F756B1BCE09A7EE(L_1, L_0, /*hidden argument*/NULL); JsonReader__ctor_mE57B0D768E7062A6AE1675293C00E149D78BB0F3(__this, L_1, (bool)1, /*hidden argument*/NULL); // } return; } } // System.Void LitJson.JsonReader::.ctor(System.IO.TextReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader__ctor_mCED57B34A64E03A1F20590058A8FD614FE0B1E44 (JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * __this, TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * ___reader0, const RuntimeMethod* method) { { // this (reader, false) TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * L_0 = ___reader0; JsonReader__ctor_mE57B0D768E7062A6AE1675293C00E149D78BB0F3(__this, L_0, (bool)0, /*hidden argument*/NULL); // } return; } } // System.Void LitJson.JsonReader::.ctor(System.IO.TextReader,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader__ctor_mE57B0D768E7062A6AE1675293C00E149D78BB0F3 (JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * __this, TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * ___reader0, bool ___owned1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Push_m3E6C815B71F17B20A42B72193A29D0FB92F576E4_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1__ctor_m41EBD1EDB9A3AC64B4EE3B6AAC08868FF28DA954_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_tC6C298385D16F10F391B84280D21FE059A45CC55_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // private JsonReader (TextReader reader, bool owned) Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); // if (reader == null) TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * L_0 = ___reader0; if (L_0) { goto IL_0014; } } { // throw new ArgumentNullException ("reader"); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralECAC83771A00C701043A940F621CC1C765D30D31)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonReader__ctor_mE57B0D768E7062A6AE1675293C00E149D78BB0F3_RuntimeMethod_var))); } IL_0014: { // parser_in_string = false; __this->set_parser_in_string_7((bool)0); // parser_return = false; __this->set_parser_return_8((bool)0); // read_started = false; __this->set_read_started_9((bool)0); // automaton_stack = new Stack (); Stack_1_tC6C298385D16F10F391B84280D21FE059A45CC55 * L_2 = (Stack_1_tC6C298385D16F10F391B84280D21FE059A45CC55 *)il2cpp_codegen_object_new(Stack_1_tC6C298385D16F10F391B84280D21FE059A45CC55_il2cpp_TypeInfo_var); Stack_1__ctor_m41EBD1EDB9A3AC64B4EE3B6AAC08868FF28DA954(L_2, /*hidden argument*/Stack_1__ctor_m41EBD1EDB9A3AC64B4EE3B6AAC08868FF28DA954_RuntimeMethod_var); __this->set_automaton_stack_1(L_2); // automaton_stack.Push ((int) ParserToken.End); Stack_1_tC6C298385D16F10F391B84280D21FE059A45CC55 * L_3 = __this->get_automaton_stack_1(); NullCheck(L_3); Stack_1_Push_m3E6C815B71F17B20A42B72193A29D0FB92F576E4(L_3, ((int32_t)65553), /*hidden argument*/Stack_1_Push_m3E6C815B71F17B20A42B72193A29D0FB92F576E4_RuntimeMethod_var); // automaton_stack.Push ((int) ParserToken.Text); Stack_1_tC6C298385D16F10F391B84280D21FE059A45CC55 * L_4 = __this->get_automaton_stack_1(); NullCheck(L_4); Stack_1_Push_m3E6C815B71F17B20A42B72193A29D0FB92F576E4(L_4, ((int32_t)65543), /*hidden argument*/Stack_1_Push_m3E6C815B71F17B20A42B72193A29D0FB92F576E4_RuntimeMethod_var); // lexer = new Lexer (reader); TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * L_5 = ___reader0; Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC * L_6 = (Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC *)il2cpp_codegen_object_new(Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC_il2cpp_TypeInfo_var); Lexer__ctor_m428FD31159DBAE3BA3279D928ADFAC40258F6614(L_6, L_5, /*hidden argument*/NULL); __this->set_lexer_6(L_6); // end_of_input = false; __this->set_end_of_input_5((bool)0); // end_of_json = false; __this->set_end_of_json_4((bool)0); // skip_non_members = true; __this->set_skip_non_members_12((bool)1); // this.reader = reader; TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * L_7 = ___reader0; __this->set_reader_10(L_7); // reader_is_owned = owned; bool L_8 = ___owned1; __this->set_reader_is_owned_11(L_8); // } return; } } // System.Void LitJson.JsonReader::PopulateParseTable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader_PopulateParseTable_m8DF0774DB71E90746938CECA8A03E66D2A3E14EE (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m2EBF1ECBC92F80383944B79DCCDA176099E0BF78_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_tF15AAE882479CD2CDC37ED42D021B9745B61FFD9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____59B7E757844D3BF9299877BD1C17451611BFBAB493374D6B18D973FDE534151A_102_FieldInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____5B979F69B96A61586A09DD4ED26F20534C629B08732AE32FA34B6F8A0049ACDD_104_FieldInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____7FCA397EF25DB53B2C58A05F9BBFA4E8E0685FDBC8AAF39536123447056895C0_147_FieldInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____B257E85A5D3CAB5E738D5A0FD1A7AE96624BFE92CB7915726CBBE1518C3225CF_213_FieldInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____B7A918F6F138CA8137025633559198B529D28CCEC5A51B005376CC69A5B83D85_224_FieldInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____FC03ECB1D62767A5B31230F548FA4D4C02F01E3DA8CA1FC66C7C332EA16BF206_308_FieldInfo_var); s_Il2CppMethodInitialized = true; } { // parse_table = new Dictionary> (); Dictionary_2_tF15AAE882479CD2CDC37ED42D021B9745B61FFD9 * L_0 = (Dictionary_2_tF15AAE882479CD2CDC37ED42D021B9745B61FFD9 *)il2cpp_codegen_object_new(Dictionary_2_tF15AAE882479CD2CDC37ED42D021B9745B61FFD9_il2cpp_TypeInfo_var); Dictionary_2__ctor_m2EBF1ECBC92F80383944B79DCCDA176099E0BF78(L_0, /*hidden argument*/Dictionary_2__ctor_m2EBF1ECBC92F80383944B79DCCDA176099E0BF78_RuntimeMethod_var); IL2CPP_RUNTIME_CLASS_INIT(JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340_il2cpp_TypeInfo_var); ((JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340_StaticFields*)il2cpp_codegen_static_fields_for(JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340_il2cpp_TypeInfo_var))->set_parse_table_0(L_0); // TableAddRow (ParserToken.Array); JsonReader_TableAddRow_m4BBE185CAF48E27D723231D0EAFA45B1ABF7C567(((int32_t)65548), /*hidden argument*/NULL); // TableAddCol (ParserToken.Array, '[', // '[', // (int) ParserToken.ArrayPrime); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_1 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)2); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_2 = L_1; NullCheck(L_2); (L_2)->SetAt(static_cast(0), (int32_t)((int32_t)91)); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_3 = L_2; NullCheck(L_3); (L_3)->SetAt(static_cast(1), (int32_t)((int32_t)65549)); JsonReader_TableAddCol_mF494145B2247103C35FBE7420B274171BB01951F(((int32_t)65548), ((int32_t)91), L_3, /*hidden argument*/NULL); // TableAddRow (ParserToken.ArrayPrime); JsonReader_TableAddRow_m4BBE185CAF48E27D723231D0EAFA45B1ABF7C567(((int32_t)65549), /*hidden argument*/NULL); // TableAddCol (ParserToken.ArrayPrime, '"', // (int) ParserToken.Value, // // (int) ParserToken.ValueRest, // ']'); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_4 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)3); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_5 = L_4; RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 L_6 = { reinterpret_cast (U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____7FCA397EF25DB53B2C58A05F9BBFA4E8E0685FDBC8AAF39536123447056895C0_147_FieldInfo_var) }; RuntimeHelpers_InitializeArray_mE27238308FED781F2D6A719F0903F2E1311B058F((RuntimeArray *)(RuntimeArray *)L_5, L_6, /*hidden argument*/NULL); JsonReader_TableAddCol_mF494145B2247103C35FBE7420B274171BB01951F(((int32_t)65549), ((int32_t)34), L_5, /*hidden argument*/NULL); // TableAddCol (ParserToken.ArrayPrime, '[', // (int) ParserToken.Value, // (int) ParserToken.ValueRest, // ']'); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_7 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)3); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_8 = L_7; RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 L_9 = { reinterpret_cast (U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____7FCA397EF25DB53B2C58A05F9BBFA4E8E0685FDBC8AAF39536123447056895C0_147_FieldInfo_var) }; RuntimeHelpers_InitializeArray_mE27238308FED781F2D6A719F0903F2E1311B058F((RuntimeArray *)(RuntimeArray *)L_8, L_9, /*hidden argument*/NULL); JsonReader_TableAddCol_mF494145B2247103C35FBE7420B274171BB01951F(((int32_t)65549), ((int32_t)91), L_8, /*hidden argument*/NULL); // TableAddCol (ParserToken.ArrayPrime, ']', // ']'); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_10 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)1); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_11 = L_10; NullCheck(L_11); (L_11)->SetAt(static_cast(0), (int32_t)((int32_t)93)); JsonReader_TableAddCol_mF494145B2247103C35FBE7420B274171BB01951F(((int32_t)65549), ((int32_t)93), L_11, /*hidden argument*/NULL); // TableAddCol (ParserToken.ArrayPrime, '{', // (int) ParserToken.Value, // (int) ParserToken.ValueRest, // ']'); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_12 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)3); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_13 = L_12; RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 L_14 = { reinterpret_cast (U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____7FCA397EF25DB53B2C58A05F9BBFA4E8E0685FDBC8AAF39536123447056895C0_147_FieldInfo_var) }; RuntimeHelpers_InitializeArray_mE27238308FED781F2D6A719F0903F2E1311B058F((RuntimeArray *)(RuntimeArray *)L_13, L_14, /*hidden argument*/NULL); JsonReader_TableAddCol_mF494145B2247103C35FBE7420B274171BB01951F(((int32_t)65549), ((int32_t)123), L_13, /*hidden argument*/NULL); // TableAddCol (ParserToken.ArrayPrime, (int) ParserToken.Number, // (int) ParserToken.Value, // (int) ParserToken.ValueRest, // ']'); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_15 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)3); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_16 = L_15; RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 L_17 = { reinterpret_cast (U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____7FCA397EF25DB53B2C58A05F9BBFA4E8E0685FDBC8AAF39536123447056895C0_147_FieldInfo_var) }; RuntimeHelpers_InitializeArray_mE27238308FED781F2D6A719F0903F2E1311B058F((RuntimeArray *)(RuntimeArray *)L_16, L_17, /*hidden argument*/NULL); JsonReader_TableAddCol_mF494145B2247103C35FBE7420B274171BB01951F(((int32_t)65549), ((int32_t)65537), L_16, /*hidden argument*/NULL); // TableAddCol (ParserToken.ArrayPrime, (int) ParserToken.True, // (int) ParserToken.Value, // (int) ParserToken.ValueRest, // ']'); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_18 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)3); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_19 = L_18; RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 L_20 = { reinterpret_cast (U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____7FCA397EF25DB53B2C58A05F9BBFA4E8E0685FDBC8AAF39536123447056895C0_147_FieldInfo_var) }; RuntimeHelpers_InitializeArray_mE27238308FED781F2D6A719F0903F2E1311B058F((RuntimeArray *)(RuntimeArray *)L_19, L_20, /*hidden argument*/NULL); JsonReader_TableAddCol_mF494145B2247103C35FBE7420B274171BB01951F(((int32_t)65549), ((int32_t)65538), L_19, /*hidden argument*/NULL); // TableAddCol (ParserToken.ArrayPrime, (int) ParserToken.False, // (int) ParserToken.Value, // (int) ParserToken.ValueRest, // ']'); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_21 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)3); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_22 = L_21; RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 L_23 = { reinterpret_cast (U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____7FCA397EF25DB53B2C58A05F9BBFA4E8E0685FDBC8AAF39536123447056895C0_147_FieldInfo_var) }; RuntimeHelpers_InitializeArray_mE27238308FED781F2D6A719F0903F2E1311B058F((RuntimeArray *)(RuntimeArray *)L_22, L_23, /*hidden argument*/NULL); JsonReader_TableAddCol_mF494145B2247103C35FBE7420B274171BB01951F(((int32_t)65549), ((int32_t)65539), L_22, /*hidden argument*/NULL); // TableAddCol (ParserToken.ArrayPrime, (int) ParserToken.Null, // (int) ParserToken.Value, // (int) ParserToken.ValueRest, // ']'); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_24 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)3); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_25 = L_24; RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 L_26 = { reinterpret_cast (U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____7FCA397EF25DB53B2C58A05F9BBFA4E8E0685FDBC8AAF39536123447056895C0_147_FieldInfo_var) }; RuntimeHelpers_InitializeArray_mE27238308FED781F2D6A719F0903F2E1311B058F((RuntimeArray *)(RuntimeArray *)L_25, L_26, /*hidden argument*/NULL); JsonReader_TableAddCol_mF494145B2247103C35FBE7420B274171BB01951F(((int32_t)65549), ((int32_t)65540), L_25, /*hidden argument*/NULL); // TableAddRow (ParserToken.Object); JsonReader_TableAddRow_m4BBE185CAF48E27D723231D0EAFA45B1ABF7C567(((int32_t)65544), /*hidden argument*/NULL); // TableAddCol (ParserToken.Object, '{', // '{', // (int) ParserToken.ObjectPrime); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_27 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)2); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_28 = L_27; NullCheck(L_28); (L_28)->SetAt(static_cast(0), (int32_t)((int32_t)123)); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_29 = L_28; NullCheck(L_29); (L_29)->SetAt(static_cast(1), (int32_t)((int32_t)65545)); JsonReader_TableAddCol_mF494145B2247103C35FBE7420B274171BB01951F(((int32_t)65544), ((int32_t)123), L_29, /*hidden argument*/NULL); // TableAddRow (ParserToken.ObjectPrime); JsonReader_TableAddRow_m4BBE185CAF48E27D723231D0EAFA45B1ABF7C567(((int32_t)65545), /*hidden argument*/NULL); // TableAddCol (ParserToken.ObjectPrime, '"', // (int) ParserToken.Pair, // (int) ParserToken.PairRest, // '}'); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_30 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)3); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_31 = L_30; RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 L_32 = { reinterpret_cast (U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____59B7E757844D3BF9299877BD1C17451611BFBAB493374D6B18D973FDE534151A_102_FieldInfo_var) }; RuntimeHelpers_InitializeArray_mE27238308FED781F2D6A719F0903F2E1311B058F((RuntimeArray *)(RuntimeArray *)L_31, L_32, /*hidden argument*/NULL); JsonReader_TableAddCol_mF494145B2247103C35FBE7420B274171BB01951F(((int32_t)65545), ((int32_t)34), L_31, /*hidden argument*/NULL); // TableAddCol (ParserToken.ObjectPrime, '}', // '}'); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_33 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)1); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_34 = L_33; NullCheck(L_34); (L_34)->SetAt(static_cast(0), (int32_t)((int32_t)125)); JsonReader_TableAddCol_mF494145B2247103C35FBE7420B274171BB01951F(((int32_t)65545), ((int32_t)125), L_34, /*hidden argument*/NULL); // TableAddRow (ParserToken.Pair); JsonReader_TableAddRow_m4BBE185CAF48E27D723231D0EAFA45B1ABF7C567(((int32_t)65546), /*hidden argument*/NULL); // TableAddCol (ParserToken.Pair, '"', // (int) ParserToken.String, // ':', // (int) ParserToken.Value); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_35 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)3); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_36 = L_35; RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 L_37 = { reinterpret_cast (U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____B7A918F6F138CA8137025633559198B529D28CCEC5A51B005376CC69A5B83D85_224_FieldInfo_var) }; RuntimeHelpers_InitializeArray_mE27238308FED781F2D6A719F0903F2E1311B058F((RuntimeArray *)(RuntimeArray *)L_36, L_37, /*hidden argument*/NULL); JsonReader_TableAddCol_mF494145B2247103C35FBE7420B274171BB01951F(((int32_t)65546), ((int32_t)34), L_36, /*hidden argument*/NULL); // TableAddRow (ParserToken.PairRest); JsonReader_TableAddRow_m4BBE185CAF48E27D723231D0EAFA45B1ABF7C567(((int32_t)65547), /*hidden argument*/NULL); // TableAddCol (ParserToken.PairRest, ',', // ',', // (int) ParserToken.Pair, // (int) ParserToken.PairRest); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_38 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)3); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_39 = L_38; RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 L_40 = { reinterpret_cast (U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____FC03ECB1D62767A5B31230F548FA4D4C02F01E3DA8CA1FC66C7C332EA16BF206_308_FieldInfo_var) }; RuntimeHelpers_InitializeArray_mE27238308FED781F2D6A719F0903F2E1311B058F((RuntimeArray *)(RuntimeArray *)L_39, L_40, /*hidden argument*/NULL); JsonReader_TableAddCol_mF494145B2247103C35FBE7420B274171BB01951F(((int32_t)65547), ((int32_t)44), L_39, /*hidden argument*/NULL); // TableAddCol (ParserToken.PairRest, '}', // (int) ParserToken.Epsilon); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_41 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)1); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_42 = L_41; NullCheck(L_42); (L_42)->SetAt(static_cast(0), (int32_t)((int32_t)65554)); JsonReader_TableAddCol_mF494145B2247103C35FBE7420B274171BB01951F(((int32_t)65547), ((int32_t)125), L_42, /*hidden argument*/NULL); // TableAddRow (ParserToken.String); JsonReader_TableAddRow_m4BBE185CAF48E27D723231D0EAFA45B1ABF7C567(((int32_t)65552), /*hidden argument*/NULL); // TableAddCol (ParserToken.String, '"', // '"', // (int) ParserToken.CharSeq, // '"'); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_43 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)3); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_44 = L_43; RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 L_45 = { reinterpret_cast (U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____B257E85A5D3CAB5E738D5A0FD1A7AE96624BFE92CB7915726CBBE1518C3225CF_213_FieldInfo_var) }; RuntimeHelpers_InitializeArray_mE27238308FED781F2D6A719F0903F2E1311B058F((RuntimeArray *)(RuntimeArray *)L_44, L_45, /*hidden argument*/NULL); JsonReader_TableAddCol_mF494145B2247103C35FBE7420B274171BB01951F(((int32_t)65552), ((int32_t)34), L_44, /*hidden argument*/NULL); // TableAddRow (ParserToken.Text); JsonReader_TableAddRow_m4BBE185CAF48E27D723231D0EAFA45B1ABF7C567(((int32_t)65543), /*hidden argument*/NULL); // TableAddCol (ParserToken.Text, '[', // (int) ParserToken.Array); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_46 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)1); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_47 = L_46; NullCheck(L_47); (L_47)->SetAt(static_cast(0), (int32_t)((int32_t)65548)); JsonReader_TableAddCol_mF494145B2247103C35FBE7420B274171BB01951F(((int32_t)65543), ((int32_t)91), L_47, /*hidden argument*/NULL); // TableAddCol (ParserToken.Text, '{', // (int) ParserToken.Object); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_48 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)1); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_49 = L_48; NullCheck(L_49); (L_49)->SetAt(static_cast(0), (int32_t)((int32_t)65544)); JsonReader_TableAddCol_mF494145B2247103C35FBE7420B274171BB01951F(((int32_t)65543), ((int32_t)123), L_49, /*hidden argument*/NULL); // TableAddRow (ParserToken.Value); JsonReader_TableAddRow_m4BBE185CAF48E27D723231D0EAFA45B1ABF7C567(((int32_t)65550), /*hidden argument*/NULL); // TableAddCol (ParserToken.Value, '"', // (int) ParserToken.String); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_50 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)1); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_51 = L_50; NullCheck(L_51); (L_51)->SetAt(static_cast(0), (int32_t)((int32_t)65552)); JsonReader_TableAddCol_mF494145B2247103C35FBE7420B274171BB01951F(((int32_t)65550), ((int32_t)34), L_51, /*hidden argument*/NULL); // TableAddCol (ParserToken.Value, '[', // (int) ParserToken.Array); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_52 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)1); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_53 = L_52; NullCheck(L_53); (L_53)->SetAt(static_cast(0), (int32_t)((int32_t)65548)); JsonReader_TableAddCol_mF494145B2247103C35FBE7420B274171BB01951F(((int32_t)65550), ((int32_t)91), L_53, /*hidden argument*/NULL); // TableAddCol (ParserToken.Value, '{', // (int) ParserToken.Object); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_54 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)1); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_55 = L_54; NullCheck(L_55); (L_55)->SetAt(static_cast(0), (int32_t)((int32_t)65544)); JsonReader_TableAddCol_mF494145B2247103C35FBE7420B274171BB01951F(((int32_t)65550), ((int32_t)123), L_55, /*hidden argument*/NULL); // TableAddCol (ParserToken.Value, (int) ParserToken.Number, // (int) ParserToken.Number); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_56 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)1); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_57 = L_56; NullCheck(L_57); (L_57)->SetAt(static_cast(0), (int32_t)((int32_t)65537)); JsonReader_TableAddCol_mF494145B2247103C35FBE7420B274171BB01951F(((int32_t)65550), ((int32_t)65537), L_57, /*hidden argument*/NULL); // TableAddCol (ParserToken.Value, (int) ParserToken.True, // (int) ParserToken.True); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_58 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)1); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_59 = L_58; NullCheck(L_59); (L_59)->SetAt(static_cast(0), (int32_t)((int32_t)65538)); JsonReader_TableAddCol_mF494145B2247103C35FBE7420B274171BB01951F(((int32_t)65550), ((int32_t)65538), L_59, /*hidden argument*/NULL); // TableAddCol (ParserToken.Value, (int) ParserToken.False, // (int) ParserToken.False); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_60 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)1); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_61 = L_60; NullCheck(L_61); (L_61)->SetAt(static_cast(0), (int32_t)((int32_t)65539)); JsonReader_TableAddCol_mF494145B2247103C35FBE7420B274171BB01951F(((int32_t)65550), ((int32_t)65539), L_61, /*hidden argument*/NULL); // TableAddCol (ParserToken.Value, (int) ParserToken.Null, // (int) ParserToken.Null); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_62 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)1); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_63 = L_62; NullCheck(L_63); (L_63)->SetAt(static_cast(0), (int32_t)((int32_t)65540)); JsonReader_TableAddCol_mF494145B2247103C35FBE7420B274171BB01951F(((int32_t)65550), ((int32_t)65540), L_63, /*hidden argument*/NULL); // TableAddRow (ParserToken.ValueRest); JsonReader_TableAddRow_m4BBE185CAF48E27D723231D0EAFA45B1ABF7C567(((int32_t)65551), /*hidden argument*/NULL); // TableAddCol (ParserToken.ValueRest, ',', // ',', // (int) ParserToken.Value, // (int) ParserToken.ValueRest); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_64 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)3); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_65 = L_64; RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 L_66 = { reinterpret_cast (U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____5B979F69B96A61586A09DD4ED26F20534C629B08732AE32FA34B6F8A0049ACDD_104_FieldInfo_var) }; RuntimeHelpers_InitializeArray_mE27238308FED781F2D6A719F0903F2E1311B058F((RuntimeArray *)(RuntimeArray *)L_65, L_66, /*hidden argument*/NULL); JsonReader_TableAddCol_mF494145B2247103C35FBE7420B274171BB01951F(((int32_t)65551), ((int32_t)44), L_65, /*hidden argument*/NULL); // TableAddCol (ParserToken.ValueRest, ']', // (int) ParserToken.Epsilon); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_67 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)1); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_68 = L_67; NullCheck(L_68); (L_68)->SetAt(static_cast(0), (int32_t)((int32_t)65554)); JsonReader_TableAddCol_mF494145B2247103C35FBE7420B274171BB01951F(((int32_t)65551), ((int32_t)93), L_68, /*hidden argument*/NULL); // } return; } } // System.Void LitJson.JsonReader::TableAddCol(LitJson.ParserToken,System.Int32,System.Int32[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader_TableAddCol_mF494145B2247103C35FBE7420B274171BB01951F (int32_t ___row0, int32_t ___col1, Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___symbols2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_t15C4AE6FA28CC96AF7D1E9949947C8A7AA64B92C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_t9761D347AC3B18ED56235F4DC19AAEABDBA24999_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // parse_table[(int) row].Add (col, symbols); IL2CPP_RUNTIME_CLASS_INIT(JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340_il2cpp_TypeInfo_var); RuntimeObject* L_0 = ((JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340_StaticFields*)il2cpp_codegen_static_fields_for(JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340_il2cpp_TypeInfo_var))->get_parse_table_0(); int32_t L_1 = ___row0; NullCheck(L_0); RuntimeObject* L_2; L_2 = InterfaceFuncInvoker1< RuntimeObject*, int32_t >::Invoke(0 /* !1 System.Collections.Generic.IDictionary`2>::get_Item(!0) */, IDictionary_2_t9761D347AC3B18ED56235F4DC19AAEABDBA24999_il2cpp_TypeInfo_var, L_0, L_1); int32_t L_3 = ___col1; Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_4 = ___symbols2; NullCheck(L_2); InterfaceActionInvoker2< int32_t, Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* >::Invoke(5 /* System.Void System.Collections.Generic.IDictionary`2::Add(!0,!1) */, IDictionary_2_t15C4AE6FA28CC96AF7D1E9949947C8A7AA64B92C_il2cpp_TypeInfo_var, L_2, L_3, L_4); // } return; } } // System.Void LitJson.JsonReader::TableAddRow(LitJson.ParserToken) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader_TableAddRow_m4BBE185CAF48E27D723231D0EAFA45B1ABF7C567 (int32_t ___rule0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m0042AB3E1A64BB363620361BBE7585680D722E16_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t8525C1D9F5FB98BBDD9FCEE0F794F993946465C4_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_t9761D347AC3B18ED56235F4DC19AAEABDBA24999_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // parse_table.Add ((int) rule, new Dictionary ()); IL2CPP_RUNTIME_CLASS_INIT(JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340_il2cpp_TypeInfo_var); RuntimeObject* L_0 = ((JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340_StaticFields*)il2cpp_codegen_static_fields_for(JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340_il2cpp_TypeInfo_var))->get_parse_table_0(); int32_t L_1 = ___rule0; Dictionary_2_t8525C1D9F5FB98BBDD9FCEE0F794F993946465C4 * L_2 = (Dictionary_2_t8525C1D9F5FB98BBDD9FCEE0F794F993946465C4 *)il2cpp_codegen_object_new(Dictionary_2_t8525C1D9F5FB98BBDD9FCEE0F794F993946465C4_il2cpp_TypeInfo_var); Dictionary_2__ctor_m0042AB3E1A64BB363620361BBE7585680D722E16(L_2, /*hidden argument*/Dictionary_2__ctor_m0042AB3E1A64BB363620361BBE7585680D722E16_RuntimeMethod_var); NullCheck(L_0); InterfaceActionInvoker2< int32_t, RuntimeObject* >::Invoke(5 /* System.Void System.Collections.Generic.IDictionary`2>::Add(!0,!1) */, IDictionary_2_t9761D347AC3B18ED56235F4DC19AAEABDBA24999_il2cpp_TypeInfo_var, L_0, L_1, L_2); // } return; } } // System.Void LitJson.JsonReader::ProcessNumber(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader_ProcessNumber_m38DFF1B871855CD150DB570D595DBC05FE4983AE (JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * __this, String_t* ___number0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int64_t V_1 = 0; double V_2 = 0.0; { // if (number.IndexOf ('.') != -1 || // number.IndexOf ('e') != -1 || // number.IndexOf ('E') != -1) { String_t* L_0 = ___number0; NullCheck(L_0); int32_t L_1; L_1 = String_IndexOf_mEE2D2F738175E3FF05580366D6226DBD673CA2BE(L_0, ((int32_t)46), /*hidden argument*/NULL); if ((!(((uint32_t)L_1) == ((uint32_t)(-1))))) { goto IL_0021; } } { String_t* L_2 = ___number0; NullCheck(L_2); int32_t L_3; L_3 = String_IndexOf_mEE2D2F738175E3FF05580366D6226DBD673CA2BE(L_2, ((int32_t)101), /*hidden argument*/NULL); if ((!(((uint32_t)L_3) == ((uint32_t)(-1))))) { goto IL_0021; } } { String_t* L_4 = ___number0; NullCheck(L_4); int32_t L_5; L_5 = String_IndexOf_mEE2D2F738175E3FF05580366D6226DBD673CA2BE(L_4, ((int32_t)69), /*hidden argument*/NULL); if ((((int32_t)L_5) == ((int32_t)(-1)))) { goto IL_003f; } } IL_0021: { // if (Double.TryParse (number, out n_double)) { String_t* L_6 = ___number0; IL2CPP_RUNTIME_CLASS_INIT(Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_il2cpp_TypeInfo_var); bool L_7; L_7 = Double_TryParse_m9152D976CDFE0B30C7E251DDD04EAD6BBD0800B0(L_6, (double*)(&V_2), /*hidden argument*/NULL); if (!L_7) { goto IL_003f; } } { // token = JsonToken.Double; __this->set_token_14(8); // token_value = n_double; double L_8 = V_2; double L_9 = L_8; RuntimeObject * L_10 = Box(Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_il2cpp_TypeInfo_var, &L_9); __this->set_token_value_13(L_10); // return; return; } IL_003f: { // if (Int32.TryParse (number, out n_int32)) { String_t* L_11 = ___number0; bool L_12; L_12 = Int32_TryParse_m748B8DB1D0C9D25C3D1812D7887411C4AFC1DDC2(L_11, (int32_t*)(&V_0), /*hidden argument*/NULL); if (!L_12) { goto IL_005d; } } { // token = JsonToken.Int; __this->set_token_14(6); // token_value = n_int32; int32_t L_13 = V_0; int32_t L_14 = L_13; RuntimeObject * L_15 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_14); __this->set_token_value_13(L_15); // return; return; } IL_005d: { // if (Int64.TryParse (number, out n_int64)) { String_t* L_16 = ___number0; bool L_17; L_17 = Int64_TryParse_m6EA988890D7F9954EA49A7227E60B3C674930650(L_16, (int64_t*)(&V_1), /*hidden argument*/NULL); if (!L_17) { goto IL_007b; } } { // token = JsonToken.Long; __this->set_token_14(7); // token_value = n_int64; int64_t L_18 = V_1; int64_t L_19 = L_18; RuntimeObject * L_20 = Box(Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var, &L_19); __this->set_token_value_13(L_20); // return; return; } IL_007b: { // token = JsonToken.Int; __this->set_token_14(6); // token_value = 0; int32_t L_21 = 0; RuntimeObject * L_22 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_21); __this->set_token_value_13(L_22); // } return; } } // System.Void LitJson.JsonReader::ProcessSymbol() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader_ProcessSymbol_m7E864DB46518CF0E8B4803ADB87DEE7E2F3D1ED6 (JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (current_symbol == '[') { int32_t L_0 = __this->get_current_symbol_3(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)91))))) { goto IL_0019; } } { // token = JsonToken.ArrayStart; __this->set_token_14(4); // parser_return = true; __this->set_parser_return_8((bool)1); // } else if (current_symbol == ']') { return; } IL_0019: { // } else if (current_symbol == ']') { int32_t L_1 = __this->get_current_symbol_3(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)93))))) { goto IL_0032; } } { // token = JsonToken.ArrayEnd; __this->set_token_14(5); // parser_return = true; __this->set_parser_return_8((bool)1); // } else if (current_symbol == '{') { return; } IL_0032: { // } else if (current_symbol == '{') { int32_t L_2 = __this->get_current_symbol_3(); if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)123))))) { goto IL_004b; } } { // token = JsonToken.ObjectStart; __this->set_token_14(1); // parser_return = true; __this->set_parser_return_8((bool)1); // } else if (current_symbol == '}') { return; } IL_004b: { // } else if (current_symbol == '}') { int32_t L_3 = __this->get_current_symbol_3(); if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)125))))) { goto IL_0064; } } { // token = JsonToken.ObjectEnd; __this->set_token_14(3); // parser_return = true; __this->set_parser_return_8((bool)1); // } else if (current_symbol == '"') { return; } IL_0064: { // } else if (current_symbol == '"') { int32_t L_4 = __this->get_current_symbol_3(); if ((!(((uint32_t)L_4) == ((uint32_t)((int32_t)34))))) { goto IL_009d; } } { // if (parser_in_string) { bool L_5 = __this->get_parser_in_string_7(); if (!L_5) { goto IL_0085; } } { // parser_in_string = false; __this->set_parser_in_string_7((bool)0); // parser_return = true; __this->set_parser_return_8((bool)1); // } else { return; } IL_0085: { // if (token == JsonToken.None) int32_t L_6 = __this->get_token_14(); if (L_6) { goto IL_0095; } } { // token = JsonToken.String; __this->set_token_14(((int32_t)9)); } IL_0095: { // parser_in_string = true; __this->set_parser_in_string_7((bool)1); // } else if (current_symbol == (int) ParserToken.CharSeq) { return; } IL_009d: { // } else if (current_symbol == (int) ParserToken.CharSeq) { int32_t L_7 = __this->get_current_symbol_3(); if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)65541))))) { goto IL_00bc; } } { // token_value = lexer.StringValue; Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC * L_8 = __this->get_lexer_6(); NullCheck(L_8); String_t* L_9; L_9 = Lexer_get_StringValue_mE578D55A6FC8B0E40A347E23F78D7EB1163C94FE_inline(L_8, /*hidden argument*/NULL); __this->set_token_value_13(L_9); // } else if (current_symbol == (int) ParserToken.False) { return; } IL_00bc: { // } else if (current_symbol == (int) ParserToken.False) { int32_t L_10 = __this->get_current_symbol_3(); if ((!(((uint32_t)L_10) == ((uint32_t)((int32_t)65539))))) { goto IL_00e5; } } { // token = JsonToken.Boolean; __this->set_token_14(((int32_t)10)); // token_value = false; bool L_11 = ((bool)0); RuntimeObject * L_12 = Box(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var, &L_11); __this->set_token_value_13(L_12); // parser_return = true; __this->set_parser_return_8((bool)1); // } else if (current_symbol == (int) ParserToken.Null) { return; } IL_00e5: { // } else if (current_symbol == (int) ParserToken.Null) { int32_t L_13 = __this->get_current_symbol_3(); if ((!(((uint32_t)L_13) == ((uint32_t)((int32_t)65540))))) { goto IL_0102; } } { // token = JsonToken.Null; __this->set_token_14(((int32_t)11)); // parser_return = true; __this->set_parser_return_8((bool)1); // } else if (current_symbol == (int) ParserToken.Number) { return; } IL_0102: { // } else if (current_symbol == (int) ParserToken.Number) { int32_t L_14 = __this->get_current_symbol_3(); if ((!(((uint32_t)L_14) == ((uint32_t)((int32_t)65537))))) { goto IL_0128; } } { // ProcessNumber (lexer.StringValue); Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC * L_15 = __this->get_lexer_6(); NullCheck(L_15); String_t* L_16; L_16 = Lexer_get_StringValue_mE578D55A6FC8B0E40A347E23F78D7EB1163C94FE_inline(L_15, /*hidden argument*/NULL); JsonReader_ProcessNumber_m38DFF1B871855CD150DB570D595DBC05FE4983AE(__this, L_16, /*hidden argument*/NULL); // parser_return = true; __this->set_parser_return_8((bool)1); // } else if (current_symbol == (int) ParserToken.Pair) { return; } IL_0128: { // } else if (current_symbol == (int) ParserToken.Pair) { int32_t L_17 = __this->get_current_symbol_3(); if ((!(((uint32_t)L_17) == ((uint32_t)((int32_t)65546))))) { goto IL_013d; } } { // token = JsonToken.PropertyName; __this->set_token_14(2); // } else if (current_symbol == (int) ParserToken.True) { return; } IL_013d: { // } else if (current_symbol == (int) ParserToken.True) { int32_t L_18 = __this->get_current_symbol_3(); if ((!(((uint32_t)L_18) == ((uint32_t)((int32_t)65538))))) { goto IL_0165; } } { // token = JsonToken.Boolean; __this->set_token_14(((int32_t)10)); // token_value = true; bool L_19 = ((bool)1); RuntimeObject * L_20 = Box(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var, &L_19); __this->set_token_value_13(L_20); // parser_return = true; __this->set_parser_return_8((bool)1); } IL_0165: { // } return; } } // System.Boolean LitJson.JsonReader::ReadToken() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonReader_ReadToken_mCFD0A51A23E10FF5E9ED3974BF6CEF7E9A683DC3 (JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * __this, const RuntimeMethod* method) { { // if (end_of_input) bool L_0 = __this->get_end_of_input_5(); if (!L_0) { goto IL_000a; } } { // return false; return (bool)0; } IL_000a: { // lexer.NextToken (); Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC * L_1 = __this->get_lexer_6(); NullCheck(L_1); bool L_2; L_2 = Lexer_NextToken_mB37EEC3DE449EB8BE2A073FBDBD1E72921948367(L_1, /*hidden argument*/NULL); // if (lexer.EndOfInput) { Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC * L_3 = __this->get_lexer_6(); NullCheck(L_3); bool L_4; L_4 = Lexer_get_EndOfInput_m376873227BFFB7D9FAAC5C470BA8F57D3D6B0F25_inline(L_3, /*hidden argument*/NULL); if (!L_4) { goto IL_002b; } } { // Close (); JsonReader_Close_mC348E7F4CC4CC3A42B3A7ED405D81F29E421B882(__this, /*hidden argument*/NULL); // return false; return (bool)0; } IL_002b: { // current_input = lexer.Token; Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC * L_5 = __this->get_lexer_6(); NullCheck(L_5); int32_t L_6; L_6 = Lexer_get_Token_mA19AE42604DC98E18C968FED3898062A88494D26_inline(L_5, /*hidden argument*/NULL); __this->set_current_input_2(L_6); // return true; return (bool)1; } } // System.Void LitJson.JsonReader::Close() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonReader_Close_mC348E7F4CC4CC3A42B3A7ED405D81F29E421B882 (JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * __this, const RuntimeMethod* method) { { // if (end_of_input) bool L_0 = __this->get_end_of_input_5(); if (!L_0) { goto IL_0009; } } { // return; return; } IL_0009: { // end_of_input = true; __this->set_end_of_input_5((bool)1); // end_of_json = true; __this->set_end_of_json_4((bool)1); // if (reader_is_owned) bool L_1 = __this->get_reader_is_owned_11(); if (!L_1) { goto IL_002a; } } { // reader.Dispose(); TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * L_2 = __this->get_reader_10(); NullCheck(L_2); TextReader_Dispose_mDF1DCFD8FBE94A453EB2350DB7173027420BA5F8(L_2, /*hidden argument*/NULL); } IL_002a: { // reader = null; __this->set_reader_10((TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F *)NULL); // } return; } } // System.Boolean LitJson.JsonReader::Read() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonReader_Read_m47DD03DE2A2127A1A723BD6D564D97D07BE1E610 (JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_t15C4AE6FA28CC96AF7D1E9949947C8A7AA64B92C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_t9761D347AC3B18ED56235F4DC19AAEABDBA24999_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Clear_m65385AD770CB3137B6B0638B1C8B3F135A5E277D_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Peek_mF3C8F14E215502D1EA5ADF268B0614E8F29675F4_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Pop_m2F2EC2CE517CA10A558A43B00D072E570AB63437_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Push_m3E6C815B71F17B20A42B72193A29D0FB92F576E4_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* V_0 = NULL; KeyNotFoundException_t0A3BE653F7FA27DEA1C91C2FB3DAA6C8D0CBB952 * V_1 = NULL; int32_t V_2 = 0; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; { // if (end_of_input) bool L_0 = __this->get_end_of_input_5(); if (!L_0) { goto IL_000a; } } { // return false; return (bool)0; } IL_000a: { // if (end_of_json) { bool L_1 = __this->get_end_of_json_4(); if (!L_1) { goto IL_0044; } } { // end_of_json = false; __this->set_end_of_json_4((bool)0); // automaton_stack.Clear (); Stack_1_tC6C298385D16F10F391B84280D21FE059A45CC55 * L_2 = __this->get_automaton_stack_1(); NullCheck(L_2); Stack_1_Clear_m65385AD770CB3137B6B0638B1C8B3F135A5E277D(L_2, /*hidden argument*/Stack_1_Clear_m65385AD770CB3137B6B0638B1C8B3F135A5E277D_RuntimeMethod_var); // automaton_stack.Push ((int) ParserToken.End); Stack_1_tC6C298385D16F10F391B84280D21FE059A45CC55 * L_3 = __this->get_automaton_stack_1(); NullCheck(L_3); Stack_1_Push_m3E6C815B71F17B20A42B72193A29D0FB92F576E4(L_3, ((int32_t)65553), /*hidden argument*/Stack_1_Push_m3E6C815B71F17B20A42B72193A29D0FB92F576E4_RuntimeMethod_var); // automaton_stack.Push ((int) ParserToken.Text); Stack_1_tC6C298385D16F10F391B84280D21FE059A45CC55 * L_4 = __this->get_automaton_stack_1(); NullCheck(L_4); Stack_1_Push_m3E6C815B71F17B20A42B72193A29D0FB92F576E4(L_4, ((int32_t)65543), /*hidden argument*/Stack_1_Push_m3E6C815B71F17B20A42B72193A29D0FB92F576E4_RuntimeMethod_var); } IL_0044: { // parser_in_string = false; __this->set_parser_in_string_7((bool)0); // parser_return = false; __this->set_parser_return_8((bool)0); // token = JsonToken.None; __this->set_token_14(0); // token_value = null; __this->set_token_value_13(NULL); // if (! read_started) { bool L_5 = __this->get_read_started_9(); if (L_5) { goto IL_0079; } } { // read_started = true; __this->set_read_started_9((bool)1); // if (! ReadToken ()) bool L_6; L_6 = JsonReader_ReadToken_mCFD0A51A23E10FF5E9ED3974BF6CEF7E9A683DC3(__this, /*hidden argument*/NULL); if (L_6) { goto IL_0079; } } { // return false; return (bool)0; } IL_0079: { // if (parser_return) { bool L_7 = __this->get_parser_return_8(); if (!L_7) { goto IL_009c; } } { // if (automaton_stack.Peek () == (int) ParserToken.End) Stack_1_tC6C298385D16F10F391B84280D21FE059A45CC55 * L_8 = __this->get_automaton_stack_1(); NullCheck(L_8); int32_t L_9; L_9 = Stack_1_Peek_mF3C8F14E215502D1EA5ADF268B0614E8F29675F4(L_8, /*hidden argument*/Stack_1_Peek_mF3C8F14E215502D1EA5ADF268B0614E8F29675F4_RuntimeMethod_var); if ((!(((uint32_t)L_9) == ((uint32_t)((int32_t)65553))))) { goto IL_009a; } } { // end_of_json = true; __this->set_end_of_json_4((bool)1); } IL_009a: { // return true; return (bool)1; } IL_009c: { // current_symbol = automaton_stack.Pop (); Stack_1_tC6C298385D16F10F391B84280D21FE059A45CC55 * L_10 = __this->get_automaton_stack_1(); NullCheck(L_10); int32_t L_11; L_11 = Stack_1_Pop_m2F2EC2CE517CA10A558A43B00D072E570AB63437(L_10, /*hidden argument*/Stack_1_Pop_m2F2EC2CE517CA10A558A43B00D072E570AB63437_RuntimeMethod_var); __this->set_current_symbol_3(L_11); // ProcessSymbol (); JsonReader_ProcessSymbol_m7E864DB46518CF0E8B4803ADB87DEE7E2F3D1ED6(__this, /*hidden argument*/NULL); // if (current_symbol == current_input) { int32_t L_12 = __this->get_current_symbol_3(); int32_t L_13 = __this->get_current_input_2(); if ((!(((uint32_t)L_12) == ((uint32_t)L_13)))) { goto IL_00f2; } } { // if (! ReadToken ()) { bool L_14; L_14 = JsonReader_ReadToken_mCFD0A51A23E10FF5E9ED3974BF6CEF7E9A683DC3(__this, /*hidden argument*/NULL); if (L_14) { goto IL_0079; } } { // if (automaton_stack.Peek () != (int) ParserToken.End) Stack_1_tC6C298385D16F10F391B84280D21FE059A45CC55 * L_15 = __this->get_automaton_stack_1(); NullCheck(L_15); int32_t L_16; L_16 = Stack_1_Peek_mF3C8F14E215502D1EA5ADF268B0614E8F29675F4(L_15, /*hidden argument*/Stack_1_Peek_mF3C8F14E215502D1EA5ADF268B0614E8F29675F4_RuntimeMethod_var); if ((((int32_t)L_16) == ((int32_t)((int32_t)65553)))) { goto IL_00e6; } } { // throw new JsonException ( // "Input doesn't evaluate to proper JSON text"); JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C * L_17 = (JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C_il2cpp_TypeInfo_var))); JsonException__ctor_m10E9DE1ED8CA46DD4DC5EFDC5825C456B7FC7932(L_17, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7B6EE056E549534162451A09C7F0AFAC372DBD06)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonReader_Read_m47DD03DE2A2127A1A723BD6D564D97D07BE1E610_RuntimeMethod_var))); } IL_00e6: { // if (parser_return) bool L_18 = __this->get_parser_return_8(); if (!L_18) { goto IL_00f0; } } { // return true; return (bool)1; } IL_00f0: { // return false; return (bool)0; } IL_00f2: { } IL_00f3: try {// begin try (depth: 1) // entity_symbols = // parse_table[current_symbol][current_input]; IL2CPP_RUNTIME_CLASS_INIT(JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340_il2cpp_TypeInfo_var); RuntimeObject* L_19 = ((JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340_StaticFields*)il2cpp_codegen_static_fields_for(JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340_il2cpp_TypeInfo_var))->get_parse_table_0(); int32_t L_20 = __this->get_current_symbol_3(); NullCheck(L_19); RuntimeObject* L_21; L_21 = InterfaceFuncInvoker1< RuntimeObject*, int32_t >::Invoke(0 /* !1 System.Collections.Generic.IDictionary`2>::get_Item(!0) */, IDictionary_2_t9761D347AC3B18ED56235F4DC19AAEABDBA24999_il2cpp_TypeInfo_var, L_19, L_20); int32_t L_22 = __this->get_current_input_2(); NullCheck(L_21); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_23; L_23 = InterfaceFuncInvoker1< Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*, int32_t >::Invoke(0 /* !1 System.Collections.Generic.IDictionary`2::get_Item(!0) */, IDictionary_2_t15C4AE6FA28CC96AF7D1E9949947C8A7AA64B92C_il2cpp_TypeInfo_var, L_21, L_22); V_0 = L_23; // } catch (KeyNotFoundException e) { goto IL_011f; }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeyNotFoundException_t0A3BE653F7FA27DEA1C91C2FB3DAA6C8D0CBB952_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0111; } throw e; } CATCH_0111: {// begin catch(System.Collections.Generic.KeyNotFoundException) // } catch (KeyNotFoundException e) { V_1 = ((KeyNotFoundException_t0A3BE653F7FA27DEA1C91C2FB3DAA6C8D0CBB952 *)IL2CPP_GET_ACTIVE_EXCEPTION(KeyNotFoundException_t0A3BE653F7FA27DEA1C91C2FB3DAA6C8D0CBB952 *)); // throw new JsonException ((ParserToken) current_input, e); int32_t L_24 = __this->get_current_input_2(); KeyNotFoundException_t0A3BE653F7FA27DEA1C91C2FB3DAA6C8D0CBB952 * L_25 = V_1; JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C * L_26 = (JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C_il2cpp_TypeInfo_var))); JsonException__ctor_mB482011B1B67369831E2C32A69B886E14F48228B(L_26, L_24, L_25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_26, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonReader_Read_m47DD03DE2A2127A1A723BD6D564D97D07BE1E610_RuntimeMethod_var))); }// end catch (depth: 1) IL_011f: { // if (entity_symbols[0] == (int) ParserToken.Epsilon) Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_27 = V_0; NullCheck(L_27); int32_t L_28 = 0; int32_t L_29 = (L_27)->GetAt(static_cast(L_28)); if ((((int32_t)L_29) == ((int32_t)((int32_t)65554)))) { goto IL_0079; } } { // for (int i = entity_symbols.Length - 1; i >= 0; i--) Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_30 = V_0; NullCheck(L_30); V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_30)->max_length))), (int32_t)1)); goto IL_0146; } IL_0134: { // automaton_stack.Push (entity_symbols[i]); Stack_1_tC6C298385D16F10F391B84280D21FE059A45CC55 * L_31 = __this->get_automaton_stack_1(); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_32 = V_0; int32_t L_33 = V_2; NullCheck(L_32); int32_t L_34 = L_33; int32_t L_35 = (L_32)->GetAt(static_cast(L_34)); NullCheck(L_31); Stack_1_Push_m3E6C815B71F17B20A42B72193A29D0FB92F576E4(L_31, L_35, /*hidden argument*/Stack_1_Push_m3E6C815B71F17B20A42B72193A29D0FB92F576E4_RuntimeMethod_var); // for (int i = entity_symbols.Length - 1; i >= 0; i--) int32_t L_36 = V_2; V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_36, (int32_t)1)); } IL_0146: { // for (int i = entity_symbols.Length - 1; i >= 0; i--) int32_t L_37 = V_2; if ((((int32_t)L_37) >= ((int32_t)0))) { goto IL_0134; } } { // while (true) { goto IL_0079; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Int32 LitJson.JsonWriter::get_IndentValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonWriter_get_IndentValue_m4E88C67CC4C9CC4B023E00D325DF828467AF4DCC (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, const RuntimeMethod* method) { { // get { return indent_value; } int32_t L_0 = __this->get_indent_value_6(); return L_0; } } // System.Void LitJson.JsonWriter::set_IndentValue(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_set_IndentValue_m9F578EF5DA8657D67F23B02DB87C34954431EED9 (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, int32_t ___value0, const RuntimeMethod* method) { { // indentation = (indentation / indent_value) * value; int32_t L_0 = __this->get_indentation_5(); int32_t L_1 = __this->get_indent_value_6(); int32_t L_2 = ___value0; __this->set_indentation_5(((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)((int32_t)L_0/(int32_t)L_1)), (int32_t)L_2))); // indent_value = value; int32_t L_3 = ___value0; __this->set_indent_value_6(L_3); // } return; } } // System.Boolean LitJson.JsonWriter::get_PrettyPrint() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonWriter_get_PrettyPrint_m0AC59EA9332CC1565125145C452065E92D5715FC (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, const RuntimeMethod* method) { { // get { return pretty_print; } bool L_0 = __this->get_pretty_print_8(); return L_0; } } // System.Void LitJson.JsonWriter::set_PrettyPrint(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_set_PrettyPrint_m5C84DFBD1891A43942BA377770C825BC827526CD (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, bool ___value0, const RuntimeMethod* method) { { // set { pretty_print = value; } bool L_0 = ___value0; __this->set_pretty_print_8(L_0); // set { pretty_print = value; } return; } } // System.IO.TextWriter LitJson.JsonWriter::get_TextWriter() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * JsonWriter_get_TextWriter_mDF41359E2D57495FB968A62FDA3D6FBB76B89B18 (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, const RuntimeMethod* method) { { // get { return writer; } TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_0 = __this->get_writer_10(); return L_0; } } // System.Boolean LitJson.JsonWriter::get_Validate() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonWriter_get_Validate_mCC6CFCD87AC6B4C53B40946228AC036009291ADF (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, const RuntimeMethod* method) { { // get { return validate; } bool L_0 = __this->get_validate_9(); return L_0; } } // System.Void LitJson.JsonWriter::set_Validate(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_set_Validate_mB428A4AF2CD6CFE20B845704490B626C1698804B (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, bool ___value0, const RuntimeMethod* method) { { // set { validate = value; } bool L_0 = ___value0; __this->set_validate_9(L_0); // set { validate = value; } return; } } // System.Void LitJson.JsonWriter::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter__cctor_mB1E93B26F3ACB6B15C7A8DEC5100115D8384A225 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // number_format = NumberFormatInfo.InvariantInfo; NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * L_0; L_0 = NumberFormatInfo_get_InvariantInfo_m286BBD095BFCA546BD2CD67E856D1A205436C03F(/*hidden argument*/NULL); ((JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A_StaticFields*)il2cpp_codegen_static_fields_for(JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A_il2cpp_TypeInfo_var))->set_number_format_0(L_0); // } return; } } // System.Void LitJson.JsonWriter::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter__ctor_m9ED10F184FB062CBA458AA65CAF9257467C737AC (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringWriter_t7BEF6B06B35BC25817D8BE28593FB52F0525B839_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public JsonWriter () Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); // inst_string_builder = new StringBuilder (); StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); StringBuilder__ctor_m5A81DE19E748F748E19FF13FB6FFD2547F9212D9(L_0, /*hidden argument*/NULL); __this->set_inst_string_builder_7(L_0); // writer = new StringWriter (inst_string_builder); StringBuilder_t * L_1 = __this->get_inst_string_builder_7(); StringWriter_t7BEF6B06B35BC25817D8BE28593FB52F0525B839 * L_2 = (StringWriter_t7BEF6B06B35BC25817D8BE28593FB52F0525B839 *)il2cpp_codegen_object_new(StringWriter_t7BEF6B06B35BC25817D8BE28593FB52F0525B839_il2cpp_TypeInfo_var); StringWriter__ctor_mCA0BB9FBAEDB78DF47C385E534F1EB38F6334F66(L_2, L_1, /*hidden argument*/NULL); __this->set_writer_10(L_2); // Init (); JsonWriter_Init_mFCFCC27C3499C3A6C5F757A73565190292CBDA0A(__this, /*hidden argument*/NULL); // } return; } } // System.Void LitJson.JsonWriter::.ctor(System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter__ctor_m33235251DDBEFFC5F3D1E10D03FB00C83B1C7DE8 (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, StringBuilder_t * ___sb0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringWriter_t7BEF6B06B35BC25817D8BE28593FB52F0525B839_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // this (new StringWriter (sb)) StringBuilder_t * L_0 = ___sb0; StringWriter_t7BEF6B06B35BC25817D8BE28593FB52F0525B839 * L_1 = (StringWriter_t7BEF6B06B35BC25817D8BE28593FB52F0525B839 *)il2cpp_codegen_object_new(StringWriter_t7BEF6B06B35BC25817D8BE28593FB52F0525B839_il2cpp_TypeInfo_var); StringWriter__ctor_mCA0BB9FBAEDB78DF47C385E534F1EB38F6334F66(L_1, L_0, /*hidden argument*/NULL); JsonWriter__ctor_mCAF0A04C68754E9A06279E46A77239F9936B15F1(__this, L_1, /*hidden argument*/NULL); // } return; } } // System.Void LitJson.JsonWriter::.ctor(System.IO.TextWriter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter__ctor_mCAF0A04C68754E9A06279E46A77239F9936B15F1 (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * ___writer0, const RuntimeMethod* method) { { // public JsonWriter (TextWriter writer) Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); // if (writer == null) TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_0 = ___writer0; if (L_0) { goto IL_0014; } } { // throw new ArgumentNullException ("writer"); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral638C5441E8427B2B9D2C941DDBF958579B5FE3F0)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonWriter__ctor_mCAF0A04C68754E9A06279E46A77239F9936B15F1_RuntimeMethod_var))); } IL_0014: { // this.writer = writer; TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_2 = ___writer0; __this->set_writer_10(L_2); // Init (); JsonWriter_Init_mFCFCC27C3499C3A6C5F757A73565190292CBDA0A(__this, /*hidden argument*/NULL); // } return; } } // System.Void LitJson.JsonWriter::DoValidation(LitJson.Condition) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_DoValidation_m671A92C47238ABA1DE030342F20B390A5CD21C71 (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, int32_t ___cond0, const RuntimeMethod* method) { { // if (! context.ExpectingValue) WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * L_0 = __this->get_context_1(); NullCheck(L_0); bool L_1 = L_0->get_ExpectingValue_3(); if (L_1) { goto IL_0020; } } { // context.Count++; WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * L_2 = __this->get_context_1(); WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * L_3 = L_2; NullCheck(L_3); int32_t L_4 = L_3->get_Count_0(); NullCheck(L_3); L_3->set_Count_0(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); } IL_0020: { // if (! validate) bool L_5 = __this->get_validate_9(); if (L_5) { goto IL_0029; } } { // return; return; } IL_0029: { // if (has_reached_end) bool L_6 = __this->get_has_reached_end_3(); if (!L_6) { goto IL_003c; } } { // throw new JsonException ( // "A complete JSON symbol has already been written"); JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C * L_7 = (JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C_il2cpp_TypeInfo_var))); JsonException__ctor_m10E9DE1ED8CA46DD4DC5EFDC5825C456B7FC7932(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8E284AA45C643AAA8D3553AA7AB6A1C3BC3E32D1)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonWriter_DoValidation_m671A92C47238ABA1DE030342F20B390A5CD21C71_RuntimeMethod_var))); } IL_003c: { int32_t L_8 = ___cond0; switch (L_8) { case 0: { goto IL_0057; } case 1: { goto IL_0072; } case 2: { goto IL_009a; } case 3: { goto IL_00bf; } case 4: { goto IL_00e4; } } } { return; } IL_0057: { // if (! context.InArray) WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * L_9 = __this->get_context_1(); NullCheck(L_9); bool L_10 = L_9->get_InArray_1(); if (L_10) { goto IL_0116; } } { // throw new JsonException ( // "Can't close an array here"); JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C * L_11 = (JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C_il2cpp_TypeInfo_var))); JsonException__ctor_m10E9DE1ED8CA46DD4DC5EFDC5825C456B7FC7932(L_11, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral057118C49B28F31FA4955B194753088DDCD94999)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonWriter_DoValidation_m671A92C47238ABA1DE030342F20B390A5CD21C71_RuntimeMethod_var))); } IL_0072: { // if (! context.InObject || context.ExpectingValue) WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * L_12 = __this->get_context_1(); NullCheck(L_12); bool L_13 = L_12->get_InObject_2(); if (!L_13) { goto IL_008f; } } { WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * L_14 = __this->get_context_1(); NullCheck(L_14); bool L_15 = L_14->get_ExpectingValue_3(); if (!L_15) { goto IL_0116; } } IL_008f: { // throw new JsonException ( // "Can't close an object here"); JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C * L_16 = (JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C_il2cpp_TypeInfo_var))); JsonException__ctor_m10E9DE1ED8CA46DD4DC5EFDC5825C456B7FC7932(L_16, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCEE7535349ADB76DD55B08451D311FC3CF06A19C)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonWriter_DoValidation_m671A92C47238ABA1DE030342F20B390A5CD21C71_RuntimeMethod_var))); } IL_009a: { // if (context.InObject && ! context.ExpectingValue) WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * L_17 = __this->get_context_1(); NullCheck(L_17); bool L_18 = L_17->get_InObject_2(); if (!L_18) { goto IL_0116; } } { WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * L_19 = __this->get_context_1(); NullCheck(L_19); bool L_20 = L_19->get_ExpectingValue_3(); if (L_20) { goto IL_0116; } } { // throw new JsonException ( // "Expected a property"); JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C * L_21 = (JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C_il2cpp_TypeInfo_var))); JsonException__ctor_m10E9DE1ED8CA46DD4DC5EFDC5825C456B7FC7932(L_21, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCDA723AA4DBB226A906416AA9BF1C2D4CEC53C89)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonWriter_DoValidation_m671A92C47238ABA1DE030342F20B390A5CD21C71_RuntimeMethod_var))); } IL_00bf: { // if (! context.InObject || context.ExpectingValue) WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * L_22 = __this->get_context_1(); NullCheck(L_22); bool L_23 = L_22->get_InObject_2(); if (!L_23) { goto IL_00d9; } } { WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * L_24 = __this->get_context_1(); NullCheck(L_24); bool L_25 = L_24->get_ExpectingValue_3(); if (!L_25) { goto IL_0116; } } IL_00d9: { // throw new JsonException ( // "Can't add a property here"); JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C * L_26 = (JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C_il2cpp_TypeInfo_var))); JsonException__ctor_m10E9DE1ED8CA46DD4DC5EFDC5825C456B7FC7932(L_26, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral84BE6DF7F5E86A94476E7ED44C8A9ACA10E6236A)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_26, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonWriter_DoValidation_m671A92C47238ABA1DE030342F20B390A5CD21C71_RuntimeMethod_var))); } IL_00e4: { // if (! context.InArray && // (! context.InObject || ! context.ExpectingValue)) WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * L_27 = __this->get_context_1(); NullCheck(L_27); bool L_28 = L_27->get_InArray_1(); if (L_28) { goto IL_0116; } } { WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * L_29 = __this->get_context_1(); NullCheck(L_29); bool L_30 = L_29->get_InObject_2(); if (!L_30) { goto IL_010b; } } { WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * L_31 = __this->get_context_1(); NullCheck(L_31); bool L_32 = L_31->get_ExpectingValue_3(); if (L_32) { goto IL_0116; } } IL_010b: { // throw new JsonException ( // "Can't add a value here"); JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C * L_33 = (JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonException_t6983E29EBFAE65C1FEC4F8E8586FB68824F89B0C_il2cpp_TypeInfo_var))); JsonException__ctor_m10E9DE1ED8CA46DD4DC5EFDC5825C456B7FC7932(L_33, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC63496F78F80F09E4841EF5CD0DA8DAF7028FB4B)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_33, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonWriter_DoValidation_m671A92C47238ABA1DE030342F20B390A5CD21C71_RuntimeMethod_var))); } IL_0116: { // } return; } } // System.Void LitJson.JsonWriter::Init() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Init_mFCFCC27C3499C3A6C5F757A73565190292CBDA0A (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Push_mB2E1D58D6814C632B1C0B7A71D32F2A275923315_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1__ctor_mCB755FF2E83784C3E72212BFD18F5EFB3F7824CA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_t7B63F93F3C5FA452C37D6EC4E51A4F56AF3D7B92_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // has_reached_end = false; __this->set_has_reached_end_3((bool)0); // hex_seq = new char[4]; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_0 = (CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)SZArrayNew(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var, (uint32_t)4); __this->set_hex_seq_4(L_0); // indentation = 0; __this->set_indentation_5(0); // indent_value = 4; __this->set_indent_value_6(4); // pretty_print = false; __this->set_pretty_print_8((bool)0); // validate = true; __this->set_validate_9((bool)1); // ctx_stack = new Stack (); Stack_1_t7B63F93F3C5FA452C37D6EC4E51A4F56AF3D7B92 * L_1 = (Stack_1_t7B63F93F3C5FA452C37D6EC4E51A4F56AF3D7B92 *)il2cpp_codegen_object_new(Stack_1_t7B63F93F3C5FA452C37D6EC4E51A4F56AF3D7B92_il2cpp_TypeInfo_var); Stack_1__ctor_mCB755FF2E83784C3E72212BFD18F5EFB3F7824CA(L_1, /*hidden argument*/Stack_1__ctor_mCB755FF2E83784C3E72212BFD18F5EFB3F7824CA_RuntimeMethod_var); __this->set_ctx_stack_2(L_1); // context = new WriterContext (); WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * L_2 = (WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 *)il2cpp_codegen_object_new(WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3_il2cpp_TypeInfo_var); WriterContext__ctor_m13B15DCCAE5EF69EC535CB3C401F12BE421CFF56(L_2, /*hidden argument*/NULL); __this->set_context_1(L_2); // ctx_stack.Push (context); Stack_1_t7B63F93F3C5FA452C37D6EC4E51A4F56AF3D7B92 * L_3 = __this->get_ctx_stack_2(); WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * L_4 = __this->get_context_1(); NullCheck(L_3); Stack_1_Push_mB2E1D58D6814C632B1C0B7A71D32F2A275923315(L_3, L_4, /*hidden argument*/Stack_1_Push_mB2E1D58D6814C632B1C0B7A71D32F2A275923315_RuntimeMethod_var); // } return; } } // System.Void LitJson.JsonWriter::IntToHex(System.Int32,System.Char[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_IntToHex_mC3B4AD899D2FCE1E2B5A0DDC21C9766CA06ACBAA (int32_t ___n0, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___hex1, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { // for (int i = 0; i < 4; i++) { V_1 = 0; goto IL_0030; } IL_0004: { // num = n % 16; int32_t L_0 = ___n0; V_0 = ((int32_t)((int32_t)L_0%(int32_t)((int32_t)16))); // if (num < 10) int32_t L_1 = V_0; if ((((int32_t)L_1) >= ((int32_t)((int32_t)10)))) { goto IL_001a; } } { // hex[3 - i] = (char) ('0' + num); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_2 = ___hex1; int32_t L_3 = V_1; int32_t L_4 = V_0; NullCheck(L_2); (L_2)->SetAt(static_cast(((int32_t)il2cpp_codegen_subtract((int32_t)3, (int32_t)L_3))), (Il2CppChar)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)48), (int32_t)L_4))))); goto IL_0027; } IL_001a: { // hex[3 - i] = (char) ('A' + (num - 10)); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_5 = ___hex1; int32_t L_6 = V_1; int32_t L_7 = V_0; NullCheck(L_5); (L_5)->SetAt(static_cast(((int32_t)il2cpp_codegen_subtract((int32_t)3, (int32_t)L_6))), (Il2CppChar)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)65), (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)((int32_t)10)))))))); } IL_0027: { // n >>= 4; int32_t L_8 = ___n0; ___n0 = ((int32_t)((int32_t)L_8>>(int32_t)4)); // for (int i = 0; i < 4; i++) { int32_t L_9 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1)); } IL_0030: { // for (int i = 0; i < 4; i++) { int32_t L_10 = V_1; if ((((int32_t)L_10) < ((int32_t)4))) { goto IL_0004; } } { // } return; } } // System.Void LitJson.JsonWriter::Indent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Indent_m1D369467CC7D2295DE796AE6BBEE0D2156019E0A (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, const RuntimeMethod* method) { { // if (pretty_print) bool L_0 = __this->get_pretty_print_8(); if (!L_0) { goto IL_001b; } } { // indentation += indent_value; int32_t L_1 = __this->get_indentation_5(); int32_t L_2 = __this->get_indent_value_6(); __this->set_indentation_5(((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)L_2))); } IL_001b: { // } return; } } // System.Void LitJson.JsonWriter::Put(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Put_m0C22075651EF25191CBE44E952AC7349C71A4FE7 (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, String_t* ___str0, const RuntimeMethod* method) { int32_t V_0 = 0; { // if (pretty_print && ! context.ExpectingValue) bool L_0 = __this->get_pretty_print_8(); if (!L_0) { goto IL_0033; } } { WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * L_1 = __this->get_context_1(); NullCheck(L_1); bool L_2 = L_1->get_ExpectingValue_3(); if (L_2) { goto IL_0033; } } { // for (int i = 0; i < indentation; i++) V_0 = 0; goto IL_002a; } IL_0019: { // writer.Write (' '); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_3 = __this->get_writer_10(); NullCheck(L_3); VirtualActionInvoker1< Il2CppChar >::Invoke(12 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_3, ((int32_t)32)); // for (int i = 0; i < indentation; i++) int32_t L_4 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)); } IL_002a: { // for (int i = 0; i < indentation; i++) int32_t L_5 = V_0; int32_t L_6 = __this->get_indentation_5(); if ((((int32_t)L_5) < ((int32_t)L_6))) { goto IL_0019; } } IL_0033: { // writer.Write (str); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_7 = __this->get_writer_10(); String_t* L_8 = ___str0; NullCheck(L_7); VirtualActionInvoker1< String_t* >::Invoke(15 /* System.Void System.IO.TextWriter::Write(System.String) */, L_7, L_8); // } return; } } // System.Void LitJson.JsonWriter::PutNewline() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_PutNewline_m9593D928ED228E8E6835D30FB01E67EAF1E45A4B (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, const RuntimeMethod* method) { { // PutNewline (true); JsonWriter_PutNewline_m7966BB02AFE5D597202A8B77928B46579752BBDD(__this, (bool)1, /*hidden argument*/NULL); // } return; } } // System.Void LitJson.JsonWriter::PutNewline(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_PutNewline_m7966BB02AFE5D597202A8B77928B46579752BBDD (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, bool ___add_comma0, const RuntimeMethod* method) { { // if (add_comma && ! context.ExpectingValue && // context.Count > 1) bool L_0 = ___add_comma0; if (!L_0) { goto IL_002b; } } { WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * L_1 = __this->get_context_1(); NullCheck(L_1); bool L_2 = L_1->get_ExpectingValue_3(); if (L_2) { goto IL_002b; } } { WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * L_3 = __this->get_context_1(); NullCheck(L_3); int32_t L_4 = L_3->get_Count_0(); if ((((int32_t)L_4) <= ((int32_t)1))) { goto IL_002b; } } { // writer.Write (','); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_5 = __this->get_writer_10(); NullCheck(L_5); VirtualActionInvoker1< Il2CppChar >::Invoke(12 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_5, ((int32_t)44)); } IL_002b: { // if (pretty_print && ! context.ExpectingValue) bool L_6 = __this->get_pretty_print_8(); if (!L_6) { goto IL_004d; } } { WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * L_7 = __this->get_context_1(); NullCheck(L_7); bool L_8 = L_7->get_ExpectingValue_3(); if (L_8) { goto IL_004d; } } { // writer.Write ('\n'); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_9 = __this->get_writer_10(); NullCheck(L_9); VirtualActionInvoker1< Il2CppChar >::Invoke(12 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_9, ((int32_t)10)); } IL_004d: { // } return; } } // System.Void LitJson.JsonWriter::PutString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_PutString_mA39E1FF366FD962F077242A5D43087B2E6B5E346 (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, String_t* ___str0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5962E944D7340CE47999BF097B4AFD70C1501FB9); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral785F17F45C331C415D0A7458E6AAC36966399C51); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7F3238CD8C342B06FB9AB185C610175C84625462); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA7C3FCA8C63E127B542B38A5CA5E3FEEDDD1B122); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB78F235D4291950A7D101307609C259F3E1F033F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA666908BB15F4E1D2649752EC5DCBD0D5C64699); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Il2CppChar V_2 = 0x0; { // Put (String.Empty); String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); JsonWriter_Put_m0C22075651EF25191CBE44E952AC7349C71A4FE7(__this, L_0, /*hidden argument*/NULL); // writer.Write ('"'); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_1 = __this->get_writer_10(); NullCheck(L_1); VirtualActionInvoker1< Il2CppChar >::Invoke(12 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_1, ((int32_t)34)); // int n = str.Length; String_t* L_2 = ___str0; NullCheck(L_2); int32_t L_3; L_3 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_2, /*hidden argument*/NULL); V_0 = L_3; // for (int i = 0; i < n; i++) { V_1 = 0; goto IL_0145; } IL_0026: { // switch (str[i]) { String_t* L_4 = ___str0; int32_t L_5 = V_1; NullCheck(L_4); Il2CppChar L_6; L_6 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_4, L_5, /*hidden argument*/NULL); V_2 = L_6; Il2CppChar L_7 = V_2; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)8))) { case 0: { goto IL_00d2; } case 1: { goto IL_0087; } case 2: { goto IL_005d; } case 3: { goto IL_00e4; } case 4: { goto IL_00c0; } case 5: { goto IL_0072; } } } { Il2CppChar L_8 = V_2; if ((((int32_t)L_8) == ((int32_t)((int32_t)34)))) { goto IL_009c; } } { Il2CppChar L_9 = V_2; if ((((int32_t)L_9) == ((int32_t)((int32_t)92)))) { goto IL_009c; } } { goto IL_00e4; } IL_005d: { // writer.Write ("\\n"); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_10 = __this->get_writer_10(); NullCheck(L_10); VirtualActionInvoker1< String_t* >::Invoke(15 /* System.Void System.IO.TextWriter::Write(System.String) */, L_10, _stringLiteral785F17F45C331C415D0A7458E6AAC36966399C51); // continue; goto IL_0141; } IL_0072: { // writer.Write ("\\r"); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_11 = __this->get_writer_10(); NullCheck(L_11); VirtualActionInvoker1< String_t* >::Invoke(15 /* System.Void System.IO.TextWriter::Write(System.String) */, L_11, _stringLiteralB78F235D4291950A7D101307609C259F3E1F033F); // continue; goto IL_0141; } IL_0087: { // writer.Write ("\\t"); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_12 = __this->get_writer_10(); NullCheck(L_12); VirtualActionInvoker1< String_t* >::Invoke(15 /* System.Void System.IO.TextWriter::Write(System.String) */, L_12, _stringLiteral7F3238CD8C342B06FB9AB185C610175C84625462); // continue; goto IL_0141; } IL_009c: { // writer.Write ('\\'); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_13 = __this->get_writer_10(); NullCheck(L_13); VirtualActionInvoker1< Il2CppChar >::Invoke(12 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_13, ((int32_t)92)); // writer.Write (str[i]); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_14 = __this->get_writer_10(); String_t* L_15 = ___str0; int32_t L_16 = V_1; NullCheck(L_15); Il2CppChar L_17; L_17 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_15, L_16, /*hidden argument*/NULL); NullCheck(L_14); VirtualActionInvoker1< Il2CppChar >::Invoke(12 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_14, L_17); // continue; goto IL_0141; } IL_00c0: { // writer.Write ("\\f"); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_18 = __this->get_writer_10(); NullCheck(L_18); VirtualActionInvoker1< String_t* >::Invoke(15 /* System.Void System.IO.TextWriter::Write(System.String) */, L_18, _stringLiteralA7C3FCA8C63E127B542B38A5CA5E3FEEDDD1B122); // continue; goto IL_0141; } IL_00d2: { // writer.Write ("\\b"); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_19 = __this->get_writer_10(); NullCheck(L_19); VirtualActionInvoker1< String_t* >::Invoke(15 /* System.Void System.IO.TextWriter::Write(System.String) */, L_19, _stringLiteral5962E944D7340CE47999BF097B4AFD70C1501FB9); // continue; goto IL_0141; } IL_00e4: { // if ((int) str[i] >= 32 && (int) str[i] <= 126) { String_t* L_20 = ___str0; int32_t L_21 = V_1; NullCheck(L_20); Il2CppChar L_22; L_22 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_20, L_21, /*hidden argument*/NULL); if ((((int32_t)L_22) < ((int32_t)((int32_t)32)))) { goto IL_010e; } } { String_t* L_23 = ___str0; int32_t L_24 = V_1; NullCheck(L_23); Il2CppChar L_25; L_25 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_23, L_24, /*hidden argument*/NULL); if ((((int32_t)L_25) > ((int32_t)((int32_t)126)))) { goto IL_010e; } } { // writer.Write (str[i]); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_26 = __this->get_writer_10(); String_t* L_27 = ___str0; int32_t L_28 = V_1; NullCheck(L_27); Il2CppChar L_29; L_29 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_27, L_28, /*hidden argument*/NULL); NullCheck(L_26); VirtualActionInvoker1< Il2CppChar >::Invoke(12 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_26, L_29); // continue; goto IL_0141; } IL_010e: { // IntToHex ((int) str[i], hex_seq); String_t* L_30 = ___str0; int32_t L_31 = V_1; NullCheck(L_30); Il2CppChar L_32; L_32 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_30, L_31, /*hidden argument*/NULL); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_33 = __this->get_hex_seq_4(); IL2CPP_RUNTIME_CLASS_INIT(JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A_il2cpp_TypeInfo_var); JsonWriter_IntToHex_mC3B4AD899D2FCE1E2B5A0DDC21C9766CA06ACBAA(L_32, L_33, /*hidden argument*/NULL); // writer.Write ("\\u"); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_34 = __this->get_writer_10(); NullCheck(L_34); VirtualActionInvoker1< String_t* >::Invoke(15 /* System.Void System.IO.TextWriter::Write(System.String) */, L_34, _stringLiteralDA666908BB15F4E1D2649752EC5DCBD0D5C64699); // writer.Write (hex_seq); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_35 = __this->get_writer_10(); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_36 = __this->get_hex_seq_4(); NullCheck(L_35); VirtualActionInvoker1< CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char[]) */, L_35, L_36); } IL_0141: { // for (int i = 0; i < n; i++) { int32_t L_37 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_37, (int32_t)1)); } IL_0145: { // for (int i = 0; i < n; i++) { int32_t L_38 = V_1; int32_t L_39 = V_0; if ((((int32_t)L_38) < ((int32_t)L_39))) { goto IL_0026; } } { // writer.Write ('"'); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_40 = __this->get_writer_10(); NullCheck(L_40); VirtualActionInvoker1< Il2CppChar >::Invoke(12 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_40, ((int32_t)34)); // } return; } } // System.Void LitJson.JsonWriter::Unindent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Unindent_m9000A729048AE8EF704ED1FBEA6C721EB79DF271 (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, const RuntimeMethod* method) { { // if (pretty_print) bool L_0 = __this->get_pretty_print_8(); if (!L_0) { goto IL_001b; } } { // indentation -= indent_value; int32_t L_1 = __this->get_indentation_5(); int32_t L_2 = __this->get_indent_value_6(); __this->set_indentation_5(((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)L_2))); } IL_001b: { // } return; } } // System.String LitJson.JsonWriter::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonWriter_ToString_m566C435E4E30750C2BE000F8F7734EB763DB4674 (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (inst_string_builder == null) StringBuilder_t * L_0 = __this->get_inst_string_builder_7(); if (L_0) { goto IL_000e; } } { // return String.Empty; String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return L_1; } IL_000e: { // return inst_string_builder.ToString (); StringBuilder_t * L_2 = __this->get_inst_string_builder_7(); NullCheck(L_2); String_t* L_3; L_3 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_2); return L_3; } } // System.Void LitJson.JsonWriter::Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Reset_mB67DA27FB1A75ADAD33D5BAE25629C1DC2BD2F01 (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Clear_mCDD49B62DA8E550FE85E16D09EEE152AEE4828CD_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Push_mB2E1D58D6814C632B1C0B7A71D32F2A275923315_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // has_reached_end = false; __this->set_has_reached_end_3((bool)0); // ctx_stack.Clear (); Stack_1_t7B63F93F3C5FA452C37D6EC4E51A4F56AF3D7B92 * L_0 = __this->get_ctx_stack_2(); NullCheck(L_0); Stack_1_Clear_mCDD49B62DA8E550FE85E16D09EEE152AEE4828CD(L_0, /*hidden argument*/Stack_1_Clear_mCDD49B62DA8E550FE85E16D09EEE152AEE4828CD_RuntimeMethod_var); // context = new WriterContext (); WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * L_1 = (WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 *)il2cpp_codegen_object_new(WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3_il2cpp_TypeInfo_var); WriterContext__ctor_m13B15DCCAE5EF69EC535CB3C401F12BE421CFF56(L_1, /*hidden argument*/NULL); __this->set_context_1(L_1); // ctx_stack.Push (context); Stack_1_t7B63F93F3C5FA452C37D6EC4E51A4F56AF3D7B92 * L_2 = __this->get_ctx_stack_2(); WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * L_3 = __this->get_context_1(); NullCheck(L_2); Stack_1_Push_mB2E1D58D6814C632B1C0B7A71D32F2A275923315(L_2, L_3, /*hidden argument*/Stack_1_Push_mB2E1D58D6814C632B1C0B7A71D32F2A275923315_RuntimeMethod_var); // if (inst_string_builder != null) StringBuilder_t * L_4 = __this->get_inst_string_builder_7(); if (!L_4) { goto IL_004e; } } { // inst_string_builder.Remove (0, inst_string_builder.Length); StringBuilder_t * L_5 = __this->get_inst_string_builder_7(); StringBuilder_t * L_6 = __this->get_inst_string_builder_7(); NullCheck(L_6); int32_t L_7; L_7 = StringBuilder_get_Length_m680500263C59ACFD9582BF2AEEED8E92C87FF5C0(L_6, /*hidden argument*/NULL); NullCheck(L_5); StringBuilder_t * L_8; L_8 = StringBuilder_Remove_m6ABF9CF3D10160EB52E0768262A9B179F987571E(L_5, 0, L_7, /*hidden argument*/NULL); } IL_004e: { // } return; } } // System.Void LitJson.JsonWriter::Write(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Write_m8637DCA2F8ED1907C6236C91F5C67311977D9C78 (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, bool ___boolean0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral77D38C0623F92B292B925F6E72CF5CF99A20D4EB); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB7C45DD316C68ABF3429C20058C2981C652192F2); s_Il2CppMethodInitialized = true; } JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * G_B2_0 = NULL; JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * G_B1_0 = NULL; String_t* G_B3_0 = NULL; JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * G_B3_1 = NULL; { // DoValidation (Condition.Value); JsonWriter_DoValidation_m671A92C47238ABA1DE030342F20B390A5CD21C71(__this, 4, /*hidden argument*/NULL); // PutNewline (); JsonWriter_PutNewline_m9593D928ED228E8E6835D30FB01E67EAF1E45A4B(__this, /*hidden argument*/NULL); // Put (boolean ? "true" : "false"); bool L_0 = ___boolean0; G_B1_0 = __this; if (L_0) { G_B2_0 = __this; goto IL_0018; } } { G_B3_0 = _stringLiteral77D38C0623F92B292B925F6E72CF5CF99A20D4EB; G_B3_1 = G_B1_0; goto IL_001d; } IL_0018: { G_B3_0 = _stringLiteralB7C45DD316C68ABF3429C20058C2981C652192F2; G_B3_1 = G_B2_0; } IL_001d: { NullCheck(G_B3_1); JsonWriter_Put_m0C22075651EF25191CBE44E952AC7349C71A4FE7(G_B3_1, G_B3_0, /*hidden argument*/NULL); // context.ExpectingValue = false; WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * L_1 = __this->get_context_1(); NullCheck(L_1); L_1->set_ExpectingValue_3((bool)0); // } return; } } // System.Void LitJson.JsonWriter::Write(System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Write_mAB1C85BDE0AD46830AC574F34B59598CB757DAE7 (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___number0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // DoValidation (Condition.Value); JsonWriter_DoValidation_m671A92C47238ABA1DE030342F20B390A5CD21C71(__this, 4, /*hidden argument*/NULL); // PutNewline (); JsonWriter_PutNewline_m9593D928ED228E8E6835D30FB01E67EAF1E45A4B(__this, /*hidden argument*/NULL); // Put (Convert.ToString (number, number_format)); Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_0 = ___number0; IL2CPP_RUNTIME_CLASS_INIT(JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A_il2cpp_TypeInfo_var); NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * L_1 = ((JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A_StaticFields*)il2cpp_codegen_static_fields_for(JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A_il2cpp_TypeInfo_var))->get_number_format_0(); IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var); String_t* L_2; L_2 = Convert_ToString_m4365C068739D443C5C6EEB5445AAEE1DBB245A4B(L_0, L_1, /*hidden argument*/NULL); JsonWriter_Put_m0C22075651EF25191CBE44E952AC7349C71A4FE7(__this, L_2, /*hidden argument*/NULL); // context.ExpectingValue = false; WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * L_3 = __this->get_context_1(); NullCheck(L_3); L_3->set_ExpectingValue_3((bool)0); // } return; } } // System.Void LitJson.JsonWriter::Write(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Write_m2E75C0441EED47A0666850AD2301881952B59C7F (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, double ___number0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC31E66F919D06AD2730738EF7F884271E99BB7DA); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { // DoValidation (Condition.Value); JsonWriter_DoValidation_m671A92C47238ABA1DE030342F20B390A5CD21C71(__this, 4, /*hidden argument*/NULL); // PutNewline (); JsonWriter_PutNewline_m9593D928ED228E8E6835D30FB01E67EAF1E45A4B(__this, /*hidden argument*/NULL); // string str = Convert.ToString (number, number_format); double L_0 = ___number0; IL2CPP_RUNTIME_CLASS_INIT(JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A_il2cpp_TypeInfo_var); NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * L_1 = ((JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A_StaticFields*)il2cpp_codegen_static_fields_for(JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A_il2cpp_TypeInfo_var))->get_number_format_0(); IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var); String_t* L_2; L_2 = Convert_ToString_m5BC045F91E837268FECEA78DA859902005EF91D1(L_0, L_1, /*hidden argument*/NULL); V_0 = L_2; // Put (str); String_t* L_3 = V_0; JsonWriter_Put_m0C22075651EF25191CBE44E952AC7349C71A4FE7(__this, L_3, /*hidden argument*/NULL); // if (str.IndexOf ('.') == -1 && // str.IndexOf ('E') == -1) String_t* L_4 = V_0; NullCheck(L_4); int32_t L_5; L_5 = String_IndexOf_mEE2D2F738175E3FF05580366D6226DBD673CA2BE(L_4, ((int32_t)46), /*hidden argument*/NULL); if ((!(((uint32_t)L_5) == ((uint32_t)(-1))))) { goto IL_0046; } } { String_t* L_6 = V_0; NullCheck(L_6); int32_t L_7; L_7 = String_IndexOf_mEE2D2F738175E3FF05580366D6226DBD673CA2BE(L_6, ((int32_t)69), /*hidden argument*/NULL); if ((!(((uint32_t)L_7) == ((uint32_t)(-1))))) { goto IL_0046; } } { // writer.Write (".0"); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_8 = __this->get_writer_10(); NullCheck(L_8); VirtualActionInvoker1< String_t* >::Invoke(15 /* System.Void System.IO.TextWriter::Write(System.String) */, L_8, _stringLiteralC31E66F919D06AD2730738EF7F884271E99BB7DA); } IL_0046: { // context.ExpectingValue = false; WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * L_9 = __this->get_context_1(); NullCheck(L_9); L_9->set_ExpectingValue_3((bool)0); // } return; } } // System.Void LitJson.JsonWriter::Write(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Write_m520AAD327374986AC0A8B685CD066F7058E26C47 (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, int32_t ___number0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // DoValidation (Condition.Value); JsonWriter_DoValidation_m671A92C47238ABA1DE030342F20B390A5CD21C71(__this, 4, /*hidden argument*/NULL); // PutNewline (); JsonWriter_PutNewline_m9593D928ED228E8E6835D30FB01E67EAF1E45A4B(__this, /*hidden argument*/NULL); // Put (Convert.ToString (number, number_format)); int32_t L_0 = ___number0; IL2CPP_RUNTIME_CLASS_INIT(JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A_il2cpp_TypeInfo_var); NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * L_1 = ((JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A_StaticFields*)il2cpp_codegen_static_fields_for(JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A_il2cpp_TypeInfo_var))->get_number_format_0(); IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var); String_t* L_2; L_2 = Convert_ToString_m608712133E3A607F257620CB270C6758F01CB109(L_0, L_1, /*hidden argument*/NULL); JsonWriter_Put_m0C22075651EF25191CBE44E952AC7349C71A4FE7(__this, L_2, /*hidden argument*/NULL); // context.ExpectingValue = false; WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * L_3 = __this->get_context_1(); NullCheck(L_3); L_3->set_ExpectingValue_3((bool)0); // } return; } } // System.Void LitJson.JsonWriter::Write(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Write_m1E202F293D17802DF6CF641957506832D7220C83 (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, int64_t ___number0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // DoValidation (Condition.Value); JsonWriter_DoValidation_m671A92C47238ABA1DE030342F20B390A5CD21C71(__this, 4, /*hidden argument*/NULL); // PutNewline (); JsonWriter_PutNewline_m9593D928ED228E8E6835D30FB01E67EAF1E45A4B(__this, /*hidden argument*/NULL); // Put (Convert.ToString (number, number_format)); int64_t L_0 = ___number0; IL2CPP_RUNTIME_CLASS_INIT(JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A_il2cpp_TypeInfo_var); NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * L_1 = ((JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A_StaticFields*)il2cpp_codegen_static_fields_for(JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A_il2cpp_TypeInfo_var))->get_number_format_0(); IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var); String_t* L_2; L_2 = Convert_ToString_m96D69564ADA9ACFD81958A9AB178D27D7BFECB4E(L_0, L_1, /*hidden argument*/NULL); JsonWriter_Put_m0C22075651EF25191CBE44E952AC7349C71A4FE7(__this, L_2, /*hidden argument*/NULL); // context.ExpectingValue = false; WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * L_3 = __this->get_context_1(); NullCheck(L_3); L_3->set_ExpectingValue_3((bool)0); // } return; } } // System.Void LitJson.JsonWriter::Write(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Write_m1226D74904B33BC08C33A98D2C12DB0226F6131C (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, String_t* ___str0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5BEFD8CC60A79699B5BB00E37BAC5B62D371E174); s_Il2CppMethodInitialized = true; } { // DoValidation (Condition.Value); JsonWriter_DoValidation_m671A92C47238ABA1DE030342F20B390A5CD21C71(__this, 4, /*hidden argument*/NULL); // PutNewline (); JsonWriter_PutNewline_m9593D928ED228E8E6835D30FB01E67EAF1E45A4B(__this, /*hidden argument*/NULL); // if (str == null) String_t* L_0 = ___str0; if (L_0) { goto IL_001d; } } { // Put ("null"); JsonWriter_Put_m0C22075651EF25191CBE44E952AC7349C71A4FE7(__this, _stringLiteral5BEFD8CC60A79699B5BB00E37BAC5B62D371E174, /*hidden argument*/NULL); goto IL_0024; } IL_001d: { // PutString (str); String_t* L_1 = ___str0; JsonWriter_PutString_mA39E1FF366FD962F077242A5D43087B2E6B5E346(__this, L_1, /*hidden argument*/NULL); } IL_0024: { // context.ExpectingValue = false; WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * L_2 = __this->get_context_1(); NullCheck(L_2); L_2->set_ExpectingValue_3((bool)0); // } return; } } // System.Void LitJson.JsonWriter::Write(System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_Write_m6C70542008EB5A8A437EA966FD767093D9E18BCB (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, uint64_t ___number0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // DoValidation (Condition.Value); JsonWriter_DoValidation_m671A92C47238ABA1DE030342F20B390A5CD21C71(__this, 4, /*hidden argument*/NULL); // PutNewline (); JsonWriter_PutNewline_m9593D928ED228E8E6835D30FB01E67EAF1E45A4B(__this, /*hidden argument*/NULL); // Put (Convert.ToString (number, number_format)); uint64_t L_0 = ___number0; IL2CPP_RUNTIME_CLASS_INIT(JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A_il2cpp_TypeInfo_var); NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * L_1 = ((JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A_StaticFields*)il2cpp_codegen_static_fields_for(JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A_il2cpp_TypeInfo_var))->get_number_format_0(); IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var); String_t* L_2; L_2 = Convert_ToString_m7DC0B782B61A20E04F624E47FD967D246BB78BD6(L_0, L_1, /*hidden argument*/NULL); JsonWriter_Put_m0C22075651EF25191CBE44E952AC7349C71A4FE7(__this, L_2, /*hidden argument*/NULL); // context.ExpectingValue = false; WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * L_3 = __this->get_context_1(); NullCheck(L_3); L_3->set_ExpectingValue_3((bool)0); // } return; } } // System.Void LitJson.JsonWriter::WriteArrayEnd() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WriteArrayEnd_mE072C6C05C1CAB7FD8B311778F3945D241470A87 (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Peek_mFB80BE4B86D09007389E5EA0BC46F36DE54C1BCC_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Pop_m7183B4824686C3DC16EB5A9DEACAA2CFE2C867ED_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_get_Count_m1FEFAE251314DE96805F70C00B59DAA9EA7B2203_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE166C9564FBDE461738077E3B1B506525EB6ACCC); s_Il2CppMethodInitialized = true; } { // DoValidation (Condition.InArray); JsonWriter_DoValidation_m671A92C47238ABA1DE030342F20B390A5CD21C71(__this, 0, /*hidden argument*/NULL); // PutNewline (false); JsonWriter_PutNewline_m7966BB02AFE5D597202A8B77928B46579752BBDD(__this, (bool)0, /*hidden argument*/NULL); // ctx_stack.Pop (); Stack_1_t7B63F93F3C5FA452C37D6EC4E51A4F56AF3D7B92 * L_0 = __this->get_ctx_stack_2(); NullCheck(L_0); WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * L_1; L_1 = Stack_1_Pop_m7183B4824686C3DC16EB5A9DEACAA2CFE2C867ED(L_0, /*hidden argument*/Stack_1_Pop_m7183B4824686C3DC16EB5A9DEACAA2CFE2C867ED_RuntimeMethod_var); // if (ctx_stack.Count == 1) Stack_1_t7B63F93F3C5FA452C37D6EC4E51A4F56AF3D7B92 * L_2 = __this->get_ctx_stack_2(); NullCheck(L_2); int32_t L_3; L_3 = Stack_1_get_Count_m1FEFAE251314DE96805F70C00B59DAA9EA7B2203_inline(L_2, /*hidden argument*/Stack_1_get_Count_m1FEFAE251314DE96805F70C00B59DAA9EA7B2203_RuntimeMethod_var); if ((!(((uint32_t)L_3) == ((uint32_t)1)))) { goto IL_0031; } } { // has_reached_end = true; __this->set_has_reached_end_3((bool)1); goto IL_004e; } IL_0031: { // context = ctx_stack.Peek (); Stack_1_t7B63F93F3C5FA452C37D6EC4E51A4F56AF3D7B92 * L_4 = __this->get_ctx_stack_2(); NullCheck(L_4); WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * L_5; L_5 = Stack_1_Peek_mFB80BE4B86D09007389E5EA0BC46F36DE54C1BCC(L_4, /*hidden argument*/Stack_1_Peek_mFB80BE4B86D09007389E5EA0BC46F36DE54C1BCC_RuntimeMethod_var); __this->set_context_1(L_5); // context.ExpectingValue = false; WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * L_6 = __this->get_context_1(); NullCheck(L_6); L_6->set_ExpectingValue_3((bool)0); } IL_004e: { // Unindent (); JsonWriter_Unindent_m9000A729048AE8EF704ED1FBEA6C721EB79DF271(__this, /*hidden argument*/NULL); // Put ("]"); JsonWriter_Put_m0C22075651EF25191CBE44E952AC7349C71A4FE7(__this, _stringLiteralE166C9564FBDE461738077E3B1B506525EB6ACCC, /*hidden argument*/NULL); // } return; } } // System.Void LitJson.JsonWriter::WriteArrayStart() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WriteArrayStart_m4AD937F8743225A6A5753BA03FBADE44945F5A2B (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Push_mB2E1D58D6814C632B1C0B7A71D32F2A275923315_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD9691C4FD8A1F6B09DB1147CA32B442772FB46A1); s_Il2CppMethodInitialized = true; } { // DoValidation (Condition.NotAProperty); JsonWriter_DoValidation_m671A92C47238ABA1DE030342F20B390A5CD21C71(__this, 2, /*hidden argument*/NULL); // PutNewline (); JsonWriter_PutNewline_m9593D928ED228E8E6835D30FB01E67EAF1E45A4B(__this, /*hidden argument*/NULL); // Put ("["); JsonWriter_Put_m0C22075651EF25191CBE44E952AC7349C71A4FE7(__this, _stringLiteralD9691C4FD8A1F6B09DB1147CA32B442772FB46A1, /*hidden argument*/NULL); // context = new WriterContext (); WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * L_0 = (WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 *)il2cpp_codegen_object_new(WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3_il2cpp_TypeInfo_var); WriterContext__ctor_m13B15DCCAE5EF69EC535CB3C401F12BE421CFF56(L_0, /*hidden argument*/NULL); __this->set_context_1(L_0); // context.InArray = true; WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * L_1 = __this->get_context_1(); NullCheck(L_1); L_1->set_InArray_1((bool)1); // ctx_stack.Push (context); Stack_1_t7B63F93F3C5FA452C37D6EC4E51A4F56AF3D7B92 * L_2 = __this->get_ctx_stack_2(); WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * L_3 = __this->get_context_1(); NullCheck(L_2); Stack_1_Push_mB2E1D58D6814C632B1C0B7A71D32F2A275923315(L_2, L_3, /*hidden argument*/Stack_1_Push_mB2E1D58D6814C632B1C0B7A71D32F2A275923315_RuntimeMethod_var); // Indent (); JsonWriter_Indent_m1D369467CC7D2295DE796AE6BBEE0D2156019E0A(__this, /*hidden argument*/NULL); // } return; } } // System.Void LitJson.JsonWriter::WriteObjectEnd() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WriteObjectEnd_m141FFC78D2C8B82406EF7F95C9A5ECB1EDC374A9 (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Peek_mFB80BE4B86D09007389E5EA0BC46F36DE54C1BCC_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Pop_m7183B4824686C3DC16EB5A9DEACAA2CFE2C867ED_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_get_Count_m1FEFAE251314DE96805F70C00B59DAA9EA7B2203_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4D8D9C94AC5DA5FCED2EC8A64E10E714A2515C30); s_Il2CppMethodInitialized = true; } { // DoValidation (Condition.InObject); JsonWriter_DoValidation_m671A92C47238ABA1DE030342F20B390A5CD21C71(__this, 1, /*hidden argument*/NULL); // PutNewline (false); JsonWriter_PutNewline_m7966BB02AFE5D597202A8B77928B46579752BBDD(__this, (bool)0, /*hidden argument*/NULL); // ctx_stack.Pop (); Stack_1_t7B63F93F3C5FA452C37D6EC4E51A4F56AF3D7B92 * L_0 = __this->get_ctx_stack_2(); NullCheck(L_0); WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * L_1; L_1 = Stack_1_Pop_m7183B4824686C3DC16EB5A9DEACAA2CFE2C867ED(L_0, /*hidden argument*/Stack_1_Pop_m7183B4824686C3DC16EB5A9DEACAA2CFE2C867ED_RuntimeMethod_var); // if (ctx_stack.Count == 1) Stack_1_t7B63F93F3C5FA452C37D6EC4E51A4F56AF3D7B92 * L_2 = __this->get_ctx_stack_2(); NullCheck(L_2); int32_t L_3; L_3 = Stack_1_get_Count_m1FEFAE251314DE96805F70C00B59DAA9EA7B2203_inline(L_2, /*hidden argument*/Stack_1_get_Count_m1FEFAE251314DE96805F70C00B59DAA9EA7B2203_RuntimeMethod_var); if ((!(((uint32_t)L_3) == ((uint32_t)1)))) { goto IL_0031; } } { // has_reached_end = true; __this->set_has_reached_end_3((bool)1); goto IL_004e; } IL_0031: { // context = ctx_stack.Peek (); Stack_1_t7B63F93F3C5FA452C37D6EC4E51A4F56AF3D7B92 * L_4 = __this->get_ctx_stack_2(); NullCheck(L_4); WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * L_5; L_5 = Stack_1_Peek_mFB80BE4B86D09007389E5EA0BC46F36DE54C1BCC(L_4, /*hidden argument*/Stack_1_Peek_mFB80BE4B86D09007389E5EA0BC46F36DE54C1BCC_RuntimeMethod_var); __this->set_context_1(L_5); // context.ExpectingValue = false; WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * L_6 = __this->get_context_1(); NullCheck(L_6); L_6->set_ExpectingValue_3((bool)0); } IL_004e: { // Unindent (); JsonWriter_Unindent_m9000A729048AE8EF704ED1FBEA6C721EB79DF271(__this, /*hidden argument*/NULL); // Put ("}"); JsonWriter_Put_m0C22075651EF25191CBE44E952AC7349C71A4FE7(__this, _stringLiteral4D8D9C94AC5DA5FCED2EC8A64E10E714A2515C30, /*hidden argument*/NULL); // } return; } } // System.Void LitJson.JsonWriter::WriteObjectStart() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WriteObjectStart_mFD0DB249791378221BCF3329F94D5B9232B72622 (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Push_mB2E1D58D6814C632B1C0B7A71D32F2A275923315_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0C3C6829C3CCF8020C6AC45B87963ADC095CD44A); s_Il2CppMethodInitialized = true; } { // DoValidation (Condition.NotAProperty); JsonWriter_DoValidation_m671A92C47238ABA1DE030342F20B390A5CD21C71(__this, 2, /*hidden argument*/NULL); // PutNewline (); JsonWriter_PutNewline_m9593D928ED228E8E6835D30FB01E67EAF1E45A4B(__this, /*hidden argument*/NULL); // Put ("{"); JsonWriter_Put_m0C22075651EF25191CBE44E952AC7349C71A4FE7(__this, _stringLiteral0C3C6829C3CCF8020C6AC45B87963ADC095CD44A, /*hidden argument*/NULL); // context = new WriterContext (); WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * L_0 = (WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 *)il2cpp_codegen_object_new(WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3_il2cpp_TypeInfo_var); WriterContext__ctor_m13B15DCCAE5EF69EC535CB3C401F12BE421CFF56(L_0, /*hidden argument*/NULL); __this->set_context_1(L_0); // context.InObject = true; WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * L_1 = __this->get_context_1(); NullCheck(L_1); L_1->set_InObject_2((bool)1); // ctx_stack.Push (context); Stack_1_t7B63F93F3C5FA452C37D6EC4E51A4F56AF3D7B92 * L_2 = __this->get_ctx_stack_2(); WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * L_3 = __this->get_context_1(); NullCheck(L_2); Stack_1_Push_mB2E1D58D6814C632B1C0B7A71D32F2A275923315(L_2, L_3, /*hidden argument*/Stack_1_Push_mB2E1D58D6814C632B1C0B7A71D32F2A275923315_RuntimeMethod_var); // Indent (); JsonWriter_Indent_m1D369467CC7D2295DE796AE6BBEE0D2156019E0A(__this, /*hidden argument*/NULL); // } return; } } // System.Void LitJson.JsonWriter::WritePropertyName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_WritePropertyName_mDAAC9B6838862E1651D2DA3F2A9B5E88C07F1ED3 (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, String_t* ___property_name0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1168E92C164109D6220480DEDA987085B2A21155); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { // DoValidation (Condition.Property); JsonWriter_DoValidation_m671A92C47238ABA1DE030342F20B390A5CD21C71(__this, 3, /*hidden argument*/NULL); // PutNewline (); JsonWriter_PutNewline_m9593D928ED228E8E6835D30FB01E67EAF1E45A4B(__this, /*hidden argument*/NULL); // PutString (property_name); String_t* L_0 = ___property_name0; JsonWriter_PutString_mA39E1FF366FD962F077242A5D43087B2E6B5E346(__this, L_0, /*hidden argument*/NULL); // if (pretty_print) { bool L_1 = __this->get_pretty_print_8(); if (!L_1) { goto IL_007c; } } { // if (property_name.Length > context.Padding) String_t* L_2 = ___property_name0; NullCheck(L_2); int32_t L_3; L_3 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_2, /*hidden argument*/NULL); WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * L_4 = __this->get_context_1(); NullCheck(L_4); int32_t L_5 = L_4->get_Padding_4(); if ((((int32_t)L_3) <= ((int32_t)L_5))) { goto IL_0040; } } { // context.Padding = property_name.Length; WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * L_6 = __this->get_context_1(); String_t* L_7 = ___property_name0; NullCheck(L_7); int32_t L_8; L_8 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_7, /*hidden argument*/NULL); NullCheck(L_6); L_6->set_Padding_4(L_8); } IL_0040: { // for (int i = context.Padding - property_name.Length; WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * L_9 = __this->get_context_1(); NullCheck(L_9); int32_t L_10 = L_9->get_Padding_4(); String_t* L_11 = ___property_name0; NullCheck(L_11); int32_t L_12; L_12 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_11, /*hidden argument*/NULL); V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)L_12)); goto IL_0066; } IL_0055: { // writer.Write (' '); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_13 = __this->get_writer_10(); NullCheck(L_13); VirtualActionInvoker1< Il2CppChar >::Invoke(12 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_13, ((int32_t)32)); // i >= 0; i--) int32_t L_14 = V_0; V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_14, (int32_t)1)); } IL_0066: { // i >= 0; i--) int32_t L_15 = V_0; if ((((int32_t)L_15) >= ((int32_t)0))) { goto IL_0055; } } { // writer.Write (": "); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_16 = __this->get_writer_10(); NullCheck(L_16); VirtualActionInvoker1< String_t* >::Invoke(15 /* System.Void System.IO.TextWriter::Write(System.String) */, L_16, _stringLiteral1168E92C164109D6220480DEDA987085B2A21155); // } else goto IL_0089; } IL_007c: { // writer.Write (':'); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_17 = __this->get_writer_10(); NullCheck(L_17); VirtualActionInvoker1< Il2CppChar >::Invoke(12 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_17, ((int32_t)58)); } IL_0089: { // context.ExpectingValue = true; WriterContext_tF5B3EACFF8422E240058918EF5F9E83C618277F3 * L_18 = __this->get_context_1(); NullCheck(L_18); L_18->set_ExpectingValue_3((bool)1); // } return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::setNb(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KCcmBlockCipher_setNb_m7CC9AA8BC720AC09945941BB2342D909E720863D (KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511 * __this, int32_t ___Nb0, const RuntimeMethod* method) { { // if (Nb == 4 || Nb == 6 || Nb == 8) int32_t L_0 = ___Nb0; if ((((int32_t)L_0) == ((int32_t)4))) { goto IL_000c; } } { int32_t L_1 = ___Nb0; if ((((int32_t)L_1) == ((int32_t)6))) { goto IL_000c; } } { int32_t L_2 = ___Nb0; if ((!(((uint32_t)L_2) == ((uint32_t)8)))) { goto IL_0014; } } IL_000c: { // Nb_ = Nb; int32_t L_3 = ___Nb0; __this->set_Nb__17(L_3); // } return; } IL_0014: { // throw new ArgumentException("Nb = 4 is recommended by DSTU7624 but can be changed to only 6 or 8 in this implementation"); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_4 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral86676EF5625B07BB6A212B0248104BFAD8CDFD5C)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KCcmBlockCipher_setNb_m7CC9AA8BC720AC09945941BB2342D909E720863D_RuntimeMethod_var))); } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KCcmBlockCipher__ctor_mC8B1A0B53B9031A6E5FC7679D98812F2FF09FDDD (KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511 * __this, RuntimeObject* ___engine0, const RuntimeMethod* method) { { // public KCcmBlockCipher(IBlockCipher engine): this(engine, 4) RuntimeObject* L_0 = ___engine0; KCcmBlockCipher__ctor_m98219383ED65772D0ADEC63282A0D64D67564C3F(__this, L_0, 4, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KCcmBlockCipher__ctor_m98219383ED65772D0ADEC63282A0D64D67564C3F (KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511 * __this, RuntimeObject* ___engine0, int32_t ___Nb1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // private readonly MemoryStream associatedText = new MemoryStream(); MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_0 = (MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C *)il2cpp_codegen_object_new(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C_il2cpp_TypeInfo_var); MemoryStream__ctor_mD27B3DF2400D46A4A81EE78B0BD2C29EFCFAA44F(L_0, /*hidden argument*/NULL); __this->set_associatedText_15(L_0); // private readonly MemoryStream data = new MemoryStream(); MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_1 = (MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C *)il2cpp_codegen_object_new(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C_il2cpp_TypeInfo_var); MemoryStream__ctor_mD27B3DF2400D46A4A81EE78B0BD2C29EFCFAA44F(L_1, /*hidden argument*/NULL); __this->set_data_16(L_1); // private int Nb_ = 4; __this->set_Nb__17(4); // public KCcmBlockCipher(IBlockCipher engine, int Nb) Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); // this.engine = engine; RuntimeObject* L_2 = ___engine0; __this->set_engine_4(L_2); // this.macSize = engine.GetBlockSize(); RuntimeObject* L_3 = ___engine0; NullCheck(L_3); int32_t L_4; L_4 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::GetBlockSize() */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_3); __this->set_macSize_5(L_4); // this.nonce = new byte[engine.GetBlockSize()]; RuntimeObject* L_5 = ___engine0; NullCheck(L_5); int32_t L_6; L_6 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::GetBlockSize() */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_5); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_7 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)L_6); __this->set_nonce_10(L_7); // this.initialAssociatedText = new byte[engine.GetBlockSize()]; RuntimeObject* L_8 = ___engine0; NullCheck(L_8); int32_t L_9; L_9 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::GetBlockSize() */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_8); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_10 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)L_9); __this->set_initialAssociatedText_7(L_10); // this.mac = new byte[engine.GetBlockSize()]; RuntimeObject* L_11 = ___engine0; NullCheck(L_11); int32_t L_12; L_12 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::GetBlockSize() */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_11); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_13 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)L_12); __this->set_mac_8(L_13); // this.macBlock = new byte[engine.GetBlockSize()]; RuntimeObject* L_14 = ___engine0; NullCheck(L_14); int32_t L_15; L_15 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::GetBlockSize() */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_14); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_16 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)L_15); __this->set_macBlock_9(L_16); // this.G1 = new byte[engine.GetBlockSize()]; RuntimeObject* L_17 = ___engine0; NullCheck(L_17); int32_t L_18; L_18 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::GetBlockSize() */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_17); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_19 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)L_18); __this->set_G1_11(L_19); // this.buffer = new byte[engine.GetBlockSize()]; RuntimeObject* L_20 = ___engine0; NullCheck(L_20); int32_t L_21; L_21 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::GetBlockSize() */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_20); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_22 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)L_21); __this->set_buffer_12(L_22); // this.s = new byte[engine.GetBlockSize()]; RuntimeObject* L_23 = ___engine0; NullCheck(L_23); int32_t L_24; L_24 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::GetBlockSize() */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_23); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_25 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)L_24); __this->set_s_13(L_25); // this.counter = new byte[engine.GetBlockSize()]; RuntimeObject* L_26 = ___engine0; NullCheck(L_26); int32_t L_27; L_27 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::GetBlockSize() */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_26); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_28 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)L_27); __this->set_counter_14(L_28); // setNb(Nb); int32_t L_29 = ___Nb1; KCcmBlockCipher_setNb_m7CC9AA8BC720AC09945941BB2342D909E720863D(__this, L_29, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::Init(System.Boolean,BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ICipherParameters) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KCcmBlockCipher_Init_m948E536824D40F97177D805E93A5A2B436569FEC (KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511 * __this, bool ___forEncryption0, RuntimeObject* ___parameters1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AeadParameters_t6C6A2620BFEC0ADD723500AA9021B04CE1956B64_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ParametersWithIV_tD5AFAE97C3F7DA4A08BC278F9AC969DA957E87A0_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; AeadParameters_t6C6A2620BFEC0ADD723500AA9021B04CE1956B64 * V_1 = NULL; { // if (parameters is AeadParameters) RuntimeObject* L_0 = ___parameters1; if (!((AeadParameters_t6C6A2620BFEC0ADD723500AA9021B04CE1956B64 *)IsInstClass((RuntimeObject*)L_0, AeadParameters_t6C6A2620BFEC0ADD723500AA9021B04CE1956B64_il2cpp_TypeInfo_var))) { goto IL_0071; } } { // AeadParameters param = (AeadParameters)parameters; RuntimeObject* L_1 = ___parameters1; V_1 = ((AeadParameters_t6C6A2620BFEC0ADD723500AA9021B04CE1956B64 *)CastclassClass((RuntimeObject*)L_1, AeadParameters_t6C6A2620BFEC0ADD723500AA9021B04CE1956B64_il2cpp_TypeInfo_var)); // if (param.MacSize > MAX_MAC_BIT_LENGTH || param.MacSize < MIN_MAC_BIT_LENGTH || param.MacSize % 8 != 0) AeadParameters_t6C6A2620BFEC0ADD723500AA9021B04CE1956B64 * L_2 = V_1; NullCheck(L_2); int32_t L_3; L_3 = VirtualFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.AeadParameters::get_MacSize() */, L_2); IL2CPP_RUNTIME_CLASS_INIT(KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511_il2cpp_TypeInfo_var); int32_t L_4 = ((KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511_StaticFields*)il2cpp_codegen_static_fields_for(KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511_il2cpp_TypeInfo_var))->get_MAX_MAC_BIT_LENGTH_2(); if ((((int32_t)L_3) > ((int32_t)L_4))) { goto IL_0033; } } { AeadParameters_t6C6A2620BFEC0ADD723500AA9021B04CE1956B64 * L_5 = V_1; NullCheck(L_5); int32_t L_6; L_6 = VirtualFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.AeadParameters::get_MacSize() */, L_5); IL2CPP_RUNTIME_CLASS_INIT(KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511_il2cpp_TypeInfo_var); int32_t L_7 = ((KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511_StaticFields*)il2cpp_codegen_static_fields_for(KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511_il2cpp_TypeInfo_var))->get_MIN_MAC_BIT_LENGTH_3(); if ((((int32_t)L_6) < ((int32_t)L_7))) { goto IL_0033; } } { AeadParameters_t6C6A2620BFEC0ADD723500AA9021B04CE1956B64 * L_8 = V_1; NullCheck(L_8); int32_t L_9; L_9 = VirtualFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.AeadParameters::get_MacSize() */, L_8); if (!((int32_t)((int32_t)L_9%(int32_t)8))) { goto IL_003e; } } IL_0033: { // throw new ArgumentException("Invalid mac size specified"); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_10 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2367BCDD7B214D5EEC78058C7E0F28C2DB18486F)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KCcmBlockCipher_Init_m948E536824D40F97177D805E93A5A2B436569FEC_RuntimeMethod_var))); } IL_003e: { // nonce = param.GetNonce(); AeadParameters_t6C6A2620BFEC0ADD723500AA9021B04CE1956B64 * L_11 = V_1; NullCheck(L_11); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_12; L_12 = VirtualFuncInvoker0< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(7 /* System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.AeadParameters::GetNonce() */, L_11); __this->set_nonce_10(L_12); // macSize = param.MacSize / BITS_IN_BYTE; AeadParameters_t6C6A2620BFEC0ADD723500AA9021B04CE1956B64 * L_13 = V_1; NullCheck(L_13); int32_t L_14; L_14 = VirtualFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.AeadParameters::get_MacSize() */, L_13); IL2CPP_RUNTIME_CLASS_INIT(KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511_il2cpp_TypeInfo_var); int32_t L_15 = ((KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511_StaticFields*)il2cpp_codegen_static_fields_for(KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511_il2cpp_TypeInfo_var))->get_BITS_IN_BYTE_1(); __this->set_macSize_5(((int32_t)((int32_t)L_14/(int32_t)L_15))); // initialAssociatedText = param.GetAssociatedText(); AeadParameters_t6C6A2620BFEC0ADD723500AA9021B04CE1956B64 * L_16 = V_1; NullCheck(L_16); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_17; L_17 = VirtualFuncInvoker0< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(6 /* System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.AeadParameters::GetAssociatedText() */, L_16); __this->set_initialAssociatedText_7(L_17); // cipherParameters = param.Key; AeadParameters_t6C6A2620BFEC0ADD723500AA9021B04CE1956B64 * L_18 = V_1; NullCheck(L_18); KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * L_19; L_19 = VirtualFuncInvoker0< KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * >::Invoke(4 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.KeyParameter BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.AeadParameters::get_Key() */, L_18); V_0 = L_19; // } goto IL_00bb; } IL_0071: { // else if (parameters is ParametersWithIV) RuntimeObject* L_20 = ___parameters1; if (!((ParametersWithIV_tD5AFAE97C3F7DA4A08BC278F9AC969DA957E87A0 *)IsInstClass((RuntimeObject*)L_20, ParametersWithIV_tD5AFAE97C3F7DA4A08BC278F9AC969DA957E87A0_il2cpp_TypeInfo_var))) { goto IL_00b0; } } { // nonce = ((ParametersWithIV)parameters).GetIV(); RuntimeObject* L_21 = ___parameters1; NullCheck(((ParametersWithIV_tD5AFAE97C3F7DA4A08BC278F9AC969DA957E87A0 *)CastclassClass((RuntimeObject*)L_21, ParametersWithIV_tD5AFAE97C3F7DA4A08BC278F9AC969DA957E87A0_il2cpp_TypeInfo_var))); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_22; L_22 = ParametersWithIV_GetIV_m17D0EF646E07A2B81A17450A3342DEBB7C42603B(((ParametersWithIV_tD5AFAE97C3F7DA4A08BC278F9AC969DA957E87A0 *)CastclassClass((RuntimeObject*)L_21, ParametersWithIV_tD5AFAE97C3F7DA4A08BC278F9AC969DA957E87A0_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); __this->set_nonce_10(L_22); // macSize = engine.GetBlockSize(); // use default blockSize for MAC if it is not specified RuntimeObject* L_23 = __this->get_engine_4(); NullCheck(L_23); int32_t L_24; L_24 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::GetBlockSize() */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_23); __this->set_macSize_5(L_24); // initialAssociatedText = null; __this->set_initialAssociatedText_7((ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)NULL); // cipherParameters = ((ParametersWithIV)parameters).Parameters; RuntimeObject* L_25 = ___parameters1; NullCheck(((ParametersWithIV_tD5AFAE97C3F7DA4A08BC278F9AC969DA957E87A0 *)CastclassClass((RuntimeObject*)L_25, ParametersWithIV_tD5AFAE97C3F7DA4A08BC278F9AC969DA957E87A0_il2cpp_TypeInfo_var))); RuntimeObject* L_26; L_26 = ParametersWithIV_get_Parameters_m2B5701D391CF607292513A855051EEF3D8E705E8_inline(((ParametersWithIV_tD5AFAE97C3F7DA4A08BC278F9AC969DA957E87A0 *)CastclassClass((RuntimeObject*)L_25, ParametersWithIV_tD5AFAE97C3F7DA4A08BC278F9AC969DA957E87A0_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); V_0 = L_26; // } goto IL_00bb; } IL_00b0: { // throw new ArgumentException("Invalid parameters specified"); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_27 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_27, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC1247379A9C42BAF4DAD87F9ABE2F0CB38AF22A2)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_27, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KCcmBlockCipher_Init_m948E536824D40F97177D805E93A5A2B436569FEC_RuntimeMethod_var))); } IL_00bb: { // this.mac = new byte[macSize]; int32_t L_28 = __this->get_macSize_5(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_29 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)L_28); __this->set_mac_8(L_29); // this.forEncryption = forEncryption; bool L_30 = ___forEncryption0; __this->set_forEncryption_6(L_30); // engine.Init(true, cipherParameters); RuntimeObject* L_31 = __this->get_engine_4(); RuntimeObject* L_32 = V_0; NullCheck(L_31); InterfaceActionInvoker2< bool, RuntimeObject* >::Invoke(1 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::Init(System.Boolean,BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ICipherParameters) */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_31, (bool)1, L_32); // counter[0] = 0x01; // defined in standard ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_33 = __this->get_counter_14(); NullCheck(L_33); (L_33)->SetAt(static_cast(0), (uint8_t)1); // if (initialAssociatedText != null) ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_34 = __this->get_initialAssociatedText_7(); if (!L_34) { goto IL_0106; } } { // ProcessAadBytes(initialAssociatedText, 0, initialAssociatedText.Length); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_35 = __this->get_initialAssociatedText_7(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_36 = __this->get_initialAssociatedText_7(); NullCheck(L_36); VirtualActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(22 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::ProcessAadBytes(System.Byte[],System.Int32,System.Int32) */, __this, L_35, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_36)->max_length)))); } IL_0106: { // } return; } } // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::get_AlgorithmName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* KCcmBlockCipher_get_AlgorithmName_m01580AD78E7929DE2EF174D0EDD4CE591DA9606C (KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC8395859B32B7B887C6F2ED68A0C1A5C2784CD17); s_Il2CppMethodInitialized = true; } { // return engine.AlgorithmName + "/KCCM"; RuntimeObject* L_0 = __this->get_engine_4(); NullCheck(L_0); String_t* L_1; L_1 = InterfaceFuncInvoker0< String_t* >::Invoke(0 /* System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::get_AlgorithmName() */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_0); String_t* L_2; L_2 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(L_1, _stringLiteralC8395859B32B7B887C6F2ED68A0C1A5C2784CD17, /*hidden argument*/NULL); return L_2; } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::GetBlockSize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t KCcmBlockCipher_GetBlockSize_m08D531B39190AEFCA18456383887A4288C73530E (KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // return engine.GetBlockSize(); RuntimeObject* L_0 = __this->get_engine_4(); NullCheck(L_0); int32_t L_1; L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::GetBlockSize() */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_0); return L_1; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::GetUnderlyingCipher() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* KCcmBlockCipher_GetUnderlyingCipher_m98B1276AA1F52A619CA8A3DD64950EDC02160B0A (KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511 * __this, const RuntimeMethod* method) { { // return engine; RuntimeObject* L_0 = __this->get_engine_4(); return L_0; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::ProcessAadByte(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KCcmBlockCipher_ProcessAadByte_m512AB78D153B2EA7F46817FEE18D610788B6092E (KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511 * __this, uint8_t ___input0, const RuntimeMethod* method) { { // associatedText.WriteByte(input); MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_0 = __this->get_associatedText_15(); uint8_t L_1 = ___input0; NullCheck(L_0); VirtualActionInvoker1< uint8_t >::Invoke(33 /* System.Void System.IO.Stream::WriteByte(System.Byte) */, L_0, L_1); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::ProcessAadBytes(System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KCcmBlockCipher_ProcessAadBytes_mB7F4A9C72D8841814AD388CF9F7E31C82A6A8FC7 (KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___input0, int32_t ___inOff1, int32_t ___len2, const RuntimeMethod* method) { { // associatedText.Write(input, inOff, len); MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_0 = __this->get_associatedText_15(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = ___input0; int32_t L_2 = ___inOff1; int32_t L_3 = ___len2; NullCheck(L_0); VirtualActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(32 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_0, L_1, L_2, L_3); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::ProcessAAD(System.Byte[],System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KCcmBlockCipher_ProcessAAD_mCA5131BB5A12AAE39B0DD84B73BCB4912D910B7B (KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___assocText0, int32_t ___assocOff1, int32_t ___assocLen2, int32_t ___dataLen3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; { // if (assocLen - assocOff < engine.GetBlockSize()) int32_t L_0 = ___assocLen2; int32_t L_1 = ___assocOff1; RuntimeObject* L_2 = __this->get_engine_4(); NullCheck(L_2); int32_t L_3; L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::GetBlockSize() */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_2); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1))) >= ((int32_t)L_3))) { goto IL_001b; } } { // throw new ArgumentException("authText buffer too short"); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_4 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral38D09B1907F51A21FA890AD1B24D91155B49D4DB)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KCcmBlockCipher_ProcessAAD_mCA5131BB5A12AAE39B0DD84B73BCB4912D910B7B_RuntimeMethod_var))); } IL_001b: { // if (assocLen % engine.GetBlockSize() != 0) int32_t L_5 = ___assocLen2; RuntimeObject* L_6 = __this->get_engine_4(); NullCheck(L_6); int32_t L_7; L_7 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::GetBlockSize() */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_6); if (!((int32_t)((int32_t)L_5%(int32_t)L_7))) { goto IL_0035; } } { // throw new ArgumentException("padding not supported"); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_8 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_8, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral885C1F522AFB0B733EF983628BB641707475502A)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KCcmBlockCipher_ProcessAAD_mCA5131BB5A12AAE39B0DD84B73BCB4912D910B7B_RuntimeMethod_var))); } IL_0035: { // Array.Copy(nonce, 0, G1, 0, nonce.Length - Nb_ - 1); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_9 = __this->get_nonce_10(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_10 = __this->get_G1_11(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_11 = __this->get_nonce_10(); NullCheck(L_11); int32_t L_12 = __this->get_Nb__17(); Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_9, 0, (RuntimeArray *)(RuntimeArray *)L_10, 0, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_11)->max_length))), (int32_t)L_12)), (int32_t)1)), /*hidden argument*/NULL); // intToBytes(dataLen, buffer, 0); // for G1 int32_t L_13 = ___dataLen3; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_14 = __this->get_buffer_12(); KCcmBlockCipher_intToBytes_m688AA98CE4E772AF70411CF3CBA1DC278E9F5858(__this, L_13, L_14, 0, /*hidden argument*/NULL); // Array.Copy(buffer, 0, G1, nonce.Length - Nb_ - 1, BYTES_IN_INT); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_15 = __this->get_buffer_12(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_16 = __this->get_G1_11(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_17 = __this->get_nonce_10(); NullCheck(L_17); int32_t L_18 = __this->get_Nb__17(); IL2CPP_RUNTIME_CLASS_INIT(KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511_il2cpp_TypeInfo_var); int32_t L_19 = ((KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511_StaticFields*)il2cpp_codegen_static_fields_for(KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511_il2cpp_TypeInfo_var))->get_BYTES_IN_INT_0(); Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_15, 0, (RuntimeArray *)(RuntimeArray *)L_16, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length))), (int32_t)L_18)), (int32_t)1)), L_19, /*hidden argument*/NULL); // G1[G1.Length - 1] = getFlag(true, macSize); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_20 = __this->get_G1_11(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_21 = __this->get_G1_11(); NullCheck(L_21); int32_t L_22 = __this->get_macSize_5(); uint8_t L_23; L_23 = KCcmBlockCipher_getFlag_mFD20F7B8427AFC935BC2DFDDA1BBF64A867DC576(__this, (bool)1, L_22, /*hidden argument*/NULL); NullCheck(L_20); (L_20)->SetAt(static_cast(((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_21)->max_length))), (int32_t)1))), (uint8_t)L_23); // engine.ProcessBlock(G1, 0, macBlock, 0); RuntimeObject* L_24 = __this->get_engine_4(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_25 = __this->get_G1_11(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_26 = __this->get_macBlock_9(); NullCheck(L_24); int32_t L_27; L_27 = InterfaceFuncInvoker4< int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t >::Invoke(4 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32) */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_24, L_25, 0, L_26, 0); // intToBytes(assocLen, buffer, 0); // for G2 int32_t L_28 = ___assocLen2; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_29 = __this->get_buffer_12(); KCcmBlockCipher_intToBytes_m688AA98CE4E772AF70411CF3CBA1DC278E9F5858(__this, L_28, L_29, 0, /*hidden argument*/NULL); // if (assocLen <= engine.GetBlockSize() - Nb_) int32_t L_30 = ___assocLen2; RuntimeObject* L_31 = __this->get_engine_4(); NullCheck(L_31); int32_t L_32; L_32 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::GetBlockSize() */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_31); int32_t L_33 = __this->get_Nb__17(); if ((((int32_t)L_30) > ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_32, (int32_t)L_33))))) { goto IL_015e; } } { // for (int byteIndex = 0; byteIndex < assocLen; byteIndex++) V_1 = 0; goto IL_0110; } IL_00ef: { // buffer[byteIndex + Nb_] ^= assocText[assocOff + byteIndex]; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_34 = __this->get_buffer_12(); int32_t L_35 = V_1; int32_t L_36 = __this->get_Nb__17(); NullCheck(L_34); uint8_t* L_37 = ((L_34)->GetAddressAt(static_cast(((int32_t)il2cpp_codegen_add((int32_t)L_35, (int32_t)L_36))))); int32_t L_38 = *((uint8_t*)L_37); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_39 = ___assocText0; int32_t L_40 = ___assocOff1; int32_t L_41 = V_1; NullCheck(L_39); int32_t L_42 = ((int32_t)il2cpp_codegen_add((int32_t)L_40, (int32_t)L_41)); uint8_t L_43 = (L_39)->GetAt(static_cast(L_42)); *((int8_t*)L_37) = (int8_t)((int32_t)((uint8_t)((int32_t)((int32_t)L_38^(int32_t)L_43)))); // for (int byteIndex = 0; byteIndex < assocLen; byteIndex++) int32_t L_44 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_44, (int32_t)1)); } IL_0110: { // for (int byteIndex = 0; byteIndex < assocLen; byteIndex++) int32_t L_45 = V_1; int32_t L_46 = ___assocLen2; if ((((int32_t)L_45) < ((int32_t)L_46))) { goto IL_00ef; } } { // for (int byteIndex = 0; byteIndex < engine.GetBlockSize(); byteIndex++) V_2 = 0; goto IL_0135; } IL_0118: { // macBlock[byteIndex] ^= buffer[byteIndex]; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_47 = __this->get_macBlock_9(); int32_t L_48 = V_2; NullCheck(L_47); uint8_t* L_49 = ((L_47)->GetAddressAt(static_cast(L_48))); int32_t L_50 = *((uint8_t*)L_49); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_51 = __this->get_buffer_12(); int32_t L_52 = V_2; NullCheck(L_51); int32_t L_53 = L_52; uint8_t L_54 = (L_51)->GetAt(static_cast(L_53)); *((int8_t*)L_49) = (int8_t)((int32_t)((uint8_t)((int32_t)((int32_t)L_50^(int32_t)L_54)))); // for (int byteIndex = 0; byteIndex < engine.GetBlockSize(); byteIndex++) int32_t L_55 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_55, (int32_t)1)); } IL_0135: { // for (int byteIndex = 0; byteIndex < engine.GetBlockSize(); byteIndex++) int32_t L_56 = V_2; RuntimeObject* L_57 = __this->get_engine_4(); NullCheck(L_57); int32_t L_58; L_58 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::GetBlockSize() */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_57); if ((((int32_t)L_56) < ((int32_t)L_58))) { goto IL_0118; } } { // engine.ProcessBlock(macBlock, 0, macBlock, 0); RuntimeObject* L_59 = __this->get_engine_4(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_60 = __this->get_macBlock_9(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_61 = __this->get_macBlock_9(); NullCheck(L_59); int32_t L_62; L_62 = InterfaceFuncInvoker4< int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t >::Invoke(4 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32) */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_59, L_60, 0, L_61, 0); // return; return; } IL_015e: { // for (int byteIndex = 0; byteIndex < engine.GetBlockSize(); byteIndex++) V_3 = 0; goto IL_017f; } IL_0162: { // macBlock[byteIndex] ^= buffer[byteIndex]; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_63 = __this->get_macBlock_9(); int32_t L_64 = V_3; NullCheck(L_63); uint8_t* L_65 = ((L_63)->GetAddressAt(static_cast(L_64))); int32_t L_66 = *((uint8_t*)L_65); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_67 = __this->get_buffer_12(); int32_t L_68 = V_3; NullCheck(L_67); int32_t L_69 = L_68; uint8_t L_70 = (L_67)->GetAt(static_cast(L_69)); *((int8_t*)L_65) = (int8_t)((int32_t)((uint8_t)((int32_t)((int32_t)L_66^(int32_t)L_70)))); // for (int byteIndex = 0; byteIndex < engine.GetBlockSize(); byteIndex++) int32_t L_71 = V_3; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_71, (int32_t)1)); } IL_017f: { // for (int byteIndex = 0; byteIndex < engine.GetBlockSize(); byteIndex++) int32_t L_72 = V_3; RuntimeObject* L_73 = __this->get_engine_4(); NullCheck(L_73); int32_t L_74; L_74 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::GetBlockSize() */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_73); if ((((int32_t)L_72) < ((int32_t)L_74))) { goto IL_0162; } } { // engine.ProcessBlock(macBlock, 0, macBlock, 0); RuntimeObject* L_75 = __this->get_engine_4(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_76 = __this->get_macBlock_9(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_77 = __this->get_macBlock_9(); NullCheck(L_75); int32_t L_78; L_78 = InterfaceFuncInvoker4< int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t >::Invoke(4 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32) */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_75, L_76, 0, L_77, 0); // int authLen = assocLen; int32_t L_79 = ___assocLen2; V_0 = L_79; goto IL_0214; } IL_01ab: { // for (int byteIndex = 0; byteIndex < engine.GetBlockSize(); byteIndex++) V_4 = 0; goto IL_01ce; } IL_01b0: { // macBlock[byteIndex] ^= assocText[byteIndex + assocOff]; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_80 = __this->get_macBlock_9(); int32_t L_81 = V_4; NullCheck(L_80); uint8_t* L_82 = ((L_80)->GetAddressAt(static_cast(L_81))); int32_t L_83 = *((uint8_t*)L_82); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_84 = ___assocText0; int32_t L_85 = V_4; int32_t L_86 = ___assocOff1; NullCheck(L_84); int32_t L_87 = ((int32_t)il2cpp_codegen_add((int32_t)L_85, (int32_t)L_86)); uint8_t L_88 = (L_84)->GetAt(static_cast(L_87)); *((int8_t*)L_82) = (int8_t)((int32_t)((uint8_t)((int32_t)((int32_t)L_83^(int32_t)L_88)))); // for (int byteIndex = 0; byteIndex < engine.GetBlockSize(); byteIndex++) int32_t L_89 = V_4; V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_89, (int32_t)1)); } IL_01ce: { // for (int byteIndex = 0; byteIndex < engine.GetBlockSize(); byteIndex++) int32_t L_90 = V_4; RuntimeObject* L_91 = __this->get_engine_4(); NullCheck(L_91); int32_t L_92; L_92 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::GetBlockSize() */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_91); if ((((int32_t)L_90) < ((int32_t)L_92))) { goto IL_01b0; } } { // engine.ProcessBlock(macBlock, 0, macBlock, 0); RuntimeObject* L_93 = __this->get_engine_4(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_94 = __this->get_macBlock_9(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_95 = __this->get_macBlock_9(); NullCheck(L_93); int32_t L_96; L_96 = InterfaceFuncInvoker4< int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t >::Invoke(4 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32) */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_93, L_94, 0, L_95, 0); // assocOff += engine.GetBlockSize(); int32_t L_97 = ___assocOff1; RuntimeObject* L_98 = __this->get_engine_4(); NullCheck(L_98); int32_t L_99; L_99 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::GetBlockSize() */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_98); ___assocOff1 = ((int32_t)il2cpp_codegen_add((int32_t)L_97, (int32_t)L_99)); // authLen -= engine.GetBlockSize(); int32_t L_100 = V_0; RuntimeObject* L_101 = __this->get_engine_4(); NullCheck(L_101); int32_t L_102; L_102 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::GetBlockSize() */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_101); V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_100, (int32_t)L_102)); } IL_0214: { // while (authLen != 0) int32_t L_103 = V_0; if (L_103) { goto IL_01ab; } } { // } return; } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::ProcessByte(System.Byte,System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t KCcmBlockCipher_ProcessByte_m07C04BF2E198EF38914BFDA4087B840E19D3DE26 (KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511 * __this, uint8_t ___input0, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___output1, int32_t ___outOff2, const RuntimeMethod* method) { { // data.WriteByte(input); MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_0 = __this->get_data_16(); uint8_t L_1 = ___input0; NullCheck(L_0); VirtualActionInvoker1< uint8_t >::Invoke(33 /* System.Void System.IO.Stream::WriteByte(System.Byte) */, L_0, L_1); // return 0; return 0; } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::ProcessBytes(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t KCcmBlockCipher_ProcessBytes_mB9033085C17BFB2000F618F6349228D6F3E6839C (KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___input0, int32_t ___inOff1, int32_t ___inLen2, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___output3, int32_t ___outOff4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB4B7C0DD1031D01D1D525A2AFE11B0C544BA74ED); s_Il2CppMethodInitialized = true; } { // Check.DataLength(input, inOff, inLen, "input buffer too short"); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___input0; int32_t L_1 = ___inOff1; int32_t L_2 = ___inLen2; Check_DataLength_m987B9B6E75E7F5711F99C2B1EFC990B922ECAB3F(L_0, L_1, L_2, _stringLiteralB4B7C0DD1031D01D1D525A2AFE11B0C544BA74ED, /*hidden argument*/NULL); // data.Write(input, inOff, inLen); MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_3 = __this->get_data_16(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = ___input0; int32_t L_5 = ___inOff1; int32_t L_6 = ___inLen2; NullCheck(L_3); VirtualActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(32 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_3, L_4, L_5, L_6); // return 0; return 0; } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::ProcessPacket(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t KCcmBlockCipher_ProcessPacket_m728128BCCFDBF1BBEDCA5944CA05087D5AF0B9A9 (KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___input0, int32_t ___inOff1, int32_t ___len2, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___output3, int32_t ___outOff4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Arrays_t7CFD09DA7425047721E193958DAC5AB0FCFF67BF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2F851A80AFDF46DB1A689F30C8AD9B5960FA47F2); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral593CBFE95E3FA15438E893EF8E8CBD31F861CDE1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB4B7C0DD1031D01D1D525A2AFE11B0C544BA74ED); s_Il2CppMethodInitialized = true; } ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; int32_t V_5 = 0; int32_t V_6 = 0; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_7 = NULL; int32_t V_8 = 0; int32_t V_9 = 0; int32_t V_10 = 0; int32_t V_11 = 0; int32_t G_B4_0 = 0; { // Check.DataLength(input, inOff, len, "input buffer too short"); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___input0; int32_t L_1 = ___inOff1; int32_t L_2 = ___len2; Check_DataLength_m987B9B6E75E7F5711F99C2B1EFC990B922ECAB3F(L_0, L_1, L_2, _stringLiteralB4B7C0DD1031D01D1D525A2AFE11B0C544BA74ED, /*hidden argument*/NULL); // Check.OutputLength(output, outOff, len, "output buffer too short"); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_3 = ___output3; int32_t L_4 = ___outOff4; int32_t L_5 = ___len2; Check_OutputLength_mFF38F66673647A1F0F8806CDF8FAD6B168B951B6(L_3, L_4, L_5, _stringLiteral2F851A80AFDF46DB1A689F30C8AD9B5960FA47F2, /*hidden argument*/NULL); // if (associatedText.Length > 0) MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_6 = __this->get_associatedText_15(); NullCheck(L_6); int64_t L_7; L_7 = VirtualFuncInvoker0< int64_t >::Invoke(10 /* System.Int64 System.IO.Stream::get_Length() */, L_6); if ((((int64_t)L_7) <= ((int64_t)((int64_t)((int64_t)0))))) { goto IL_0078; } } { // byte[] aad = associatedText.GetBuffer(); MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_8 = __this->get_associatedText_15(); NullCheck(L_8); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_9; L_9 = VirtualFuncInvoker0< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(34 /* System.Byte[] System.IO.MemoryStream::GetBuffer() */, L_8); V_0 = L_9; // int aadLen = (int)associatedText.Length; MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_10 = __this->get_associatedText_15(); NullCheck(L_10); int64_t L_11; L_11 = VirtualFuncInvoker0< int64_t >::Invoke(10 /* System.Int64 System.IO.Stream::get_Length() */, L_10); V_1 = ((int32_t)((int32_t)L_11)); // int dataLen = forEncryption ? (int)data.Length : ((int)data.Length - macSize); bool L_12 = __this->get_forEncryption_6(); if (L_12) { goto IL_0061; } } { MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_13 = __this->get_data_16(); NullCheck(L_13); int64_t L_14; L_14 = VirtualFuncInvoker0< int64_t >::Invoke(10 /* System.Int64 System.IO.Stream::get_Length() */, L_13); int32_t L_15 = __this->get_macSize_5(); G_B4_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)((int32_t)L_14)), (int32_t)L_15)); goto IL_006d; } IL_0061: { MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_16 = __this->get_data_16(); NullCheck(L_16); int64_t L_17; L_17 = VirtualFuncInvoker0< int64_t >::Invoke(10 /* System.Int64 System.IO.Stream::get_Length() */, L_16); G_B4_0 = ((int32_t)((int32_t)L_17)); } IL_006d: { V_2 = G_B4_0; // ProcessAAD(aad, 0, aadLen, dataLen); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_18 = V_0; int32_t L_19 = V_1; int32_t L_20 = V_2; KCcmBlockCipher_ProcessAAD_mCA5131BB5A12AAE39B0DD84B73BCB4912D910B7B(__this, L_18, 0, L_19, L_20, /*hidden argument*/NULL); } IL_0078: { // if (forEncryption) bool L_21 = __this->get_forEncryption_6(); if (!L_21) { goto IL_01a7; } } { // Check.DataLength(len % engine.GetBlockSize() != 0, "partial blocks not supported"); int32_t L_22 = ___len2; RuntimeObject* L_23 = __this->get_engine_4(); NullCheck(L_23); int32_t L_24; L_24 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::GetBlockSize() */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_23); Check_DataLength_m74509F2FBF5A87468D31E9DFA795805313DC13A9((bool)((!(((uint32_t)((int32_t)((int32_t)L_22%(int32_t)L_24))) <= ((uint32_t)0)))? 1 : 0), _stringLiteral593CBFE95E3FA15438E893EF8E8CBD31F861CDE1, /*hidden argument*/NULL); // CalculateMac(input, inOff, len); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_25 = ___input0; int32_t L_26 = ___inOff1; int32_t L_27 = ___len2; KCcmBlockCipher_CalculateMac_m865D1AFE2B23E43AACA203F65E9A168C001AB0D1(__this, L_25, L_26, L_27, /*hidden argument*/NULL); // engine.ProcessBlock(nonce, 0, s, 0); RuntimeObject* L_28 = __this->get_engine_4(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_29 = __this->get_nonce_10(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_30 = __this->get_s_13(); NullCheck(L_28); int32_t L_31; L_31 = InterfaceFuncInvoker4< int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t >::Invoke(4 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32) */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_28, L_29, 0, L_30, 0); // int totalLength = len; int32_t L_32 = ___len2; V_3 = L_32; goto IL_00fe; } IL_00c4: { // ProcessBlock(input, inOff, len, output, outOff); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_33 = ___input0; int32_t L_34 = ___inOff1; int32_t L_35 = ___len2; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_36 = ___output3; int32_t L_37 = ___outOff4; KCcmBlockCipher_ProcessBlock_m6D66A75661B857CAB2C5024BE6879CA1ECBE402B(__this, L_33, L_34, L_35, L_36, L_37, /*hidden argument*/NULL); // totalLength -= engine.GetBlockSize(); int32_t L_38 = V_3; RuntimeObject* L_39 = __this->get_engine_4(); NullCheck(L_39); int32_t L_40; L_40 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::GetBlockSize() */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_39); V_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_38, (int32_t)L_40)); // inOff += engine.GetBlockSize(); int32_t L_41 = ___inOff1; RuntimeObject* L_42 = __this->get_engine_4(); NullCheck(L_42); int32_t L_43; L_43 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::GetBlockSize() */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_42); ___inOff1 = ((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)L_43)); // outOff += engine.GetBlockSize(); int32_t L_44 = ___outOff4; RuntimeObject* L_45 = __this->get_engine_4(); NullCheck(L_45); int32_t L_46; L_46 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::GetBlockSize() */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_45); ___outOff4 = ((int32_t)il2cpp_codegen_add((int32_t)L_44, (int32_t)L_46)); } IL_00fe: { // while (totalLength > 0) int32_t L_47 = V_3; if ((((int32_t)L_47) > ((int32_t)0))) { goto IL_00c4; } } { // for (int byteIndex = 0; byteIndexget_s_13(); int32_t L_49 = V_4; NullCheck(L_48); uint8_t* L_50 = ((L_48)->GetAddressAt(static_cast(L_49))); int32_t L_51 = *((uint8_t*)L_50); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_52 = __this->get_counter_14(); int32_t L_53 = V_4; NullCheck(L_52); int32_t L_54 = L_53; uint8_t L_55 = (L_52)->GetAt(static_cast(L_54)); *((int8_t*)L_50) = (int8_t)((int32_t)((uint8_t)((int32_t)il2cpp_codegen_add((int32_t)L_51, (int32_t)L_55)))); // for (int byteIndex = 0; byteIndexget_counter_14(); NullCheck(L_58); if ((((int32_t)L_57) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_58)->max_length)))))) { goto IL_0107; } } { // engine.ProcessBlock(s, 0, buffer, 0); RuntimeObject* L_59 = __this->get_engine_4(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_60 = __this->get_s_13(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_61 = __this->get_buffer_12(); NullCheck(L_59); int32_t L_62; L_62 = InterfaceFuncInvoker4< int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t >::Invoke(4 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32) */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_59, L_60, 0, L_61, 0); // for (int byteIndex = 0; byteIndexget_buffer_12(); int32_t L_67 = V_5; NullCheck(L_66); int32_t L_68 = L_67; uint8_t L_69 = (L_66)->GetAt(static_cast(L_68)); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_70 = __this->get_macBlock_9(); int32_t L_71 = V_5; NullCheck(L_70); int32_t L_72 = L_71; uint8_t L_73 = (L_70)->GetAt(static_cast(L_72)); NullCheck(L_63); (L_63)->SetAt(static_cast(((int32_t)il2cpp_codegen_add((int32_t)L_64, (int32_t)L_65))), (uint8_t)((int32_t)((uint8_t)((int32_t)((int32_t)L_69^(int32_t)L_73))))); // for (int byteIndex = 0; byteIndexget_macSize_5(); if ((((int32_t)L_75) < ((int32_t)L_76))) { goto IL_0153; } } { // Array.Copy(macBlock, 0, mac, 0, macSize); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_77 = __this->get_macBlock_9(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_78 = __this->get_mac_8(); int32_t L_79 = __this->get_macSize_5(); Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_77, 0, (RuntimeArray *)(RuntimeArray *)L_78, 0, L_79, /*hidden argument*/NULL); // Reset(); VirtualActionInvoker0::Invoke(29 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::Reset() */, __this); // return len + macSize; int32_t L_80 = ___len2; int32_t L_81 = __this->get_macSize_5(); return ((int32_t)il2cpp_codegen_add((int32_t)L_80, (int32_t)L_81)); } IL_01a7: { // Check.DataLength((len - macSize) % engine.GetBlockSize() != 0, "partial blocks not supported"); int32_t L_82 = ___len2; int32_t L_83 = __this->get_macSize_5(); RuntimeObject* L_84 = __this->get_engine_4(); NullCheck(L_84); int32_t L_85; L_85 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::GetBlockSize() */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_84); Check_DataLength_m74509F2FBF5A87468D31E9DFA795805313DC13A9((bool)((!(((uint32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_82, (int32_t)L_83))%(int32_t)L_85))) <= ((uint32_t)0)))? 1 : 0), _stringLiteral593CBFE95E3FA15438E893EF8E8CBD31F861CDE1, /*hidden argument*/NULL); // engine.ProcessBlock(nonce, 0, s, 0); RuntimeObject* L_86 = __this->get_engine_4(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_87 = __this->get_nonce_10(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_88 = __this->get_s_13(); NullCheck(L_86); int32_t L_89; L_89 = InterfaceFuncInvoker4< int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t >::Invoke(4 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32) */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_86, L_87, 0, L_88, 0); // int blocks = len / engine.GetBlockSize(); int32_t L_90 = ___len2; RuntimeObject* L_91 = __this->get_engine_4(); NullCheck(L_91); int32_t L_92; L_92 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::GetBlockSize() */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_91); V_6 = ((int32_t)((int32_t)L_90/(int32_t)L_92)); // for (int blockNum = 0; blockNumget_engine_4(); NullCheck(L_99); int32_t L_100; L_100 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::GetBlockSize() */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_99); ___inOff1 = ((int32_t)il2cpp_codegen_add((int32_t)L_98, (int32_t)L_100)); // outOff += engine.GetBlockSize(); int32_t L_101 = ___outOff4; RuntimeObject* L_102 = __this->get_engine_4(); NullCheck(L_102); int32_t L_103; L_103 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::GetBlockSize() */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_102); ___outOff4 = ((int32_t)il2cpp_codegen_add((int32_t)L_101, (int32_t)L_103)); // for (int blockNum = 0; blockNum inOff) int32_t L_107 = ___len2; int32_t L_108 = ___inOff1; if ((((int32_t)L_107) <= ((int32_t)L_108))) { goto IL_02ba; } } { // for (int byteIndex = 0; byteIndexget_s_13(); int32_t L_110 = V_9; NullCheck(L_109); uint8_t* L_111 = ((L_109)->GetAddressAt(static_cast(L_110))); int32_t L_112 = *((uint8_t*)L_111); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_113 = __this->get_counter_14(); int32_t L_114 = V_9; NullCheck(L_113); int32_t L_115 = L_114; uint8_t L_116 = (L_113)->GetAt(static_cast(L_115)); *((int8_t*)L_111) = (int8_t)((int32_t)((uint8_t)((int32_t)il2cpp_codegen_add((int32_t)L_112, (int32_t)L_116)))); // for (int byteIndex = 0; byteIndexget_counter_14(); NullCheck(L_119); if ((((int32_t)L_118) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_119)->max_length)))))) { goto IL_023a; } } { // engine.ProcessBlock(s, 0, buffer, 0); RuntimeObject* L_120 = __this->get_engine_4(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_121 = __this->get_s_13(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_122 = __this->get_buffer_12(); NullCheck(L_120); int32_t L_123; L_123 = InterfaceFuncInvoker4< int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t >::Invoke(4 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32) */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_120, L_121, 0, L_122, 0); // for (int byteIndex = 0; byteIndexget_buffer_12(); int32_t L_128 = V_10; NullCheck(L_127); int32_t L_129 = L_128; uint8_t L_130 = (L_127)->GetAt(static_cast(L_129)); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_131 = ___input0; int32_t L_132 = ___inOff1; int32_t L_133 = V_10; NullCheck(L_131); int32_t L_134 = ((int32_t)il2cpp_codegen_add((int32_t)L_132, (int32_t)L_133)); uint8_t L_135 = (L_131)->GetAt(static_cast(L_134)); NullCheck(L_124); (L_124)->SetAt(static_cast(((int32_t)il2cpp_codegen_add((int32_t)L_125, (int32_t)L_126))), (uint8_t)((int32_t)((uint8_t)((int32_t)((int32_t)L_130^(int32_t)L_135))))); // for (int byteIndex = 0; byteIndexget_macSize_5(); if ((((int32_t)L_137) < ((int32_t)L_138))) { goto IL_0286; } } { // outOff += macSize; int32_t L_139 = ___outOff4; int32_t L_140 = __this->get_macSize_5(); ___outOff4 = ((int32_t)il2cpp_codegen_add((int32_t)L_139, (int32_t)L_140)); } IL_02ba: { // for (int byteIndex = 0; byteIndexget_s_13(); int32_t L_142 = V_11; NullCheck(L_141); uint8_t* L_143 = ((L_141)->GetAddressAt(static_cast(L_142))); int32_t L_144 = *((uint8_t*)L_143); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_145 = __this->get_counter_14(); int32_t L_146 = V_11; NullCheck(L_145); int32_t L_147 = L_146; uint8_t L_148 = (L_145)->GetAt(static_cast(L_147)); *((int8_t*)L_143) = (int8_t)((int32_t)((uint8_t)((int32_t)il2cpp_codegen_add((int32_t)L_144, (int32_t)L_148)))); // for (int byteIndex = 0; byteIndexget_counter_14(); NullCheck(L_151); if ((((int32_t)L_150) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_151)->max_length)))))) { goto IL_02bf; } } { // engine.ProcessBlock(s, 0, buffer, 0); RuntimeObject* L_152 = __this->get_engine_4(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_153 = __this->get_s_13(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_154 = __this->get_buffer_12(); NullCheck(L_152); int32_t L_155; L_155 = InterfaceFuncInvoker4< int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t >::Invoke(4 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32) */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_152, L_153, 0, L_154, 0); // Array.Copy(output, outOff - macSize, buffer, 0, macSize); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_156 = ___output3; int32_t L_157 = ___outOff4; int32_t L_158 = __this->get_macSize_5(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_159 = __this->get_buffer_12(); int32_t L_160 = __this->get_macSize_5(); Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_156, ((int32_t)il2cpp_codegen_subtract((int32_t)L_157, (int32_t)L_158)), (RuntimeArray *)(RuntimeArray *)L_159, 0, L_160, /*hidden argument*/NULL); // CalculateMac(output, 0, outOff - macSize); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_161 = ___output3; int32_t L_162 = ___outOff4; int32_t L_163 = __this->get_macSize_5(); KCcmBlockCipher_CalculateMac_m865D1AFE2B23E43AACA203F65E9A168C001AB0D1(__this, L_161, 0, ((int32_t)il2cpp_codegen_subtract((int32_t)L_162, (int32_t)L_163)), /*hidden argument*/NULL); // Array.Copy(macBlock, 0, mac, 0, macSize); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_164 = __this->get_macBlock_9(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_165 = __this->get_mac_8(); int32_t L_166 = __this->get_macSize_5(); Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_164, 0, (RuntimeArray *)(RuntimeArray *)L_165, 0, L_166, /*hidden argument*/NULL); // byte[] calculatedMac = new byte[macSize]; int32_t L_167 = __this->get_macSize_5(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_168 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)L_167); V_7 = L_168; // Array.Copy(buffer, 0, calculatedMac, 0, macSize); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_169 = __this->get_buffer_12(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_170 = V_7; int32_t L_171 = __this->get_macSize_5(); Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_169, 0, (RuntimeArray *)(RuntimeArray *)L_170, 0, L_171, /*hidden argument*/NULL); // if (!Arrays.ConstantTimeAreEqual(mac, calculatedMac)) ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_172 = __this->get_mac_8(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_173 = V_7; IL2CPP_RUNTIME_CLASS_INIT(Arrays_t7CFD09DA7425047721E193958DAC5AB0FCFF67BF_il2cpp_TypeInfo_var); bool L_174; L_174 = Arrays_ConstantTimeAreEqual_mA8B0D8A56AE0903D0723D146FD1777A01E2014E4(L_172, L_173, /*hidden argument*/NULL); if (L_174) { goto IL_038a; } } { // throw new InvalidCipherTextException("mac check failed"); InvalidCipherTextException_tCB4102F353576109DF6723BAD28806C82D61BC8D * L_175 = (InvalidCipherTextException_tCB4102F353576109DF6723BAD28806C82D61BC8D *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCipherTextException_tCB4102F353576109DF6723BAD28806C82D61BC8D_il2cpp_TypeInfo_var))); InvalidCipherTextException__ctor_m17000A09278358915AC0F74D4227FA7AC7C72043(L_175, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4BF2CE86BA69492C7DE55AB9B517CC2DAC4FB810)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_175, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KCcmBlockCipher_ProcessPacket_m728128BCCFDBF1BBEDCA5944CA05087D5AF0B9A9_RuntimeMethod_var))); } IL_038a: { // Reset(); VirtualActionInvoker0::Invoke(29 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::Reset() */, __this); // return len - macSize; int32_t L_176 = ___len2; int32_t L_177 = __this->get_macSize_5(); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_176, (int32_t)L_177)); } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::ProcessBlock(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KCcmBlockCipher_ProcessBlock_m6D66A75661B857CAB2C5024BE6879CA1ECBE402B (KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___input0, int32_t ___inOff1, int32_t ___len2, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___output3, int32_t ___outOff4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { // for (int byteIndex = 0; byteIndex < counter.Length; byteIndex++) V_0 = 0; goto IL_0021; } IL_0004: { // s[byteIndex] += counter[byteIndex]; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = __this->get_s_13(); int32_t L_1 = V_0; NullCheck(L_0); uint8_t* L_2 = ((L_0)->GetAddressAt(static_cast(L_1))); int32_t L_3 = *((uint8_t*)L_2); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = __this->get_counter_14(); int32_t L_5 = V_0; NullCheck(L_4); int32_t L_6 = L_5; uint8_t L_7 = (L_4)->GetAt(static_cast(L_6)); *((int8_t*)L_2) = (int8_t)((int32_t)((uint8_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)L_7)))); // for (int byteIndex = 0; byteIndex < counter.Length; byteIndex++) int32_t L_8 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1)); } IL_0021: { // for (int byteIndex = 0; byteIndex < counter.Length; byteIndex++) int32_t L_9 = V_0; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_10 = __this->get_counter_14(); NullCheck(L_10); if ((((int32_t)L_9) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))))) { goto IL_0004; } } { // engine.ProcessBlock(s, 0, buffer, 0); RuntimeObject* L_11 = __this->get_engine_4(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_12 = __this->get_s_13(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_13 = __this->get_buffer_12(); NullCheck(L_11); int32_t L_14; L_14 = InterfaceFuncInvoker4< int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t >::Invoke(4 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32) */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_11, L_12, 0, L_13, 0); // for (int byteIndex = 0; byteIndex < engine.GetBlockSize(); byteIndex++) V_1 = 0; goto IL_0064; } IL_004a: { // output[outOff + byteIndex] = (byte)(buffer[byteIndex] ^ input[inOff + byteIndex]); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_15 = ___output3; int32_t L_16 = ___outOff4; int32_t L_17 = V_1; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_18 = __this->get_buffer_12(); int32_t L_19 = V_1; NullCheck(L_18); int32_t L_20 = L_19; uint8_t L_21 = (L_18)->GetAt(static_cast(L_20)); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_22 = ___input0; int32_t L_23 = ___inOff1; int32_t L_24 = V_1; NullCheck(L_22); int32_t L_25 = ((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)L_24)); uint8_t L_26 = (L_22)->GetAt(static_cast(L_25)); NullCheck(L_15); (L_15)->SetAt(static_cast(((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)L_17))), (uint8_t)((int32_t)((uint8_t)((int32_t)((int32_t)L_21^(int32_t)L_26))))); // for (int byteIndex = 0; byteIndex < engine.GetBlockSize(); byteIndex++) int32_t L_27 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1)); } IL_0064: { // for (int byteIndex = 0; byteIndex < engine.GetBlockSize(); byteIndex++) int32_t L_28 = V_1; RuntimeObject* L_29 = __this->get_engine_4(); NullCheck(L_29); int32_t L_30; L_30 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::GetBlockSize() */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_29); if ((((int32_t)L_28) < ((int32_t)L_30))) { goto IL_004a; } } { // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::CalculateMac(System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KCcmBlockCipher_CalculateMac_m865D1AFE2B23E43AACA203F65E9A168C001AB0D1 (KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___authText0, int32_t ___authOff1, int32_t ___len2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { // int totalLen = len; int32_t L_0 = ___len2; V_0 = L_0; goto IL_0067; } IL_0004: { // for (int byteIndex = 0; byteIndex < engine.GetBlockSize(); byteIndex++) V_1 = 0; goto IL_0022; } IL_0008: { // macBlock[byteIndex] ^= authText[authOff + byteIndex]; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = __this->get_macBlock_9(); int32_t L_2 = V_1; NullCheck(L_1); uint8_t* L_3 = ((L_1)->GetAddressAt(static_cast(L_2))); int32_t L_4 = *((uint8_t*)L_3); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_5 = ___authText0; int32_t L_6 = ___authOff1; int32_t L_7 = V_1; NullCheck(L_5); int32_t L_8 = ((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)L_7)); uint8_t L_9 = (L_5)->GetAt(static_cast(L_8)); *((int8_t*)L_3) = (int8_t)((int32_t)((uint8_t)((int32_t)((int32_t)L_4^(int32_t)L_9)))); // for (int byteIndex = 0; byteIndex < engine.GetBlockSize(); byteIndex++) int32_t L_10 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)); } IL_0022: { // for (int byteIndex = 0; byteIndex < engine.GetBlockSize(); byteIndex++) int32_t L_11 = V_1; RuntimeObject* L_12 = __this->get_engine_4(); NullCheck(L_12); int32_t L_13; L_13 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::GetBlockSize() */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_12); if ((((int32_t)L_11) < ((int32_t)L_13))) { goto IL_0008; } } { // engine.ProcessBlock(macBlock, 0, macBlock, 0); RuntimeObject* L_14 = __this->get_engine_4(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_15 = __this->get_macBlock_9(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_16 = __this->get_macBlock_9(); NullCheck(L_14); int32_t L_17; L_17 = InterfaceFuncInvoker4< int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t >::Invoke(4 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32) */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_14, L_15, 0, L_16, 0); // totalLen -= engine.GetBlockSize(); int32_t L_18 = V_0; RuntimeObject* L_19 = __this->get_engine_4(); NullCheck(L_19); int32_t L_20; L_20 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::GetBlockSize() */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_19); V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)L_20)); // authOff += engine.GetBlockSize(); int32_t L_21 = ___authOff1; RuntimeObject* L_22 = __this->get_engine_4(); NullCheck(L_22); int32_t L_23; L_23 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::GetBlockSize() */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_22); ___authOff1 = ((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)L_23)); } IL_0067: { // while (totalLen > 0) int32_t L_24 = V_0; if ((((int32_t)L_24) > ((int32_t)0))) { goto IL_0004; } } { // } return; } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::DoFinal(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t KCcmBlockCipher_DoFinal_m5E7981BF264619F34701A4A0A87C6451CD310629 (KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___output0, int32_t ___outOff1, const RuntimeMethod* method) { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_0 = NULL; int32_t V_1 = 0; { // byte[] buf = data.GetBuffer(); MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_0 = __this->get_data_16(); NullCheck(L_0); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1; L_1 = VirtualFuncInvoker0< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(34 /* System.Byte[] System.IO.MemoryStream::GetBuffer() */, L_0); V_0 = L_1; // int bufLen = (int)data.Length; MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_2 = __this->get_data_16(); NullCheck(L_2); int64_t L_3; L_3 = VirtualFuncInvoker0< int64_t >::Invoke(10 /* System.Int64 System.IO.Stream::get_Length() */, L_2); V_1 = ((int32_t)((int32_t)L_3)); // int len = ProcessPacket(buf, 0, bufLen, output, outOff); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = V_0; int32_t L_5 = V_1; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_6 = ___output0; int32_t L_7 = ___outOff1; int32_t L_8; L_8 = KCcmBlockCipher_ProcessPacket_m728128BCCFDBF1BBEDCA5944CA05087D5AF0B9A9(__this, L_4, 0, L_5, L_6, L_7, /*hidden argument*/NULL); // Reset(); VirtualActionInvoker0::Invoke(29 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::Reset() */, __this); // return len; return L_8; } } // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::GetMac() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* KCcmBlockCipher_GetMac_mB03A1D283DFA179367C3C9F3D4065FFC3EC58A7A (KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Arrays_t7CFD09DA7425047721E193958DAC5AB0FCFF67BF_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // return Arrays.Clone(mac); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = __this->get_mac_8(); IL2CPP_RUNTIME_CLASS_INIT(Arrays_t7CFD09DA7425047721E193958DAC5AB0FCFF67BF_il2cpp_TypeInfo_var); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1; L_1 = Arrays_Clone_m362B6E8EAA394ABF566EABAF08A37C8232D398D8(L_0, /*hidden argument*/NULL); return L_1; } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::GetUpdateOutputSize(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t KCcmBlockCipher_GetUpdateOutputSize_m8F3494D4E5903618C0B696476F3E3A91B49A1A5E (KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511 * __this, int32_t ___len0, const RuntimeMethod* method) { { // return len; int32_t L_0 = ___len0; return L_0; } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::GetOutputSize(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t KCcmBlockCipher_GetOutputSize_m2648997BE4BE51E92441402F3E1D1625CF335F9A (KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511 * __this, int32_t ___len0, const RuntimeMethod* method) { { // return len + macSize; int32_t L_0 = ___len0; int32_t L_1 = __this->get_macSize_5(); return ((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1)); } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KCcmBlockCipher_Reset_mC959381535B357C70D60D4E23F4B0D36DC5DD70D (KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Arrays_t7CFD09DA7425047721E193958DAC5AB0FCFF67BF_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // Arrays.Fill(G1, (byte)0); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = __this->get_G1_11(); IL2CPP_RUNTIME_CLASS_INIT(Arrays_t7CFD09DA7425047721E193958DAC5AB0FCFF67BF_il2cpp_TypeInfo_var); Arrays_Fill_m841D30B6E9F2CA374C9F6D5C3A690607C6E1BCFF(L_0, (uint8_t)0, /*hidden argument*/NULL); // Arrays.Fill(buffer, (byte)0); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = __this->get_buffer_12(); Arrays_Fill_m841D30B6E9F2CA374C9F6D5C3A690607C6E1BCFF(L_1, (uint8_t)0, /*hidden argument*/NULL); // Arrays.Fill(counter, (byte)0); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = __this->get_counter_14(); Arrays_Fill_m841D30B6E9F2CA374C9F6D5C3A690607C6E1BCFF(L_2, (uint8_t)0, /*hidden argument*/NULL); // Arrays.Fill(macBlock, (byte)0); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_3 = __this->get_macBlock_9(); Arrays_Fill_m841D30B6E9F2CA374C9F6D5C3A690607C6E1BCFF(L_3, (uint8_t)0, /*hidden argument*/NULL); // counter[0] = 0x01; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = __this->get_counter_14(); NullCheck(L_4); (L_4)->SetAt(static_cast(0), (uint8_t)1); // data.SetLength(0); MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_5 = __this->get_data_16(); NullCheck(L_5); VirtualActionInvoker1< int64_t >::Invoke(29 /* System.Void System.IO.Stream::SetLength(System.Int64) */, L_5, ((int64_t)((int64_t)0))); // associatedText.SetLength(0); MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_6 = __this->get_associatedText_15(); NullCheck(L_6); VirtualActionInvoker1< int64_t >::Invoke(29 /* System.Void System.IO.Stream::SetLength(System.Int64) */, L_6, ((int64_t)((int64_t)0))); // if (initialAssociatedText != null) ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_7 = __this->get_initialAssociatedText_7(); if (!L_7) { goto IL_0070; } } { // ProcessAadBytes(initialAssociatedText, 0, initialAssociatedText.Length); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_8 = __this->get_initialAssociatedText_7(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_9 = __this->get_initialAssociatedText_7(); NullCheck(L_9); VirtualActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(22 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::ProcessAadBytes(System.Byte[],System.Int32,System.Int32) */, __this, L_8, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))); } IL_0070: { // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::intToBytes(System.Int32,System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KCcmBlockCipher_intToBytes_m688AA98CE4E772AF70411CF3CBA1DC278E9F5858 (KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511 * __this, int32_t ___num0, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___outBytes1, int32_t ___outOff2, const RuntimeMethod* method) { { // outBytes[outOff + 3] = (byte)(num >> 24); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___outBytes1; int32_t L_1 = ___outOff2; int32_t L_2 = ___num0; NullCheck(L_0); (L_0)->SetAt(static_cast(((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)3))), (uint8_t)((int32_t)((uint8_t)((int32_t)((int32_t)L_2>>(int32_t)((int32_t)24)))))); // outBytes[outOff + 2] = (byte)(num >> 16); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_3 = ___outBytes1; int32_t L_4 = ___outOff2; int32_t L_5 = ___num0; NullCheck(L_3); (L_3)->SetAt(static_cast(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)2))), (uint8_t)((int32_t)((uint8_t)((int32_t)((int32_t)L_5>>(int32_t)((int32_t)16)))))); // outBytes[outOff + 1] = (byte)(num >> 8); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_6 = ___outBytes1; int32_t L_7 = ___outOff2; int32_t L_8 = ___num0; NullCheck(L_6); (L_6)->SetAt(static_cast(((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1))), (uint8_t)((int32_t)((uint8_t)((int32_t)((int32_t)L_8>>(int32_t)8))))); // outBytes[outOff] = (byte)num; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_9 = ___outBytes1; int32_t L_10 = ___outOff2; int32_t L_11 = ___num0; NullCheck(L_9); (L_9)->SetAt(static_cast(L_10), (uint8_t)((int32_t)((uint8_t)L_11))); // } return; } } // System.Byte BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::getFlag(System.Boolean,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t KCcmBlockCipher_getFlag_mFD20F7B8427AFC935BC2DFDDA1BBF64A867DC576 (KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511 * __this, bool ___authTextPresents0, int32_t ___macSize1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral01E187759622701239321907D0B46741BA9B86F5); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral508FADA7965A5CC9B9F3F205B9D7F61B002F4352); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6348AE9AC0D51DA91EE3554B61F63EF74190CB52); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8FE94193A3EF39943F898714AC9062F7EBD96279); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9037918EF368FDB9869069C353AC1D0AA985BD83); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE91FE173F59B063D620A934CE1A010F2B114C1F3); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF944DCD635F9801F7AC90A407FBC479964DEC024); s_Il2CppMethodInitialized = true; } StringBuilder_t * V_0 = NULL; String_t* V_1 = NULL; { // StringBuilder flagByte = new StringBuilder(); StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); StringBuilder__ctor_m5A81DE19E748F748E19FF13FB6FFD2547F9212D9(L_0, /*hidden argument*/NULL); V_0 = L_0; // if (authTextPresents) bool L_1 = ___authTextPresents0; if (!L_1) { goto IL_0017; } } { // flagByte.Append("1"); StringBuilder_t * L_2 = V_0; NullCheck(L_2); StringBuilder_t * L_3; L_3 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_2, _stringLiteralE91FE173F59B063D620A934CE1A010F2B114C1F3, /*hidden argument*/NULL); // } goto IL_0023; } IL_0017: { // flagByte.Append("0"); StringBuilder_t * L_4 = V_0; NullCheck(L_4); StringBuilder_t * L_5; L_5 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_4, _stringLiteralF944DCD635F9801F7AC90A407FBC479964DEC024, /*hidden argument*/NULL); } IL_0023: { int32_t L_6 = ___macSize1; if ((((int32_t)L_6) > ((int32_t)((int32_t)16)))) { goto IL_0033; } } { int32_t L_7 = ___macSize1; if ((((int32_t)L_7) == ((int32_t)8))) { goto IL_0044; } } { int32_t L_8 = ___macSize1; if ((((int32_t)L_8) == ((int32_t)((int32_t)16)))) { goto IL_0052; } } { goto IL_0088; } IL_0033: { int32_t L_9 = ___macSize1; if ((((int32_t)L_9) == ((int32_t)((int32_t)32)))) { goto IL_0060; } } { int32_t L_10 = ___macSize1; if ((((int32_t)L_10) == ((int32_t)((int32_t)48)))) { goto IL_006e; } } { int32_t L_11 = ___macSize1; if ((((int32_t)L_11) == ((int32_t)((int32_t)64)))) { goto IL_007c; } } { goto IL_0088; } IL_0044: { // flagByte.Append("010"); // binary 2 StringBuilder_t * L_12 = V_0; NullCheck(L_12); StringBuilder_t * L_13; L_13 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_12, _stringLiteral01E187759622701239321907D0B46741BA9B86F5, /*hidden argument*/NULL); // break; goto IL_0088; } IL_0052: { // flagByte.Append("011"); // binary 3 StringBuilder_t * L_14 = V_0; NullCheck(L_14); StringBuilder_t * L_15; L_15 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_14, _stringLiteral508FADA7965A5CC9B9F3F205B9D7F61B002F4352, /*hidden argument*/NULL); // break; goto IL_0088; } IL_0060: { // flagByte.Append("100"); // binary 4 StringBuilder_t * L_16 = V_0; NullCheck(L_16); StringBuilder_t * L_17; L_17 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_16, _stringLiteral8FE94193A3EF39943F898714AC9062F7EBD96279, /*hidden argument*/NULL); // break; goto IL_0088; } IL_006e: { // flagByte.Append("101"); // binary 5 StringBuilder_t * L_18 = V_0; NullCheck(L_18); StringBuilder_t * L_19; L_19 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_18, _stringLiteral6348AE9AC0D51DA91EE3554B61F63EF74190CB52, /*hidden argument*/NULL); // break; goto IL_0088; } IL_007c: { // flagByte.Append("110"); // binary 6 StringBuilder_t * L_20 = V_0; NullCheck(L_20); StringBuilder_t * L_21; L_21 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_20, _stringLiteral9037918EF368FDB9869069C353AC1D0AA985BD83, /*hidden argument*/NULL); } IL_0088: { // String binaryNb = Convert.ToString(Nb_ - 1, 2); int32_t L_22 = __this->get_Nb__17(); IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var); String_t* L_23; L_23 = Convert_ToString_mA60945431DE8F2DFDF3A3E4C76C21703562F2906(((int32_t)il2cpp_codegen_subtract((int32_t)L_22, (int32_t)1)), 2, /*hidden argument*/NULL); V_1 = L_23; goto IL_00b0; } IL_0099: { // binaryNb = new StringBuilder(binaryNb).Insert(0, "0").ToString(); String_t* L_24 = V_1; StringBuilder_t * L_25 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); StringBuilder__ctor_m9305A36F9CF53EDD80D132428999934C68904C77(L_25, L_24, /*hidden argument*/NULL); NullCheck(L_25); StringBuilder_t * L_26; L_26 = StringBuilder_Insert_m2B101CF8B6D47CFC7602CBABC101569E513D234F(L_25, 0, _stringLiteralF944DCD635F9801F7AC90A407FBC479964DEC024, /*hidden argument*/NULL); NullCheck(L_26); String_t* L_27; L_27 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_26); V_1 = L_27; } IL_00b0: { // while (binaryNb.Length < 4) String_t* L_28 = V_1; NullCheck(L_28); int32_t L_29; L_29 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_28, /*hidden argument*/NULL); if ((((int32_t)L_29) < ((int32_t)4))) { goto IL_0099; } } { // flagByte.Append(binaryNb); StringBuilder_t * L_30 = V_0; String_t* L_31 = V_1; NullCheck(L_30); StringBuilder_t * L_32; L_32 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_30, L_31, /*hidden argument*/NULL); // return (byte)Convert.ToInt32(flagByte.ToString(), 2); StringBuilder_t * L_33 = V_0; NullCheck(L_33); String_t* L_34; L_34 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_33); IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var); int32_t L_35; L_35 = Convert_ToInt32_m21526761291049AC762DEAEA073870C8A8583643(L_34, 2, /*hidden argument*/NULL); return (uint8_t)((int32_t)((uint8_t)L_35)); } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KCcmBlockCipher__cctor_m54069849927CD181E009561AC24298DE8B48A990 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // private static readonly int BYTES_IN_INT = 4; ((KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511_StaticFields*)il2cpp_codegen_static_fields_for(KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511_il2cpp_TypeInfo_var))->set_BYTES_IN_INT_0(4); // private static readonly int BITS_IN_BYTE = 8; ((KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511_StaticFields*)il2cpp_codegen_static_fields_for(KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511_il2cpp_TypeInfo_var))->set_BITS_IN_BYTE_1(8); // private static readonly int MAX_MAC_BIT_LENGTH = 512; ((KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511_StaticFields*)il2cpp_codegen_static_fields_for(KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511_il2cpp_TypeInfo_var))->set_MAX_MAC_BIT_LENGTH_2(((int32_t)512)); // private static readonly int MIN_MAC_BIT_LENGTH = 64; ((KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511_StaticFields*)il2cpp_codegen_static_fields_for(KCcmBlockCipher_t6684C55EC40ECD01236ECF1C413883192395C511_il2cpp_TypeInfo_var))->set_MIN_MAC_BIT_LENGTH_3(((int32_t)64)); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCtrBlockCipher::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KCtrBlockCipher__ctor_m7C7C5ED404904907CA3E9D9784D147458A6334F5 (KCtrBlockCipher_t4B5FB1183B24BD5B518E83554A2F569A374B566B * __this, RuntimeObject* ___cipher0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public KCtrBlockCipher(IBlockCipher cipher) Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); // this.cipher = cipher; RuntimeObject* L_0 = ___cipher0; __this->set_cipher_6(L_0); // this.IV = new byte[cipher.GetBlockSize()]; RuntimeObject* L_1 = ___cipher0; NullCheck(L_1); int32_t L_2; L_2 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::GetBlockSize() */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_1); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_3 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)L_2); __this->set_IV_0(L_3); // this.blockSize = cipher.GetBlockSize(); RuntimeObject* L_4 = ___cipher0; NullCheck(L_4); int32_t L_5; L_5 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::GetBlockSize() */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_4); __this->set_blockSize_5(L_5); // this.ofbV = new byte[cipher.GetBlockSize()]; RuntimeObject* L_6 = ___cipher0; NullCheck(L_6); int32_t L_7; L_7 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::GetBlockSize() */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_6); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_8 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)L_7); __this->set_ofbV_1(L_8); // this.ofbOutV = new byte[cipher.GetBlockSize()]; RuntimeObject* L_9 = ___cipher0; NullCheck(L_9); int32_t L_10; L_10 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::GetBlockSize() */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_9); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_11 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)L_10); __this->set_ofbOutV_2(L_11); // } return; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCtrBlockCipher::GetUnderlyingCipher() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* KCtrBlockCipher_GetUnderlyingCipher_m62FEB06290B53A8A355312702DB32D67FCA5FDA2 (KCtrBlockCipher_t4B5FB1183B24BD5B518E83554A2F569A374B566B * __this, const RuntimeMethod* method) { { // return cipher; RuntimeObject* L_0 = __this->get_cipher_6(); return L_0; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCtrBlockCipher::Init(System.Boolean,BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ICipherParameters) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KCtrBlockCipher_Init_mB20F77FC702A5861625BB9E4F1497FD92339A821 (KCtrBlockCipher_t4B5FB1183B24BD5B518E83554A2F569A374B566B * __this, bool ___forEncryption0, RuntimeObject* ___parameters1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ParametersWithIV_tD5AFAE97C3F7DA4A08BC278F9AC969DA957E87A0_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_0 = NULL; int32_t V_1 = 0; { // this.initialised = true; __this->set_initialised_3((bool)1); // if (parameters is ParametersWithIV) RuntimeObject* L_0 = ___parameters1; if (!((ParametersWithIV_tD5AFAE97C3F7DA4A08BC278F9AC969DA957E87A0 *)IsInstClass((RuntimeObject*)L_0, ParametersWithIV_tD5AFAE97C3F7DA4A08BC278F9AC969DA957E87A0_il2cpp_TypeInfo_var))) { goto IL_0057; } } { // ParametersWithIV ivParam = (ParametersWithIV)parameters; RuntimeObject* L_1 = ___parameters1; // byte[] iv = ivParam.GetIV(); ParametersWithIV_tD5AFAE97C3F7DA4A08BC278F9AC969DA957E87A0 * L_2 = ((ParametersWithIV_tD5AFAE97C3F7DA4A08BC278F9AC969DA957E87A0 *)CastclassClass((RuntimeObject*)L_1, ParametersWithIV_tD5AFAE97C3F7DA4A08BC278F9AC969DA957E87A0_il2cpp_TypeInfo_var)); NullCheck(L_2); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_3; L_3 = ParametersWithIV_GetIV_m17D0EF646E07A2B81A17450A3342DEBB7C42603B(L_2, /*hidden argument*/NULL); V_0 = L_3; // int diff = IV.Length - iv.Length; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = __this->get_IV_0(); NullCheck(L_4); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_5 = V_0; NullCheck(L_5); V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))), (int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length))))); // Array.Clear(IV, 0, IV.Length); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_6 = __this->get_IV_0(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_7 = __this->get_IV_0(); NullCheck(L_7); Array_Clear_mEB42D172C5E0825D340F6209F28578BDDDDCE34F((RuntimeArray *)(RuntimeArray *)L_6, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length))), /*hidden argument*/NULL); // Array.Copy(iv, 0, IV, diff, iv.Length); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_8 = V_0; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_9 = __this->get_IV_0(); int32_t L_10 = V_1; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_11 = V_0; NullCheck(L_11); Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_8, 0, (RuntimeArray *)(RuntimeArray *)L_9, L_10, ((int32_t)((int32_t)(((RuntimeArray*)L_11)->max_length))), /*hidden argument*/NULL); // parameters = ivParam.Parameters; NullCheck(L_2); RuntimeObject* L_12; L_12 = ParametersWithIV_get_Parameters_m2B5701D391CF607292513A855051EEF3D8E705E8_inline(L_2, /*hidden argument*/NULL); ___parameters1 = L_12; // } goto IL_0062; } IL_0057: { // throw new ArgumentException("Invalid parameter passed"); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_13 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_13, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8A2FA226E0BD2F452D9FB468B577991FF60938CD)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KCtrBlockCipher_Init_mB20F77FC702A5861625BB9E4F1497FD92339A821_RuntimeMethod_var))); } IL_0062: { // if (parameters != null) RuntimeObject* L_14 = ___parameters1; if (!L_14) { goto IL_0072; } } { // cipher.Init(true, parameters); RuntimeObject* L_15 = __this->get_cipher_6(); RuntimeObject* L_16 = ___parameters1; NullCheck(L_15); InterfaceActionInvoker2< bool, RuntimeObject* >::Invoke(1 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::Init(System.Boolean,BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ICipherParameters) */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_15, (bool)1, L_16); } IL_0072: { // Reset(); KCtrBlockCipher_Reset_m1D869BF12492B7AA6B2E53A03892255176604698(__this, /*hidden argument*/NULL); // } return; } } // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCtrBlockCipher::get_AlgorithmName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* KCtrBlockCipher_get_AlgorithmName_mEEDEB5FF8B9C3FF20601007B7202AEA25DCF0C65 (KCtrBlockCipher_t4B5FB1183B24BD5B518E83554A2F569A374B566B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC690C3E3484DF59A062AC0913B3AA0F9E608C757); s_Il2CppMethodInitialized = true; } { // get { return cipher.AlgorithmName + "/KCTR"; } RuntimeObject* L_0 = __this->get_cipher_6(); NullCheck(L_0); String_t* L_1; L_1 = InterfaceFuncInvoker0< String_t* >::Invoke(0 /* System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::get_AlgorithmName() */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_0); String_t* L_2; L_2 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(L_1, _stringLiteralC690C3E3484DF59A062AC0913B3AA0F9E608C757, /*hidden argument*/NULL); return L_2; } } // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCtrBlockCipher::get_IsPartialBlockOkay() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool KCtrBlockCipher_get_IsPartialBlockOkay_m3AA99238A16FDB4073B41D6F89F41CBF5DBB2B2A (KCtrBlockCipher_t4B5FB1183B24BD5B518E83554A2F569A374B566B * __this, const RuntimeMethod* method) { { // get { return true; } return (bool)1; } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCtrBlockCipher::GetBlockSize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t KCtrBlockCipher_GetBlockSize_m51C0EB37B0AF558BB216CFF3FABB07C546D1C776 (KCtrBlockCipher_t4B5FB1183B24BD5B518E83554A2F569A374B566B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // return cipher.GetBlockSize(); RuntimeObject* L_0 = __this->get_cipher_6(); NullCheck(L_0); int32_t L_1; L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::GetBlockSize() */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_0); return L_1; } } // System.Byte BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCtrBlockCipher::ReturnByte(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t KCtrBlockCipher_ReturnByte_mCD5450AC8BBB09D8516436EB24AC134ABA653A50 (KCtrBlockCipher_t4B5FB1183B24BD5B518E83554A2F569A374B566B * __this, uint8_t ___input0, const RuntimeMethod* method) { { // return CalculateByte(input); uint8_t L_0 = ___input0; uint8_t L_1; L_1 = KCtrBlockCipher_CalculateByte_m3D7BEE2F0E183725BBFB841262EB72D15C758E76(__this, L_0, /*hidden argument*/NULL); return L_1; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCtrBlockCipher::ProcessBytes(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KCtrBlockCipher_ProcessBytes_m11E0A007F38C4667FE74EC4B9DF69847EEABCCF3 (KCtrBlockCipher_t4B5FB1183B24BD5B518E83554A2F569A374B566B * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___input0, int32_t ___inOff1, int32_t ___len2, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___output3, int32_t ___outOff4, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { // if (outOff + len > output.Length) int32_t L_0 = ___outOff4; int32_t L_1 = ___len2; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = ___output3; NullCheck(L_2); if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1))) <= ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))))) { goto IL_0015; } } { // throw new DataLengthException("Output buffer too short"); DataLengthException_t084143F55FB641046577C7BD1F58BC059B953180 * L_3 = (DataLengthException_t084143F55FB641046577C7BD1F58BC059B953180 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataLengthException_t084143F55FB641046577C7BD1F58BC059B953180_il2cpp_TypeInfo_var))); DataLengthException__ctor_mFEE2A7A2F649E823D91C8863B37120A82C23FACE(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEE9CDDD8B1181A0CB43151D4FF76A5DF7386E75C)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KCtrBlockCipher_ProcessBytes_m11E0A007F38C4667FE74EC4B9DF69847EEABCCF3_RuntimeMethod_var))); } IL_0015: { // if (inOff + len > input.Length) int32_t L_4 = ___inOff1; int32_t L_5 = ___len2; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_6 = ___input0; NullCheck(L_6); if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)L_5))) <= ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))))) { goto IL_0028; } } { // throw new DataLengthException("Input buffer too small"); DataLengthException_t084143F55FB641046577C7BD1F58BC059B953180 * L_7 = (DataLengthException_t084143F55FB641046577C7BD1F58BC059B953180 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataLengthException_t084143F55FB641046577C7BD1F58BC059B953180_il2cpp_TypeInfo_var))); DataLengthException__ctor_mFEE2A7A2F649E823D91C8863B37120A82C23FACE(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC19A67243F4A3B2010D2D94EAB2C299DEFFBC32F)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KCtrBlockCipher_ProcessBytes_m11E0A007F38C4667FE74EC4B9DF69847EEABCCF3_RuntimeMethod_var))); } IL_0028: { // int inStart = inOff; int32_t L_8 = ___inOff1; V_0 = L_8; // int inEnd = inOff + len; int32_t L_9 = ___inOff1; int32_t L_10 = ___len2; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)L_10)); // int outStart = outOff; int32_t L_11 = ___outOff4; V_2 = L_11; goto IL_0048; } IL_0033: { // output[outStart++] = CalculateByte(input[inStart++]); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_12 = ___output3; int32_t L_13 = V_2; int32_t L_14 = L_13; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1)); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_15 = ___input0; int32_t L_16 = V_0; int32_t L_17 = L_16; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1)); NullCheck(L_15); int32_t L_18 = L_17; uint8_t L_19 = (L_15)->GetAt(static_cast(L_18)); uint8_t L_20; L_20 = KCtrBlockCipher_CalculateByte_m3D7BEE2F0E183725BBFB841262EB72D15C758E76(__this, L_19, /*hidden argument*/NULL); NullCheck(L_12); (L_12)->SetAt(static_cast(L_14), (uint8_t)L_20); } IL_0048: { // while (inStartget_byteCount_4(); if (L_0) { goto IL_004b; } } { // incrementCounterAt(0); KCtrBlockCipher_incrementCounterAt_m3A0535B913F7ECA710CF329FA1005BA106E9862B(__this, 0, /*hidden argument*/NULL); // checkCounter(); KCtrBlockCipher_checkCounter_m8F76C925E56E96852D58FE44A8FCF86D08D1C5C9(__this, /*hidden argument*/NULL); // cipher.ProcessBlock(ofbV, 0, ofbOutV, 0); RuntimeObject* L_1 = __this->get_cipher_6(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = __this->get_ofbV_1(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_3 = __this->get_ofbOutV_2(); NullCheck(L_1); int32_t L_4; L_4 = InterfaceFuncInvoker4< int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t >::Invoke(4 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32) */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_1, L_2, 0, L_3, 0); // return (byte)(ofbOutV[byteCount++] ^ b); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_5 = __this->get_ofbOutV_2(); int32_t L_6 = __this->get_byteCount_4(); V_0 = L_6; int32_t L_7 = V_0; __this->set_byteCount_4(((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1))); int32_t L_8 = V_0; NullCheck(L_5); int32_t L_9 = L_8; uint8_t L_10 = (L_5)->GetAt(static_cast(L_9)); uint8_t L_11 = ___b0; return (uint8_t)((int32_t)((uint8_t)((int32_t)((int32_t)L_10^(int32_t)L_11)))); } IL_004b: { // byte rv = (byte)(ofbOutV[byteCount++] ^ b); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_12 = __this->get_ofbOutV_2(); int32_t L_13 = __this->get_byteCount_4(); V_0 = L_13; int32_t L_14 = V_0; __this->set_byteCount_4(((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1))); int32_t L_15 = V_0; NullCheck(L_12); int32_t L_16 = L_15; uint8_t L_17 = (L_12)->GetAt(static_cast(L_16)); uint8_t L_18 = ___b0; // if (byteCount == ofbV.Length) int32_t L_19 = __this->get_byteCount_4(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_20 = __this->get_ofbV_1(); NullCheck(L_20); G_B3_0 = ((int32_t)((uint8_t)((int32_t)((int32_t)L_17^(int32_t)L_18)))); if ((!(((uint32_t)L_19) == ((uint32_t)((int32_t)((int32_t)(((RuntimeArray*)L_20)->max_length))))))) { G_B4_0 = ((int32_t)((uint8_t)((int32_t)((int32_t)L_17^(int32_t)L_18)))); goto IL_007d; } } { // byteCount = 0; __this->set_byteCount_4(0); G_B4_0 = G_B3_0; } IL_007d: { // return rv; return (uint8_t)G_B4_0; } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCtrBlockCipher::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t KCtrBlockCipher_ProcessBlock_m7F6193B655DD4B47D7F0FDD8BDA5D7FFC80966C6 (KCtrBlockCipher_t4B5FB1183B24BD5B518E83554A2F569A374B566B * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___input0, int32_t ___inOff1, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___output2, int32_t ___outOff3, const RuntimeMethod* method) { { // if (input.Length - inOff< GetBlockSize()) ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___input0; NullCheck(L_0); int32_t L_1 = ___inOff1; int32_t L_2; L_2 = KCtrBlockCipher_GetBlockSize_m51C0EB37B0AF558BB216CFF3FABB07C546D1C776(__this, /*hidden argument*/NULL); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))), (int32_t)L_1))) >= ((int32_t)L_2))) { goto IL_0018; } } { // throw new DataLengthException("Input buffer too short"); DataLengthException_t084143F55FB641046577C7BD1F58BC059B953180 * L_3 = (DataLengthException_t084143F55FB641046577C7BD1F58BC059B953180 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataLengthException_t084143F55FB641046577C7BD1F58BC059B953180_il2cpp_TypeInfo_var))); DataLengthException__ctor_mFEE2A7A2F649E823D91C8863B37120A82C23FACE(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAEAC30D8C28806B51680D5DC521FC3C410F2D5B5)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KCtrBlockCipher_ProcessBlock_m7F6193B655DD4B47D7F0FDD8BDA5D7FFC80966C6_RuntimeMethod_var))); } IL_0018: { // if (output.Length - outOff< GetBlockSize()) ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = ___output2; NullCheck(L_4); int32_t L_5 = ___outOff3; int32_t L_6; L_6 = KCtrBlockCipher_GetBlockSize_m51C0EB37B0AF558BB216CFF3FABB07C546D1C776(__this, /*hidden argument*/NULL); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))), (int32_t)L_5))) >= ((int32_t)L_6))) { goto IL_0031; } } { // throw new DataLengthException("Output buffer too short"); DataLengthException_t084143F55FB641046577C7BD1F58BC059B953180 * L_7 = (DataLengthException_t084143F55FB641046577C7BD1F58BC059B953180 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataLengthException_t084143F55FB641046577C7BD1F58BC059B953180_il2cpp_TypeInfo_var))); DataLengthException__ctor_mFEE2A7A2F649E823D91C8863B37120A82C23FACE(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEE9CDDD8B1181A0CB43151D4FF76A5DF7386E75C)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KCtrBlockCipher_ProcessBlock_m7F6193B655DD4B47D7F0FDD8BDA5D7FFC80966C6_RuntimeMethod_var))); } IL_0031: { // ProcessBytes(input, inOff, GetBlockSize(), output, outOff); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_8 = ___input0; int32_t L_9 = ___inOff1; int32_t L_10; L_10 = KCtrBlockCipher_GetBlockSize_m51C0EB37B0AF558BB216CFF3FABB07C546D1C776(__this, /*hidden argument*/NULL); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_11 = ___output2; int32_t L_12 = ___outOff3; KCtrBlockCipher_ProcessBytes_m11E0A007F38C4667FE74EC4B9DF69847EEABCCF3(__this, L_8, L_9, L_10, L_11, L_12, /*hidden argument*/NULL); // return GetBlockSize(); int32_t L_13; L_13 = KCtrBlockCipher_GetBlockSize_m51C0EB37B0AF558BB216CFF3FABB07C546D1C776(__this, /*hidden argument*/NULL); return L_13; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCtrBlockCipher::Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KCtrBlockCipher_Reset_m1D869BF12492B7AA6B2E53A03892255176604698 (KCtrBlockCipher_t4B5FB1183B24BD5B518E83554A2F569A374B566B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (initialised) bool L_0 = __this->get_initialised_3(); if (!L_0) { goto IL_0022; } } { // cipher.ProcessBlock(IV, 0, ofbV, 0); RuntimeObject* L_1 = __this->get_cipher_6(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = __this->get_IV_0(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_3 = __this->get_ofbV_1(); NullCheck(L_1); int32_t L_4; L_4 = InterfaceFuncInvoker4< int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t >::Invoke(4 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32) */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_1, L_2, 0, L_3, 0); } IL_0022: { // cipher.Reset(); RuntimeObject* L_5 = __this->get_cipher_6(); NullCheck(L_5); InterfaceActionInvoker0::Invoke(5 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::Reset() */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_5); // byteCount = 0; __this->set_byteCount_4(0); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCtrBlockCipher::incrementCounterAt(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KCtrBlockCipher_incrementCounterAt_m3A0535B913F7ECA710CF329FA1005BA106E9862B (KCtrBlockCipher_t4B5FB1183B24BD5B518E83554A2F569A374B566B * __this, int32_t ___pos0, const RuntimeMethod* method) { int32_t V_0 = 0; uint8_t V_1 = 0x0; { // int i = pos; int32_t L_0 = ___pos0; V_0 = L_0; goto IL_001f; } IL_0004: { // if (++ofbV[i++] != 0) ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = __this->get_ofbV_1(); int32_t L_2 = V_0; int32_t L_3 = L_2; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)); NullCheck(L_1); uint8_t* L_4 = ((L_1)->GetAddressAt(static_cast(L_3))); int32_t L_5 = *((uint8_t*)L_4); V_1 = (uint8_t)((int32_t)((uint8_t)((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1)))); uint8_t L_6 = V_1; *((int8_t*)L_4) = (int8_t)L_6; uint8_t L_7 = V_1; if (L_7) { goto IL_002a; } } IL_001f: { // while (i < ofbV.Length) int32_t L_8 = V_0; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_9 = __this->get_ofbV_1(); NullCheck(L_9); if ((((int32_t)L_8) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))))) { goto IL_0004; } } IL_002a: { // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Modes.KCtrBlockCipher::checkCounter() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KCtrBlockCipher_checkCounter_m8F76C925E56E96852D58FE44A8FCF86D08D1C5C9 (KCtrBlockCipher_t4B5FB1183B24BD5B518E83554A2F569A374B566B * __this, const RuntimeMethod* method) { { // } return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Generators.Kdf1BytesGenerator::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IDigest) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Kdf1BytesGenerator__ctor_mC4B1BB3D06F9D28B019C06879D8B202B2FEC2EF3 (Kdf1BytesGenerator_t5644A5D35F7458CD81FEBB1EEE3675DCAC5A805F * __this, RuntimeObject* ___digest0, const RuntimeMethod* method) { { // : base(0, digest) RuntimeObject* L_0 = ___digest0; BaseKdfBytesGenerator__ctor_m569F19A50D54ADBB62A49340AB655849669EFF6F(__this, 0, L_0, /*hidden argument*/NULL); // } return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Generators.Kdf2BytesGenerator::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IDigest) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Kdf2BytesGenerator__ctor_m4A8868B1DE0EB993F10C39B8639791416CB8BC01 (Kdf2BytesGenerator_t0B685D72F032C668FF02E742A08D06DB5F2DBDC9 * __this, RuntimeObject* ___digest0, const RuntimeMethod* method) { { // : base(1, digest) RuntimeObject* L_0 = ___digest0; BaseKdfBytesGenerator__ctor_m569F19A50D54ADBB62A49340AB655849669EFF6F(__this, 1, L_0, /*hidden argument*/NULL); // } return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.KdfParameters::.ctor(System.Byte[],System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KdfParameters__ctor_m7469D0BE39E9564EEDE4243EFD8D31DBB231E595 (KdfParameters_t56EBC3CEF1BEB144CDB7BF823CB774656D442189 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___shared0, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___iv1, const RuntimeMethod* method) { { // public KdfParameters( // byte[] shared, // byte[] iv) Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); // this.shared = shared; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___shared0; __this->set_shared_1(L_0); // this.iv = iv; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = ___iv1; __this->set_iv_0(L_1); // } return; } } // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.KdfParameters::GetSharedSecret() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* KdfParameters_GetSharedSecret_m72775D9EEBD62045ACFE17A356420EB07545A878 (KdfParameters_t56EBC3CEF1BEB144CDB7BF823CB774656D442189 * __this, const RuntimeMethod* method) { { // return shared; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = __this->get_shared_1(); return L_0; } } // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.KdfParameters::GetIV() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* KdfParameters_GetIV_m8EC6C5467F42A6766A61E9B331899819BDD96D6E (KdfParameters_t56EBC3CEF1BEB144CDB7BF823CB774656D442189 * __this, const RuntimeMethod* method) { { // return iv; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = __this->get_iv_0(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeccakDigest__ctor_m2768FE0B49B4D8355FF6C1409CDAD1A147E56116 (KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C * __this, const RuntimeMethod* method) { { // : this(288) KeccakDigest__ctor_m1CE615652B2BB97ABAD7B084C6C8A81EAE0D94BC(__this, ((int32_t)288), /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeccakDigest__ctor_m1CE615652B2BB97ABAD7B084C6C8A81EAE0D94BC (KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C * __this, int32_t ___bitLength0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // private ulong[] state = new ulong[25]; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_0 = (UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2*)(UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2*)SZArrayNew(UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2_il2cpp_TypeInfo_var, (uint32_t)((int32_t)25)); __this->set_state_1(L_0); // protected byte[] dataQueue = new byte[192]; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)((int32_t)192)); __this->set_dataQueue_2(L_1); // public KeccakDigest(int bitLength) Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); // Init(bitLength); int32_t L_2 = ___bitLength0; KeccakDigest_Init_m3A43B69C1959DE508F606DCAA8E91CBAF16EACE9(__this, L_2, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeccakDigest__ctor_mBD111E83E3D127A088AC34C95DE25C2C01B9AACB (KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C * __this, KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C * ___source0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // private ulong[] state = new ulong[25]; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_0 = (UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2*)(UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2*)SZArrayNew(UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2_il2cpp_TypeInfo_var, (uint32_t)((int32_t)25)); __this->set_state_1(L_0); // protected byte[] dataQueue = new byte[192]; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)((int32_t)192)); __this->set_dataQueue_2(L_1); // public KeccakDigest(KeccakDigest source) Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); // CopyIn(source); KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C * L_2 = ___source0; KeccakDigest_CopyIn_m6034E174B39C209FBE99FBEB9478F75DDFBB3166(__this, L_2, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest::CopyIn(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeccakDigest_CopyIn_m6034E174B39C209FBE99FBEB9478F75DDFBB3166 (KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C * __this, KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C * ___source0, const RuntimeMethod* method) { { // Array.Copy(source.state, 0, this.state, 0, source.state.Length); KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C * L_0 = ___source0; NullCheck(L_0); UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_1 = L_0->get_state_1(); UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_2 = __this->get_state_1(); KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C * L_3 = ___source0; NullCheck(L_3); UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_4 = L_3->get_state_1(); NullCheck(L_4); Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_1, 0, (RuntimeArray *)(RuntimeArray *)L_2, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))), /*hidden argument*/NULL); // Array.Copy(source.dataQueue, 0, this.dataQueue, 0, source.dataQueue.Length); KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C * L_5 = ___source0; NullCheck(L_5); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_6 = L_5->get_dataQueue_2(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_7 = __this->get_dataQueue_2(); KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C * L_8 = ___source0; NullCheck(L_8); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_9 = L_8->get_dataQueue_2(); NullCheck(L_9); Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_6, 0, (RuntimeArray *)(RuntimeArray *)L_7, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length))), /*hidden argument*/NULL); // this.rate = source.rate; KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C * L_10 = ___source0; NullCheck(L_10); int32_t L_11 = L_10->get_rate_3(); __this->set_rate_3(L_11); // this.bitsInQueue = source.bitsInQueue; KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C * L_12 = ___source0; NullCheck(L_12); int32_t L_13 = L_12->get_bitsInQueue_4(); __this->set_bitsInQueue_4(L_13); // this.fixedOutputLength = source.fixedOutputLength; KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C * L_14 = ___source0; NullCheck(L_14); int32_t L_15 = L_14->get_fixedOutputLength_5(); __this->set_fixedOutputLength_5(L_15); // this.squeezing = source.squeezing; KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C * L_16 = ___source0; NullCheck(L_16); bool L_17 = L_16->get_squeezing_6(); __this->set_squeezing_6(L_17); // } return; } } // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest::get_AlgorithmName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* KeccakDigest_get_AlgorithmName_m9FF49C86CC42029B089E89F499A6989B84EE1A33 (KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral53CE3854A381FE03C65D949A33C2E1D7DBA02CB4); s_Il2CppMethodInitialized = true; } { // get { return "Keccak-" + fixedOutputLength; } int32_t* L_0 = __this->get_address_of_fixedOutputLength_5(); String_t* L_1; L_1 = Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411((int32_t*)L_0, /*hidden argument*/NULL); String_t* L_2; L_2 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(_stringLiteral53CE3854A381FE03C65D949A33C2E1D7DBA02CB4, L_1, /*hidden argument*/NULL); return L_2; } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest::GetDigestSize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t KeccakDigest_GetDigestSize_mB143191B52C262D68DB9A2B64C42B221A9A46DF3 (KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C * __this, const RuntimeMethod* method) { { // return fixedOutputLength >> 3; int32_t L_0 = __this->get_fixedOutputLength_5(); return ((int32_t)((int32_t)L_0>>(int32_t)3)); } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest::Update(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeccakDigest_Update_mF1FB05C1409F9E0502FCC02107DAAAF4C31D7CFE (KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C * __this, uint8_t ___input0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // Absorb(new byte[]{ input }, 0, 1); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)1); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = L_0; uint8_t L_2 = ___input0; NullCheck(L_1); (L_1)->SetAt(static_cast(0), (uint8_t)L_2); KeccakDigest_Absorb_mFC54D89DEC1A52C0B88CB50741B7DEDAD7FE085D(__this, L_1, 0, 1, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest::BlockUpdate(System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeccakDigest_BlockUpdate_mF05AC8C6E2BA493B9BE339E6CA46CD8B2D1E3C19 (KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___input0, int32_t ___inOff1, int32_t ___len2, const RuntimeMethod* method) { { // Absorb(input, inOff, len); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___input0; int32_t L_1 = ___inOff1; int32_t L_2 = ___len2; KeccakDigest_Absorb_mFC54D89DEC1A52C0B88CB50741B7DEDAD7FE085D(__this, L_0, L_1, L_2, /*hidden argument*/NULL); // } return; } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest::DoFinal(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t KeccakDigest_DoFinal_m4F2142E6E8A9C2B5F5D840DF6AB9BC7075D1BF92 (KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___output0, int32_t ___outOff1, const RuntimeMethod* method) { { // Squeeze(output, outOff, fixedOutputLength); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___output0; int32_t L_1 = ___outOff1; int32_t L_2 = __this->get_fixedOutputLength_5(); KeccakDigest_Squeeze_mFE4DA231466C9D5B9F1F4F151C00B48779FCF152(__this, L_0, L_1, ((int64_t)((int64_t)L_2)), /*hidden argument*/NULL); // Reset(); VirtualActionInvoker0::Invoke(19 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest::Reset() */, __this); // return GetDigestSize(); int32_t L_3; L_3 = VirtualFuncInvoker0< int32_t >::Invoke(14 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest::GetDigestSize() */, __this); return L_3; } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest::DoFinal(System.Byte[],System.Int32,System.Byte,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t KeccakDigest_DoFinal_m166062E295ECC02A4CBF8E20236EDBCA5AC79235 (KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___output0, int32_t ___outOff1, uint8_t ___partialByte2, int32_t ___partialBits3, const RuntimeMethod* method) { { // if (partialBits > 0) int32_t L_0 = ___partialBits3; if ((((int32_t)L_0) <= ((int32_t)0))) { goto IL_000e; } } { // AbsorbBits(partialByte, partialBits); uint8_t L_1 = ___partialByte2; int32_t L_2 = ___partialBits3; KeccakDigest_AbsorbBits_mD00DC7B3FB87AB80751A832D3986FFC2867D4CA3(__this, L_1, L_2, /*hidden argument*/NULL); } IL_000e: { // Squeeze(output, outOff, fixedOutputLength); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_3 = ___output0; int32_t L_4 = ___outOff1; int32_t L_5 = __this->get_fixedOutputLength_5(); KeccakDigest_Squeeze_mFE4DA231466C9D5B9F1F4F151C00B48779FCF152(__this, L_3, L_4, ((int64_t)((int64_t)L_5)), /*hidden argument*/NULL); // Reset(); VirtualActionInvoker0::Invoke(19 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest::Reset() */, __this); // return GetDigestSize(); int32_t L_6; L_6 = VirtualFuncInvoker0< int32_t >::Invoke(14 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest::GetDigestSize() */, __this); return L_6; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest::Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeccakDigest_Reset_mA89064B74A95306FA3262EF9D0B5F3D41CF4793A (KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C * __this, const RuntimeMethod* method) { { // Init(fixedOutputLength); int32_t L_0 = __this->get_fixedOutputLength_5(); KeccakDigest_Init_m3A43B69C1959DE508F606DCAA8E91CBAF16EACE9(__this, L_0, /*hidden argument*/NULL); // } return; } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest::GetByteLength() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t KeccakDigest_GetByteLength_mB3E0F1076F013AE4D59827626A9CB1A92F707388 (KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C * __this, const RuntimeMethod* method) { { // return rate >> 3; int32_t L_0 = __this->get_rate_3(); return ((int32_t)((int32_t)L_0>>(int32_t)3)); } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest::Init(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeccakDigest_Init_m3A43B69C1959DE508F606DCAA8E91CBAF16EACE9 (KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C * __this, int32_t ___bitLength0, const RuntimeMethod* method) { { int32_t L_0 = ___bitLength0; if ((((int32_t)L_0) > ((int32_t)((int32_t)256)))) { goto IL_0022; } } { int32_t L_1 = ___bitLength0; if ((((int32_t)L_1) == ((int32_t)((int32_t)128)))) { goto IL_003a; } } { int32_t L_2 = ___bitLength0; if ((((int32_t)L_2) == ((int32_t)((int32_t)224)))) { goto IL_003a; } } { int32_t L_3 = ___bitLength0; if ((((int32_t)L_3) == ((int32_t)((int32_t)256)))) { goto IL_003a; } } { goto IL_004a; } IL_0022: { int32_t L_4 = ___bitLength0; if ((((int32_t)L_4) == ((int32_t)((int32_t)288)))) { goto IL_003a; } } { int32_t L_5 = ___bitLength0; if ((((int32_t)L_5) == ((int32_t)((int32_t)384)))) { goto IL_003a; } } { int32_t L_6 = ___bitLength0; if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)512))))) { goto IL_004a; } } IL_003a: { // InitSponge(1600 - (bitLength << 1)); int32_t L_7 = ___bitLength0; KeccakDigest_InitSponge_m6A2C21DAF849B8B910782F6AFBE32E4BEAFA797A(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)1600), (int32_t)((int32_t)((int32_t)L_7<<(int32_t)1)))), /*hidden argument*/NULL); // break; return; } IL_004a: { // throw new ArgumentException("must be one of 128, 224, 256, 288, 384, or 512.", "bitLength"); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_8 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_8, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA5D5402405EA46FA1359EF38E2451145DB09D1C5)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDEFDD99707701302B4F3A4CE68BC9EB2926D7283)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeccakDigest_Init_m3A43B69C1959DE508F606DCAA8E91CBAF16EACE9_RuntimeMethod_var))); } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest::InitSponge(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeccakDigest_InitSponge_m6A2C21DAF849B8B910782F6AFBE32E4BEAFA797A (KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C * __this, int32_t ___rate0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Arrays_t7CFD09DA7425047721E193958DAC5AB0FCFF67BF_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (rate <= 0 || rate >= 1600 || (rate & 63) != 0) int32_t L_0 = ___rate0; if ((((int32_t)L_0) <= ((int32_t)0))) { goto IL_0012; } } { int32_t L_1 = ___rate0; if ((((int32_t)L_1) >= ((int32_t)((int32_t)1600)))) { goto IL_0012; } } { int32_t L_2 = ___rate0; if (!((int32_t)((int32_t)L_2&(int32_t)((int32_t)63)))) { goto IL_001d; } } IL_0012: { // throw new InvalidOperationException("invalid rate value"); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD0B955404E183709B5C731BFCF31085857DE0EC3)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeccakDigest_InitSponge_m6A2C21DAF849B8B910782F6AFBE32E4BEAFA797A_RuntimeMethod_var))); } IL_001d: { // this.rate = rate; int32_t L_4 = ___rate0; __this->set_rate_3(L_4); // Array.Clear(state, 0, state.Length); UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_5 = __this->get_state_1(); UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_6 = __this->get_state_1(); NullCheck(L_6); Array_Clear_mEB42D172C5E0825D340F6209F28578BDDDDCE34F((RuntimeArray *)(RuntimeArray *)L_5, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length))), /*hidden argument*/NULL); // Arrays.Fill(this.dataQueue, (byte)0); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_7 = __this->get_dataQueue_2(); IL2CPP_RUNTIME_CLASS_INIT(Arrays_t7CFD09DA7425047721E193958DAC5AB0FCFF67BF_il2cpp_TypeInfo_var); Arrays_Fill_m841D30B6E9F2CA374C9F6D5C3A690607C6E1BCFF(L_7, (uint8_t)0, /*hidden argument*/NULL); // this.bitsInQueue = 0; __this->set_bitsInQueue_4(0); // this.squeezing = false; __this->set_squeezing_6((bool)0); // this.fixedOutputLength = (1600 - rate) >> 1; int32_t L_8 = ___rate0; __this->set_fixedOutputLength_5(((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)1600), (int32_t)L_8))>>(int32_t)1))); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest::Absorb(System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeccakDigest_Absorb_mFC54D89DEC1A52C0B88CB50741B7DEDAD7FE085D (KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___data0, int32_t ___off1, int32_t ___len2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tA269614262430118C9FC5C4D9EF4F61C812568F0_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; { // if ((bitsInQueue & 7) != 0) int32_t L_0 = __this->get_bitsInQueue_4(); if (!((int32_t)((int32_t)L_0&(int32_t)7))) { goto IL_0015; } } { // throw new InvalidOperationException("attempt to absorb with odd length queue"); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_1 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA8E3A14BFED9F7D70EFB2C59F8DBAC2A52180062)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeccakDigest_Absorb_mFC54D89DEC1A52C0B88CB50741B7DEDAD7FE085D_RuntimeMethod_var))); } IL_0015: { // if (squeezing) bool L_2 = __this->get_squeezing_6(); if (!L_2) { goto IL_0028; } } { // throw new InvalidOperationException("attempt to absorb while squeezing"); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral88ABBDEE731F56D989C298F52912B7B0D27D0D84)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeccakDigest_Absorb_mFC54D89DEC1A52C0B88CB50741B7DEDAD7FE085D_RuntimeMethod_var))); } IL_0028: { // int bytesInQueue = bitsInQueue >> 3; int32_t L_4 = __this->get_bitsInQueue_4(); V_0 = ((int32_t)((int32_t)L_4>>(int32_t)3)); // int rateBytes = rate >> 3; int32_t L_5 = __this->get_rate_3(); V_1 = ((int32_t)((int32_t)L_5>>(int32_t)3)); // int count = 0; V_2 = 0; goto IL_0095; } IL_003e: { // if (bytesInQueue == 0 && count <= (len - rateBytes)) int32_t L_6 = V_0; if (L_6) { goto IL_005d; } } { int32_t L_7 = V_2; int32_t L_8 = ___len2; int32_t L_9 = V_1; if ((((int32_t)L_7) > ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)L_9))))) { goto IL_005d; } } IL_0047: { // KeccakAbsorb(data, off + count); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_10 = ___data0; int32_t L_11 = ___off1; int32_t L_12 = V_2; KeccakDigest_KeccakAbsorb_mDC695381E82D3E73D6752D18CC3891F7237D11C5(__this, L_10, ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)L_12)), /*hidden argument*/NULL); // count += rateBytes; int32_t L_13 = V_2; int32_t L_14 = V_1; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14)); // while (count <= (len - rateBytes)); int32_t L_15 = V_2; int32_t L_16 = ___len2; int32_t L_17 = V_1; if ((((int32_t)L_15) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_16, (int32_t)L_17))))) { goto IL_0047; } } { // } goto IL_0095; } IL_005d: { // int partialBlock = System.Math.Min(rateBytes - bytesInQueue, len - count); int32_t L_18 = V_1; int32_t L_19 = V_0; int32_t L_20 = ___len2; int32_t L_21 = V_2; IL2CPP_RUNTIME_CLASS_INIT(Math_tA269614262430118C9FC5C4D9EF4F61C812568F0_il2cpp_TypeInfo_var); int32_t L_22; L_22 = Math_Min_m4C6E1589800A3AA57C1F430C3903847E8D7B4574(((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)L_19)), ((int32_t)il2cpp_codegen_subtract((int32_t)L_20, (int32_t)L_21)), /*hidden argument*/NULL); V_3 = L_22; // Array.Copy(data, off + count, dataQueue, bytesInQueue, partialBlock); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_23 = ___data0; int32_t L_24 = ___off1; int32_t L_25 = V_2; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_26 = __this->get_dataQueue_2(); int32_t L_27 = V_0; int32_t L_28 = V_3; Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_23, ((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)L_25)), (RuntimeArray *)(RuntimeArray *)L_26, L_27, L_28, /*hidden argument*/NULL); // bytesInQueue += partialBlock; int32_t L_29 = V_0; int32_t L_30 = V_3; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_29, (int32_t)L_30)); // count += partialBlock; int32_t L_31 = V_2; int32_t L_32 = V_3; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)L_32)); // if (bytesInQueue == rateBytes) int32_t L_33 = V_0; int32_t L_34 = V_1; if ((!(((uint32_t)L_33) == ((uint32_t)L_34)))) { goto IL_0095; } } { // KeccakAbsorb(dataQueue, 0); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_35 = __this->get_dataQueue_2(); KeccakDigest_KeccakAbsorb_mDC695381E82D3E73D6752D18CC3891F7237D11C5(__this, L_35, 0, /*hidden argument*/NULL); // bytesInQueue = 0; V_0 = 0; } IL_0095: { // while (count < len) int32_t L_36 = V_2; int32_t L_37 = ___len2; if ((((int32_t)L_36) < ((int32_t)L_37))) { goto IL_003e; } } { // bitsInQueue = bytesInQueue << 3; int32_t L_38 = V_0; __this->set_bitsInQueue_4(((int32_t)((int32_t)L_38<<(int32_t)3))); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest::AbsorbBits(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeccakDigest_AbsorbBits_mD00DC7B3FB87AB80751A832D3986FFC2867D4CA3 (KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C * __this, int32_t ___data0, int32_t ___bits1, const RuntimeMethod* method) { int32_t V_0 = 0; { // if (bits < 1 || bits > 7) int32_t L_0 = ___bits1; if ((((int32_t)L_0) < ((int32_t)1))) { goto IL_0008; } } { int32_t L_1 = ___bits1; if ((((int32_t)L_1) <= ((int32_t)7))) { goto IL_0018; } } IL_0008: { // throw new ArgumentException("must be in the range 1 to 7", "bits"); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_2 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD039C76F6BA3380896DFB0DA8F26D45B1448F44F)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral315818C03CCC2B10070DF2D4EBD09EB6C4C66E58)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeccakDigest_AbsorbBits_mD00DC7B3FB87AB80751A832D3986FFC2867D4CA3_RuntimeMethod_var))); } IL_0018: { // if ((bitsInQueue & 7) != 0) int32_t L_3 = __this->get_bitsInQueue_4(); if (!((int32_t)((int32_t)L_3&(int32_t)7))) { goto IL_002d; } } { // throw new InvalidOperationException("attempt to absorb with odd length queue"); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA8E3A14BFED9F7D70EFB2C59F8DBAC2A52180062)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeccakDigest_AbsorbBits_mD00DC7B3FB87AB80751A832D3986FFC2867D4CA3_RuntimeMethod_var))); } IL_002d: { // if (squeezing) bool L_5 = __this->get_squeezing_6(); if (!L_5) { goto IL_0040; } } { // throw new InvalidOperationException("attempt to absorb while squeezing"); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_6 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral88ABBDEE731F56D989C298F52912B7B0D27D0D84)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeccakDigest_AbsorbBits_mD00DC7B3FB87AB80751A832D3986FFC2867D4CA3_RuntimeMethod_var))); } IL_0040: { // int mask = (1 << bits) - 1; int32_t L_7 = ___bits1; V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)((int32_t)1<<(int32_t)((int32_t)((int32_t)L_7&(int32_t)((int32_t)31))))), (int32_t)1)); // dataQueue[bitsInQueue >> 3] = (byte)(data & mask); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_8 = __this->get_dataQueue_2(); int32_t L_9 = __this->get_bitsInQueue_4(); int32_t L_10 = ___data0; int32_t L_11 = V_0; NullCheck(L_8); (L_8)->SetAt(static_cast(((int32_t)((int32_t)L_9>>(int32_t)3))), (uint8_t)((int32_t)((uint8_t)((int32_t)((int32_t)L_10&(int32_t)L_11))))); // bitsInQueue += bits; int32_t L_12 = __this->get_bitsInQueue_4(); int32_t L_13 = ___bits1; __this->set_bitsInQueue_4(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)L_13))); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest::PadAndSwitchToSqueezingPhase() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeccakDigest_PadAndSwitchToSqueezingPhase_m6AF9749F5F976E9E072444C83C24FA1CFBF3F700 (KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; uint64_t V_5 = 0; { // dataQueue[bitsInQueue >> 3] |= (byte)(1U << (bitsInQueue & 7)); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = __this->get_dataQueue_2(); int32_t L_1 = __this->get_bitsInQueue_4(); NullCheck(L_0); uint8_t* L_2 = ((L_0)->GetAddressAt(static_cast(((int32_t)((int32_t)L_1>>(int32_t)3))))); int32_t L_3 = *((uint8_t*)L_2); int32_t L_4 = __this->get_bitsInQueue_4(); *((int8_t*)L_2) = (int8_t)((int32_t)((uint8_t)((int32_t)((int32_t)L_3|(int32_t)((int32_t)((uint8_t)((int32_t)((int32_t)1<<(int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_4&(int32_t)7))&(int32_t)((int32_t)31))))))))))); // if (++bitsInQueue == rate) int32_t L_5 = __this->get_bitsInQueue_4(); V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1)); int32_t L_6 = V_0; __this->set_bitsInQueue_4(L_6); int32_t L_7 = V_0; int32_t L_8 = __this->get_rate_3(); if ((!(((uint32_t)L_7) == ((uint32_t)L_8)))) { goto IL_0053; } } { // KeccakAbsorb(dataQueue, 0); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_9 = __this->get_dataQueue_2(); KeccakDigest_KeccakAbsorb_mDC695381E82D3E73D6752D18CC3891F7237D11C5(__this, L_9, 0, /*hidden argument*/NULL); // bitsInQueue = 0; __this->set_bitsInQueue_4(0); } IL_0053: { // int full = bitsInQueue >> 6, partial = bitsInQueue & 63; int32_t L_10 = __this->get_bitsInQueue_4(); V_1 = ((int32_t)((int32_t)L_10>>(int32_t)6)); // int full = bitsInQueue >> 6, partial = bitsInQueue & 63; int32_t L_11 = __this->get_bitsInQueue_4(); V_2 = ((int32_t)((int32_t)L_11&(int32_t)((int32_t)63))); // int off = 0; V_3 = 0; // for (int i = 0; i < full; ++i) V_4 = 0; goto IL_0094; } IL_006d: { // state[i] ^= Pack.LE_To_UInt64(dataQueue, off); UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_12 = __this->get_state_1(); int32_t L_13 = V_4; NullCheck(L_12); uint64_t* L_14 = ((L_12)->GetAddressAt(static_cast(L_13))); int64_t L_15 = *((int64_t*)L_14); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_16 = __this->get_dataQueue_2(); int32_t L_17 = V_3; uint64_t L_18; L_18 = Pack_LE_To_UInt64_m7CC2C29E6C45033ED7B8A580B198ABAC4AA28033(L_16, L_17, /*hidden argument*/NULL); *((int64_t*)L_14) = (int64_t)((int64_t)((int64_t)L_15^(int64_t)L_18)); // off += 8; int32_t L_19 = V_3; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)8)); // for (int i = 0; i < full; ++i) int32_t L_20 = V_4; V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1)); } IL_0094: { // for (int i = 0; i < full; ++i) int32_t L_21 = V_4; int32_t L_22 = V_1; if ((((int32_t)L_21) < ((int32_t)L_22))) { goto IL_006d; } } { // if (partial > 0) int32_t L_23 = V_2; if ((((int32_t)L_23) <= ((int32_t)0))) { goto IL_00c8; } } { // ulong mask = (1UL << partial) - 1UL; int32_t L_24 = V_2; V_5 = ((int64_t)il2cpp_codegen_subtract((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)1))<<(int32_t)((int32_t)((int32_t)L_24&(int32_t)((int32_t)63))))), (int64_t)((int64_t)((int64_t)1)))); // state[full] ^= Pack.LE_To_UInt64(dataQueue, off) & mask; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_25 = __this->get_state_1(); int32_t L_26 = V_1; NullCheck(L_25); uint64_t* L_27 = ((L_25)->GetAddressAt(static_cast(L_26))); int64_t L_28 = *((int64_t*)L_27); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_29 = __this->get_dataQueue_2(); int32_t L_30 = V_3; uint64_t L_31; L_31 = Pack_LE_To_UInt64_m7CC2C29E6C45033ED7B8A580B198ABAC4AA28033(L_29, L_30, /*hidden argument*/NULL); uint64_t L_32 = V_5; *((int64_t*)L_27) = (int64_t)((int64_t)((int64_t)L_28^(int64_t)((int64_t)((int64_t)L_31&(int64_t)L_32)))); } IL_00c8: { // state[(rate - 1) >> 6] ^= (1UL << 63); UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_33 = __this->get_state_1(); int32_t L_34 = __this->get_rate_3(); NullCheck(L_33); uint64_t* L_35 = ((L_33)->GetAddressAt(static_cast(((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_34, (int32_t)1))>>(int32_t)6))))); int64_t L_36 = *((int64_t*)L_35); *((int64_t*)L_35) = (int64_t)((int64_t)((int64_t)L_36^(int64_t)((int64_t)(std::numeric_limits::min)()))); // KeccakPermutation(); KeccakDigest_KeccakPermutation_mB81DDEE13F50D5E69A8EE00C1E1833C9C90C9AC7(__this, /*hidden argument*/NULL); // KeccakExtract(); KeccakDigest_KeccakExtract_m2ABF5A58BD5120F087661729FBA3D915A6E7DF53(__this, /*hidden argument*/NULL); // bitsInQueue = rate; int32_t L_37 = __this->get_rate_3(); __this->set_bitsInQueue_4(L_37); // squeezing = true; __this->set_squeezing_6((bool)1); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest::Squeeze(System.Byte[],System.Int32,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeccakDigest_Squeeze_mFE4DA231466C9D5B9F1F4F151C00B48779FCF152 (KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___output0, int32_t ___offset1, int64_t ___outputLength2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tA269614262430118C9FC5C4D9EF4F61C812568F0_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int64_t V_0 = 0; int32_t V_1 = 0; { // if (!squeezing) bool L_0 = __this->get_squeezing_6(); if (L_0) { goto IL_000e; } } { // PadAndSwitchToSqueezingPhase(); KeccakDigest_PadAndSwitchToSqueezingPhase_m6AF9749F5F976E9E072444C83C24FA1CFBF3F700(__this, /*hidden argument*/NULL); } IL_000e: { // if ((outputLength & 7L) != 0L) int64_t L_1 = ___outputLength2; if (!((int64_t)((int64_t)L_1&(int64_t)((int64_t)((int64_t)7))))) { goto IL_001f; } } { // throw new InvalidOperationException("outputLength not a multiple of 8"); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_2 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral410FC4E1DDB5FBB0F905E92CEBD6EB2AB954C222)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeccakDigest_Squeeze_mFE4DA231466C9D5B9F1F4F151C00B48779FCF152_RuntimeMethod_var))); } IL_001f: { // long i = 0; V_0 = ((int64_t)((int64_t)0)); goto IL_008c; } IL_0024: { // if (bitsInQueue == 0) int32_t L_3 = __this->get_bitsInQueue_4(); if (L_3) { goto IL_0044; } } { // KeccakPermutation(); KeccakDigest_KeccakPermutation_mB81DDEE13F50D5E69A8EE00C1E1833C9C90C9AC7(__this, /*hidden argument*/NULL); // KeccakExtract(); KeccakDigest_KeccakExtract_m2ABF5A58BD5120F087661729FBA3D915A6E7DF53(__this, /*hidden argument*/NULL); // bitsInQueue = rate; int32_t L_4 = __this->get_rate_3(); __this->set_bitsInQueue_4(L_4); } IL_0044: { // int partialBlock = (int)System.Math.Min((long)bitsInQueue, outputLength - i); int32_t L_5 = __this->get_bitsInQueue_4(); int64_t L_6 = ___outputLength2; int64_t L_7 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Math_tA269614262430118C9FC5C4D9EF4F61C812568F0_il2cpp_TypeInfo_var); int64_t L_8; L_8 = Math_Min_m63E8ED32ABF3637E5BE49943F6760922C2876087(((int64_t)((int64_t)L_5)), ((int64_t)il2cpp_codegen_subtract((int64_t)L_6, (int64_t)L_7)), /*hidden argument*/NULL); V_1 = ((int32_t)((int32_t)L_8)); // Array.Copy(dataQueue, (rate - bitsInQueue) >> 3, output, offset + (int)(i >> 3), partialBlock >> 3); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_9 = __this->get_dataQueue_2(); int32_t L_10 = __this->get_rate_3(); int32_t L_11 = __this->get_bitsInQueue_4(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_12 = ___output0; int32_t L_13 = ___offset1; int64_t L_14 = V_0; int32_t L_15 = V_1; Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_9, ((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)L_11))>>(int32_t)3)), (RuntimeArray *)(RuntimeArray *)L_12, ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)((int32_t)((int32_t)((int64_t)((int64_t)L_14>>(int32_t)3)))))), ((int32_t)((int32_t)L_15>>(int32_t)3)), /*hidden argument*/NULL); // bitsInQueue -= partialBlock; int32_t L_16 = __this->get_bitsInQueue_4(); int32_t L_17 = V_1; __this->set_bitsInQueue_4(((int32_t)il2cpp_codegen_subtract((int32_t)L_16, (int32_t)L_17))); // i += partialBlock; int64_t L_18 = V_0; int32_t L_19 = V_1; V_0 = ((int64_t)il2cpp_codegen_add((int64_t)L_18, (int64_t)((int64_t)((int64_t)L_19)))); } IL_008c: { // while (i < outputLength) int64_t L_20 = V_0; int64_t L_21 = ___outputLength2; if ((((int64_t)L_20) < ((int64_t)L_21))) { goto IL_0024; } } { // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest::KeccakAbsorb(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeccakDigest_KeccakAbsorb_mDC695381E82D3E73D6752D18CC3891F7237D11C5 (KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___data0, int32_t ___off1, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { // int count = rate >> 6; int32_t L_0 = __this->get_rate_3(); V_0 = ((int32_t)((int32_t)L_0>>(int32_t)6)); // for (int i = 0; i < count; ++i) V_1 = 0; goto IL_002d; } IL_000d: { // state[i] ^= Pack.LE_To_UInt64(data, off); UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_1 = __this->get_state_1(); int32_t L_2 = V_1; NullCheck(L_1); uint64_t* L_3 = ((L_1)->GetAddressAt(static_cast(L_2))); int64_t L_4 = *((int64_t*)L_3); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_5 = ___data0; int32_t L_6 = ___off1; uint64_t L_7; L_7 = Pack_LE_To_UInt64_m7CC2C29E6C45033ED7B8A580B198ABAC4AA28033(L_5, L_6, /*hidden argument*/NULL); *((int64_t*)L_3) = (int64_t)((int64_t)((int64_t)L_4^(int64_t)L_7)); // off += 8; int32_t L_8 = ___off1; ___off1 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)8)); // for (int i = 0; i < count; ++i) int32_t L_9 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1)); } IL_002d: { // for (int i = 0; i < count; ++i) int32_t L_10 = V_1; int32_t L_11 = V_0; if ((((int32_t)L_10) < ((int32_t)L_11))) { goto IL_000d; } } { // KeccakPermutation(); KeccakDigest_KeccakPermutation_mB81DDEE13F50D5E69A8EE00C1E1833C9C90C9AC7(__this, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest::KeccakExtract() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeccakDigest_KeccakExtract_m2ABF5A58BD5120F087661729FBA3D915A6E7DF53 (KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C * __this, const RuntimeMethod* method) { { // Pack.UInt64_To_LE(state, 0, rate >> 6, dataQueue, 0); UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_0 = __this->get_state_1(); int32_t L_1 = __this->get_rate_3(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = __this->get_dataQueue_2(); Pack_UInt64_To_LE_m2468E70062B0C748F91EF5D4B26254290952B487(L_0, 0, ((int32_t)((int32_t)L_1>>(int32_t)6)), L_2, 0, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest::KeccakPermutation() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeccakDigest_KeccakPermutation_mB81DDEE13F50D5E69A8EE00C1E1833C9C90C9AC7 (KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* V_0 = NULL; uint64_t V_1 = 0; uint64_t V_2 = 0; uint64_t V_3 = 0; uint64_t V_4 = 0; uint64_t V_5 = 0; uint64_t V_6 = 0; uint64_t V_7 = 0; uint64_t V_8 = 0; uint64_t V_9 = 0; uint64_t V_10 = 0; uint64_t V_11 = 0; uint64_t V_12 = 0; uint64_t V_13 = 0; uint64_t V_14 = 0; uint64_t V_15 = 0; uint64_t V_16 = 0; uint64_t V_17 = 0; uint64_t V_18 = 0; uint64_t V_19 = 0; uint64_t V_20 = 0; uint64_t V_21 = 0; uint64_t V_22 = 0; uint64_t V_23 = 0; uint64_t V_24 = 0; uint64_t V_25 = 0; int32_t V_26 = 0; uint64_t V_27 = 0; uint64_t V_28 = 0; uint64_t V_29 = 0; uint64_t V_30 = 0; uint64_t V_31 = 0; uint64_t V_32 = 0; uint64_t V_33 = 0; uint64_t V_34 = 0; uint64_t V_35 = 0; uint64_t V_36 = 0; { // ulong[] A = state; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_0 = __this->get_state_1(); V_0 = L_0; // ulong a00 = A[ 0], a01 = A[ 1], a02 = A[ 2], a03 = A[ 3], a04 = A[ 4]; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_1 = V_0; NullCheck(L_1); int32_t L_2 = 0; int64_t L_3 = (int64_t)(L_1)->GetAt(static_cast(L_2)); V_1 = L_3; // ulong a00 = A[ 0], a01 = A[ 1], a02 = A[ 2], a03 = A[ 3], a04 = A[ 4]; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_4 = V_0; NullCheck(L_4); int32_t L_5 = 1; int64_t L_6 = (int64_t)(L_4)->GetAt(static_cast(L_5)); V_2 = L_6; // ulong a00 = A[ 0], a01 = A[ 1], a02 = A[ 2], a03 = A[ 3], a04 = A[ 4]; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_7 = V_0; NullCheck(L_7); int32_t L_8 = 2; int64_t L_9 = (int64_t)(L_7)->GetAt(static_cast(L_8)); V_3 = L_9; // ulong a00 = A[ 0], a01 = A[ 1], a02 = A[ 2], a03 = A[ 3], a04 = A[ 4]; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_10 = V_0; NullCheck(L_10); int32_t L_11 = 3; int64_t L_12 = (int64_t)(L_10)->GetAt(static_cast(L_11)); V_4 = L_12; // ulong a00 = A[ 0], a01 = A[ 1], a02 = A[ 2], a03 = A[ 3], a04 = A[ 4]; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_13 = V_0; NullCheck(L_13); int32_t L_14 = 4; int64_t L_15 = (int64_t)(L_13)->GetAt(static_cast(L_14)); V_5 = L_15; // ulong a05 = A[ 5], a06 = A[ 6], a07 = A[ 7], a08 = A[ 8], a09 = A[ 9]; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_16 = V_0; NullCheck(L_16); int32_t L_17 = 5; int64_t L_18 = (int64_t)(L_16)->GetAt(static_cast(L_17)); V_6 = L_18; // ulong a05 = A[ 5], a06 = A[ 6], a07 = A[ 7], a08 = A[ 8], a09 = A[ 9]; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_19 = V_0; NullCheck(L_19); int32_t L_20 = 6; int64_t L_21 = (int64_t)(L_19)->GetAt(static_cast(L_20)); V_7 = L_21; // ulong a05 = A[ 5], a06 = A[ 6], a07 = A[ 7], a08 = A[ 8], a09 = A[ 9]; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_22 = V_0; NullCheck(L_22); int32_t L_23 = 7; int64_t L_24 = (int64_t)(L_22)->GetAt(static_cast(L_23)); V_8 = L_24; // ulong a05 = A[ 5], a06 = A[ 6], a07 = A[ 7], a08 = A[ 8], a09 = A[ 9]; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_25 = V_0; NullCheck(L_25); int32_t L_26 = 8; int64_t L_27 = (int64_t)(L_25)->GetAt(static_cast(L_26)); V_9 = L_27; // ulong a05 = A[ 5], a06 = A[ 6], a07 = A[ 7], a08 = A[ 8], a09 = A[ 9]; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_28 = V_0; NullCheck(L_28); int32_t L_29 = ((int32_t)9); int64_t L_30 = (int64_t)(L_28)->GetAt(static_cast(L_29)); V_10 = L_30; // ulong a10 = A[10], a11 = A[11], a12 = A[12], a13 = A[13], a14 = A[14]; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_31 = V_0; NullCheck(L_31); int32_t L_32 = ((int32_t)10); int64_t L_33 = (int64_t)(L_31)->GetAt(static_cast(L_32)); V_11 = L_33; // ulong a10 = A[10], a11 = A[11], a12 = A[12], a13 = A[13], a14 = A[14]; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_34 = V_0; NullCheck(L_34); int32_t L_35 = ((int32_t)11); int64_t L_36 = (int64_t)(L_34)->GetAt(static_cast(L_35)); V_12 = L_36; // ulong a10 = A[10], a11 = A[11], a12 = A[12], a13 = A[13], a14 = A[14]; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_37 = V_0; NullCheck(L_37); int32_t L_38 = ((int32_t)12); int64_t L_39 = (int64_t)(L_37)->GetAt(static_cast(L_38)); V_13 = L_39; // ulong a10 = A[10], a11 = A[11], a12 = A[12], a13 = A[13], a14 = A[14]; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_40 = V_0; NullCheck(L_40); int32_t L_41 = ((int32_t)13); int64_t L_42 = (int64_t)(L_40)->GetAt(static_cast(L_41)); V_14 = L_42; // ulong a10 = A[10], a11 = A[11], a12 = A[12], a13 = A[13], a14 = A[14]; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_43 = V_0; NullCheck(L_43); int32_t L_44 = ((int32_t)14); int64_t L_45 = (int64_t)(L_43)->GetAt(static_cast(L_44)); V_15 = L_45; // ulong a15 = A[15], a16 = A[16], a17 = A[17], a18 = A[18], a19 = A[19]; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_46 = V_0; NullCheck(L_46); int32_t L_47 = ((int32_t)15); int64_t L_48 = (int64_t)(L_46)->GetAt(static_cast(L_47)); V_16 = L_48; // ulong a15 = A[15], a16 = A[16], a17 = A[17], a18 = A[18], a19 = A[19]; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_49 = V_0; NullCheck(L_49); int32_t L_50 = ((int32_t)16); int64_t L_51 = (int64_t)(L_49)->GetAt(static_cast(L_50)); V_17 = L_51; // ulong a15 = A[15], a16 = A[16], a17 = A[17], a18 = A[18], a19 = A[19]; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_52 = V_0; NullCheck(L_52); int32_t L_53 = ((int32_t)17); int64_t L_54 = (int64_t)(L_52)->GetAt(static_cast(L_53)); V_18 = L_54; // ulong a15 = A[15], a16 = A[16], a17 = A[17], a18 = A[18], a19 = A[19]; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_55 = V_0; NullCheck(L_55); int32_t L_56 = ((int32_t)18); int64_t L_57 = (int64_t)(L_55)->GetAt(static_cast(L_56)); V_19 = L_57; // ulong a15 = A[15], a16 = A[16], a17 = A[17], a18 = A[18], a19 = A[19]; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_58 = V_0; NullCheck(L_58); int32_t L_59 = ((int32_t)19); int64_t L_60 = (int64_t)(L_58)->GetAt(static_cast(L_59)); V_20 = L_60; // ulong a20 = A[20], a21 = A[21], a22 = A[22], a23 = A[23], a24 = A[24]; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_61 = V_0; NullCheck(L_61); int32_t L_62 = ((int32_t)20); int64_t L_63 = (int64_t)(L_61)->GetAt(static_cast(L_62)); V_21 = L_63; // ulong a20 = A[20], a21 = A[21], a22 = A[22], a23 = A[23], a24 = A[24]; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_64 = V_0; NullCheck(L_64); int32_t L_65 = ((int32_t)21); int64_t L_66 = (int64_t)(L_64)->GetAt(static_cast(L_65)); V_22 = L_66; // ulong a20 = A[20], a21 = A[21], a22 = A[22], a23 = A[23], a24 = A[24]; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_67 = V_0; NullCheck(L_67); int32_t L_68 = ((int32_t)22); int64_t L_69 = (int64_t)(L_67)->GetAt(static_cast(L_68)); V_23 = L_69; // ulong a20 = A[20], a21 = A[21], a22 = A[22], a23 = A[23], a24 = A[24]; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_70 = V_0; NullCheck(L_70); int32_t L_71 = ((int32_t)23); int64_t L_72 = (int64_t)(L_70)->GetAt(static_cast(L_71)); V_24 = L_72; // ulong a20 = A[20], a21 = A[21], a22 = A[22], a23 = A[23], a24 = A[24]; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_73 = V_0; NullCheck(L_73); int32_t L_74 = ((int32_t)24); int64_t L_75 = (int64_t)(L_73)->GetAt(static_cast(L_74)); V_25 = L_75; // for (int i = 0; i < 24; i++) V_26 = 0; goto IL_0448; } IL_0099: { // ulong c0 = a00 ^ a05 ^ a10 ^ a15 ^ a20; uint64_t L_76 = V_1; uint64_t L_77 = V_6; uint64_t L_78 = V_11; uint64_t L_79 = V_16; uint64_t L_80 = V_21; V_27 = ((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)L_76^(int64_t)L_77))^(int64_t)L_78))^(int64_t)L_79))^(int64_t)L_80)); // ulong c1 = a01 ^ a06 ^ a11 ^ a16 ^ a21; uint64_t L_81 = V_2; uint64_t L_82 = V_7; uint64_t L_83 = V_12; uint64_t L_84 = V_17; uint64_t L_85 = V_22; V_28 = ((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)L_81^(int64_t)L_82))^(int64_t)L_83))^(int64_t)L_84))^(int64_t)L_85)); // ulong c2 = a02 ^ a07 ^ a12 ^ a17 ^ a22; uint64_t L_86 = V_3; uint64_t L_87 = V_8; uint64_t L_88 = V_13; uint64_t L_89 = V_18; uint64_t L_90 = V_23; V_29 = ((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)L_86^(int64_t)L_87))^(int64_t)L_88))^(int64_t)L_89))^(int64_t)L_90)); // ulong c3 = a03 ^ a08 ^ a13 ^ a18 ^ a23; uint64_t L_91 = V_4; uint64_t L_92 = V_9; uint64_t L_93 = V_14; uint64_t L_94 = V_19; uint64_t L_95 = V_24; V_30 = ((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)L_91^(int64_t)L_92))^(int64_t)L_93))^(int64_t)L_94))^(int64_t)L_95)); // ulong c4 = a04 ^ a09 ^ a14 ^ a19 ^ a24; uint64_t L_96 = V_5; uint64_t L_97 = V_10; uint64_t L_98 = V_15; uint64_t L_99 = V_20; uint64_t L_100 = V_25; V_31 = ((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)L_96^(int64_t)L_97))^(int64_t)L_98))^(int64_t)L_99))^(int64_t)L_100)); // ulong d1 = (c1 << 1 | c1 >> -1) ^ c4; uint64_t L_101 = V_28; uint64_t L_102 = V_28; uint64_t L_103 = V_31; V_32 = ((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)L_101<<(int32_t)1))|(int64_t)((int64_t)((uint64_t)L_102>>((int32_t)63)))))^(int64_t)L_103)); // ulong d2 = (c2 << 1 | c2 >> -1) ^ c0; uint64_t L_104 = V_29; uint64_t L_105 = V_29; uint64_t L_106 = V_27; V_33 = ((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)L_104<<(int32_t)1))|(int64_t)((int64_t)((uint64_t)L_105>>((int32_t)63)))))^(int64_t)L_106)); // ulong d3 = (c3 << 1 | c3 >> -1) ^ c1; uint64_t L_107 = V_30; uint64_t L_108 = V_30; uint64_t L_109 = V_28; V_34 = ((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)L_107<<(int32_t)1))|(int64_t)((int64_t)((uint64_t)L_108>>((int32_t)63)))))^(int64_t)L_109)); // ulong d4 = (c4 << 1 | c4 >> -1) ^ c2; uint64_t L_110 = V_31; uint64_t L_111 = V_31; uint64_t L_112 = V_29; V_35 = ((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)L_110<<(int32_t)1))|(int64_t)((int64_t)((uint64_t)L_111>>((int32_t)63)))))^(int64_t)L_112)); // ulong d0 = (c0 << 1 | c0 >> -1) ^ c3; uint64_t L_113 = V_27; uint64_t L_114 = V_27; uint64_t L_115 = V_30; V_36 = ((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)L_113<<(int32_t)1))|(int64_t)((int64_t)((uint64_t)L_114>>((int32_t)63)))))^(int64_t)L_115)); // a00 ^= d1; a05 ^= d1; a10 ^= d1; a15 ^= d1; a20 ^= d1; uint64_t L_116 = V_1; uint64_t L_117 = V_32; V_1 = ((int64_t)((int64_t)L_116^(int64_t)L_117)); // a00 ^= d1; a05 ^= d1; a10 ^= d1; a15 ^= d1; a20 ^= d1; uint64_t L_118 = V_6; uint64_t L_119 = V_32; V_6 = ((int64_t)((int64_t)L_118^(int64_t)L_119)); // a00 ^= d1; a05 ^= d1; a10 ^= d1; a15 ^= d1; a20 ^= d1; uint64_t L_120 = V_11; uint64_t L_121 = V_32; V_11 = ((int64_t)((int64_t)L_120^(int64_t)L_121)); // a00 ^= d1; a05 ^= d1; a10 ^= d1; a15 ^= d1; a20 ^= d1; uint64_t L_122 = V_16; uint64_t L_123 = V_32; V_16 = ((int64_t)((int64_t)L_122^(int64_t)L_123)); // a00 ^= d1; a05 ^= d1; a10 ^= d1; a15 ^= d1; a20 ^= d1; uint64_t L_124 = V_21; uint64_t L_125 = V_32; V_21 = ((int64_t)((int64_t)L_124^(int64_t)L_125)); // a01 ^= d2; a06 ^= d2; a11 ^= d2; a16 ^= d2; a21 ^= d2; uint64_t L_126 = V_2; uint64_t L_127 = V_33; V_2 = ((int64_t)((int64_t)L_126^(int64_t)L_127)); // a01 ^= d2; a06 ^= d2; a11 ^= d2; a16 ^= d2; a21 ^= d2; uint64_t L_128 = V_7; uint64_t L_129 = V_33; V_7 = ((int64_t)((int64_t)L_128^(int64_t)L_129)); // a01 ^= d2; a06 ^= d2; a11 ^= d2; a16 ^= d2; a21 ^= d2; uint64_t L_130 = V_12; uint64_t L_131 = V_33; V_12 = ((int64_t)((int64_t)L_130^(int64_t)L_131)); // a01 ^= d2; a06 ^= d2; a11 ^= d2; a16 ^= d2; a21 ^= d2; uint64_t L_132 = V_17; uint64_t L_133 = V_33; V_17 = ((int64_t)((int64_t)L_132^(int64_t)L_133)); // a01 ^= d2; a06 ^= d2; a11 ^= d2; a16 ^= d2; a21 ^= d2; uint64_t L_134 = V_22; uint64_t L_135 = V_33; V_22 = ((int64_t)((int64_t)L_134^(int64_t)L_135)); // a02 ^= d3; a07 ^= d3; a12 ^= d3; a17 ^= d3; a22 ^= d3; uint64_t L_136 = V_3; uint64_t L_137 = V_34; V_3 = ((int64_t)((int64_t)L_136^(int64_t)L_137)); // a02 ^= d3; a07 ^= d3; a12 ^= d3; a17 ^= d3; a22 ^= d3; uint64_t L_138 = V_8; uint64_t L_139 = V_34; V_8 = ((int64_t)((int64_t)L_138^(int64_t)L_139)); // a02 ^= d3; a07 ^= d3; a12 ^= d3; a17 ^= d3; a22 ^= d3; uint64_t L_140 = V_13; uint64_t L_141 = V_34; V_13 = ((int64_t)((int64_t)L_140^(int64_t)L_141)); // a02 ^= d3; a07 ^= d3; a12 ^= d3; a17 ^= d3; a22 ^= d3; uint64_t L_142 = V_18; uint64_t L_143 = V_34; V_18 = ((int64_t)((int64_t)L_142^(int64_t)L_143)); // a02 ^= d3; a07 ^= d3; a12 ^= d3; a17 ^= d3; a22 ^= d3; uint64_t L_144 = V_23; uint64_t L_145 = V_34; V_23 = ((int64_t)((int64_t)L_144^(int64_t)L_145)); // a03 ^= d4; a08 ^= d4; a13 ^= d4; a18 ^= d4; a23 ^= d4; uint64_t L_146 = V_4; uint64_t L_147 = V_35; V_4 = ((int64_t)((int64_t)L_146^(int64_t)L_147)); // a03 ^= d4; a08 ^= d4; a13 ^= d4; a18 ^= d4; a23 ^= d4; uint64_t L_148 = V_9; uint64_t L_149 = V_35; V_9 = ((int64_t)((int64_t)L_148^(int64_t)L_149)); // a03 ^= d4; a08 ^= d4; a13 ^= d4; a18 ^= d4; a23 ^= d4; uint64_t L_150 = V_14; uint64_t L_151 = V_35; V_14 = ((int64_t)((int64_t)L_150^(int64_t)L_151)); // a03 ^= d4; a08 ^= d4; a13 ^= d4; a18 ^= d4; a23 ^= d4; uint64_t L_152 = V_19; uint64_t L_153 = V_35; V_19 = ((int64_t)((int64_t)L_152^(int64_t)L_153)); // a03 ^= d4; a08 ^= d4; a13 ^= d4; a18 ^= d4; a23 ^= d4; uint64_t L_154 = V_24; uint64_t L_155 = V_35; V_24 = ((int64_t)((int64_t)L_154^(int64_t)L_155)); // a04 ^= d0; a09 ^= d0; a14 ^= d0; a19 ^= d0; a24 ^= d0; uint64_t L_156 = V_5; uint64_t L_157 = V_36; V_5 = ((int64_t)((int64_t)L_156^(int64_t)L_157)); // a04 ^= d0; a09 ^= d0; a14 ^= d0; a19 ^= d0; a24 ^= d0; uint64_t L_158 = V_10; uint64_t L_159 = V_36; V_10 = ((int64_t)((int64_t)L_158^(int64_t)L_159)); // a04 ^= d0; a09 ^= d0; a14 ^= d0; a19 ^= d0; a24 ^= d0; uint64_t L_160 = V_15; uint64_t L_161 = V_36; V_15 = ((int64_t)((int64_t)L_160^(int64_t)L_161)); // a04 ^= d0; a09 ^= d0; a14 ^= d0; a19 ^= d0; a24 ^= d0; uint64_t L_162 = V_20; uint64_t L_163 = V_36; V_20 = ((int64_t)((int64_t)L_162^(int64_t)L_163)); // a04 ^= d0; a09 ^= d0; a14 ^= d0; a19 ^= d0; a24 ^= d0; uint64_t L_164 = V_25; uint64_t L_165 = V_36; V_25 = ((int64_t)((int64_t)L_164^(int64_t)L_165)); // c1 = a01 << 1 | a01 >> 63; uint64_t L_166 = V_2; uint64_t L_167 = V_2; V_28 = ((int64_t)((int64_t)((int64_t)((int64_t)L_166<<(int32_t)1))|(int64_t)((int64_t)((uint64_t)L_167>>((int32_t)63))))); // a01 = a06 << 44 | a06 >> 20; uint64_t L_168 = V_7; uint64_t L_169 = V_7; V_2 = ((int64_t)((int64_t)((int64_t)((int64_t)L_168<<(int32_t)((int32_t)44)))|(int64_t)((int64_t)((uint64_t)L_169>>((int32_t)20))))); // a06 = a09 << 20 | a09 >> 44; uint64_t L_170 = V_10; uint64_t L_171 = V_10; V_7 = ((int64_t)((int64_t)((int64_t)((int64_t)L_170<<(int32_t)((int32_t)20)))|(int64_t)((int64_t)((uint64_t)L_171>>((int32_t)44))))); // a09 = a22 << 61 | a22 >> 3; uint64_t L_172 = V_23; uint64_t L_173 = V_23; V_10 = ((int64_t)((int64_t)((int64_t)((int64_t)L_172<<(int32_t)((int32_t)61)))|(int64_t)((int64_t)((uint64_t)L_173>>3)))); // a22 = a14 << 39 | a14 >> 25; uint64_t L_174 = V_15; uint64_t L_175 = V_15; V_23 = ((int64_t)((int64_t)((int64_t)((int64_t)L_174<<(int32_t)((int32_t)39)))|(int64_t)((int64_t)((uint64_t)L_175>>((int32_t)25))))); // a14 = a20 << 18 | a20 >> 46; uint64_t L_176 = V_21; uint64_t L_177 = V_21; V_15 = ((int64_t)((int64_t)((int64_t)((int64_t)L_176<<(int32_t)((int32_t)18)))|(int64_t)((int64_t)((uint64_t)L_177>>((int32_t)46))))); // a20 = a02 << 62 | a02 >> 2; uint64_t L_178 = V_3; uint64_t L_179 = V_3; V_21 = ((int64_t)((int64_t)((int64_t)((int64_t)L_178<<(int32_t)((int32_t)62)))|(int64_t)((int64_t)((uint64_t)L_179>>2)))); // a02 = a12 << 43 | a12 >> 21; uint64_t L_180 = V_13; uint64_t L_181 = V_13; V_3 = ((int64_t)((int64_t)((int64_t)((int64_t)L_180<<(int32_t)((int32_t)43)))|(int64_t)((int64_t)((uint64_t)L_181>>((int32_t)21))))); // a12 = a13 << 25 | a13 >> 39; uint64_t L_182 = V_14; uint64_t L_183 = V_14; V_13 = ((int64_t)((int64_t)((int64_t)((int64_t)L_182<<(int32_t)((int32_t)25)))|(int64_t)((int64_t)((uint64_t)L_183>>((int32_t)39))))); // a13 = a19 << 8 | a19 >> 56; uint64_t L_184 = V_20; uint64_t L_185 = V_20; V_14 = ((int64_t)((int64_t)((int64_t)((int64_t)L_184<<(int32_t)8))|(int64_t)((int64_t)((uint64_t)L_185>>((int32_t)56))))); // a19 = a23 << 56 | a23 >> 8; uint64_t L_186 = V_24; uint64_t L_187 = V_24; V_20 = ((int64_t)((int64_t)((int64_t)((int64_t)L_186<<(int32_t)((int32_t)56)))|(int64_t)((int64_t)((uint64_t)L_187>>8)))); // a23 = a15 << 41 | a15 >> 23; uint64_t L_188 = V_16; uint64_t L_189 = V_16; V_24 = ((int64_t)((int64_t)((int64_t)((int64_t)L_188<<(int32_t)((int32_t)41)))|(int64_t)((int64_t)((uint64_t)L_189>>((int32_t)23))))); // a15 = a04 << 27 | a04 >> 37; uint64_t L_190 = V_5; uint64_t L_191 = V_5; V_16 = ((int64_t)((int64_t)((int64_t)((int64_t)L_190<<(int32_t)((int32_t)27)))|(int64_t)((int64_t)((uint64_t)L_191>>((int32_t)37))))); // a04 = a24 << 14 | a24 >> 50; uint64_t L_192 = V_25; uint64_t L_193 = V_25; V_5 = ((int64_t)((int64_t)((int64_t)((int64_t)L_192<<(int32_t)((int32_t)14)))|(int64_t)((int64_t)((uint64_t)L_193>>((int32_t)50))))); // a24 = a21 << 2 | a21 >> 62; uint64_t L_194 = V_22; uint64_t L_195 = V_22; V_25 = ((int64_t)((int64_t)((int64_t)((int64_t)L_194<<(int32_t)2))|(int64_t)((int64_t)((uint64_t)L_195>>((int32_t)62))))); // a21 = a08 << 55 | a08 >> 9; uint64_t L_196 = V_9; uint64_t L_197 = V_9; V_22 = ((int64_t)((int64_t)((int64_t)((int64_t)L_196<<(int32_t)((int32_t)55)))|(int64_t)((int64_t)((uint64_t)L_197>>((int32_t)9))))); // a08 = a16 << 45 | a16 >> 19; uint64_t L_198 = V_17; uint64_t L_199 = V_17; V_9 = ((int64_t)((int64_t)((int64_t)((int64_t)L_198<<(int32_t)((int32_t)45)))|(int64_t)((int64_t)((uint64_t)L_199>>((int32_t)19))))); // a16 = a05 << 36 | a05 >> 28; uint64_t L_200 = V_6; uint64_t L_201 = V_6; V_17 = ((int64_t)((int64_t)((int64_t)((int64_t)L_200<<(int32_t)((int32_t)36)))|(int64_t)((int64_t)((uint64_t)L_201>>((int32_t)28))))); // a05 = a03 << 28 | a03 >> 36; uint64_t L_202 = V_4; uint64_t L_203 = V_4; V_6 = ((int64_t)((int64_t)((int64_t)((int64_t)L_202<<(int32_t)((int32_t)28)))|(int64_t)((int64_t)((uint64_t)L_203>>((int32_t)36))))); // a03 = a18 << 21 | a18 >> 43; uint64_t L_204 = V_19; uint64_t L_205 = V_19; V_4 = ((int64_t)((int64_t)((int64_t)((int64_t)L_204<<(int32_t)((int32_t)21)))|(int64_t)((int64_t)((uint64_t)L_205>>((int32_t)43))))); // a18 = a17 << 15 | a17 >> 49; uint64_t L_206 = V_18; uint64_t L_207 = V_18; V_19 = ((int64_t)((int64_t)((int64_t)((int64_t)L_206<<(int32_t)((int32_t)15)))|(int64_t)((int64_t)((uint64_t)L_207>>((int32_t)49))))); // a17 = a11 << 10 | a11 >> 54; uint64_t L_208 = V_12; uint64_t L_209 = V_12; V_18 = ((int64_t)((int64_t)((int64_t)((int64_t)L_208<<(int32_t)((int32_t)10)))|(int64_t)((int64_t)((uint64_t)L_209>>((int32_t)54))))); // a11 = a07 << 6 | a07 >> 58; uint64_t L_210 = V_8; uint64_t L_211 = V_8; V_12 = ((int64_t)((int64_t)((int64_t)((int64_t)L_210<<(int32_t)6))|(int64_t)((int64_t)((uint64_t)L_211>>((int32_t)58))))); // a07 = a10 << 3 | a10 >> 61; uint64_t L_212 = V_11; uint64_t L_213 = V_11; V_8 = ((int64_t)((int64_t)((int64_t)((int64_t)L_212<<(int32_t)3))|(int64_t)((int64_t)((uint64_t)L_213>>((int32_t)61))))); // a10 = c1; uint64_t L_214 = V_28; V_11 = L_214; // c0 = a00 ^ (~a01 & a02); uint64_t L_215 = V_1; uint64_t L_216 = V_2; uint64_t L_217 = V_3; V_27 = ((int64_t)((int64_t)L_215^(int64_t)((int64_t)((int64_t)((~L_216))&(int64_t)L_217)))); // c1 = a01 ^ (~a02 & a03); uint64_t L_218 = V_2; uint64_t L_219 = V_3; uint64_t L_220 = V_4; V_28 = ((int64_t)((int64_t)L_218^(int64_t)((int64_t)((int64_t)((~L_219))&(int64_t)L_220)))); // a02 ^= ~a03 & a04; uint64_t L_221 = V_3; uint64_t L_222 = V_4; uint64_t L_223 = V_5; V_3 = ((int64_t)((int64_t)L_221^(int64_t)((int64_t)((int64_t)((~L_222))&(int64_t)L_223)))); // a03 ^= ~a04 & a00; uint64_t L_224 = V_4; uint64_t L_225 = V_5; uint64_t L_226 = V_1; V_4 = ((int64_t)((int64_t)L_224^(int64_t)((int64_t)((int64_t)((~L_225))&(int64_t)L_226)))); // a04 ^= ~a00 & a01; uint64_t L_227 = V_5; uint64_t L_228 = V_1; uint64_t L_229 = V_2; V_5 = ((int64_t)((int64_t)L_227^(int64_t)((int64_t)((int64_t)((~L_228))&(int64_t)L_229)))); // a00 = c0; uint64_t L_230 = V_27; V_1 = L_230; // a01 = c1; uint64_t L_231 = V_28; V_2 = L_231; // c0 = a05 ^ (~a06 & a07); uint64_t L_232 = V_6; uint64_t L_233 = V_7; uint64_t L_234 = V_8; V_27 = ((int64_t)((int64_t)L_232^(int64_t)((int64_t)((int64_t)((~L_233))&(int64_t)L_234)))); // c1 = a06 ^ (~a07 & a08); uint64_t L_235 = V_7; uint64_t L_236 = V_8; uint64_t L_237 = V_9; V_28 = ((int64_t)((int64_t)L_235^(int64_t)((int64_t)((int64_t)((~L_236))&(int64_t)L_237)))); // a07 ^= ~a08 & a09; uint64_t L_238 = V_8; uint64_t L_239 = V_9; uint64_t L_240 = V_10; V_8 = ((int64_t)((int64_t)L_238^(int64_t)((int64_t)((int64_t)((~L_239))&(int64_t)L_240)))); // a08 ^= ~a09 & a05; uint64_t L_241 = V_9; uint64_t L_242 = V_10; uint64_t L_243 = V_6; V_9 = ((int64_t)((int64_t)L_241^(int64_t)((int64_t)((int64_t)((~L_242))&(int64_t)L_243)))); // a09 ^= ~a05 & a06; uint64_t L_244 = V_10; uint64_t L_245 = V_6; uint64_t L_246 = V_7; V_10 = ((int64_t)((int64_t)L_244^(int64_t)((int64_t)((int64_t)((~L_245))&(int64_t)L_246)))); // a05 = c0; uint64_t L_247 = V_27; V_6 = L_247; // a06 = c1; uint64_t L_248 = V_28; V_7 = L_248; // c0 = a10 ^ (~a11 & a12); uint64_t L_249 = V_11; uint64_t L_250 = V_12; uint64_t L_251 = V_13; V_27 = ((int64_t)((int64_t)L_249^(int64_t)((int64_t)((int64_t)((~L_250))&(int64_t)L_251)))); // c1 = a11 ^ (~a12 & a13); uint64_t L_252 = V_12; uint64_t L_253 = V_13; uint64_t L_254 = V_14; V_28 = ((int64_t)((int64_t)L_252^(int64_t)((int64_t)((int64_t)((~L_253))&(int64_t)L_254)))); // a12 ^= ~a13 & a14; uint64_t L_255 = V_13; uint64_t L_256 = V_14; uint64_t L_257 = V_15; V_13 = ((int64_t)((int64_t)L_255^(int64_t)((int64_t)((int64_t)((~L_256))&(int64_t)L_257)))); // a13 ^= ~a14 & a10; uint64_t L_258 = V_14; uint64_t L_259 = V_15; uint64_t L_260 = V_11; V_14 = ((int64_t)((int64_t)L_258^(int64_t)((int64_t)((int64_t)((~L_259))&(int64_t)L_260)))); // a14 ^= ~a10 & a11; uint64_t L_261 = V_15; uint64_t L_262 = V_11; uint64_t L_263 = V_12; V_15 = ((int64_t)((int64_t)L_261^(int64_t)((int64_t)((int64_t)((~L_262))&(int64_t)L_263)))); // a10 = c0; uint64_t L_264 = V_27; V_11 = L_264; // a11 = c1; uint64_t L_265 = V_28; V_12 = L_265; // c0 = a15 ^ (~a16 & a17); uint64_t L_266 = V_16; uint64_t L_267 = V_17; uint64_t L_268 = V_18; V_27 = ((int64_t)((int64_t)L_266^(int64_t)((int64_t)((int64_t)((~L_267))&(int64_t)L_268)))); // c1 = a16 ^ (~a17 & a18); uint64_t L_269 = V_17; uint64_t L_270 = V_18; uint64_t L_271 = V_19; V_28 = ((int64_t)((int64_t)L_269^(int64_t)((int64_t)((int64_t)((~L_270))&(int64_t)L_271)))); // a17 ^= ~a18 & a19; uint64_t L_272 = V_18; uint64_t L_273 = V_19; uint64_t L_274 = V_20; V_18 = ((int64_t)((int64_t)L_272^(int64_t)((int64_t)((int64_t)((~L_273))&(int64_t)L_274)))); // a18 ^= ~a19 & a15; uint64_t L_275 = V_19; uint64_t L_276 = V_20; uint64_t L_277 = V_16; V_19 = ((int64_t)((int64_t)L_275^(int64_t)((int64_t)((int64_t)((~L_276))&(int64_t)L_277)))); // a19 ^= ~a15 & a16; uint64_t L_278 = V_20; uint64_t L_279 = V_16; uint64_t L_280 = V_17; V_20 = ((int64_t)((int64_t)L_278^(int64_t)((int64_t)((int64_t)((~L_279))&(int64_t)L_280)))); // a15 = c0; uint64_t L_281 = V_27; V_16 = L_281; // a16 = c1; uint64_t L_282 = V_28; V_17 = L_282; // c0 = a20 ^ (~a21 & a22); uint64_t L_283 = V_21; uint64_t L_284 = V_22; uint64_t L_285 = V_23; V_27 = ((int64_t)((int64_t)L_283^(int64_t)((int64_t)((int64_t)((~L_284))&(int64_t)L_285)))); // c1 = a21 ^ (~a22 & a23); uint64_t L_286 = V_22; uint64_t L_287 = V_23; uint64_t L_288 = V_24; V_28 = ((int64_t)((int64_t)L_286^(int64_t)((int64_t)((int64_t)((~L_287))&(int64_t)L_288)))); // a22 ^= ~a23 & a24; uint64_t L_289 = V_23; uint64_t L_290 = V_24; uint64_t L_291 = V_25; V_23 = ((int64_t)((int64_t)L_289^(int64_t)((int64_t)((int64_t)((~L_290))&(int64_t)L_291)))); // a23 ^= ~a24 & a20; uint64_t L_292 = V_24; uint64_t L_293 = V_25; uint64_t L_294 = V_21; V_24 = ((int64_t)((int64_t)L_292^(int64_t)((int64_t)((int64_t)((~L_293))&(int64_t)L_294)))); // a24 ^= ~a20 & a21; uint64_t L_295 = V_25; uint64_t L_296 = V_21; uint64_t L_297 = V_22; V_25 = ((int64_t)((int64_t)L_295^(int64_t)((int64_t)((int64_t)((~L_296))&(int64_t)L_297)))); // a20 = c0; uint64_t L_298 = V_27; V_21 = L_298; // a21 = c1; uint64_t L_299 = V_28; V_22 = L_299; // a00 ^= KeccakRoundConstants[i]; uint64_t L_300 = V_1; IL2CPP_RUNTIME_CLASS_INIT(KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C_il2cpp_TypeInfo_var); UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_301 = ((KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C_StaticFields*)il2cpp_codegen_static_fields_for(KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C_il2cpp_TypeInfo_var))->get_KeccakRoundConstants_0(); int32_t L_302 = V_26; NullCheck(L_301); int32_t L_303 = L_302; int64_t L_304 = (int64_t)(L_301)->GetAt(static_cast(L_303)); V_1 = ((int64_t)((int64_t)L_300^(int64_t)L_304)); // for (int i = 0; i < 24; i++) int32_t L_305 = V_26; V_26 = ((int32_t)il2cpp_codegen_add((int32_t)L_305, (int32_t)1)); } IL_0448: { // for (int i = 0; i < 24; i++) int32_t L_306 = V_26; if ((((int32_t)L_306) < ((int32_t)((int32_t)24)))) { goto IL_0099; } } { // A[ 0] = a00; A[ 1] = a01; A[ 2] = a02; A[ 3] = a03; A[ 4] = a04; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_307 = V_0; uint64_t L_308 = V_1; NullCheck(L_307); (L_307)->SetAt(static_cast(0), (uint64_t)L_308); // A[ 0] = a00; A[ 1] = a01; A[ 2] = a02; A[ 3] = a03; A[ 4] = a04; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_309 = V_0; uint64_t L_310 = V_2; NullCheck(L_309); (L_309)->SetAt(static_cast(1), (uint64_t)L_310); // A[ 0] = a00; A[ 1] = a01; A[ 2] = a02; A[ 3] = a03; A[ 4] = a04; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_311 = V_0; uint64_t L_312 = V_3; NullCheck(L_311); (L_311)->SetAt(static_cast(2), (uint64_t)L_312); // A[ 0] = a00; A[ 1] = a01; A[ 2] = a02; A[ 3] = a03; A[ 4] = a04; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_313 = V_0; uint64_t L_314 = V_4; NullCheck(L_313); (L_313)->SetAt(static_cast(3), (uint64_t)L_314); // A[ 0] = a00; A[ 1] = a01; A[ 2] = a02; A[ 3] = a03; A[ 4] = a04; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_315 = V_0; uint64_t L_316 = V_5; NullCheck(L_315); (L_315)->SetAt(static_cast(4), (uint64_t)L_316); // A[ 5] = a05; A[ 6] = a06; A[ 7] = a07; A[ 8] = a08; A[ 9] = a09; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_317 = V_0; uint64_t L_318 = V_6; NullCheck(L_317); (L_317)->SetAt(static_cast(5), (uint64_t)L_318); // A[ 5] = a05; A[ 6] = a06; A[ 7] = a07; A[ 8] = a08; A[ 9] = a09; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_319 = V_0; uint64_t L_320 = V_7; NullCheck(L_319); (L_319)->SetAt(static_cast(6), (uint64_t)L_320); // A[ 5] = a05; A[ 6] = a06; A[ 7] = a07; A[ 8] = a08; A[ 9] = a09; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_321 = V_0; uint64_t L_322 = V_8; NullCheck(L_321); (L_321)->SetAt(static_cast(7), (uint64_t)L_322); // A[ 5] = a05; A[ 6] = a06; A[ 7] = a07; A[ 8] = a08; A[ 9] = a09; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_323 = V_0; uint64_t L_324 = V_9; NullCheck(L_323); (L_323)->SetAt(static_cast(8), (uint64_t)L_324); // A[ 5] = a05; A[ 6] = a06; A[ 7] = a07; A[ 8] = a08; A[ 9] = a09; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_325 = V_0; uint64_t L_326 = V_10; NullCheck(L_325); (L_325)->SetAt(static_cast(((int32_t)9)), (uint64_t)L_326); // A[10] = a10; A[11] = a11; A[12] = a12; A[13] = a13; A[14] = a14; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_327 = V_0; uint64_t L_328 = V_11; NullCheck(L_327); (L_327)->SetAt(static_cast(((int32_t)10)), (uint64_t)L_328); // A[10] = a10; A[11] = a11; A[12] = a12; A[13] = a13; A[14] = a14; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_329 = V_0; uint64_t L_330 = V_12; NullCheck(L_329); (L_329)->SetAt(static_cast(((int32_t)11)), (uint64_t)L_330); // A[10] = a10; A[11] = a11; A[12] = a12; A[13] = a13; A[14] = a14; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_331 = V_0; uint64_t L_332 = V_13; NullCheck(L_331); (L_331)->SetAt(static_cast(((int32_t)12)), (uint64_t)L_332); // A[10] = a10; A[11] = a11; A[12] = a12; A[13] = a13; A[14] = a14; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_333 = V_0; uint64_t L_334 = V_14; NullCheck(L_333); (L_333)->SetAt(static_cast(((int32_t)13)), (uint64_t)L_334); // A[10] = a10; A[11] = a11; A[12] = a12; A[13] = a13; A[14] = a14; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_335 = V_0; uint64_t L_336 = V_15; NullCheck(L_335); (L_335)->SetAt(static_cast(((int32_t)14)), (uint64_t)L_336); // A[15] = a15; A[16] = a16; A[17] = a17; A[18] = a18; A[19] = a19; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_337 = V_0; uint64_t L_338 = V_16; NullCheck(L_337); (L_337)->SetAt(static_cast(((int32_t)15)), (uint64_t)L_338); // A[15] = a15; A[16] = a16; A[17] = a17; A[18] = a18; A[19] = a19; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_339 = V_0; uint64_t L_340 = V_17; NullCheck(L_339); (L_339)->SetAt(static_cast(((int32_t)16)), (uint64_t)L_340); // A[15] = a15; A[16] = a16; A[17] = a17; A[18] = a18; A[19] = a19; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_341 = V_0; uint64_t L_342 = V_18; NullCheck(L_341); (L_341)->SetAt(static_cast(((int32_t)17)), (uint64_t)L_342); // A[15] = a15; A[16] = a16; A[17] = a17; A[18] = a18; A[19] = a19; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_343 = V_0; uint64_t L_344 = V_19; NullCheck(L_343); (L_343)->SetAt(static_cast(((int32_t)18)), (uint64_t)L_344); // A[15] = a15; A[16] = a16; A[17] = a17; A[18] = a18; A[19] = a19; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_345 = V_0; uint64_t L_346 = V_20; NullCheck(L_345); (L_345)->SetAt(static_cast(((int32_t)19)), (uint64_t)L_346); // A[20] = a20; A[21] = a21; A[22] = a22; A[23] = a23; A[24] = a24; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_347 = V_0; uint64_t L_348 = V_21; NullCheck(L_347); (L_347)->SetAt(static_cast(((int32_t)20)), (uint64_t)L_348); // A[20] = a20; A[21] = a21; A[22] = a22; A[23] = a23; A[24] = a24; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_349 = V_0; uint64_t L_350 = V_22; NullCheck(L_349); (L_349)->SetAt(static_cast(((int32_t)21)), (uint64_t)L_350); // A[20] = a20; A[21] = a21; A[22] = a22; A[23] = a23; A[24] = a24; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_351 = V_0; uint64_t L_352 = V_23; NullCheck(L_351); (L_351)->SetAt(static_cast(((int32_t)22)), (uint64_t)L_352); // A[20] = a20; A[21] = a21; A[22] = a22; A[23] = a23; A[24] = a24; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_353 = V_0; uint64_t L_354 = V_24; NullCheck(L_353); (L_353)->SetAt(static_cast(((int32_t)23)), (uint64_t)L_354); // A[20] = a20; A[21] = a21; A[22] = a22; A[23] = a23; A[24] = a24; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_355 = V_0; uint64_t L_356 = V_25; NullCheck(L_355); (L_355)->SetAt(static_cast(((int32_t)24)), (uint64_t)L_356); // } return; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.IMemoable BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest::Copy() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* KeccakDigest_Copy_mC5BD778DCE37F85D2B4F6761AD7CF021704F439B (KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // return new KeccakDigest(this); KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C * L_0 = (KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C *)il2cpp_codegen_object_new(KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C_il2cpp_TypeInfo_var); KeccakDigest__ctor_mBD111E83E3D127A088AC34C95DE25C2C01B9AACB(L_0, __this, /*hidden argument*/NULL); return L_0; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest::Reset(BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.IMemoable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeccakDigest_Reset_m476380D49D7C91A2352FBA85B8496B37798D725D (KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C * __this, RuntimeObject* ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // CopyIn((KeccakDigest)other); RuntimeObject* L_0 = ___other0; KeccakDigest_CopyIn_m6034E174B39C209FBE99FBEB9478F75DDFBB3166(__this, ((KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C *)CastclassClass((RuntimeObject*)L_0, KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.KeccakDigest::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeccakDigest__cctor_mC3F3FEC814B3C470A741B35FDD6A64BFA1E6D3DD (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____F8E6964ADFFC257265537256D21E93496A17B9271DC5D64F40869EEEAAFF6FBB_299_FieldInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // private static readonly ulong[] KeccakRoundConstants = new ulong[]{ // 0x0000000000000001UL, 0x0000000000008082UL, 0x800000000000808aUL, 0x8000000080008000UL, // 0x000000000000808bUL, 0x0000000080000001UL, 0x8000000080008081UL, 0x8000000000008009UL, // 0x000000000000008aUL, 0x0000000000000088UL, 0x0000000080008009UL, 0x000000008000000aUL, // 0x000000008000808bUL, 0x800000000000008bUL, 0x8000000000008089UL, 0x8000000000008003UL, // 0x8000000000008002UL, 0x8000000000000080UL, 0x000000000000800aUL, 0x800000008000000aUL, // 0x8000000080008081UL, 0x8000000000008080UL, 0x0000000080000001UL, 0x8000000080008008UL // }; UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_0 = (UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2*)(UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2*)SZArrayNew(UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2_il2cpp_TypeInfo_var, (uint32_t)((int32_t)24)); UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_1 = L_0; RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 L_2 = { reinterpret_cast (U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____F8E6964ADFFC257265537256D21E93496A17B9271DC5D64F40869EEEAAFF6FBB_299_FieldInfo_var) }; RuntimeHelpers_InitializeArray_mE27238308FED781F2D6A719F0903F2E1311B058F((RuntimeArray *)(RuntimeArray *)L_1, L_2, /*hidden argument*/NULL); ((KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C_StaticFields*)il2cpp_codegen_static_fields_for(KeccakDigest_t56FB3B7A80AE52DAE66E8F4C89A8B500B7D0613C_il2cpp_TypeInfo_var))->set_KeccakRoundConstants_0(L_1); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.TimeSpan BestHTTP.KeepAliveHeader::get_TimeOut() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 KeepAliveHeader_get_TimeOut_m619BA3781C9024C74711BB27E3F5650CAAE71C3D (KeepAliveHeader_t93C1CC9FD7D51F432D9A50741F9BC0EF59166924 * __this, const RuntimeMethod* method) { { // public TimeSpan TimeOut { get; private set; } TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_0 = __this->get_U3CTimeOutU3Ek__BackingField_0(); return L_0; } } // System.Void BestHTTP.KeepAliveHeader::set_TimeOut(System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeepAliveHeader_set_TimeOut_m1AEE19DDC7E9E47380B2685C13741228CC94FDAA (KeepAliveHeader_t93C1CC9FD7D51F432D9A50741F9BC0EF59166924 * __this, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___value0, const RuntimeMethod* method) { { // public TimeSpan TimeOut { get; private set; } TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_0 = ___value0; __this->set_U3CTimeOutU3Ek__BackingField_0(L_0); return; } } // System.Int32 BestHTTP.KeepAliveHeader::get_MaxRequests() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t KeepAliveHeader_get_MaxRequests_mD5EF19DBD169B5CCFE2C7AF9EBDAEEF097F66B93 (KeepAliveHeader_t93C1CC9FD7D51F432D9A50741F9BC0EF59166924 * __this, const RuntimeMethod* method) { { // public int MaxRequests { get; private set; } int32_t L_0 = __this->get_U3CMaxRequestsU3Ek__BackingField_1(); return L_0; } } // System.Void BestHTTP.KeepAliveHeader::set_MaxRequests(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeepAliveHeader_set_MaxRequests_m872D60B7FDEB997BD1989D3BE73F500D43252EDD (KeepAliveHeader_t93C1CC9FD7D51F432D9A50741F9BC0EF59166924 * __this, int32_t ___value0, const RuntimeMethod* method) { { // public int MaxRequests { get; private set; } int32_t L_0 = ___value0; __this->set_U3CMaxRequestsU3Ek__BackingField_1(L_0); return; } } // System.Void BestHTTP.KeepAliveHeader::Parse(System.Collections.Generic.List`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeepAliveHeader_Parse_mE53742A03A7153483CEDA880B89A36D3F53E8EE2 (KeepAliveHeader_t93C1CC9FD7D51F432D9A50741F9BC0EF59166924 * __this, List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * ___headerValues0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HeaderParser_t90F5D0027B4A301EFD28FC225846CB32AB67AD5E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m3F624A80E7853289E4759DE8F16CF23B0958365B_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4044F71E1BE65840634E2AF1C09536F10DBF2AF5); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral499284EE1D3CD7FE549A05AE5F4E78D079B96018); s_Il2CppMethodInitialized = true; } HeaderValue_tB19EA8836300DA053E7A6E082DD196DA23BA7F77 * V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; HeaderParser_t90F5D0027B4A301EFD28FC225846CB32AB67AD5E * G_B5_0 = NULL; HeaderParser_t90F5D0027B4A301EFD28FC225846CB32AB67AD5E * G_B1_0 = NULL; HeaderParser_t90F5D0027B4A301EFD28FC225846CB32AB67AD5E * G_B2_0 = NULL; HeaderParser_t90F5D0027B4A301EFD28FC225846CB32AB67AD5E * G_B4_0 = NULL; HeaderParser_t90F5D0027B4A301EFD28FC225846CB32AB67AD5E * G_B3_0 = NULL; { // HeaderParser parser = new HeaderParser(headerValues[0]); List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_0 = ___headerValues0; NullCheck(L_0); String_t* L_1; L_1 = List_1_get_Item_m3F624A80E7853289E4759DE8F16CF23B0958365B_inline(L_0, 0, /*hidden argument*/List_1_get_Item_m3F624A80E7853289E4759DE8F16CF23B0958365B_RuntimeMethod_var); HeaderParser_t90F5D0027B4A301EFD28FC225846CB32AB67AD5E * L_2 = (HeaderParser_t90F5D0027B4A301EFD28FC225846CB32AB67AD5E *)il2cpp_codegen_object_new(HeaderParser_t90F5D0027B4A301EFD28FC225846CB32AB67AD5E_il2cpp_TypeInfo_var); HeaderParser__ctor_m0ED7DAC5F04802F1AED6F04329E34BF296595193(L_2, L_1, /*hidden argument*/NULL); // if (parser.TryGet("timeout", out value) && value.HasValue) HeaderParser_t90F5D0027B4A301EFD28FC225846CB32AB67AD5E * L_3 = L_2; NullCheck(L_3); bool L_4; L_4 = KeyValuePairList_TryGet_m1B462A6661FC7A993D3E0125E8A33BC0BC45CB16(L_3, _stringLiteral4044F71E1BE65840634E2AF1C09536F10DBF2AF5, (HeaderValue_tB19EA8836300DA053E7A6E082DD196DA23BA7F77 **)(&V_0), /*hidden argument*/NULL); G_B1_0 = L_3; if (!L_4) { G_B5_0 = L_3; goto IL_004e; } } { HeaderValue_tB19EA8836300DA053E7A6E082DD196DA23BA7F77 * L_5 = V_0; NullCheck(L_5); bool L_6; L_6 = HeaderValue_get_HasValue_mAAD14705A6CE28E2DB3819071CDFE38014D82E17(L_5, /*hidden argument*/NULL); G_B2_0 = G_B1_0; if (!L_6) { G_B5_0 = G_B1_0; goto IL_004e; } } { // int intValue = 0; V_1 = 0; // if (int.TryParse(value.Value, out intValue)) HeaderValue_tB19EA8836300DA053E7A6E082DD196DA23BA7F77 * L_7 = V_0; NullCheck(L_7); String_t* L_8; L_8 = HeaderValue_get_Value_mE536CEFE35202D5F10D7594E0A12C6D46CA8DFFF_inline(L_7, /*hidden argument*/NULL); bool L_9; L_9 = Int32_TryParse_m748B8DB1D0C9D25C3D1812D7887411C4AFC1DDC2(L_8, (int32_t*)(&V_1), /*hidden argument*/NULL); G_B3_0 = G_B2_0; if (!L_9) { G_B4_0 = G_B2_0; goto IL_0043; } } { // this.TimeOut = TimeSpan.FromSeconds(intValue); int32_t L_10 = V_1; IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var); TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_11; L_11 = TimeSpan_FromSeconds_m4644EABECA69BC6C07AD649C5898A8E53F4FE7B0(((double)((double)L_10)), /*hidden argument*/NULL); KeepAliveHeader_set_TimeOut_m1AEE19DDC7E9E47380B2685C13741228CC94FDAA_inline(__this, L_11, /*hidden argument*/NULL); G_B5_0 = G_B3_0; goto IL_004e; } IL_0043: { // this.TimeOut = TimeSpan.MaxValue; IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var); TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_12 = ((TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var))->get_MaxValue_20(); KeepAliveHeader_set_TimeOut_m1AEE19DDC7E9E47380B2685C13741228CC94FDAA_inline(__this, L_12, /*hidden argument*/NULL); G_B5_0 = G_B4_0; } IL_004e: { // if (parser.TryGet("max", out value) && value.HasValue) NullCheck(G_B5_0); bool L_13; L_13 = KeyValuePairList_TryGet_m1B462A6661FC7A993D3E0125E8A33BC0BC45CB16(G_B5_0, _stringLiteral499284EE1D3CD7FE549A05AE5F4E78D079B96018, (HeaderValue_tB19EA8836300DA053E7A6E082DD196DA23BA7F77 **)(&V_0), /*hidden argument*/NULL); if (!L_13) { goto IL_0087; } } { HeaderValue_tB19EA8836300DA053E7A6E082DD196DA23BA7F77 * L_14 = V_0; NullCheck(L_14); bool L_15; L_15 = HeaderValue_get_HasValue_mAAD14705A6CE28E2DB3819071CDFE38014D82E17(L_14, /*hidden argument*/NULL); if (!L_15) { goto IL_0087; } } { // int intValue = 0; V_2 = 0; // if (int.TryParse("max", out intValue)) bool L_16; L_16 = Int32_TryParse_m748B8DB1D0C9D25C3D1812D7887411C4AFC1DDC2(_stringLiteral499284EE1D3CD7FE549A05AE5F4E78D079B96018, (int32_t*)(&V_2), /*hidden argument*/NULL); if (!L_16) { goto IL_007c; } } { // this.MaxRequests = intValue; int32_t L_17 = V_2; KeepAliveHeader_set_MaxRequests_m872D60B7FDEB997BD1989D3BE73F500D43252EDD_inline(__this, L_17, /*hidden argument*/NULL); return; } IL_007c: { // this.MaxRequests = int.MaxValue; KeepAliveHeader_set_MaxRequests_m872D60B7FDEB997BD1989D3BE73F500D43252EDD_inline(__this, ((int32_t)2147483647LL), /*hidden argument*/NULL); } IL_0087: { // } return; } } // System.Void BestHTTP.KeepAliveHeader::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeepAliveHeader__ctor_m139FE3F1B1A691E0AB049E3CD5751AD830054D33 (KeepAliveHeader_t93C1CC9FD7D51F432D9A50741F9BC0EF59166924 * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // BestHTTP.SignalR.MessageTypes BestHTTP.SignalR.Messages.KeepAliveMessage::BestHTTP.SignalR.Messages.IServerMessage.get_Type() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t KeepAliveMessage_BestHTTP_SignalR_Messages_IServerMessage_get_Type_m493BFCAAD26CB5DD5D1160206C1DF469D0A7EEA8 (KeepAliveMessage_t44E67642111EEAB01A3E571061DA466BFA2136DF * __this, const RuntimeMethod* method) { { // MessageTypes IServerMessage.Type { get { return MessageTypes.KeepAlive; } } return (int32_t)(0); } } // System.Void BestHTTP.SignalR.Messages.KeepAliveMessage::BestHTTP.SignalR.Messages.IServerMessage.Parse(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeepAliveMessage_BestHTTP_SignalR_Messages_IServerMessage_Parse_mFDB94362473274E53957F2DB86E05C42FEB2B629 (KeepAliveMessage_t44E67642111EEAB01A3E571061DA466BFA2136DF * __this, RuntimeObject * ___data0, const RuntimeMethod* method) { { // void IServerMessage.Parse(object data) { } return; } } // System.Void BestHTTP.SignalR.Messages.KeepAliveMessage::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeepAliveMessage__ctor_m4BBFCD45B47B6B713C46C5BDDA2180585846637C (KeepAliveMessage_t44E67642111EEAB01A3E571061DA466BFA2136DF * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekIdentifier::.ctor(System.Byte[],BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerGeneralizedTime,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.OtherKeyAttribute) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KekIdentifier__ctor_m22AD6FE4570E08F0300ACFCEE15E97D432588526 (KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___keyIdentifier0, DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 * ___date1, OtherKeyAttribute_tABF4FB6A6D942EF9F90E7BC0C092BFB0E154ABBB * ___other2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public KekIdentifier( // byte[] keyIdentifier, // DerGeneralizedTime date, // OtherKeyAttribute other) Asn1Encodable__ctor_mF956C9DAF4A126B7B4406E2DD0EED16E64ABA126(__this, /*hidden argument*/NULL); // this.keyIdentifier = new DerOctetString(keyIdentifier); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___keyIdentifier0; DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75 * L_1 = (DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75 *)il2cpp_codegen_object_new(DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75_il2cpp_TypeInfo_var); DerOctetString__ctor_mBD13EC2203DF652C61E5AB45AE95CC51A22F0AF2(L_1, L_0, /*hidden argument*/NULL); __this->set_keyIdentifier_2(L_1); // this.date = date; DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 * L_2 = ___date1; __this->set_date_3(L_2); // this.other = other; OtherKeyAttribute_tABF4FB6A6D942EF9F90E7BC0C092BFB0E154ABBB * L_3 = ___other2; __this->set_other_4(L_3); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekIdentifier::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KekIdentifier__ctor_mA4CD7D3DB0EECDAC3489F8150EEF30ECC96CD2ED (KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973 * __this, Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * ___seq0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { // public KekIdentifier( // Asn1Sequence seq) Asn1Encodable__ctor_mF956C9DAF4A126B7B4406E2DD0EED16E64ABA126(__this, /*hidden argument*/NULL); // keyIdentifier = (Asn1OctetString) seq[0]; Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_0 = ___seq0; NullCheck(L_0); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_1; L_1 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_0, 0); __this->set_keyIdentifier_2(((Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 *)CastclassClass((RuntimeObject*)L_1, Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8_il2cpp_TypeInfo_var))); // switch (seq.Count) Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_2 = ___seq0; NullCheck(L_2); int32_t L_3; L_3 = VirtualFuncInvoker0< int32_t >::Invoke(13 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Count() */, L_2); V_0 = L_3; int32_t L_4 = V_0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1))) { case 0: { goto IL_0099; } case 1: { goto IL_0035; } case 2: { goto IL_0069; } } } { goto IL_008e; } IL_0035: { // if (seq[1] is DerGeneralizedTime) Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_5 = ___seq0; NullCheck(L_5); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_6; L_6 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_5, 1); if (!((DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 *)IsInstClass((RuntimeObject*)L_6, DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0_il2cpp_TypeInfo_var))) { goto IL_0056; } } { // date = (DerGeneralizedTime) seq[1]; Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_7 = ___seq0; NullCheck(L_7); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_8; L_8 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_7, 1); __this->set_date_3(((DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 *)CastclassClass((RuntimeObject*)L_8, DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0_il2cpp_TypeInfo_var))); // } return; } IL_0056: { // other = OtherKeyAttribute.GetInstance(seq[2]); Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_9 = ___seq0; NullCheck(L_9); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_10; L_10 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_9, 2); OtherKeyAttribute_tABF4FB6A6D942EF9F90E7BC0C092BFB0E154ABBB * L_11; L_11 = OtherKeyAttribute_GetInstance_mDB51BFAE367AD008B941CECEDE34D39F03D8FF64(L_10, /*hidden argument*/NULL); __this->set_other_4(L_11); // break; return; } IL_0069: { // date = (DerGeneralizedTime) seq[1]; Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_12 = ___seq0; NullCheck(L_12); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_13; L_13 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_12, 1); __this->set_date_3(((DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 *)CastclassClass((RuntimeObject*)L_13, DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0_il2cpp_TypeInfo_var))); // other = OtherKeyAttribute.GetInstance(seq[2]); Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_14 = ___seq0; NullCheck(L_14); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_15; L_15 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_14, 2); OtherKeyAttribute_tABF4FB6A6D942EF9F90E7BC0C092BFB0E154ABBB * L_16; L_16 = OtherKeyAttribute_GetInstance_mDB51BFAE367AD008B941CECEDE34D39F03D8FF64(L_15, /*hidden argument*/NULL); __this->set_other_4(L_16); // break; return; } IL_008e: { // throw new ArgumentException("Invalid KekIdentifier"); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_17 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_17, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral801418BADD4326649768A14271F1E51255372E76)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KekIdentifier__ctor_mA4CD7D3DB0EECDAC3489F8150EEF30ECC96CD2ED_RuntimeMethod_var))); } IL_0099: { // } return; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekIdentifier::GetInstance(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973 * KekIdentifier_GetInstance_m620EF49AB7D02A004EA863A552A3587634E12617 (Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0 * ___obj0, bool ___explicitly1, const RuntimeMethod* method) { { // return GetInstance(Asn1Sequence.GetInstance(obj, explicitly)); Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0 * L_0 = ___obj0; bool L_1 = ___explicitly1; Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_2; L_2 = Asn1Sequence_GetInstance_m682AEF9FD99CABE589DF0AA4DB2CAC4996AEFD25(L_0, L_1, /*hidden argument*/NULL); KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973 * L_3; L_3 = KekIdentifier_GetInstance_mDD0FFFD3AA826C2D4A9E832EA2FD99463DED15D7(L_2, /*hidden argument*/NULL); return L_3; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekIdentifier::GetInstance(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973 * KekIdentifier_GetInstance_mDD0FFFD3AA826C2D4A9E832EA2FD99463DED15D7 (RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (obj == null || obj is KekIdentifier) RuntimeObject * L_0 = ___obj0; if (!L_0) { goto IL_000b; } } { RuntimeObject * L_1 = ___obj0; if (!((KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973 *)IsInstClass((RuntimeObject*)L_1, KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973_il2cpp_TypeInfo_var))) { goto IL_0012; } } IL_000b: { // return (KekIdentifier)obj; RuntimeObject * L_2 = ___obj0; return ((KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973 *)CastclassClass((RuntimeObject*)L_2, KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973_il2cpp_TypeInfo_var)); } IL_0012: { // if (obj is Asn1Sequence) RuntimeObject * L_3 = ___obj0; if (!((Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 *)IsInstClass((RuntimeObject*)L_3, Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8_il2cpp_TypeInfo_var))) { goto IL_0026; } } { // return new KekIdentifier((Asn1Sequence)obj); RuntimeObject * L_4 = ___obj0; KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973 * L_5 = (KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973 *)il2cpp_codegen_object_new(KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973_il2cpp_TypeInfo_var); KekIdentifier__ctor_mA4CD7D3DB0EECDAC3489F8150EEF30ECC96CD2ED(L_5, ((Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 *)CastclassClass((RuntimeObject*)L_4, Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return L_5; } IL_0026: { // throw new ArgumentException("Invalid KekIdentifier: " + BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.GetTypeName(obj)); RuntimeObject * L_6 = ___obj0; IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var))); String_t* L_7; L_7 = Platform_GetTypeName_m6EE4C5C80014DB651B39EAA755D394E21009EADB(L_6, /*hidden argument*/NULL); String_t* L_8; L_8 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral86C1C16CB2BA4E014A7DA34A83EB6995CDFBA040)), L_7, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_9 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_9, L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KekIdentifier_GetInstance_mDD0FFFD3AA826C2D4A9E832EA2FD99463DED15D7_RuntimeMethod_var))); } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekIdentifier::get_KeyIdentifier() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * KekIdentifier_get_KeyIdentifier_mBB47FC76F62C7B823281E2F43DDA5348DE3CF7FB (KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973 * __this, const RuntimeMethod* method) { { // get { return keyIdentifier; } Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_0 = __this->get_keyIdentifier_2(); return L_0; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerGeneralizedTime BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekIdentifier::get_Date() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 * KekIdentifier_get_Date_mDEEAF1F91C6909968093EDC7E4EAA213A6475183 (KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973 * __this, const RuntimeMethod* method) { { // get { return date; } DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 * L_0 = __this->get_date_3(); return L_0; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.OtherKeyAttribute BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekIdentifier::get_Other() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR OtherKeyAttribute_tABF4FB6A6D942EF9F90E7BC0C092BFB0E154ABBB * KekIdentifier_get_Other_mBB54ACB6A54FFC80EE22A80DA694421EC7167512 (KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973 * __this, const RuntimeMethod* method) { { // get { return other; } OtherKeyAttribute_tABF4FB6A6D942EF9F90E7BC0C092BFB0E154ABBB * L_0 = __this->get_other_4(); return L_0; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Object BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekIdentifier::ToAsn1Object() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * KekIdentifier_ToAsn1Object_m7371751666B88DAD696A70D7EAF29CC2ED05363F (KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 * V_0 = NULL; { // Asn1EncodableVector v = new Asn1EncodableVector(keyIdentifier); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_0 = (Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE*)(Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE*)SZArrayNew(Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE_il2cpp_TypeInfo_var, (uint32_t)1); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_1 = L_0; Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_2 = __this->get_keyIdentifier_2(); NullCheck(L_1); ArrayElementTypeCheck (L_1, L_2); (L_1)->SetAt(static_cast(0), (Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *)L_2); Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 * L_3 = (Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 *)il2cpp_codegen_object_new(Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3_il2cpp_TypeInfo_var); Asn1EncodableVector__ctor_m1306EB1064C0D4EEC59EA15F8DFF81952B7AE7DE(L_3, L_1, /*hidden argument*/NULL); V_0 = L_3; // v.AddOptional(date, other); Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 * L_4 = V_0; Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_5 = (Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE*)(Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE*)SZArrayNew(Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE_il2cpp_TypeInfo_var, (uint32_t)2); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_6 = L_5; DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 * L_7 = __this->get_date_3(); NullCheck(L_6); ArrayElementTypeCheck (L_6, L_7); (L_6)->SetAt(static_cast(0), (Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *)L_7); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_8 = L_6; OtherKeyAttribute_tABF4FB6A6D942EF9F90E7BC0C092BFB0E154ABBB * L_9 = __this->get_other_4(); NullCheck(L_8); ArrayElementTypeCheck (L_8, L_9); (L_8)->SetAt(static_cast(1), (Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *)L_9); NullCheck(L_4); Asn1EncodableVector_AddOptional_mB97BC076BA9B253F5C10545EE0EE4A839EF34D5A(L_4, L_8, /*hidden argument*/NULL); // return new DerSequence(v); Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 * L_10 = V_0; DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 * L_11 = (DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 *)il2cpp_codegen_object_new(DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09_il2cpp_TypeInfo_var); DerSequence__ctor_mC969ECDC21E6B8169D0B78BE04B3A08192E13164(L_11, L_10, /*hidden argument*/NULL); return L_11; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekRecipientInfo::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekIdentifier,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KekRecipientInfo__ctor_m4D626470C0CE8DD4EF5146D0AA056C6BFBDFA032 (KekRecipientInfo_t49DC4E62062A5E6E070BCBE2704D5AE43A4A7A25 * __this, KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973 * ___kekID0, AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___keyEncryptionAlgorithm1, Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * ___encryptedKey2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public KekRecipientInfo( // KekIdentifier kekID, // AlgorithmIdentifier keyEncryptionAlgorithm, // Asn1OctetString encryptedKey) Asn1Encodable__ctor_mF956C9DAF4A126B7B4406E2DD0EED16E64ABA126(__this, /*hidden argument*/NULL); // this.version = new DerInteger(4); DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * L_0 = (DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 *)il2cpp_codegen_object_new(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var); DerInteger__ctor_m014B0C2AADB00543E51D3621D5B93E030C47F6CA(L_0, 4, /*hidden argument*/NULL); __this->set_version_2(L_0); // this.kekID = kekID; KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973 * L_1 = ___kekID0; __this->set_kekID_3(L_1); // this.keyEncryptionAlgorithm = keyEncryptionAlgorithm; AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_2 = ___keyEncryptionAlgorithm1; __this->set_keyEncryptionAlgorithm_4(L_2); // this.encryptedKey = encryptedKey; Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_3 = ___encryptedKey2; __this->set_encryptedKey_5(L_3); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekRecipientInfo::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KekRecipientInfo__ctor_m00AE9E308C1023F147D3FEE79A277B60C02E388F (KekRecipientInfo_t49DC4E62062A5E6E070BCBE2704D5AE43A4A7A25 * __this, Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * ___seq0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public KekRecipientInfo( // Asn1Sequence seq) Asn1Encodable__ctor_mF956C9DAF4A126B7B4406E2DD0EED16E64ABA126(__this, /*hidden argument*/NULL); // version = (DerInteger) seq[0]; Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_0 = ___seq0; NullCheck(L_0); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_1; L_1 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_0, 0); __this->set_version_2(((DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 *)CastclassClass((RuntimeObject*)L_1, DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var))); // kekID = KekIdentifier.GetInstance(seq[1]); Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_2 = ___seq0; NullCheck(L_2); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_3; L_3 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_2, 1); KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973 * L_4; L_4 = KekIdentifier_GetInstance_mDD0FFFD3AA826C2D4A9E832EA2FD99463DED15D7(L_3, /*hidden argument*/NULL); __this->set_kekID_3(L_4); // keyEncryptionAlgorithm = AlgorithmIdentifier.GetInstance(seq[2]); Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_5 = ___seq0; NullCheck(L_5); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_6; L_6 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_5, 2); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_7; L_7 = AlgorithmIdentifier_GetInstance_m72ED3229FC5112CA144FA81CC150D686073B3964(L_6, /*hidden argument*/NULL); __this->set_keyEncryptionAlgorithm_4(L_7); // encryptedKey = (Asn1OctetString) seq[3]; Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_8 = ___seq0; NullCheck(L_8); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_9; L_9 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_8, 3); __this->set_encryptedKey_5(((Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 *)CastclassClass((RuntimeObject*)L_9, Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8_il2cpp_TypeInfo_var))); // } return; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekRecipientInfo BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekRecipientInfo::GetInstance(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KekRecipientInfo_t49DC4E62062A5E6E070BCBE2704D5AE43A4A7A25 * KekRecipientInfo_GetInstance_mCF0E2D8329D3556307FA54D10480FA00CD4530E2 (Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0 * ___obj0, bool ___explicitly1, const RuntimeMethod* method) { { // return GetInstance(Asn1Sequence.GetInstance(obj, explicitly)); Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0 * L_0 = ___obj0; bool L_1 = ___explicitly1; Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_2; L_2 = Asn1Sequence_GetInstance_m682AEF9FD99CABE589DF0AA4DB2CAC4996AEFD25(L_0, L_1, /*hidden argument*/NULL); KekRecipientInfo_t49DC4E62062A5E6E070BCBE2704D5AE43A4A7A25 * L_3; L_3 = KekRecipientInfo_GetInstance_m248C7EC4D6807103ABBC5C24359ECF8DD2F7A819(L_2, /*hidden argument*/NULL); return L_3; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekRecipientInfo BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekRecipientInfo::GetInstance(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KekRecipientInfo_t49DC4E62062A5E6E070BCBE2704D5AE43A4A7A25 * KekRecipientInfo_GetInstance_m248C7EC4D6807103ABBC5C24359ECF8DD2F7A819 (RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KekRecipientInfo_t49DC4E62062A5E6E070BCBE2704D5AE43A4A7A25_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (obj == null || obj is KekRecipientInfo) RuntimeObject * L_0 = ___obj0; if (!L_0) { goto IL_000b; } } { RuntimeObject * L_1 = ___obj0; if (!((KekRecipientInfo_t49DC4E62062A5E6E070BCBE2704D5AE43A4A7A25 *)IsInstClass((RuntimeObject*)L_1, KekRecipientInfo_t49DC4E62062A5E6E070BCBE2704D5AE43A4A7A25_il2cpp_TypeInfo_var))) { goto IL_0012; } } IL_000b: { // return (KekRecipientInfo)obj; RuntimeObject * L_2 = ___obj0; return ((KekRecipientInfo_t49DC4E62062A5E6E070BCBE2704D5AE43A4A7A25 *)CastclassClass((RuntimeObject*)L_2, KekRecipientInfo_t49DC4E62062A5E6E070BCBE2704D5AE43A4A7A25_il2cpp_TypeInfo_var)); } IL_0012: { // if(obj is Asn1Sequence) RuntimeObject * L_3 = ___obj0; if (!((Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 *)IsInstClass((RuntimeObject*)L_3, Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8_il2cpp_TypeInfo_var))) { goto IL_0026; } } { // return new KekRecipientInfo((Asn1Sequence)obj); RuntimeObject * L_4 = ___obj0; KekRecipientInfo_t49DC4E62062A5E6E070BCBE2704D5AE43A4A7A25 * L_5 = (KekRecipientInfo_t49DC4E62062A5E6E070BCBE2704D5AE43A4A7A25 *)il2cpp_codegen_object_new(KekRecipientInfo_t49DC4E62062A5E6E070BCBE2704D5AE43A4A7A25_il2cpp_TypeInfo_var); KekRecipientInfo__ctor_m00AE9E308C1023F147D3FEE79A277B60C02E388F(L_5, ((Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 *)CastclassClass((RuntimeObject*)L_4, Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return L_5; } IL_0026: { // throw new ArgumentException("Invalid KekRecipientInfo: " + BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.GetTypeName(obj)); RuntimeObject * L_6 = ___obj0; IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var))); String_t* L_7; L_7 = Platform_GetTypeName_m6EE4C5C80014DB651B39EAA755D394E21009EADB(L_6, /*hidden argument*/NULL); String_t* L_8; L_8 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE138E6068EDC88CB3F5762A05F24B67A9484CF0B)), L_7, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_9 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_9, L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KekRecipientInfo_GetInstance_m248C7EC4D6807103ABBC5C24359ECF8DD2F7A819_RuntimeMethod_var))); } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekRecipientInfo::get_Version() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * KekRecipientInfo_get_Version_mB22F9D1661D0713875DA6B734762C23578676A79 (KekRecipientInfo_t49DC4E62062A5E6E070BCBE2704D5AE43A4A7A25 * __this, const RuntimeMethod* method) { { // get { return version; } DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * L_0 = __this->get_version_2(); return L_0; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekRecipientInfo::get_KekID() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973 * KekRecipientInfo_get_KekID_mFDEA56B9B41F238F47CE50D2D245727C2B79717E (KekRecipientInfo_t49DC4E62062A5E6E070BCBE2704D5AE43A4A7A25 * __this, const RuntimeMethod* method) { { // get { return kekID; } KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973 * L_0 = __this->get_kekID_3(); return L_0; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekRecipientInfo::get_KeyEncryptionAlgorithm() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * KekRecipientInfo_get_KeyEncryptionAlgorithm_m71694E9DAB5E4EA5BAF3D026B903143B14992D2B (KekRecipientInfo_t49DC4E62062A5E6E070BCBE2704D5AE43A4A7A25 * __this, const RuntimeMethod* method) { { // get { return keyEncryptionAlgorithm; } AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_0 = __this->get_keyEncryptionAlgorithm_4(); return L_0; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekRecipientInfo::get_EncryptedKey() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * KekRecipientInfo_get_EncryptedKey_mA9A93096DAB4F1D684D70167B84B0A25DF310A0C (KekRecipientInfo_t49DC4E62062A5E6E070BCBE2704D5AE43A4A7A25 * __this, const RuntimeMethod* method) { { // get { return encryptedKey; } Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_0 = __this->get_encryptedKey_5(); return L_0; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Object BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekRecipientInfo::ToAsn1Object() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * KekRecipientInfo_ToAsn1Object_m3A233353462456A702146B6C53B2AF89799A8F5A (KekRecipientInfo_t49DC4E62062A5E6E070BCBE2704D5AE43A4A7A25 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // return new DerSequence(version, kekID, keyEncryptionAlgorithm, encryptedKey); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_0 = (Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE*)(Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE*)SZArrayNew(Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE_il2cpp_TypeInfo_var, (uint32_t)4); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_1 = L_0; DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * L_2 = __this->get_version_2(); NullCheck(L_1); ArrayElementTypeCheck (L_1, L_2); (L_1)->SetAt(static_cast(0), (Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *)L_2); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_3 = L_1; KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973 * L_4 = __this->get_kekID_3(); NullCheck(L_3); ArrayElementTypeCheck (L_3, L_4); (L_3)->SetAt(static_cast(1), (Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *)L_4); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_5 = L_3; AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_6 = __this->get_keyEncryptionAlgorithm_4(); NullCheck(L_5); ArrayElementTypeCheck (L_5, L_6); (L_5)->SetAt(static_cast(2), (Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *)L_6); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_7 = L_5; Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_8 = __this->get_encryptedKey_5(); NullCheck(L_7); ArrayElementTypeCheck (L_7, L_8); (L_7)->SetAt(static_cast(3), (Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *)L_8); DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 * L_9 = (DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 *)il2cpp_codegen_object_new(DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09_il2cpp_TypeInfo_var); DerSequence__ctor_m014F0386FA0EDB7F97747159963DC17F535AF0A2(L_9, L_7, /*hidden argument*/NULL); return L_9; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KekRecipientInfoGenerator::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KekRecipientInfoGenerator__ctor_mF7893E5D68C7609BAE53C87004919D0A16DF5EB3 (KekRecipientInfoGenerator_t1EADCDF1D7A6EA36646F881F5090E1AF7340FDE2 * __this, const RuntimeMethod* method) { { // internal KekRecipientInfoGenerator() Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KekRecipientInfoGenerator::set_KekIdentifier(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekIdentifier) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KekRecipientInfoGenerator_set_KekIdentifier_mED9A928689C89449A509E32C051928C04FE70466 (KekRecipientInfoGenerator_t1EADCDF1D7A6EA36646F881F5090E1AF7340FDE2 * __this, KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973 * ___value0, const RuntimeMethod* method) { { // set { this.kekIdentifier = value; } KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973 * L_0 = ___value0; __this->set_kekIdentifier_3(L_0); // set { this.kekIdentifier = value; } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KekRecipientInfoGenerator::set_KeyEncryptionKey(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.KeyParameter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KekRecipientInfoGenerator_set_KeyEncryptionKey_m60D2CC7A71E636DF2889627F1D45C6A42E45CAC7 (KekRecipientInfoGenerator_t1EADCDF1D7A6EA36646F881F5090E1AF7340FDE2 * __this, KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KekRecipientInfoGenerator_t1EADCDF1D7A6EA36646F881F5090E1AF7340FDE2_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // this.keyEncryptionKey = value; KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * L_0 = ___value0; __this->set_keyEncryptionKey_1(L_0); // this.keyEncryptionAlgorithm = DetermineKeyEncAlg(keyEncryptionKeyOID, keyEncryptionKey); String_t* L_1 = __this->get_keyEncryptionKeyOID_2(); KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * L_2 = __this->get_keyEncryptionKey_1(); IL2CPP_RUNTIME_CLASS_INIT(KekRecipientInfoGenerator_t1EADCDF1D7A6EA36646F881F5090E1AF7340FDE2_il2cpp_TypeInfo_var); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_3; L_3 = KekRecipientInfoGenerator_DetermineKeyEncAlg_m63A85C821965803C1EFBF641392B2A329AD74842(L_1, L_2, /*hidden argument*/NULL); __this->set_keyEncryptionAlgorithm_4(L_3); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KekRecipientInfoGenerator::set_KeyEncryptionKeyOID(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KekRecipientInfoGenerator_set_KeyEncryptionKeyOID_mEBC5E614AC785932D4640D52D095750779DF57C4 (KekRecipientInfoGenerator_t1EADCDF1D7A6EA36646F881F5090E1AF7340FDE2 * __this, String_t* ___value0, const RuntimeMethod* method) { { // set { this.keyEncryptionKeyOID = value; } String_t* L_0 = ___value0; __this->set_keyEncryptionKeyOID_2(L_0); // set { this.keyEncryptionKeyOID = value; } return; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.RecipientInfo BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KekRecipientInfoGenerator::Generate(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.KeyParameter,BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RecipientInfo_tAD4CBFD604399F45BD0D23A4C028E0FC88C19829 * KekRecipientInfoGenerator_Generate_mF3C74898FEDCEF8F78DA47819E66184EFF3D3EF6 (KekRecipientInfoGenerator_t1EADCDF1D7A6EA36646F881F5090E1AF7340FDE2 * __this, KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * ___contentEncryptionKey0, SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * ___random1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IWrapper_t29A9E044AAEEECE9E2FA8A8A61F76B0F50347B39_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KekRecipientInfoGenerator_t1EADCDF1D7A6EA36646F881F5090E1AF7340FDE2_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KekRecipientInfo_t49DC4E62062A5E6E070BCBE2704D5AE43A4A7A25_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ParametersWithRandom_t557A9B373F5F2998BE6C0461812FBE4EB73425AC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RecipientInfo_tAD4CBFD604399F45BD0D23A4C028E0FC88C19829_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_0 = NULL; Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * V_1 = NULL; { // byte[] keyBytes = contentEncryptionKey.GetKey(); KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * L_0 = ___contentEncryptionKey0; NullCheck(L_0); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1; L_1 = KeyParameter_GetKey_mCA2C132B43F669063C426602DD5A8A672531385A(L_0, /*hidden argument*/NULL); V_0 = L_1; // IWrapper keyWrapper = Helper.CreateWrapper(keyEncryptionAlgorithm.Algorithm.Id); IL2CPP_RUNTIME_CLASS_INIT(KekRecipientInfoGenerator_t1EADCDF1D7A6EA36646F881F5090E1AF7340FDE2_il2cpp_TypeInfo_var); CmsEnvelopedHelper_t4C541C5858FDC5D5FEFBEF5BB39D1E55C9319BF0 * L_2 = ((KekRecipientInfoGenerator_t1EADCDF1D7A6EA36646F881F5090E1AF7340FDE2_StaticFields*)il2cpp_codegen_static_fields_for(KekRecipientInfoGenerator_t1EADCDF1D7A6EA36646F881F5090E1AF7340FDE2_il2cpp_TypeInfo_var))->get_Helper_0(); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_3 = __this->get_keyEncryptionAlgorithm_4(); NullCheck(L_3); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_4; L_4 = VirtualFuncInvoker0< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * >::Invoke(6 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier::get_Algorithm() */, L_3); NullCheck(L_4); String_t* L_5; L_5 = DerObjectIdentifier_get_Id_m1A4618B1F7ED8630EDC76DF95D8C7086F1E616D6_inline(L_4, /*hidden argument*/NULL); NullCheck(L_2); RuntimeObject* L_6; L_6 = CmsEnvelopedHelper_CreateWrapper_mD2951A9418E173A69778DEEF45C1BCBAFD454394(L_2, L_5, /*hidden argument*/NULL); // keyWrapper.Init(true, new ParametersWithRandom(keyEncryptionKey, random)); RuntimeObject* L_7 = L_6; KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * L_8 = __this->get_keyEncryptionKey_1(); SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * L_9 = ___random1; ParametersWithRandom_t557A9B373F5F2998BE6C0461812FBE4EB73425AC * L_10 = (ParametersWithRandom_t557A9B373F5F2998BE6C0461812FBE4EB73425AC *)il2cpp_codegen_object_new(ParametersWithRandom_t557A9B373F5F2998BE6C0461812FBE4EB73425AC_il2cpp_TypeInfo_var); ParametersWithRandom__ctor_m9CC2D927A9DC93F6BED2DE101C93E19050FEDF97(L_10, L_8, L_9, /*hidden argument*/NULL); NullCheck(L_7); InterfaceActionInvoker2< bool, RuntimeObject* >::Invoke(1 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IWrapper::Init(System.Boolean,BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ICipherParameters) */, IWrapper_t29A9E044AAEEECE9E2FA8A8A61F76B0F50347B39_il2cpp_TypeInfo_var, L_7, (bool)1, L_10); // Asn1OctetString encryptedKey = new DerOctetString( // keyWrapper.Wrap(keyBytes, 0, keyBytes.Length)); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_11 = V_0; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_12 = V_0; NullCheck(L_12); NullCheck(L_7); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_13; L_13 = InterfaceFuncInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(2 /* System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IWrapper::Wrap(System.Byte[],System.Int32,System.Int32) */, IWrapper_t29A9E044AAEEECE9E2FA8A8A61F76B0F50347B39_il2cpp_TypeInfo_var, L_7, L_11, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))); DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75 * L_14 = (DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75 *)il2cpp_codegen_object_new(DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75_il2cpp_TypeInfo_var); DerOctetString__ctor_mBD13EC2203DF652C61E5AB45AE95CC51A22F0AF2(L_14, L_13, /*hidden argument*/NULL); V_1 = L_14; // return new RecipientInfo(new KekRecipientInfo(kekIdentifier, keyEncryptionAlgorithm, encryptedKey)); KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973 * L_15 = __this->get_kekIdentifier_3(); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_16 = __this->get_keyEncryptionAlgorithm_4(); Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_17 = V_1; KekRecipientInfo_t49DC4E62062A5E6E070BCBE2704D5AE43A4A7A25 * L_18 = (KekRecipientInfo_t49DC4E62062A5E6E070BCBE2704D5AE43A4A7A25 *)il2cpp_codegen_object_new(KekRecipientInfo_t49DC4E62062A5E6E070BCBE2704D5AE43A4A7A25_il2cpp_TypeInfo_var); KekRecipientInfo__ctor_m4D626470C0CE8DD4EF5146D0AA056C6BFBDFA032(L_18, L_15, L_16, L_17, /*hidden argument*/NULL); RecipientInfo_tAD4CBFD604399F45BD0D23A4C028E0FC88C19829 * L_19 = (RecipientInfo_tAD4CBFD604399F45BD0D23A4C028E0FC88C19829 *)il2cpp_codegen_object_new(RecipientInfo_tAD4CBFD604399F45BD0D23A4C028E0FC88C19829_il2cpp_TypeInfo_var); RecipientInfo__ctor_mE50610B87C069DAC135FECCE5E5FA3A6CC1E3ECE(L_19, L_18, /*hidden argument*/NULL); return L_19; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KekRecipientInfoGenerator::DetermineKeyEncAlg(System.String,BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.KeyParameter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * KekRecipientInfoGenerator_DetermineKeyEncAlg_m63A85C821965803C1EFBF641392B2A329AD74842 (String_t* ___algorithm0, KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * ___key1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerNull_t020168AF07318033108544C00C803CD7AEB97239_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KisaObjectIdentifiers_t898950CC3EDDC3A29B3AE5ADE24CBD51FF226455_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NttObjectIdentifiers_tC71ED857CCE3FB6613DDC764A2350C3561807317_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral18B74F30D80838D0CDF4092D72E6A4A0FE098B62); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral423ACA01AC170A50869ECDEF572CD96995576718); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAD0EAD579F4BA2AF0880E986F927DEA09057BEB6); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCC78FBA346DD9CACC26E52811943307C663B4A4A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE134CE3B47F0CA2291ABAA4D77503AC1B87A4F4B); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * V_1 = NULL; int32_t V_2 = 0; DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * V_3 = NULL; { // if (BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.StartsWith(algorithm, "DES")) String_t* L_0 = ___algorithm0; IL2CPP_RUNTIME_CLASS_INIT(Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var); bool L_1; L_1 = Platform_StartsWith_m5AAC2BD78907F92E332405AF241F612A5AF41524(L_0, _stringLiteralAD0EAD579F4BA2AF0880E986F927DEA09057BEB6, /*hidden argument*/NULL); if (!L_1) { goto IL_001d; } } { // return new AlgorithmIdentifier( // PkcsObjectIdentifiers.IdAlgCms3DesWrap, // DerNull.Instance); IL2CPP_RUNTIME_CLASS_INIT(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_2 = ((PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields*)il2cpp_codegen_static_fields_for(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var))->get_IdAlgCms3DesWrap_72(); IL2CPP_RUNTIME_CLASS_INIT(DerNull_t020168AF07318033108544C00C803CD7AEB97239_il2cpp_TypeInfo_var); DerNull_t020168AF07318033108544C00C803CD7AEB97239 * L_3 = ((DerNull_t020168AF07318033108544C00C803CD7AEB97239_StaticFields*)il2cpp_codegen_static_fields_for(DerNull_t020168AF07318033108544C00C803CD7AEB97239_il2cpp_TypeInfo_var))->get_Instance_2(); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_4 = (AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 *)il2cpp_codegen_object_new(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9_il2cpp_TypeInfo_var); AlgorithmIdentifier__ctor_m942B7921A63CC0139DAD59B57D2B41BBA20EF608(L_4, L_2, L_3, /*hidden argument*/NULL); return L_4; } IL_001d: { // else if (BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.StartsWith(algorithm, "RC2")) String_t* L_5 = ___algorithm0; IL2CPP_RUNTIME_CLASS_INIT(Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var); bool L_6; L_6 = Platform_StartsWith_m5AAC2BD78907F92E332405AF241F612A5AF41524(L_5, _stringLiteralE134CE3B47F0CA2291ABAA4D77503AC1B87A4F4B, /*hidden argument*/NULL); if (!L_6) { goto IL_003c; } } { // return new AlgorithmIdentifier( // PkcsObjectIdentifiers.IdAlgCmsRC2Wrap, // new DerInteger(58)); IL2CPP_RUNTIME_CLASS_INIT(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_7 = ((PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields*)il2cpp_codegen_static_fields_for(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var))->get_IdAlgCmsRC2Wrap_73(); DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * L_8 = (DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 *)il2cpp_codegen_object_new(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var); DerInteger__ctor_m014B0C2AADB00543E51D3621D5B93E030C47F6CA(L_8, ((int32_t)58), /*hidden argument*/NULL); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_9 = (AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 *)il2cpp_codegen_object_new(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9_il2cpp_TypeInfo_var); AlgorithmIdentifier__ctor_m942B7921A63CC0139DAD59B57D2B41BBA20EF608(L_9, L_7, L_8, /*hidden argument*/NULL); return L_9; } IL_003c: { // else if (BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.StartsWith(algorithm, "AES")) String_t* L_10 = ___algorithm0; IL2CPP_RUNTIME_CLASS_INIT(Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var); bool L_11; L_11 = Platform_StartsWith_m5AAC2BD78907F92E332405AF241F612A5AF41524(L_10, _stringLiteral423ACA01AC170A50869ECDEF572CD96995576718, /*hidden argument*/NULL); if (!L_11) { goto IL_0096; } } { // int length = key.GetKey().Length * 8; KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * L_12 = ___key1; NullCheck(L_12); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_13; L_13 = KeyParameter_GetKey_mCA2C132B43F669063C426602DD5A8A672531385A(L_12, /*hidden argument*/NULL); NullCheck(L_13); V_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_13)->max_length))), (int32_t)8)); // if (length == 128) int32_t L_14 = V_0; if ((!(((uint32_t)L_14) == ((uint32_t)((int32_t)128))))) { goto IL_0064; } } { // wrapOid = NistObjectIdentifiers.IdAes128Wrap; IL2CPP_RUNTIME_CLASS_INIT(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_15 = ((NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields*)il2cpp_codegen_static_fields_for(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var))->get_IdAes128Wrap_23(); V_1 = L_15; // } goto IL_008f; } IL_0064: { // else if (length == 192) int32_t L_16 = V_0; if ((!(((uint32_t)L_16) == ((uint32_t)((int32_t)192))))) { goto IL_0074; } } { // wrapOid = NistObjectIdentifiers.IdAes192Wrap; IL2CPP_RUNTIME_CLASS_INIT(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_17 = ((NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields*)il2cpp_codegen_static_fields_for(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var))->get_IdAes192Wrap_30(); V_1 = L_17; // } goto IL_008f; } IL_0074: { // else if (length == 256) int32_t L_18 = V_0; if ((!(((uint32_t)L_18) == ((uint32_t)((int32_t)256))))) { goto IL_0084; } } { // wrapOid = NistObjectIdentifiers.IdAes256Wrap; IL2CPP_RUNTIME_CLASS_INIT(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_19 = ((NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields*)il2cpp_codegen_static_fields_for(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var))->get_IdAes256Wrap_37(); V_1 = L_19; // } goto IL_008f; } IL_0084: { // throw new ArgumentException("illegal keysize in AES"); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_20 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_20, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCEFEBE181DB96E3DB1CFEEFD8512FFB5E6C8AB4B)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KekRecipientInfoGenerator_DetermineKeyEncAlg_m63A85C821965803C1EFBF641392B2A329AD74842_RuntimeMethod_var))); } IL_008f: { // return new AlgorithmIdentifier(wrapOid); // parameters absent DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_21 = V_1; AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_22 = (AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 *)il2cpp_codegen_object_new(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9_il2cpp_TypeInfo_var); AlgorithmIdentifier__ctor_mA45787B3AB8C719957BA61423CD3FA852BFB5AE3(L_22, L_21, /*hidden argument*/NULL); return L_22; } IL_0096: { // else if (BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.StartsWith(algorithm, "SEED")) String_t* L_23 = ___algorithm0; IL2CPP_RUNTIME_CLASS_INIT(Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var); bool L_24; L_24 = Platform_StartsWith_m5AAC2BD78907F92E332405AF241F612A5AF41524(L_23, _stringLiteral18B74F30D80838D0CDF4092D72E6A4A0FE098B62, /*hidden argument*/NULL); if (!L_24) { goto IL_00ae; } } { // return new AlgorithmIdentifier(KisaObjectIdentifiers.IdNpkiAppCmsSeedWrap); IL2CPP_RUNTIME_CLASS_INIT(KisaObjectIdentifiers_t898950CC3EDDC3A29B3AE5ADE24CBD51FF226455_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_25 = ((KisaObjectIdentifiers_t898950CC3EDDC3A29B3AE5ADE24CBD51FF226455_StaticFields*)il2cpp_codegen_static_fields_for(KisaObjectIdentifiers_t898950CC3EDDC3A29B3AE5ADE24CBD51FF226455_il2cpp_TypeInfo_var))->get_IdNpkiAppCmsSeedWrap_1(); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_26 = (AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 *)il2cpp_codegen_object_new(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9_il2cpp_TypeInfo_var); AlgorithmIdentifier__ctor_mA45787B3AB8C719957BA61423CD3FA852BFB5AE3(L_26, L_25, /*hidden argument*/NULL); return L_26; } IL_00ae: { // else if (BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.StartsWith(algorithm, "CAMELLIA")) String_t* L_27 = ___algorithm0; IL2CPP_RUNTIME_CLASS_INIT(Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var); bool L_28; L_28 = Platform_StartsWith_m5AAC2BD78907F92E332405AF241F612A5AF41524(L_27, _stringLiteralCC78FBA346DD9CACC26E52811943307C663B4A4A, /*hidden argument*/NULL); if (!L_28) { goto IL_0108; } } { // int length = key.GetKey().Length * 8; KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * L_29 = ___key1; NullCheck(L_29); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_30; L_30 = KeyParameter_GetKey_mCA2C132B43F669063C426602DD5A8A672531385A(L_29, /*hidden argument*/NULL); NullCheck(L_30); V_2 = ((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_30)->max_length))), (int32_t)8)); // if (length == 128) int32_t L_31 = V_2; if ((!(((uint32_t)L_31) == ((uint32_t)((int32_t)128))))) { goto IL_00d6; } } { // wrapOid = NttObjectIdentifiers.IdCamellia128Wrap; IL2CPP_RUNTIME_CLASS_INIT(NttObjectIdentifiers_tC71ED857CCE3FB6613DDC764A2350C3561807317_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_32 = ((NttObjectIdentifiers_tC71ED857CCE3FB6613DDC764A2350C3561807317_StaticFields*)il2cpp_codegen_static_fields_for(NttObjectIdentifiers_tC71ED857CCE3FB6613DDC764A2350C3561807317_il2cpp_TypeInfo_var))->get_IdCamellia128Wrap_3(); V_3 = L_32; // } goto IL_0101; } IL_00d6: { // else if (length == 192) int32_t L_33 = V_2; if ((!(((uint32_t)L_33) == ((uint32_t)((int32_t)192))))) { goto IL_00e6; } } { // wrapOid = NttObjectIdentifiers.IdCamellia192Wrap; IL2CPP_RUNTIME_CLASS_INIT(NttObjectIdentifiers_tC71ED857CCE3FB6613DDC764A2350C3561807317_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_34 = ((NttObjectIdentifiers_tC71ED857CCE3FB6613DDC764A2350C3561807317_StaticFields*)il2cpp_codegen_static_fields_for(NttObjectIdentifiers_tC71ED857CCE3FB6613DDC764A2350C3561807317_il2cpp_TypeInfo_var))->get_IdCamellia192Wrap_4(); V_3 = L_34; // } goto IL_0101; } IL_00e6: { // else if (length == 256) int32_t L_35 = V_2; if ((!(((uint32_t)L_35) == ((uint32_t)((int32_t)256))))) { goto IL_00f6; } } { // wrapOid = NttObjectIdentifiers.IdCamellia256Wrap; IL2CPP_RUNTIME_CLASS_INIT(NttObjectIdentifiers_tC71ED857CCE3FB6613DDC764A2350C3561807317_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_36 = ((NttObjectIdentifiers_tC71ED857CCE3FB6613DDC764A2350C3561807317_StaticFields*)il2cpp_codegen_static_fields_for(NttObjectIdentifiers_tC71ED857CCE3FB6613DDC764A2350C3561807317_il2cpp_TypeInfo_var))->get_IdCamellia256Wrap_5(); V_3 = L_36; // } goto IL_0101; } IL_00f6: { // throw new ArgumentException("illegal keysize in Camellia"); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_37 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_37, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4A8398B267DBE41D932C3F3186724F2B37F98030)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_37, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KekRecipientInfoGenerator_DetermineKeyEncAlg_m63A85C821965803C1EFBF641392B2A329AD74842_RuntimeMethod_var))); } IL_0101: { // return new AlgorithmIdentifier(wrapOid); // parameters must be absent DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_38 = V_3; AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_39 = (AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 *)il2cpp_codegen_object_new(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9_il2cpp_TypeInfo_var); AlgorithmIdentifier__ctor_mA45787B3AB8C719957BA61423CD3FA852BFB5AE3(L_39, L_38, /*hidden argument*/NULL); return L_39; } IL_0108: { // throw new ArgumentException("unknown algorithm"); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_40 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_40, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4684A5E737B3007805909778461B3450C84C9C61)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_40, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KekRecipientInfoGenerator_DetermineKeyEncAlg_m63A85C821965803C1EFBF641392B2A329AD74842_RuntimeMethod_var))); } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KekRecipientInfoGenerator::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KekRecipientInfoGenerator__cctor_mB9B4AC88BD3B25CE4D47CA480A679072137625DE (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CmsEnvelopedHelper_t4C541C5858FDC5D5FEFBEF5BB39D1E55C9319BF0_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KekRecipientInfoGenerator_t1EADCDF1D7A6EA36646F881F5090E1AF7340FDE2_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // private static readonly CmsEnvelopedHelper Helper = CmsEnvelopedHelper.Instance; IL2CPP_RUNTIME_CLASS_INIT(CmsEnvelopedHelper_t4C541C5858FDC5D5FEFBEF5BB39D1E55C9319BF0_il2cpp_TypeInfo_var); CmsEnvelopedHelper_t4C541C5858FDC5D5FEFBEF5BB39D1E55C9319BF0 * L_0 = ((CmsEnvelopedHelper_t4C541C5858FDC5D5FEFBEF5BB39D1E55C9319BF0_StaticFields*)il2cpp_codegen_static_fields_for(CmsEnvelopedHelper_t4C541C5858FDC5D5FEFBEF5BB39D1E55C9319BF0_il2cpp_TypeInfo_var))->get_Instance_0(); ((KekRecipientInfoGenerator_t1EADCDF1D7A6EA36646F881F5090E1AF7340FDE2_StaticFields*)il2cpp_codegen_static_fields_for(KekRecipientInfoGenerator_t1EADCDF1D7A6EA36646F881F5090E1AF7340FDE2_il2cpp_TypeInfo_var))->set_Helper_0(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KekRecipientInformation::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KekRecipientInfo,BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsSecureReadable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KekRecipientInformation__ctor_mF49CCD33197B37B6EBC7AB05F73D1754DD604260 (KekRecipientInformation_t7580B68697441E129CA62DCCBBC56046D11C5320 * __this, KekRecipientInfo_t49DC4E62062A5E6E070BCBE2704D5AE43A4A7A25 * ___info0, RuntimeObject* ___secureReadable1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RecipientID_t744700C1480DE017B5D0AB81C6A1044A8C400125_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973 * V_0 = NULL; { // : base(info.KeyEncryptionAlgorithm, secureReadable) KekRecipientInfo_t49DC4E62062A5E6E070BCBE2704D5AE43A4A7A25 * L_0 = ___info0; NullCheck(L_0); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_1; L_1 = KekRecipientInfo_get_KeyEncryptionAlgorithm_m71694E9DAB5E4EA5BAF3D026B903143B14992D2B_inline(L_0, /*hidden argument*/NULL); RuntimeObject* L_2 = ___secureReadable1; RecipientInformation__ctor_mA31EB17784907EB7929804AEC96F383AC7C7C8BC(__this, L_1, L_2, /*hidden argument*/NULL); // this.info = info; KekRecipientInfo_t49DC4E62062A5E6E070BCBE2704D5AE43A4A7A25 * L_3 = ___info0; __this->set_info_4(L_3); // this.rid = new RecipientID(); RecipientID_t744700C1480DE017B5D0AB81C6A1044A8C400125 * L_4 = (RecipientID_t744700C1480DE017B5D0AB81C6A1044A8C400125 *)il2cpp_codegen_object_new(RecipientID_t744700C1480DE017B5D0AB81C6A1044A8C400125_il2cpp_TypeInfo_var); RecipientID__ctor_m30284CC4BE38EB6ADBE38A88570543213285A349(L_4, /*hidden argument*/NULL); ((RecipientInformation_tB02D0534E5C0851FB482467BA26A52FAD2F853AB *)__this)->set_rid_0(L_4); // KekIdentifier kekId = info.KekID; KekRecipientInfo_t49DC4E62062A5E6E070BCBE2704D5AE43A4A7A25 * L_5 = ___info0; NullCheck(L_5); KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973 * L_6; L_6 = KekRecipientInfo_get_KekID_mFDEA56B9B41F238F47CE50D2D245727C2B79717E_inline(L_5, /*hidden argument*/NULL); V_0 = L_6; // rid.KeyIdentifier = kekId.KeyIdentifier.GetOctets(); RecipientID_t744700C1480DE017B5D0AB81C6A1044A8C400125 * L_7 = ((RecipientInformation_tB02D0534E5C0851FB482467BA26A52FAD2F853AB *)__this)->get_rid_0(); KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973 * L_8 = V_0; NullCheck(L_8); Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_9; L_9 = KekIdentifier_get_KeyIdentifier_mBB47FC76F62C7B823281E2F43DDA5348DE3CF7FB_inline(L_8, /*hidden argument*/NULL); NullCheck(L_9); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_10; L_10 = VirtualFuncInvoker0< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(10 /* System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString::GetOctets() */, L_9); NullCheck(L_7); RecipientID_set_KeyIdentifier_mECBC820BCA677073642EA311171E9E2E5B2C10CA(L_7, L_10, /*hidden argument*/NULL); // } return; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsTypedStream BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KekRecipientInformation::GetContentStream(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ICipherParameters) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CmsTypedStream_t73EEA14F539B2D9626982E55116A232F30D73A21 * KekRecipientInformation_GetContentStream_m1F44536048334A83B0D96FBC1CE6AD170DBE2443 (KekRecipientInformation_t7580B68697441E129CA62DCCBBC56046D11C5320 * __this, RuntimeObject* ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IWrapper_t29A9E044AAEEECE9E2FA8A8A61F76B0F50347B39_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ParameterUtilities_t234D0F218EFEF9117357F420840DDED9D44E2FD8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WrapperUtilities_tA8773B79845F802BD564227F81CD5EF74C553416_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_0 = NULL; RuntimeObject* V_1 = NULL; KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * V_2 = NULL; CmsTypedStream_t73EEA14F539B2D9626982E55116A232F30D73A21 * V_3 = NULL; SecurityUtilityException_t302EB7051FEB04E7829C028B4BC072B6664255CA * V_4 = NULL; InvalidKeyException_t7F19EE8EB26000BAFDF50186FB1DD59F13A7FD8A * V_5 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; IL_0000: try {// begin try (depth: 1) // byte[] encryptedKey = info.EncryptedKey.GetOctets(); KekRecipientInfo_t49DC4E62062A5E6E070BCBE2704D5AE43A4A7A25 * L_0 = __this->get_info_4(); NullCheck(L_0); Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_1; L_1 = KekRecipientInfo_get_EncryptedKey_mA9A93096DAB4F1D684D70167B84B0A25DF310A0C_inline(L_0, /*hidden argument*/NULL); NullCheck(L_1); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2; L_2 = VirtualFuncInvoker0< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(10 /* System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString::GetOctets() */, L_1); V_0 = L_2; // IWrapper keyWrapper = WrapperUtilities.GetWrapper(keyEncAlg.Algorithm.Id); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_3 = ((RecipientInformation_tB02D0534E5C0851FB482467BA26A52FAD2F853AB *)__this)->get_keyEncAlg_1(); NullCheck(L_3); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_4; L_4 = VirtualFuncInvoker0< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * >::Invoke(6 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier::get_Algorithm() */, L_3); NullCheck(L_4); String_t* L_5; L_5 = DerObjectIdentifier_get_Id_m1A4618B1F7ED8630EDC76DF95D8C7086F1E616D6_inline(L_4, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(WrapperUtilities_tA8773B79845F802BD564227F81CD5EF74C553416_il2cpp_TypeInfo_var); RuntimeObject* L_6; L_6 = WrapperUtilities_GetWrapper_mBD3F21889F0902E5321CD22D3CCE7C6D09B89A65(L_5, /*hidden argument*/NULL); V_1 = L_6; // keyWrapper.Init(false, key); RuntimeObject* L_7 = V_1; RuntimeObject* L_8 = ___key0; NullCheck(L_7); InterfaceActionInvoker2< bool, RuntimeObject* >::Invoke(1 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IWrapper::Init(System.Boolean,BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ICipherParameters) */, IWrapper_t29A9E044AAEEECE9E2FA8A8A61F76B0F50347B39_il2cpp_TypeInfo_var, L_7, (bool)0, L_8); // KeyParameter sKey = ParameterUtilities.CreateKeyParameter( // GetContentAlgorithmName(), keyWrapper.Unwrap(encryptedKey, 0, encryptedKey.Length)); String_t* L_9; L_9 = RecipientInformation_GetContentAlgorithmName_m64C76DBDEBDB6A3BE04DEA51EA8B54FE664126BD(__this, /*hidden argument*/NULL); RuntimeObject* L_10 = V_1; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_11 = V_0; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_12 = V_0; NullCheck(L_12); NullCheck(L_10); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_13; L_13 = InterfaceFuncInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(3 /* System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IWrapper::Unwrap(System.Byte[],System.Int32,System.Int32) */, IWrapper_t29A9E044AAEEECE9E2FA8A8A61F76B0F50347B39_il2cpp_TypeInfo_var, L_10, L_11, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))); IL2CPP_RUNTIME_CLASS_INIT(ParameterUtilities_t234D0F218EFEF9117357F420840DDED9D44E2FD8_il2cpp_TypeInfo_var); KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * L_14; L_14 = ParameterUtilities_CreateKeyParameter_m19FF8F5D0988B47EDF2D296740F966424DE6D877(L_9, L_13, /*hidden argument*/NULL); V_2 = L_14; // return GetContentFromSessionKey(sKey); KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * L_15 = V_2; CmsTypedStream_t73EEA14F539B2D9626982E55116A232F30D73A21 * L_16; L_16 = RecipientInformation_GetContentFromSessionKey_m0C29E269759D7B87B5D1B84BC1D636DE0E21166A(__this, L_15, /*hidden argument*/NULL); V_3 = L_16; goto IL_006e; }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SecurityUtilityException_t302EB7051FEB04E7829C028B4BC072B6664255CA_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0050; } if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidKeyException_t7F19EE8EB26000BAFDF50186FB1DD59F13A7FD8A_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_005f; } throw e; } CATCH_0050: {// begin catch(BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecurityUtilityException) // catch (SecurityUtilityException e) V_4 = ((SecurityUtilityException_t302EB7051FEB04E7829C028B4BC072B6664255CA *)IL2CPP_GET_ACTIVE_EXCEPTION(SecurityUtilityException_t302EB7051FEB04E7829C028B4BC072B6664255CA *)); // throw new CmsException("couldn't create cipher.", e); SecurityUtilityException_t302EB7051FEB04E7829C028B4BC072B6664255CA * L_17 = V_4; CmsException_tA459F99D1C6C93528CDEC8BBB289A932766EC3DE * L_18 = (CmsException_tA459F99D1C6C93528CDEC8BBB289A932766EC3DE *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CmsException_tA459F99D1C6C93528CDEC8BBB289A932766EC3DE_il2cpp_TypeInfo_var))); CmsException__ctor_m809D9B85B996E0F6DC9AA0AD774D54178AC5698B(L_18, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral01F92A55E0C4F71D4AC7BF5ADA2134AD7132F1AC)), L_17, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_18, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KekRecipientInformation_GetContentStream_m1F44536048334A83B0D96FBC1CE6AD170DBE2443_RuntimeMethod_var))); }// end catch (depth: 1) CATCH_005f: {// begin catch(BestHTTP.SecureProtocol.Org.BouncyCastle.Security.InvalidKeyException) // catch (InvalidKeyException e) V_5 = ((InvalidKeyException_t7F19EE8EB26000BAFDF50186FB1DD59F13A7FD8A *)IL2CPP_GET_ACTIVE_EXCEPTION(InvalidKeyException_t7F19EE8EB26000BAFDF50186FB1DD59F13A7FD8A *)); // throw new CmsException("key invalid in message.", e); InvalidKeyException_t7F19EE8EB26000BAFDF50186FB1DD59F13A7FD8A * L_19 = V_5; CmsException_tA459F99D1C6C93528CDEC8BBB289A932766EC3DE * L_20 = (CmsException_tA459F99D1C6C93528CDEC8BBB289A932766EC3DE *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CmsException_tA459F99D1C6C93528CDEC8BBB289A932766EC3DE_il2cpp_TypeInfo_var))); CmsException__ctor_m809D9B85B996E0F6DC9AA0AD774D54178AC5698B(L_20, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBE27790FE5F9592709AE1519C66D48EF4947F953)), L_19, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KekRecipientInformation_GetContentStream_m1F44536048334A83B0D96FBC1CE6AD170DBE2443_RuntimeMethod_var))); }// end catch (depth: 1) IL_006e: { // } CmsTypedStream_t73EEA14F539B2D9626982E55116A232F30D73A21 * L_21 = V_3; return L_21; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientIdentifier::GetInstance(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyAgreeRecipientIdentifier_tBA5E98B2A6C72F3799020F0A9D1C465116A7A28A * KeyAgreeRecipientIdentifier_GetInstance_m16184FBA5956746806CBDD3E1D0CC07C11AFA348 (Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0 * ___obj0, bool ___isExplicit1, const RuntimeMethod* method) { { // return GetInstance(Asn1Sequence.GetInstance(obj, isExplicit)); Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0 * L_0 = ___obj0; bool L_1 = ___isExplicit1; Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_2; L_2 = Asn1Sequence_GetInstance_m682AEF9FD99CABE589DF0AA4DB2CAC4996AEFD25(L_0, L_1, /*hidden argument*/NULL); KeyAgreeRecipientIdentifier_tBA5E98B2A6C72F3799020F0A9D1C465116A7A28A * L_3; L_3 = KeyAgreeRecipientIdentifier_GetInstance_m44055CD839221933702BE316BDF3593DFA5457EB(L_2, /*hidden argument*/NULL); return L_3; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientIdentifier::GetInstance(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyAgreeRecipientIdentifier_tBA5E98B2A6C72F3799020F0A9D1C465116A7A28A * KeyAgreeRecipientIdentifier_GetInstance_m44055CD839221933702BE316BDF3593DFA5457EB (RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyAgreeRecipientIdentifier_tBA5E98B2A6C72F3799020F0A9D1C465116A7A28A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (obj == null || obj is KeyAgreeRecipientIdentifier) RuntimeObject * L_0 = ___obj0; if (!L_0) { goto IL_000b; } } { RuntimeObject * L_1 = ___obj0; if (!((KeyAgreeRecipientIdentifier_tBA5E98B2A6C72F3799020F0A9D1C465116A7A28A *)IsInstClass((RuntimeObject*)L_1, KeyAgreeRecipientIdentifier_tBA5E98B2A6C72F3799020F0A9D1C465116A7A28A_il2cpp_TypeInfo_var))) { goto IL_0012; } } IL_000b: { // return (KeyAgreeRecipientIdentifier)obj; RuntimeObject * L_2 = ___obj0; return ((KeyAgreeRecipientIdentifier_tBA5E98B2A6C72F3799020F0A9D1C465116A7A28A *)CastclassClass((RuntimeObject*)L_2, KeyAgreeRecipientIdentifier_tBA5E98B2A6C72F3799020F0A9D1C465116A7A28A_il2cpp_TypeInfo_var)); } IL_0012: { // if (obj is Asn1Sequence) RuntimeObject * L_3 = ___obj0; if (!((Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 *)IsInstClass((RuntimeObject*)L_3, Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8_il2cpp_TypeInfo_var))) { goto IL_0026; } } { // return new KeyAgreeRecipientIdentifier(IssuerAndSerialNumber.GetInstance(obj)); RuntimeObject * L_4 = ___obj0; IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64 * L_5; L_5 = IssuerAndSerialNumber_GetInstance_mF4A4D4DB8052366CCFE5E77930352FB0A3725E5B(L_4, /*hidden argument*/NULL); KeyAgreeRecipientIdentifier_tBA5E98B2A6C72F3799020F0A9D1C465116A7A28A * L_6 = (KeyAgreeRecipientIdentifier_tBA5E98B2A6C72F3799020F0A9D1C465116A7A28A *)il2cpp_codegen_object_new(KeyAgreeRecipientIdentifier_tBA5E98B2A6C72F3799020F0A9D1C465116A7A28A_il2cpp_TypeInfo_var); KeyAgreeRecipientIdentifier__ctor_m67BB86FD5400A9E8A8C6D228195EBA61510FEAB8(L_6, L_5, /*hidden argument*/NULL); return L_6; } IL_0026: { // if (obj is Asn1TaggedObject && ((Asn1TaggedObject)obj).TagNo == 0) RuntimeObject * L_7 = ___obj0; if (!((Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0 *)IsInstClass((RuntimeObject*)L_7, Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0_il2cpp_TypeInfo_var))) { goto IL_004d; } } { RuntimeObject * L_8 = ___obj0; NullCheck(((Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0 *)CastclassClass((RuntimeObject*)L_8, Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0_il2cpp_TypeInfo_var))); int32_t L_9; L_9 = Asn1TaggedObject_get_TagNo_m74349C4325A7ADC53200F7A483A878E6B9D53379_inline(((Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0 *)CastclassClass((RuntimeObject*)L_8, Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_9) { goto IL_004d; } } { // return new KeyAgreeRecipientIdentifier(RecipientKeyIdentifier.GetInstance( // (Asn1TaggedObject)obj, false)); RuntimeObject * L_10 = ___obj0; RecipientKeyIdentifier_tCDD2B03857B94474CBA49C1E4FDC30DA4C26F492 * L_11; L_11 = RecipientKeyIdentifier_GetInstance_m38BC74DA83013EDACB53B09A44F378120DBD363E(((Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0 *)CastclassClass((RuntimeObject*)L_10, Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0_il2cpp_TypeInfo_var)), (bool)0, /*hidden argument*/NULL); KeyAgreeRecipientIdentifier_tBA5E98B2A6C72F3799020F0A9D1C465116A7A28A * L_12 = (KeyAgreeRecipientIdentifier_tBA5E98B2A6C72F3799020F0A9D1C465116A7A28A *)il2cpp_codegen_object_new(KeyAgreeRecipientIdentifier_tBA5E98B2A6C72F3799020F0A9D1C465116A7A28A_il2cpp_TypeInfo_var); KeyAgreeRecipientIdentifier__ctor_m90F47432A825D91FD121F8612CA611FE67830A98(L_12, L_11, /*hidden argument*/NULL); return L_12; } IL_004d: { // throw new ArgumentException("Invalid KeyAgreeRecipientIdentifier: " + BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.GetTypeName(obj), "obj"); RuntimeObject * L_13 = ___obj0; IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var))); String_t* L_14; L_14 = Platform_GetTypeName_m6EE4C5C80014DB651B39EAA755D394E21009EADB(L_13, /*hidden argument*/NULL); String_t* L_15; L_15 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral250AFEECD2B40C963C8D4B4A34FC18CD10B820F9)), L_14, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_16 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_16, L_15, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral690BF02630AC0BD6AA6BD08D2C36A28E1FC54F3E)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeyAgreeRecipientIdentifier_GetInstance_m44055CD839221933702BE316BDF3593DFA5457EB_RuntimeMethod_var))); } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientIdentifier::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyAgreeRecipientIdentifier__ctor_m67BB86FD5400A9E8A8C6D228195EBA61510FEAB8 (KeyAgreeRecipientIdentifier_tBA5E98B2A6C72F3799020F0A9D1C465116A7A28A * __this, IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64 * ___issuerSerial0, const RuntimeMethod* method) { { // public KeyAgreeRecipientIdentifier( // IssuerAndSerialNumber issuerSerial) Asn1Encodable__ctor_mF956C9DAF4A126B7B4406E2DD0EED16E64ABA126(__this, /*hidden argument*/NULL); // this.issuerSerial = issuerSerial; IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64 * L_0 = ___issuerSerial0; __this->set_issuerSerial_2(L_0); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientIdentifier::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.RecipientKeyIdentifier) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyAgreeRecipientIdentifier__ctor_m90F47432A825D91FD121F8612CA611FE67830A98 (KeyAgreeRecipientIdentifier_tBA5E98B2A6C72F3799020F0A9D1C465116A7A28A * __this, RecipientKeyIdentifier_tCDD2B03857B94474CBA49C1E4FDC30DA4C26F492 * ___rKeyID0, const RuntimeMethod* method) { { // public KeyAgreeRecipientIdentifier( // RecipientKeyIdentifier rKeyID) Asn1Encodable__ctor_mF956C9DAF4A126B7B4406E2DD0EED16E64ABA126(__this, /*hidden argument*/NULL); // this.rKeyID = rKeyID; RecipientKeyIdentifier_tCDD2B03857B94474CBA49C1E4FDC30DA4C26F492 * L_0 = ___rKeyID0; __this->set_rKeyID_3(L_0); // } return; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientIdentifier::get_IssuerAndSerialNumber() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64 * KeyAgreeRecipientIdentifier_get_IssuerAndSerialNumber_mE5BF14ED071126E538E4323774F1EBEB9D65F6EE (KeyAgreeRecipientIdentifier_tBA5E98B2A6C72F3799020F0A9D1C465116A7A28A * __this, const RuntimeMethod* method) { { // get { return issuerSerial; } IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64 * L_0 = __this->get_issuerSerial_2(); return L_0; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.RecipientKeyIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientIdentifier::get_RKeyID() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RecipientKeyIdentifier_tCDD2B03857B94474CBA49C1E4FDC30DA4C26F492 * KeyAgreeRecipientIdentifier_get_RKeyID_m70C71C5CC9C18FDC5BF4DE679B3BC8EE579A992C (KeyAgreeRecipientIdentifier_tBA5E98B2A6C72F3799020F0A9D1C465116A7A28A * __this, const RuntimeMethod* method) { { // get { return rKeyID; } RecipientKeyIdentifier_tCDD2B03857B94474CBA49C1E4FDC30DA4C26F492 * L_0 = __this->get_rKeyID_3(); return L_0; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Object BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientIdentifier::ToAsn1Object() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * KeyAgreeRecipientIdentifier_ToAsn1Object_mA42EEB5DBF28C63ED0A6019AF7F7E41C0A485B52 (KeyAgreeRecipientIdentifier_tBA5E98B2A6C72F3799020F0A9D1C465116A7A28A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerTaggedObject_t88BB573E2BED5C1D2971741E012BB29FB0EB0C5E_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (issuerSerial != null) IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64 * L_0 = __this->get_issuerSerial_2(); if (!L_0) { goto IL_0014; } } { // return issuerSerial.ToAsn1Object(); IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64 * L_1 = __this->get_issuerSerial_2(); NullCheck(L_1); Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * L_2; L_2 = VirtualFuncInvoker0< Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * >::Invoke(5 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Object BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable::ToAsn1Object() */, L_1); return L_2; } IL_0014: { // return new DerTaggedObject(false, 0, rKeyID); RecipientKeyIdentifier_tCDD2B03857B94474CBA49C1E4FDC30DA4C26F492 * L_3 = __this->get_rKeyID_3(); DerTaggedObject_t88BB573E2BED5C1D2971741E012BB29FB0EB0C5E * L_4 = (DerTaggedObject_t88BB573E2BED5C1D2971741E012BB29FB0EB0C5E *)il2cpp_codegen_object_new(DerTaggedObject_t88BB573E2BED5C1D2971741E012BB29FB0EB0C5E_il2cpp_TypeInfo_var); DerTaggedObject__ctor_m38581F2DCD1C43EC659CD31CDDAB0A43FD42522F(L_4, (bool)0, 0, L_3, /*hidden argument*/NULL); return L_4; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.OriginatorIdentifierOrKey,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyAgreeRecipientInfo__ctor_mFD2D5F7D14E77519F44FADBF8BBE0CDBF52255E5 (KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC * __this, OriginatorIdentifierOrKey_t391EC78D0FD29ED45DCF5BFF9AC5BABA8A005603 * ___originator0, Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * ___ukm1, AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___keyEncryptionAlgorithm2, Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * ___recipientEncryptedKeys3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public KeyAgreeRecipientInfo( // OriginatorIdentifierOrKey originator, // Asn1OctetString ukm, // AlgorithmIdentifier keyEncryptionAlgorithm, // Asn1Sequence recipientEncryptedKeys) Asn1Encodable__ctor_mF956C9DAF4A126B7B4406E2DD0EED16E64ABA126(__this, /*hidden argument*/NULL); // this.version = new DerInteger(3); DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * L_0 = (DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 *)il2cpp_codegen_object_new(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var); DerInteger__ctor_m014B0C2AADB00543E51D3621D5B93E030C47F6CA(L_0, 3, /*hidden argument*/NULL); __this->set_version_2(L_0); // this.originator = originator; OriginatorIdentifierOrKey_t391EC78D0FD29ED45DCF5BFF9AC5BABA8A005603 * L_1 = ___originator0; __this->set_originator_3(L_1); // this.ukm = ukm; Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_2 = ___ukm1; __this->set_ukm_4(L_2); // this.keyEncryptionAlgorithm = keyEncryptionAlgorithm; AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_3 = ___keyEncryptionAlgorithm2; __this->set_keyEncryptionAlgorithm_5(L_3); // this.recipientEncryptedKeys = recipientEncryptedKeys; Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_4 = ___recipientEncryptedKeys3; __this->set_recipientEncryptedKeys_6(L_4); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyAgreeRecipientInfo__ctor_m68DA2439FBC402DBBBA801F06B9504CCDBB3158D (KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC * __this, Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * ___seq0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { // public KeyAgreeRecipientInfo( // Asn1Sequence seq) Asn1Encodable__ctor_mF956C9DAF4A126B7B4406E2DD0EED16E64ABA126(__this, /*hidden argument*/NULL); // int index = 0; V_0 = 0; // version = (DerInteger) seq[index++]; Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_0 = ___seq0; int32_t L_1 = V_0; int32_t L_2 = L_1; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1)); NullCheck(L_0); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_3; L_3 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_0, L_2); __this->set_version_2(((DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 *)CastclassClass((RuntimeObject*)L_3, DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var))); // originator = OriginatorIdentifierOrKey.GetInstance( // (Asn1TaggedObject) seq[index++], true); Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_4 = ___seq0; int32_t L_5 = V_0; int32_t L_6 = L_5; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1)); NullCheck(L_4); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_7; L_7 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_4, L_6); OriginatorIdentifierOrKey_t391EC78D0FD29ED45DCF5BFF9AC5BABA8A005603 * L_8; L_8 = OriginatorIdentifierOrKey_GetInstance_m9C751897E52FBE139A39FFE3373960302AC39E5B(((Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0 *)CastclassClass((RuntimeObject*)L_7, Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0_il2cpp_TypeInfo_var)), (bool)1, /*hidden argument*/NULL); __this->set_originator_3(L_8); // if (seq[index] is Asn1TaggedObject) Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_9 = ___seq0; int32_t L_10 = V_0; NullCheck(L_9); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_11; L_11 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_9, L_10); if (!((Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0 *)IsInstClass((RuntimeObject*)L_11, Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0_il2cpp_TypeInfo_var))) { goto IL_0064; } } { // ukm = Asn1OctetString.GetInstance( // (Asn1TaggedObject) seq[index++], true); Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_12 = ___seq0; int32_t L_13 = V_0; int32_t L_14 = L_13; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1)); NullCheck(L_12); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_15; L_15 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_12, L_14); Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_16; L_16 = Asn1OctetString_GetInstance_mAECCD06314FEB51EF6B730853C8DBC1FC4BE2FEA(((Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0 *)CastclassClass((RuntimeObject*)L_15, Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0_il2cpp_TypeInfo_var)), (bool)1, /*hidden argument*/NULL); __this->set_ukm_4(L_16); } IL_0064: { // keyEncryptionAlgorithm = AlgorithmIdentifier.GetInstance( // seq[index++]); Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_17 = ___seq0; int32_t L_18 = V_0; int32_t L_19 = L_18; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)1)); NullCheck(L_17); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_20; L_20 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_17, L_19); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_21; L_21 = AlgorithmIdentifier_GetInstance_m72ED3229FC5112CA144FA81CC150D686073B3964(L_20, /*hidden argument*/NULL); __this->set_keyEncryptionAlgorithm_5(L_21); // recipientEncryptedKeys = (Asn1Sequence) seq[index++]; Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_22 = ___seq0; int32_t L_23 = V_0; int32_t L_24 = L_23; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1)); NullCheck(L_22); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_25; L_25 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_22, L_24); __this->set_recipientEncryptedKeys_6(((Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 *)CastclassClass((RuntimeObject*)L_25, Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8_il2cpp_TypeInfo_var))); // } return; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo::GetInstance(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC * KeyAgreeRecipientInfo_GetInstance_m8F24C40B9656A7838E4C07B18FB43CFD574FA2F4 (Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0 * ___obj0, bool ___explicitly1, const RuntimeMethod* method) { { // return GetInstance(Asn1Sequence.GetInstance(obj, explicitly)); Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0 * L_0 = ___obj0; bool L_1 = ___explicitly1; Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_2; L_2 = Asn1Sequence_GetInstance_m682AEF9FD99CABE589DF0AA4DB2CAC4996AEFD25(L_0, L_1, /*hidden argument*/NULL); KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC * L_3; L_3 = KeyAgreeRecipientInfo_GetInstance_mCE18116F2686F0464E25B968F0963C73CE357233(L_2, /*hidden argument*/NULL); return L_3; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo::GetInstance(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC * KeyAgreeRecipientInfo_GetInstance_mCE18116F2686F0464E25B968F0963C73CE357233 (RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (obj == null || obj is KeyAgreeRecipientInfo) RuntimeObject * L_0 = ___obj0; if (!L_0) { goto IL_000b; } } { RuntimeObject * L_1 = ___obj0; if (!((KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC *)IsInstClass((RuntimeObject*)L_1, KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC_il2cpp_TypeInfo_var))) { goto IL_0012; } } IL_000b: { // return (KeyAgreeRecipientInfo)obj; RuntimeObject * L_2 = ___obj0; return ((KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC *)CastclassClass((RuntimeObject*)L_2, KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC_il2cpp_TypeInfo_var)); } IL_0012: { // if (obj is Asn1Sequence) RuntimeObject * L_3 = ___obj0; if (!((Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 *)IsInstClass((RuntimeObject*)L_3, Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8_il2cpp_TypeInfo_var))) { goto IL_0026; } } { // return new KeyAgreeRecipientInfo((Asn1Sequence)obj); RuntimeObject * L_4 = ___obj0; KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC * L_5 = (KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC *)il2cpp_codegen_object_new(KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC_il2cpp_TypeInfo_var); KeyAgreeRecipientInfo__ctor_m68DA2439FBC402DBBBA801F06B9504CCDBB3158D(L_5, ((Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 *)CastclassClass((RuntimeObject*)L_4, Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return L_5; } IL_0026: { // throw new ArgumentException( // "Illegal object in KeyAgreeRecipientInfo: " + BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.GetTypeName(obj)); RuntimeObject * L_6 = ___obj0; IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var))); String_t* L_7; L_7 = Platform_GetTypeName_m6EE4C5C80014DB651B39EAA755D394E21009EADB(L_6, /*hidden argument*/NULL); String_t* L_8; L_8 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB889DA3842BBC00408ACCA715986B232FC2C0286)), L_7, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_9 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_9, L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeyAgreeRecipientInfo_GetInstance_mCE18116F2686F0464E25B968F0963C73CE357233_RuntimeMethod_var))); } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo::get_Version() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * KeyAgreeRecipientInfo_get_Version_m77AFD3D087BB0D4801528162A5A274CC2D998958 (KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC * __this, const RuntimeMethod* method) { { // get { return version; } DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * L_0 = __this->get_version_2(); return L_0; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.OriginatorIdentifierOrKey BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo::get_Originator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR OriginatorIdentifierOrKey_t391EC78D0FD29ED45DCF5BFF9AC5BABA8A005603 * KeyAgreeRecipientInfo_get_Originator_m3CAAD9DEAA56A26CCDEE8263D275EF2CD7009999 (KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC * __this, const RuntimeMethod* method) { { // get { return originator; } OriginatorIdentifierOrKey_t391EC78D0FD29ED45DCF5BFF9AC5BABA8A005603 * L_0 = __this->get_originator_3(); return L_0; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo::get_UserKeyingMaterial() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * KeyAgreeRecipientInfo_get_UserKeyingMaterial_mD37E475EC8E3CBD8E9337338187D4F0860CFC6E0 (KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC * __this, const RuntimeMethod* method) { { // get { return ukm; } Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_0 = __this->get_ukm_4(); return L_0; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo::get_KeyEncryptionAlgorithm() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * KeyAgreeRecipientInfo_get_KeyEncryptionAlgorithm_m978F34E7C0963D5CDE891904BD207EDC068CE9D8 (KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC * __this, const RuntimeMethod* method) { { // get { return keyEncryptionAlgorithm; } AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_0 = __this->get_keyEncryptionAlgorithm_5(); return L_0; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo::get_RecipientEncryptedKeys() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * KeyAgreeRecipientInfo_get_RecipientEncryptedKeys_m3A46FED2E3B37B52C8B3A1C81B03C6AA30FEBDC0 (KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC * __this, const RuntimeMethod* method) { { // get { return recipientEncryptedKeys; } Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_0 = __this->get_recipientEncryptedKeys_6(); return L_0; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Object BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo::ToAsn1Object() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * KeyAgreeRecipientInfo_ToAsn1Object_m3997E0BF22603F8BFB386F6ECC43FFA0CD733866 (KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerTaggedObject_t88BB573E2BED5C1D2971741E012BB29FB0EB0C5E_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 * V_0 = NULL; { // Asn1EncodableVector v = new Asn1EncodableVector( // version, new DerTaggedObject(true, 0, originator)); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_0 = (Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE*)(Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE*)SZArrayNew(Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE_il2cpp_TypeInfo_var, (uint32_t)2); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_1 = L_0; DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * L_2 = __this->get_version_2(); NullCheck(L_1); ArrayElementTypeCheck (L_1, L_2); (L_1)->SetAt(static_cast(0), (Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *)L_2); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_3 = L_1; OriginatorIdentifierOrKey_t391EC78D0FD29ED45DCF5BFF9AC5BABA8A005603 * L_4 = __this->get_originator_3(); DerTaggedObject_t88BB573E2BED5C1D2971741E012BB29FB0EB0C5E * L_5 = (DerTaggedObject_t88BB573E2BED5C1D2971741E012BB29FB0EB0C5E *)il2cpp_codegen_object_new(DerTaggedObject_t88BB573E2BED5C1D2971741E012BB29FB0EB0C5E_il2cpp_TypeInfo_var); DerTaggedObject__ctor_m38581F2DCD1C43EC659CD31CDDAB0A43FD42522F(L_5, (bool)1, 0, L_4, /*hidden argument*/NULL); NullCheck(L_3); ArrayElementTypeCheck (L_3, L_5); (L_3)->SetAt(static_cast(1), (Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *)L_5); Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 * L_6 = (Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 *)il2cpp_codegen_object_new(Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3_il2cpp_TypeInfo_var); Asn1EncodableVector__ctor_m1306EB1064C0D4EEC59EA15F8DFF81952B7AE7DE(L_6, L_3, /*hidden argument*/NULL); V_0 = L_6; // if (ukm != null) Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_7 = __this->get_ukm_4(); if (!L_7) { goto IL_0049; } } { // v.Add(new DerTaggedObject(true, 1, ukm)); Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 * L_8 = V_0; Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_9 = (Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE*)(Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE*)SZArrayNew(Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE_il2cpp_TypeInfo_var, (uint32_t)1); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_10 = L_9; Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_11 = __this->get_ukm_4(); DerTaggedObject_t88BB573E2BED5C1D2971741E012BB29FB0EB0C5E * L_12 = (DerTaggedObject_t88BB573E2BED5C1D2971741E012BB29FB0EB0C5E *)il2cpp_codegen_object_new(DerTaggedObject_t88BB573E2BED5C1D2971741E012BB29FB0EB0C5E_il2cpp_TypeInfo_var); DerTaggedObject__ctor_m38581F2DCD1C43EC659CD31CDDAB0A43FD42522F(L_12, (bool)1, 1, L_11, /*hidden argument*/NULL); NullCheck(L_10); ArrayElementTypeCheck (L_10, L_12); (L_10)->SetAt(static_cast(0), (Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *)L_12); NullCheck(L_8); Asn1EncodableVector_Add_m6EF01E6775CA3C122AC78B760B5C8AB13AC83EA8(L_8, L_10, /*hidden argument*/NULL); } IL_0049: { // v.Add(keyEncryptionAlgorithm, recipientEncryptedKeys); Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 * L_13 = V_0; Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_14 = (Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE*)(Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE*)SZArrayNew(Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE_il2cpp_TypeInfo_var, (uint32_t)2); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_15 = L_14; AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_16 = __this->get_keyEncryptionAlgorithm_5(); NullCheck(L_15); ArrayElementTypeCheck (L_15, L_16); (L_15)->SetAt(static_cast(0), (Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *)L_16); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_17 = L_15; Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_18 = __this->get_recipientEncryptedKeys_6(); NullCheck(L_17); ArrayElementTypeCheck (L_17, L_18); (L_17)->SetAt(static_cast(1), (Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *)L_18); NullCheck(L_13); Asn1EncodableVector_Add_m6EF01E6775CA3C122AC78B760B5C8AB13AC83EA8(L_13, L_17, /*hidden argument*/NULL); // return new DerSequence(v); Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 * L_19 = V_0; DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 * L_20 = (DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 *)il2cpp_codegen_object_new(DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09_il2cpp_TypeInfo_var); DerSequence__ctor_mC969ECDC21E6B8169D0B78BE04B3A08192E13164(L_20, L_19, /*hidden argument*/NULL); return L_20; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyAgreeRecipientInfoGenerator::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyAgreeRecipientInfoGenerator__ctor_m389F922013832C5E443AE2A0CFEA389F967BCBFB (KeyAgreeRecipientInfoGenerator_t24C54423315127CBA3D467B929DD226A00232F34 * __this, const RuntimeMethod* method) { { // internal KeyAgreeRecipientInfoGenerator() Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyAgreeRecipientInfoGenerator::set_KeyAgreementOID(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyAgreeRecipientInfoGenerator_set_KeyAgreementOID_m6D489EAA8FF149732F2B28C6BB249ABD6400F7E3 (KeyAgreeRecipientInfoGenerator_t24C54423315127CBA3D467B929DD226A00232F34 * __this, DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___value0, const RuntimeMethod* method) { { // set { this.keyAgreementOID = value; } DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_0 = ___value0; __this->set_keyAgreementOID_1(L_0); // set { this.keyAgreementOID = value; } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyAgreeRecipientInfoGenerator::set_KeyEncryptionOID(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyAgreeRecipientInfoGenerator_set_KeyEncryptionOID_m49B533AE9333D77FD51D8B05B40C05BAEA351907 (KeyAgreeRecipientInfoGenerator_t24C54423315127CBA3D467B929DD226A00232F34 * __this, DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___value0, const RuntimeMethod* method) { { // set { this.keyEncryptionOID = value; } DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_0 = ___value0; __this->set_keyEncryptionOID_2(L_0); // set { this.keyEncryptionOID = value; } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyAgreeRecipientInfoGenerator::set_RecipientCerts(System.Collections.ICollection) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyAgreeRecipientInfoGenerator_set_RecipientCerts_m53165C9A19083418A18993D26959D63E041953D5 (KeyAgreeRecipientInfoGenerator_t24C54423315127CBA3D467B929DD226A00232F34 * __this, RuntimeObject* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // set { this.recipientCerts = BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.CreateArrayList(value); } RuntimeObject* L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var); RuntimeObject* L_1; L_1 = Platform_CreateArrayList_m4180B6408FF695EFEC4EE2AC4281B05687EF8DE8(L_0, /*hidden argument*/NULL); __this->set_recipientCerts_3(L_1); // set { this.recipientCerts = BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.CreateArrayList(value); } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyAgreeRecipientInfoGenerator::set_SenderKeyPair(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyAgreeRecipientInfoGenerator_set_SenderKeyPair_mA8770BC83998568528390A4DE3CAA8456892266D (KeyAgreeRecipientInfoGenerator_t24C54423315127CBA3D467B929DD226A00232F34 * __this, AsymmetricCipherKeyPair_t975F15F5FD9FD35454E104A768061EAFB010D929 * ___value0, const RuntimeMethod* method) { { // set { this.senderKeyPair = value; } AsymmetricCipherKeyPair_t975F15F5FD9FD35454E104A768061EAFB010D929 * L_0 = ___value0; __this->set_senderKeyPair_4(L_0); // set { this.senderKeyPair = value; } return; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.RecipientInfo BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyAgreeRecipientInfoGenerator::Generate(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.KeyParameter,BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RecipientInfo_tAD4CBFD604399F45BD0D23A4C028E0FC88C19829 * KeyAgreeRecipientInfoGenerator_Generate_mBEDE8A0979E9D37D885522DB7360706D573AF013 (KeyAgreeRecipientInfoGenerator_t24C54423315127CBA3D467B929DD226A00232F34 * __this, KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * ___contentEncryptionKey0, SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * ___random1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AgreementUtilities_t23710947071723616410B78FA9B7467C0E9004AF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Array_Empty_TisAsn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC_m6133560D3294995A1E65C8837F69C407350CD6DB_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CmsEnvelopedGenerator_t48A8897F962E710CD0966567A63BD57B50B30614_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerNull_t020168AF07318033108544C00C803CD7AEB97239_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ECPrivateKeyParameters_t4F22D9A57AC7E670B61E096835534ECE1D259029_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ECPublicKeyParameters_tB75EB7F71DB6B346048D07C4EC9D4968988F92FB_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GeneratorUtilities_t67ACB79DC6E18815C42C195F8D953A5F17210A19_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IAsymmetricCipherKeyPairGenerator_t1DEC676954C1F8EB3B2D49B10CB17ACA35C2ED34_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBasicAgreement_t49A0A32749B5FDF1D2945D43D56CAF934A6D548C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t47A618747A1BB2A868710316F7372094849163A2_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IWrapper_t29A9E044AAEEECE9E2FA8A8A61F76B0F50347B39_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyAgreeRecipientIdentifier_tBA5E98B2A6C72F3799020F0A9D1C465116A7A28A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyAgreeRecipientInfoGenerator_t24C54423315127CBA3D467B929DD226A00232F34_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MQVuserKeyingMaterial_t0321EDE63C88A779858E39E0D66B18497BCF6A42_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MqvPrivateParameters_t5FC169BF7E9130DEB59D0A3E198847975BE0DE87_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MqvPublicParameters_t45CD88AB7EC58154D669C5D5D68FC11F9BEE6680_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OriginatorIdentifierOrKey_t391EC78D0FD29ED45DCF5BFF9AC5BABA8A005603_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ParameterUtilities_t234D0F218EFEF9117357F420840DDED9D44E2FD8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ParametersWithRandom_t557A9B373F5F2998BE6C0461812FBE4EB73425AC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RecipientEncryptedKey_tED14E5C321F7687BA4201D41E15DE457A7D56BE2_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RecipientInfo_tAD4CBFD604399F45BD0D23A4C028E0FC88C19829_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_0 = NULL; AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * V_1 = NULL; RuntimeObject* V_2 = NULL; OriginatorIdentifierOrKey_t391EC78D0FD29ED45DCF5BFF9AC5BABA8A005603 * V_3 = NULL; Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * V_4 = NULL; DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 * V_5 = NULL; AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * V_6 = NULL; Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 * V_7 = NULL; IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA * V_8 = NULL; AsymmetricCipherKeyPair_t975F15F5FD9FD35454E104A768061EAFB010D929 * V_9 = NULL; IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA * V_10 = NULL; SecurityUtilityException_t302EB7051FEB04E7829C028B4BC072B6664255CA * V_11 = NULL; RuntimeObject* V_12 = NULL; X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06 * V_13 = NULL; TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3 * V_14 = NULL; KeyAgreeRecipientIdentifier_tBA5E98B2A6C72F3799020F0A9D1C465116A7A28A * V_15 = NULL; RuntimeObject* V_16 = NULL; int32_t V_17 = 0; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_18 = NULL; KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * V_19 = NULL; Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * V_20 = NULL; RuntimeObject* V_21 = NULL; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA * G_B4_0 = NULL; String_t* G_B4_1 = NULL; IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA * G_B3_0 = NULL; String_t* G_B3_1 = NULL; String_t* G_B5_0 = NULL; String_t* G_B5_1 = NULL; IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA * G_B10_0 = NULL; String_t* G_B10_1 = NULL; IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA * G_B9_0 = NULL; String_t* G_B9_1 = NULL; String_t* G_B11_0 = NULL; String_t* G_B11_1 = NULL; SecurityUtilityException_t302EB7051FEB04E7829C028B4BC072B6664255CA * G_B14_0 = NULL; String_t* G_B14_1 = NULL; SecurityUtilityException_t302EB7051FEB04E7829C028B4BC072B6664255CA * G_B13_0 = NULL; String_t* G_B13_1 = NULL; String_t* G_B15_0 = NULL; String_t* G_B15_1 = NULL; { // byte[] keyBytes = contentEncryptionKey.GetKey(); KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * L_0 = ___contentEncryptionKey0; NullCheck(L_0); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1; L_1 = KeyParameter_GetKey_mCA2C132B43F669063C426602DD5A8A672531385A(L_0, /*hidden argument*/NULL); V_0 = L_1; // AsymmetricKeyParameter senderPublicKey = senderKeyPair.Public; AsymmetricCipherKeyPair_t975F15F5FD9FD35454E104A768061EAFB010D929 * L_2 = __this->get_senderKeyPair_4(); NullCheck(L_2); AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * L_3; L_3 = AsymmetricCipherKeyPair_get_Public_mA3C7A50C4C75C3A9003ACC9454F6B941AED2EB98_inline(L_2, /*hidden argument*/NULL); V_1 = L_3; // ICipherParameters senderPrivateParams = senderKeyPair.Private; AsymmetricCipherKeyPair_t975F15F5FD9FD35454E104A768061EAFB010D929 * L_4 = __this->get_senderKeyPair_4(); NullCheck(L_4); AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * L_5; L_5 = AsymmetricCipherKeyPair_get_Private_m74718BBBC8CD464CA09BC88F15ED38156A92280A_inline(L_4, /*hidden argument*/NULL); V_2 = L_5; } IL_001f: try {// begin try (depth: 1) // originator = new OriginatorIdentifierOrKey( // CreateOriginatorPublicKey(senderPublicKey)); AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * L_6 = V_1; IL2CPP_RUNTIME_CLASS_INIT(KeyAgreeRecipientInfoGenerator_t24C54423315127CBA3D467B929DD226A00232F34_il2cpp_TypeInfo_var); OriginatorPublicKey_tCFBC1D4932A0818726AED8E4B91FFD9AE1C029F5 * L_7; L_7 = KeyAgreeRecipientInfoGenerator_CreateOriginatorPublicKey_m0D7B426F49A9D141C0D60C89B54DE2E34546CB5E(L_6, /*hidden argument*/NULL); OriginatorIdentifierOrKey_t391EC78D0FD29ED45DCF5BFF9AC5BABA8A005603 * L_8 = (OriginatorIdentifierOrKey_t391EC78D0FD29ED45DCF5BFF9AC5BABA8A005603 *)il2cpp_codegen_object_new(OriginatorIdentifierOrKey_t391EC78D0FD29ED45DCF5BFF9AC5BABA8A005603_il2cpp_TypeInfo_var); OriginatorIdentifierOrKey__ctor_m925EE8E6FC3B711FE7AA090558A8D1CEC7077576(L_8, L_7, /*hidden argument*/NULL); V_3 = L_8; // } goto IL_004d; }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_002d; } throw e; } CATCH_002d: {// begin catch(System.IO.IOException) { // catch (IOException e) V_8 = ((IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA *)IL2CPP_GET_ACTIVE_EXCEPTION(IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA *)); // throw new InvalidKeyException("cannot extract originator public key: " + e); IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA * L_9 = V_8; IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA * L_10 = L_9; G_B3_0 = L_10; G_B3_1 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8668E04D271F5542C5CC6AF53F7BF24BEB1C7CC9)); if (L_10) { G_B4_0 = L_10; G_B4_1 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8668E04D271F5542C5CC6AF53F7BF24BEB1C7CC9)); goto IL_003d; } } IL_0039: { G_B5_0 = ((String_t*)(NULL)); G_B5_1 = G_B3_1; goto IL_0042; } IL_003d: { NullCheck(G_B4_0); String_t* L_11; L_11 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, G_B4_0); G_B5_0 = L_11; G_B5_1 = G_B4_1; } IL_0042: { String_t* L_12; L_12 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(G_B5_1, G_B5_0, /*hidden argument*/NULL); InvalidKeyException_t7F19EE8EB26000BAFDF50186FB1DD59F13A7FD8A * L_13 = (InvalidKeyException_t7F19EE8EB26000BAFDF50186FB1DD59F13A7FD8A *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidKeyException_t7F19EE8EB26000BAFDF50186FB1DD59F13A7FD8A_il2cpp_TypeInfo_var))); InvalidKeyException__ctor_m8237DB4630E307D5BF4496918D1F5A07DC10E5CF(L_13, L_12, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeyAgreeRecipientInfoGenerator_Generate_mBEDE8A0979E9D37D885522DB7360706D573AF013_RuntimeMethod_var))); } }// end catch (depth: 1) IL_004d: { // Asn1OctetString ukm = null; V_4 = (Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 *)NULL; // if (keyAgreementOID.Id.Equals(CmsEnvelopedGenerator.ECMqvSha1Kdf)) DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_14 = __this->get_keyAgreementOID_1(); NullCheck(L_14); String_t* L_15; L_15 = DerObjectIdentifier_get_Id_m1A4618B1F7ED8630EDC76DF95D8C7086F1E616D6_inline(L_14, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(CmsEnvelopedGenerator_t48A8897F962E710CD0966567A63BD57B50B30614_il2cpp_TypeInfo_var); String_t* L_16 = ((CmsEnvelopedGenerator_t48A8897F962E710CD0966567A63BD57B50B30614_StaticFields*)il2cpp_codegen_static_fields_for(CmsEnvelopedGenerator_t48A8897F962E710CD0966567A63BD57B50B30614_il2cpp_TypeInfo_var))->get_ECMqvSha1Kdf_21(); NullCheck(L_15); bool L_17; L_17 = String_Equals_m8A062B96B61A7D652E7D73C9B3E904F6B0E5F41D(L_15, L_16, /*hidden argument*/NULL); if (!L_17) { goto IL_010d; } } IL_006a: try {// begin try (depth: 1) // IAsymmetricCipherKeyPairGenerator ephemKPG = // GeneratorUtilities.GetKeyPairGenerator(keyAgreementOID); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_18 = __this->get_keyAgreementOID_1(); IL2CPP_RUNTIME_CLASS_INIT(GeneratorUtilities_t67ACB79DC6E18815C42C195F8D953A5F17210A19_il2cpp_TypeInfo_var); RuntimeObject* L_19; L_19 = GeneratorUtilities_GetKeyPairGenerator_m3125F93C6C390699C887BCA383FBF3054B2CEB53(L_18, /*hidden argument*/NULL); // ephemKPG.Init( // ((ECPublicKeyParameters)senderPublicKey).CreateKeyGenerationParameters(random)); RuntimeObject* L_20 = L_19; AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * L_21 = V_1; SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * L_22 = ___random1; NullCheck(((ECPublicKeyParameters_tB75EB7F71DB6B346048D07C4EC9D4968988F92FB *)CastclassClass((RuntimeObject*)L_21, ECPublicKeyParameters_tB75EB7F71DB6B346048D07C4EC9D4968988F92FB_il2cpp_TypeInfo_var))); ECKeyGenerationParameters_t4937721DC10527ECC156FA98F13AE431AD00F565 * L_23; L_23 = ECKeyParameters_CreateKeyGenerationParameters_m93A565EC7577C48D5E69D40E1A4F4E83E94B01C7(((ECPublicKeyParameters_tB75EB7F71DB6B346048D07C4EC9D4968988F92FB *)CastclassClass((RuntimeObject*)L_21, ECPublicKeyParameters_tB75EB7F71DB6B346048D07C4EC9D4968988F92FB_il2cpp_TypeInfo_var)), L_22, /*hidden argument*/NULL); NullCheck(L_20); InterfaceActionInvoker1< KeyGenerationParameters_t1B3393E8D9D0068ABF593DC15AA436FCA158BF39 * >::Invoke(0 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IAsymmetricCipherKeyPairGenerator::Init(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.KeyGenerationParameters) */, IAsymmetricCipherKeyPairGenerator_t1DEC676954C1F8EB3B2D49B10CB17ACA35C2ED34_il2cpp_TypeInfo_var, L_20, L_23); // AsymmetricCipherKeyPair ephemKP = ephemKPG.GenerateKeyPair(); NullCheck(L_20); AsymmetricCipherKeyPair_t975F15F5FD9FD35454E104A768061EAFB010D929 * L_24; L_24 = InterfaceFuncInvoker0< AsymmetricCipherKeyPair_t975F15F5FD9FD35454E104A768061EAFB010D929 * >::Invoke(1 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IAsymmetricCipherKeyPairGenerator::GenerateKeyPair() */, IAsymmetricCipherKeyPairGenerator_t1DEC676954C1F8EB3B2D49B10CB17ACA35C2ED34_il2cpp_TypeInfo_var, L_20); V_9 = L_24; // ukm = new DerOctetString( // new MQVuserKeyingMaterial( // CreateOriginatorPublicKey(ephemKP.Public), null)); AsymmetricCipherKeyPair_t975F15F5FD9FD35454E104A768061EAFB010D929 * L_25 = V_9; NullCheck(L_25); AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * L_26; L_26 = AsymmetricCipherKeyPair_get_Public_mA3C7A50C4C75C3A9003ACC9454F6B941AED2EB98_inline(L_25, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(KeyAgreeRecipientInfoGenerator_t24C54423315127CBA3D467B929DD226A00232F34_il2cpp_TypeInfo_var); OriginatorPublicKey_tCFBC1D4932A0818726AED8E4B91FFD9AE1C029F5 * L_27; L_27 = KeyAgreeRecipientInfoGenerator_CreateOriginatorPublicKey_m0D7B426F49A9D141C0D60C89B54DE2E34546CB5E(L_26, /*hidden argument*/NULL); MQVuserKeyingMaterial_t0321EDE63C88A779858E39E0D66B18497BCF6A42 * L_28 = (MQVuserKeyingMaterial_t0321EDE63C88A779858E39E0D66B18497BCF6A42 *)il2cpp_codegen_object_new(MQVuserKeyingMaterial_t0321EDE63C88A779858E39E0D66B18497BCF6A42_il2cpp_TypeInfo_var); MQVuserKeyingMaterial__ctor_mBBE1A13F84773860E6E384824EF3499439886F9E(L_28, L_27, (Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 *)NULL, /*hidden argument*/NULL); DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75 * L_29 = (DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75 *)il2cpp_codegen_object_new(DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75_il2cpp_TypeInfo_var); DerOctetString__ctor_m64FE8AEC387DB720BB3CE37C7BC6250152FF9914(L_29, L_28, /*hidden argument*/NULL); V_4 = L_29; // senderPrivateParams = new MqvPrivateParameters( // (ECPrivateKeyParameters)senderPrivateParams, // (ECPrivateKeyParameters)ephemKP.Private, // (ECPublicKeyParameters)ephemKP.Public); RuntimeObject* L_30 = V_2; AsymmetricCipherKeyPair_t975F15F5FD9FD35454E104A768061EAFB010D929 * L_31 = V_9; NullCheck(L_31); AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * L_32; L_32 = AsymmetricCipherKeyPair_get_Private_m74718BBBC8CD464CA09BC88F15ED38156A92280A_inline(L_31, /*hidden argument*/NULL); AsymmetricCipherKeyPair_t975F15F5FD9FD35454E104A768061EAFB010D929 * L_33 = V_9; NullCheck(L_33); AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * L_34; L_34 = AsymmetricCipherKeyPair_get_Public_mA3C7A50C4C75C3A9003ACC9454F6B941AED2EB98_inline(L_33, /*hidden argument*/NULL); MqvPrivateParameters_t5FC169BF7E9130DEB59D0A3E198847975BE0DE87 * L_35 = (MqvPrivateParameters_t5FC169BF7E9130DEB59D0A3E198847975BE0DE87 *)il2cpp_codegen_object_new(MqvPrivateParameters_t5FC169BF7E9130DEB59D0A3E198847975BE0DE87_il2cpp_TypeInfo_var); MqvPrivateParameters__ctor_m2BBAAA09AA8C4BF0737E699B41075651EBD2D94B(L_35, ((ECPrivateKeyParameters_t4F22D9A57AC7E670B61E096835534ECE1D259029 *)CastclassClass((RuntimeObject*)L_30, ECPrivateKeyParameters_t4F22D9A57AC7E670B61E096835534ECE1D259029_il2cpp_TypeInfo_var)), ((ECPrivateKeyParameters_t4F22D9A57AC7E670B61E096835534ECE1D259029 *)CastclassClass((RuntimeObject*)L_32, ECPrivateKeyParameters_t4F22D9A57AC7E670B61E096835534ECE1D259029_il2cpp_TypeInfo_var)), ((ECPublicKeyParameters_tB75EB7F71DB6B346048D07C4EC9D4968988F92FB *)CastclassClass((RuntimeObject*)L_34, ECPublicKeyParameters_tB75EB7F71DB6B346048D07C4EC9D4968988F92FB_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); V_2 = L_35; // } goto IL_010d; }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_00cd; } if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SecurityUtilityException_t302EB7051FEB04E7829C028B4BC072B6664255CA_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_00ed; } throw e; } CATCH_00cd: {// begin catch(System.IO.IOException) { // catch (IOException e) V_10 = ((IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA *)IL2CPP_GET_ACTIVE_EXCEPTION(IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA *)); // throw new InvalidKeyException("cannot extract MQV ephemeral public key: " + e); IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA * L_36 = V_10; IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA * L_37 = L_36; G_B9_0 = L_37; G_B9_1 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral547533E6BFB683D7A8B040C2B377CC4E1CE9E7C7)); if (L_37) { G_B10_0 = L_37; G_B10_1 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral547533E6BFB683D7A8B040C2B377CC4E1CE9E7C7)); goto IL_00dd; } } IL_00d9: { G_B11_0 = ((String_t*)(NULL)); G_B11_1 = G_B9_1; goto IL_00e2; } IL_00dd: { NullCheck(G_B10_0); String_t* L_38; L_38 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, G_B10_0); G_B11_0 = L_38; G_B11_1 = G_B10_1; } IL_00e2: { String_t* L_39; L_39 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(G_B11_1, G_B11_0, /*hidden argument*/NULL); InvalidKeyException_t7F19EE8EB26000BAFDF50186FB1DD59F13A7FD8A * L_40 = (InvalidKeyException_t7F19EE8EB26000BAFDF50186FB1DD59F13A7FD8A *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidKeyException_t7F19EE8EB26000BAFDF50186FB1DD59F13A7FD8A_il2cpp_TypeInfo_var))); InvalidKeyException__ctor_m8237DB4630E307D5BF4496918D1F5A07DC10E5CF(L_40, L_39, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_40, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeyAgreeRecipientInfoGenerator_Generate_mBEDE8A0979E9D37D885522DB7360706D573AF013_RuntimeMethod_var))); } }// end catch (depth: 1) CATCH_00ed: {// begin catch(BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecurityUtilityException) { // catch (SecurityUtilityException e) V_11 = ((SecurityUtilityException_t302EB7051FEB04E7829C028B4BC072B6664255CA *)IL2CPP_GET_ACTIVE_EXCEPTION(SecurityUtilityException_t302EB7051FEB04E7829C028B4BC072B6664255CA *)); // throw new InvalidKeyException("cannot determine MQV ephemeral key pair parameters from public key: " + e); SecurityUtilityException_t302EB7051FEB04E7829C028B4BC072B6664255CA * L_41 = V_11; SecurityUtilityException_t302EB7051FEB04E7829C028B4BC072B6664255CA * L_42 = L_41; G_B13_0 = L_42; G_B13_1 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8947154D3CBACC0B04352B32241D8978345169E6)); if (L_42) { G_B14_0 = L_42; G_B14_1 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8947154D3CBACC0B04352B32241D8978345169E6)); goto IL_00fd; } } IL_00f9: { G_B15_0 = ((String_t*)(NULL)); G_B15_1 = G_B13_1; goto IL_0102; } IL_00fd: { NullCheck(G_B14_0); String_t* L_43; L_43 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, G_B14_0); G_B15_0 = L_43; G_B15_1 = G_B14_1; } IL_0102: { String_t* L_44; L_44 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(G_B15_1, G_B15_0, /*hidden argument*/NULL); InvalidKeyException_t7F19EE8EB26000BAFDF50186FB1DD59F13A7FD8A * L_45 = (InvalidKeyException_t7F19EE8EB26000BAFDF50186FB1DD59F13A7FD8A *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidKeyException_t7F19EE8EB26000BAFDF50186FB1DD59F13A7FD8A_il2cpp_TypeInfo_var))); InvalidKeyException__ctor_m8237DB4630E307D5BF4496918D1F5A07DC10E5CF(L_45, L_44, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_45, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeyAgreeRecipientInfoGenerator_Generate_mBEDE8A0979E9D37D885522DB7360706D573AF013_RuntimeMethod_var))); } }// end catch (depth: 1) IL_010d: { // DerSequence paramSeq = new DerSequence( // keyEncryptionOID, // DerNull.Instance); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_46 = (Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE*)(Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE*)SZArrayNew(Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE_il2cpp_TypeInfo_var, (uint32_t)2); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_47 = L_46; DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_48 = __this->get_keyEncryptionOID_2(); NullCheck(L_47); ArrayElementTypeCheck (L_47, L_48); (L_47)->SetAt(static_cast(0), (Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *)L_48); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_49 = L_47; IL2CPP_RUNTIME_CLASS_INIT(DerNull_t020168AF07318033108544C00C803CD7AEB97239_il2cpp_TypeInfo_var); DerNull_t020168AF07318033108544C00C803CD7AEB97239 * L_50 = ((DerNull_t020168AF07318033108544C00C803CD7AEB97239_StaticFields*)il2cpp_codegen_static_fields_for(DerNull_t020168AF07318033108544C00C803CD7AEB97239_il2cpp_TypeInfo_var))->get_Instance_2(); NullCheck(L_49); ArrayElementTypeCheck (L_49, L_50); (L_49)->SetAt(static_cast(1), (Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *)L_50); DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 * L_51 = (DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 *)il2cpp_codegen_object_new(DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09_il2cpp_TypeInfo_var); DerSequence__ctor_m014F0386FA0EDB7F97747159963DC17F535AF0A2(L_51, L_49, /*hidden argument*/NULL); V_5 = L_51; // AlgorithmIdentifier keyEncAlg = new AlgorithmIdentifier(keyAgreementOID, paramSeq); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_52 = __this->get_keyAgreementOID_1(); DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 * L_53 = V_5; AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_54 = (AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 *)il2cpp_codegen_object_new(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9_il2cpp_TypeInfo_var); AlgorithmIdentifier__ctor_m942B7921A63CC0139DAD59B57D2B41BBA20EF608(L_54, L_52, L_53, /*hidden argument*/NULL); V_6 = L_54; // Asn1EncodableVector recipientEncryptedKeys = new Asn1EncodableVector(); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_55; L_55 = Array_Empty_TisAsn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC_m6133560D3294995A1E65C8837F69C407350CD6DB_inline(/*hidden argument*/Array_Empty_TisAsn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC_m6133560D3294995A1E65C8837F69C407350CD6DB_RuntimeMethod_var); Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 * L_56 = (Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 *)il2cpp_codegen_object_new(Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3_il2cpp_TypeInfo_var); Asn1EncodableVector__ctor_m1306EB1064C0D4EEC59EA15F8DFF81952B7AE7DE(L_56, L_55, /*hidden argument*/NULL); V_7 = L_56; // foreach (X509Certificate recipientCert in recipientCerts) RuntimeObject* L_57 = __this->get_recipientCerts_3(); NullCheck(L_57); RuntimeObject* L_58; L_58 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t47A618747A1BB2A868710316F7372094849163A2_il2cpp_TypeInfo_var, L_57); V_12 = L_58; } IL_0153: try {// begin try (depth: 1) { goto IL_027a; } IL_0158: { // foreach (X509Certificate recipientCert in recipientCerts) RuntimeObject* L_59 = V_12; NullCheck(L_59); RuntimeObject * L_60; L_60 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_59); V_13 = ((X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06 *)CastclassClass((RuntimeObject*)L_60, X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06_il2cpp_TypeInfo_var)); } IL_0166: try {// begin try (depth: 2) // tbsCert = TbsCertificateStructure.GetInstance( // Asn1Object.FromByteArray(recipientCert.GetTbsCertificate())); X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06 * L_61 = V_13; NullCheck(L_61); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_62; L_62 = VirtualFuncInvoker0< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(24 /* System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Certificate::GetTbsCertificate() */, L_61); Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * L_63; L_63 = Asn1Object_FromByteArray_m2DB00E0C5F68F2C4C3CA24B1F3075BC8DA9AD989(L_62, /*hidden argument*/NULL); TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3 * L_64; L_64 = TbsCertificateStructure_GetInstance_mDEF4996E745E7C794E90280350E18664322DEF0F(L_63, /*hidden argument*/NULL); V_14 = L_64; // } goto IL_0187; }// end try (depth: 2) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_017b; } throw e; } CATCH_017b: {// begin catch(System.Exception) // catch (Exception) // throw new ArgumentException("can't extract TBS structure from certificate"); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_65 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_65, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCB614311DED0B32833D22F99CC231AA94F8F7ED8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_65, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeyAgreeRecipientInfoGenerator_Generate_mBEDE8A0979E9D37D885522DB7360706D573AF013_RuntimeMethod_var))); }// end catch (depth: 2) IL_0187: { // IssuerAndSerialNumber issuerSerial = new IssuerAndSerialNumber( // tbsCert.Issuer, tbsCert.SerialNumber.Value); TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3 * L_66 = V_14; NullCheck(L_66); X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * L_67; L_67 = TbsCertificateStructure_get_Issuer_m7162E5B96B4DC11DC1B815397BFD54D1EABCE1CD_inline(L_66, /*hidden argument*/NULL); TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3 * L_68 = V_14; NullCheck(L_68); DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * L_69; L_69 = TbsCertificateStructure_get_SerialNumber_m2179DC4D65B461A04DBFD7415433E06662FCF165_inline(L_68, /*hidden argument*/NULL); NullCheck(L_69); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_70; L_70 = DerInteger_get_Value_m8C263058A637AE123BD47291A36538E05E374478(L_69, /*hidden argument*/NULL); IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64 * L_71 = (IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64 *)il2cpp_codegen_object_new(IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64_il2cpp_TypeInfo_var); IssuerAndSerialNumber__ctor_m8F2E8B6B4120F01AEC66DD8EB97D203E98509950(L_71, L_67, L_70, /*hidden argument*/NULL); // KeyAgreeRecipientIdentifier karid = new KeyAgreeRecipientIdentifier(issuerSerial); KeyAgreeRecipientIdentifier_tBA5E98B2A6C72F3799020F0A9D1C465116A7A28A * L_72 = (KeyAgreeRecipientIdentifier_tBA5E98B2A6C72F3799020F0A9D1C465116A7A28A *)il2cpp_codegen_object_new(KeyAgreeRecipientIdentifier_tBA5E98B2A6C72F3799020F0A9D1C465116A7A28A_il2cpp_TypeInfo_var); KeyAgreeRecipientIdentifier__ctor_m67BB86FD5400A9E8A8C6D228195EBA61510FEAB8(L_72, L_71, /*hidden argument*/NULL); V_15 = L_72; // ICipherParameters recipientPublicParams = recipientCert.GetPublicKey(); X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06 * L_73 = V_13; NullCheck(L_73); AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * L_74; L_74 = VirtualFuncInvoker0< AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * >::Invoke(37 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Certificate::GetPublicKey() */, L_73); V_16 = L_74; // if (keyAgreementOID.Id.Equals(CmsEnvelopedGenerator.ECMqvSha1Kdf)) DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_75 = __this->get_keyAgreementOID_1(); NullCheck(L_75); String_t* L_76; L_76 = DerObjectIdentifier_get_Id_m1A4618B1F7ED8630EDC76DF95D8C7086F1E616D6_inline(L_75, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(CmsEnvelopedGenerator_t48A8897F962E710CD0966567A63BD57B50B30614_il2cpp_TypeInfo_var); String_t* L_77 = ((CmsEnvelopedGenerator_t48A8897F962E710CD0966567A63BD57B50B30614_StaticFields*)il2cpp_codegen_static_fields_for(CmsEnvelopedGenerator_t48A8897F962E710CD0966567A63BD57B50B30614_il2cpp_TypeInfo_var))->get_ECMqvSha1Kdf_21(); NullCheck(L_76); bool L_78; L_78 = String_Equals_m8A062B96B61A7D652E7D73C9B3E904F6B0E5F41D(L_76, L_77, /*hidden argument*/NULL); if (!L_78) { goto IL_01db; } } IL_01c6: { // recipientPublicParams = new MqvPublicParameters( // (ECPublicKeyParameters)recipientPublicParams, // (ECPublicKeyParameters)recipientPublicParams); RuntimeObject* L_79 = V_16; RuntimeObject* L_80 = V_16; MqvPublicParameters_t45CD88AB7EC58154D669C5D5D68FC11F9BEE6680 * L_81 = (MqvPublicParameters_t45CD88AB7EC58154D669C5D5D68FC11F9BEE6680 *)il2cpp_codegen_object_new(MqvPublicParameters_t45CD88AB7EC58154D669C5D5D68FC11F9BEE6680_il2cpp_TypeInfo_var); MqvPublicParameters__ctor_mFDB6054261143F34685DB7BFC82347CE18A7F8D3(L_81, ((ECPublicKeyParameters_tB75EB7F71DB6B346048D07C4EC9D4968988F92FB *)CastclassClass((RuntimeObject*)L_79, ECPublicKeyParameters_tB75EB7F71DB6B346048D07C4EC9D4968988F92FB_il2cpp_TypeInfo_var)), ((ECPublicKeyParameters_tB75EB7F71DB6B346048D07C4EC9D4968988F92FB *)CastclassClass((RuntimeObject*)L_80, ECPublicKeyParameters_tB75EB7F71DB6B346048D07C4EC9D4968988F92FB_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); V_16 = L_81; } IL_01db: { // IBasicAgreement keyAgreement = AgreementUtilities.GetBasicAgreementWithKdf( // keyAgreementOID, keyEncryptionOID.Id); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_82 = __this->get_keyAgreementOID_1(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_83 = __this->get_keyEncryptionOID_2(); NullCheck(L_83); String_t* L_84; L_84 = DerObjectIdentifier_get_Id_m1A4618B1F7ED8630EDC76DF95D8C7086F1E616D6_inline(L_83, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(AgreementUtilities_t23710947071723616410B78FA9B7467C0E9004AF_il2cpp_TypeInfo_var); RuntimeObject* L_85; L_85 = AgreementUtilities_GetBasicAgreementWithKdf_m2CF32B9EEA7F367A7280EA0C5B6AA16BB44C63AE(L_82, L_84, /*hidden argument*/NULL); // keyAgreement.Init(new ParametersWithRandom(senderPrivateParams, random)); RuntimeObject* L_86 = L_85; RuntimeObject* L_87 = V_2; SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * L_88 = ___random1; ParametersWithRandom_t557A9B373F5F2998BE6C0461812FBE4EB73425AC * L_89 = (ParametersWithRandom_t557A9B373F5F2998BE6C0461812FBE4EB73425AC *)il2cpp_codegen_object_new(ParametersWithRandom_t557A9B373F5F2998BE6C0461812FBE4EB73425AC_il2cpp_TypeInfo_var); ParametersWithRandom__ctor_m9CC2D927A9DC93F6BED2DE101C93E19050FEDF97(L_89, L_87, L_88, /*hidden argument*/NULL); NullCheck(L_86); InterfaceActionInvoker1< RuntimeObject* >::Invoke(0 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBasicAgreement::Init(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ICipherParameters) */, IBasicAgreement_t49A0A32749B5FDF1D2945D43D56CAF934A6D548C_il2cpp_TypeInfo_var, L_86, L_89); // BigInteger agreedValue = keyAgreement.CalculateAgreement(recipientPublicParams); RuntimeObject* L_90 = V_16; NullCheck(L_86); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_91; L_91 = InterfaceFuncInvoker1< BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 *, RuntimeObject* >::Invoke(2 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBasicAgreement::CalculateAgreement(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ICipherParameters) */, IBasicAgreement_t49A0A32749B5FDF1D2945D43D56CAF934A6D548C_il2cpp_TypeInfo_var, L_86, L_90); // int keyEncryptionKeySize = GeneratorUtilities.GetDefaultKeySize(keyEncryptionOID) / 8; DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_92 = __this->get_keyEncryptionOID_2(); IL2CPP_RUNTIME_CLASS_INIT(GeneratorUtilities_t67ACB79DC6E18815C42C195F8D953A5F17210A19_il2cpp_TypeInfo_var); int32_t L_93; L_93 = GeneratorUtilities_GetDefaultKeySize_mB0C7938881B51D602D4B75E938A7611EEA884946(L_92, /*hidden argument*/NULL); V_17 = ((int32_t)((int32_t)L_93/(int32_t)8)); // byte[] keyEncryptionKeyBytes = X9IntegerConverter.IntegerToBytes(agreedValue, keyEncryptionKeySize); int32_t L_94 = V_17; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_95; L_95 = X9IntegerConverter_IntegerToBytes_m192434ABE05AFFEA0C3F144E169BA2D46965AEC9(L_91, L_94, /*hidden argument*/NULL); V_18 = L_95; // KeyParameter keyEncryptionKey = ParameterUtilities.CreateKeyParameter( // keyEncryptionOID, keyEncryptionKeyBytes); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_96 = __this->get_keyEncryptionOID_2(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_97 = V_18; IL2CPP_RUNTIME_CLASS_INIT(ParameterUtilities_t234D0F218EFEF9117357F420840DDED9D44E2FD8_il2cpp_TypeInfo_var); KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * L_98; L_98 = ParameterUtilities_CreateKeyParameter_m5F5AA5B7BDACBBFBF3BAE63F6778EB4C8821A32C(L_96, L_97, /*hidden argument*/NULL); V_19 = L_98; // IWrapper keyWrapper = Helper.CreateWrapper(keyEncryptionOID.Id); IL2CPP_RUNTIME_CLASS_INIT(KeyAgreeRecipientInfoGenerator_t24C54423315127CBA3D467B929DD226A00232F34_il2cpp_TypeInfo_var); CmsEnvelopedHelper_t4C541C5858FDC5D5FEFBEF5BB39D1E55C9319BF0 * L_99 = ((KeyAgreeRecipientInfoGenerator_t24C54423315127CBA3D467B929DD226A00232F34_StaticFields*)il2cpp_codegen_static_fields_for(KeyAgreeRecipientInfoGenerator_t24C54423315127CBA3D467B929DD226A00232F34_il2cpp_TypeInfo_var))->get_Helper_0(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_100 = __this->get_keyEncryptionOID_2(); NullCheck(L_100); String_t* L_101; L_101 = DerObjectIdentifier_get_Id_m1A4618B1F7ED8630EDC76DF95D8C7086F1E616D6_inline(L_100, /*hidden argument*/NULL); NullCheck(L_99); RuntimeObject* L_102; L_102 = CmsEnvelopedHelper_CreateWrapper_mD2951A9418E173A69778DEEF45C1BCBAFD454394(L_99, L_101, /*hidden argument*/NULL); // keyWrapper.Init(true, new ParametersWithRandom(keyEncryptionKey, random)); RuntimeObject* L_103 = L_102; KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * L_104 = V_19; SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * L_105 = ___random1; ParametersWithRandom_t557A9B373F5F2998BE6C0461812FBE4EB73425AC * L_106 = (ParametersWithRandom_t557A9B373F5F2998BE6C0461812FBE4EB73425AC *)il2cpp_codegen_object_new(ParametersWithRandom_t557A9B373F5F2998BE6C0461812FBE4EB73425AC_il2cpp_TypeInfo_var); ParametersWithRandom__ctor_m9CC2D927A9DC93F6BED2DE101C93E19050FEDF97(L_106, L_104, L_105, /*hidden argument*/NULL); NullCheck(L_103); InterfaceActionInvoker2< bool, RuntimeObject* >::Invoke(1 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IWrapper::Init(System.Boolean,BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ICipherParameters) */, IWrapper_t29A9E044AAEEECE9E2FA8A8A61F76B0F50347B39_il2cpp_TypeInfo_var, L_103, (bool)1, L_106); // byte[] encryptedKeyBytes = keyWrapper.Wrap(keyBytes, 0, keyBytes.Length); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_107 = V_0; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_108 = V_0; NullCheck(L_108); NullCheck(L_103); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_109; L_109 = InterfaceFuncInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(2 /* System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IWrapper::Wrap(System.Byte[],System.Int32,System.Int32) */, IWrapper_t29A9E044AAEEECE9E2FA8A8A61F76B0F50347B39_il2cpp_TypeInfo_var, L_103, L_107, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_108)->max_length)))); // Asn1OctetString encryptedKey = new DerOctetString(encryptedKeyBytes); DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75 * L_110 = (DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75 *)il2cpp_codegen_object_new(DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75_il2cpp_TypeInfo_var); DerOctetString__ctor_mBD13EC2203DF652C61E5AB45AE95CC51A22F0AF2(L_110, L_109, /*hidden argument*/NULL); V_20 = L_110; // recipientEncryptedKeys.Add(new RecipientEncryptedKey(karid, encryptedKey)); Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 * L_111 = V_7; Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_112 = (Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE*)(Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE*)SZArrayNew(Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE_il2cpp_TypeInfo_var, (uint32_t)1); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_113 = L_112; KeyAgreeRecipientIdentifier_tBA5E98B2A6C72F3799020F0A9D1C465116A7A28A * L_114 = V_15; Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_115 = V_20; RecipientEncryptedKey_tED14E5C321F7687BA4201D41E15DE457A7D56BE2 * L_116 = (RecipientEncryptedKey_tED14E5C321F7687BA4201D41E15DE457A7D56BE2 *)il2cpp_codegen_object_new(RecipientEncryptedKey_tED14E5C321F7687BA4201D41E15DE457A7D56BE2_il2cpp_TypeInfo_var); RecipientEncryptedKey__ctor_mBF5DBF6523A0080AAAC3727511282271B8DA32DB(L_116, L_114, L_115, /*hidden argument*/NULL); NullCheck(L_113); ArrayElementTypeCheck (L_113, L_116); (L_113)->SetAt(static_cast(0), (Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *)L_116); NullCheck(L_111); Asn1EncodableVector_Add_m6EF01E6775CA3C122AC78B760B5C8AB13AC83EA8(L_111, L_113, /*hidden argument*/NULL); } IL_027a: { // foreach (X509Certificate recipientCert in recipientCerts) RuntimeObject* L_117 = V_12; NullCheck(L_117); bool L_118; L_118 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_117); if (L_118) { goto IL_0158; } } IL_0286: { IL2CPP_LEAVE(0x29D, FINALLY_0288); } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0288; } FINALLY_0288: {// begin finally (depth: 1) { RuntimeObject* L_119 = V_12; V_21 = ((RuntimeObject*)IsInst((RuntimeObject*)L_119, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var)); RuntimeObject* L_120 = V_21; if (!L_120) { goto IL_029c; } } IL_0295: { RuntimeObject* L_121 = V_21; NullCheck(L_121); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_121); } IL_029c: { IL2CPP_END_FINALLY(648) } }// end finally (depth: 1) IL2CPP_CLEANUP(648) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x29D, IL_029d) } IL_029d: { // return new RecipientInfo(new KeyAgreeRecipientInfo(originator, ukm, keyEncAlg, // new DerSequence(recipientEncryptedKeys))); OriginatorIdentifierOrKey_t391EC78D0FD29ED45DCF5BFF9AC5BABA8A005603 * L_122 = V_3; Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_123 = V_4; AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_124 = V_6; Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 * L_125 = V_7; DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 * L_126 = (DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 *)il2cpp_codegen_object_new(DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09_il2cpp_TypeInfo_var); DerSequence__ctor_mC969ECDC21E6B8169D0B78BE04B3A08192E13164(L_126, L_125, /*hidden argument*/NULL); KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC * L_127 = (KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC *)il2cpp_codegen_object_new(KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC_il2cpp_TypeInfo_var); KeyAgreeRecipientInfo__ctor_mFD2D5F7D14E77519F44FADBF8BBE0CDBF52255E5(L_127, L_122, L_123, L_124, L_126, /*hidden argument*/NULL); RecipientInfo_tAD4CBFD604399F45BD0D23A4C028E0FC88C19829 * L_128 = (RecipientInfo_tAD4CBFD604399F45BD0D23A4C028E0FC88C19829 *)il2cpp_codegen_object_new(RecipientInfo_tAD4CBFD604399F45BD0D23A4C028E0FC88C19829_il2cpp_TypeInfo_var); RecipientInfo__ctor_m9782568A2798D6E1BEE5673D90F8B2873E91D53C(L_128, L_127, /*hidden argument*/NULL); return L_128; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.OriginatorPublicKey BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyAgreeRecipientInfoGenerator::CreateOriginatorPublicKey(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR OriginatorPublicKey_tCFBC1D4932A0818726AED8E4B91FFD9AE1C029F5 * KeyAgreeRecipientInfoGenerator_CreateOriginatorPublicKey_m0D7B426F49A9D141C0D60C89B54DE2E34546CB5E (AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * ___publicKey0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerNull_t020168AF07318033108544C00C803CD7AEB97239_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OriginatorPublicKey_tCFBC1D4932A0818726AED8E4B91FFD9AE1C029F5_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB * V_0 = NULL; { // SubjectPublicKeyInfo spki = SubjectPublicKeyInfoFactory.CreateSubjectPublicKeyInfo(publicKey); AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * L_0 = ___publicKey0; SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB * L_1; L_1 = SubjectPublicKeyInfoFactory_CreateSubjectPublicKeyInfo_m05DEB0821C10550E622F69B5E83F1A285F4F857D(L_0, /*hidden argument*/NULL); V_0 = L_1; // return new OriginatorPublicKey( // new AlgorithmIdentifier(spki.AlgorithmID.Algorithm, DerNull.Instance), // spki.PublicKeyData.GetBytes()); SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB * L_2 = V_0; NullCheck(L_2); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_3; L_3 = SubjectPublicKeyInfo_get_AlgorithmID_mC6D1FC4034C33A9CE53D197B4704A328D8E6AF52_inline(L_2, /*hidden argument*/NULL); NullCheck(L_3); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_4; L_4 = VirtualFuncInvoker0< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * >::Invoke(6 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier::get_Algorithm() */, L_3); IL2CPP_RUNTIME_CLASS_INIT(DerNull_t020168AF07318033108544C00C803CD7AEB97239_il2cpp_TypeInfo_var); DerNull_t020168AF07318033108544C00C803CD7AEB97239 * L_5 = ((DerNull_t020168AF07318033108544C00C803CD7AEB97239_StaticFields*)il2cpp_codegen_static_fields_for(DerNull_t020168AF07318033108544C00C803CD7AEB97239_il2cpp_TypeInfo_var))->get_Instance_2(); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_6 = (AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 *)il2cpp_codegen_object_new(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9_il2cpp_TypeInfo_var); AlgorithmIdentifier__ctor_m942B7921A63CC0139DAD59B57D2B41BBA20EF608(L_6, L_4, L_5, /*hidden argument*/NULL); SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB * L_7 = V_0; NullCheck(L_7); DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * L_8; L_8 = SubjectPublicKeyInfo_get_PublicKeyData_mE74361F41A82225A09A9A4B95E37C6F5C337D7A4_inline(L_7, /*hidden argument*/NULL); NullCheck(L_8); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_9; L_9 = VirtualFuncInvoker0< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(12 /* System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString::GetBytes() */, L_8); OriginatorPublicKey_tCFBC1D4932A0818726AED8E4B91FFD9AE1C029F5 * L_10 = (OriginatorPublicKey_tCFBC1D4932A0818726AED8E4B91FFD9AE1C029F5 *)il2cpp_codegen_object_new(OriginatorPublicKey_tCFBC1D4932A0818726AED8E4B91FFD9AE1C029F5_il2cpp_TypeInfo_var); OriginatorPublicKey__ctor_mD98522B5998A23D4B96D1919C4F7BA416A0EB237(L_10, L_6, L_9, /*hidden argument*/NULL); return L_10; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyAgreeRecipientInfoGenerator::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyAgreeRecipientInfoGenerator__cctor_m190DE923001113E574E5270F720B963CC6A5A23C (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CmsEnvelopedHelper_t4C541C5858FDC5D5FEFBEF5BB39D1E55C9319BF0_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyAgreeRecipientInfoGenerator_t24C54423315127CBA3D467B929DD226A00232F34_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // private static readonly CmsEnvelopedHelper Helper = CmsEnvelopedHelper.Instance; IL2CPP_RUNTIME_CLASS_INIT(CmsEnvelopedHelper_t4C541C5858FDC5D5FEFBEF5BB39D1E55C9319BF0_il2cpp_TypeInfo_var); CmsEnvelopedHelper_t4C541C5858FDC5D5FEFBEF5BB39D1E55C9319BF0 * L_0 = ((CmsEnvelopedHelper_t4C541C5858FDC5D5FEFBEF5BB39D1E55C9319BF0_StaticFields*)il2cpp_codegen_static_fields_for(CmsEnvelopedHelper_t4C541C5858FDC5D5FEFBEF5BB39D1E55C9319BF0_il2cpp_TypeInfo_var))->get_Instance_0(); ((KeyAgreeRecipientInfoGenerator_t24C54423315127CBA3D467B929DD226A00232F34_StaticFields*)il2cpp_codegen_static_fields_for(KeyAgreeRecipientInfoGenerator_t24C54423315127CBA3D467B929DD226A00232F34_il2cpp_TypeInfo_var))->set_Helper_0(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyAgreeRecipientInformation::ReadRecipientInfo(System.Collections.IList,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo,BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsSecureReadable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyAgreeRecipientInformation_ReadRecipientInfo_m503FAA9272512FD7F3E83F7DA8702FC7C10DAC8F (RuntimeObject* ___infos0, KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC * ___info1, RuntimeObject* ___secureReadable2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_tB15A9D6625D09661D6E47976BB626C703EC81910_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyAgreeRecipientInformation_t428C88783EA962AE6460155DB641A5385BA20929_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RecipientID_t744700C1480DE017B5D0AB81C6A1044A8C400125_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; RecipientEncryptedKey_tED14E5C321F7687BA4201D41E15DE457A7D56BE2 * V_1 = NULL; RecipientID_t744700C1480DE017B5D0AB81C6A1044A8C400125 * V_2 = NULL; KeyAgreeRecipientIdentifier_tBA5E98B2A6C72F3799020F0A9D1C465116A7A28A * V_3 = NULL; IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64 * V_4 = NULL; RecipientKeyIdentifier_tCDD2B03857B94474CBA49C1E4FDC30DA4C26F492 * V_5 = NULL; RuntimeObject* V_6 = NULL; IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA * V_7 = NULL; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; IL_0000: try {// begin try (depth: 1) { // foreach (Asn1Encodable rek in info.RecipientEncryptedKeys) KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC * L_0 = ___info1; NullCheck(L_0); Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_1; L_1 = KeyAgreeRecipientInfo_get_RecipientEncryptedKeys_m3A46FED2E3B37B52C8B3A1C81B03C6AA30FEBDC0_inline(L_0, /*hidden argument*/NULL); NullCheck(L_1); RuntimeObject* L_2; L_2 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(10 /* System.Collections.IEnumerator BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::GetEnumerator() */, L_1); V_0 = L_2; } IL_000c: try {// begin try (depth: 2) { goto IL_008d; } IL_000e: { // foreach (Asn1Encodable rek in info.RecipientEncryptedKeys) RuntimeObject* L_3 = V_0; NullCheck(L_3); RuntimeObject * L_4; L_4 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_3); // RecipientEncryptedKey id = RecipientEncryptedKey.GetInstance(rek.ToAsn1Object()); NullCheck(((Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *)CastclassClass((RuntimeObject*)L_4, Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC_il2cpp_TypeInfo_var))); Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * L_5; L_5 = VirtualFuncInvoker0< Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * >::Invoke(5 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Object BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable::ToAsn1Object() */, ((Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *)CastclassClass((RuntimeObject*)L_4, Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC_il2cpp_TypeInfo_var))); RecipientEncryptedKey_tED14E5C321F7687BA4201D41E15DE457A7D56BE2 * L_6; L_6 = RecipientEncryptedKey_GetInstance_m82B836BBA312A86DB17E4DB68C182FE66DCC0E05(L_5, /*hidden argument*/NULL); V_1 = L_6; // RecipientID rid = new RecipientID(); RecipientID_t744700C1480DE017B5D0AB81C6A1044A8C400125 * L_7 = (RecipientID_t744700C1480DE017B5D0AB81C6A1044A8C400125 *)il2cpp_codegen_object_new(RecipientID_t744700C1480DE017B5D0AB81C6A1044A8C400125_il2cpp_TypeInfo_var); RecipientID__ctor_m30284CC4BE38EB6ADBE38A88570543213285A349(L_7, /*hidden argument*/NULL); V_2 = L_7; // Asn1.Cms.KeyAgreeRecipientIdentifier karid = id.Identifier; RecipientEncryptedKey_tED14E5C321F7687BA4201D41E15DE457A7D56BE2 * L_8 = V_1; NullCheck(L_8); KeyAgreeRecipientIdentifier_tBA5E98B2A6C72F3799020F0A9D1C465116A7A28A * L_9; L_9 = RecipientEncryptedKey_get_Identifier_mBD0A3CD8FCD8F7287B890C4981354A8B33C27728_inline(L_8, /*hidden argument*/NULL); V_3 = L_9; // Asn1.Cms.IssuerAndSerialNumber iAndSN = karid.IssuerAndSerialNumber; KeyAgreeRecipientIdentifier_tBA5E98B2A6C72F3799020F0A9D1C465116A7A28A * L_10 = V_3; NullCheck(L_10); IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64 * L_11; L_11 = KeyAgreeRecipientIdentifier_get_IssuerAndSerialNumber_mE5BF14ED071126E538E4323774F1EBEB9D65F6EE_inline(L_10, /*hidden argument*/NULL); V_4 = L_11; // if (iAndSN != null) IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64 * L_12 = V_4; if (!L_12) { goto IL_005e; } } IL_003d: { // rid.Issuer = iAndSN.Name; RecipientID_t744700C1480DE017B5D0AB81C6A1044A8C400125 * L_13 = V_2; IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64 * L_14 = V_4; NullCheck(L_14); X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * L_15; L_15 = IssuerAndSerialNumber_get_Name_m1A73B0BF1416F5634C5CF376455FC28CC1C9621A_inline(L_14, /*hidden argument*/NULL); NullCheck(L_13); X509CertStoreSelector_set_Issuer_mF45C905EE0E690870660F61DB38A4011AE4E666C_inline(L_13, L_15, /*hidden argument*/NULL); // rid.SerialNumber = iAndSN.SerialNumber.Value; RecipientID_t744700C1480DE017B5D0AB81C6A1044A8C400125 * L_16 = V_2; IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64 * L_17 = V_4; NullCheck(L_17); DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * L_18; L_18 = IssuerAndSerialNumber_get_SerialNumber_mF481C0E59D4CAEB309CE8D4E73C372E65FAD48EB_inline(L_17, /*hidden argument*/NULL); NullCheck(L_18); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_19; L_19 = DerInteger_get_Value_m8C263058A637AE123BD47291A36538E05E374478(L_18, /*hidden argument*/NULL); NullCheck(L_16); X509CertStoreSelector_set_SerialNumber_m8721FD1AD35B54F1E191B115F5335EE7A07A90F5_inline(L_16, L_19, /*hidden argument*/NULL); // } goto IL_0078; } IL_005e: { // Asn1.Cms.RecipientKeyIdentifier rKeyID = karid.RKeyID; KeyAgreeRecipientIdentifier_tBA5E98B2A6C72F3799020F0A9D1C465116A7A28A * L_20 = V_3; NullCheck(L_20); RecipientKeyIdentifier_tCDD2B03857B94474CBA49C1E4FDC30DA4C26F492 * L_21; L_21 = KeyAgreeRecipientIdentifier_get_RKeyID_m70C71C5CC9C18FDC5BF4DE679B3BC8EE579A992C_inline(L_20, /*hidden argument*/NULL); V_5 = L_21; // rid.SubjectKeyIdentifier = rKeyID.SubjectKeyIdentifier.GetOctets(); RecipientID_t744700C1480DE017B5D0AB81C6A1044A8C400125 * L_22 = V_2; RecipientKeyIdentifier_tCDD2B03857B94474CBA49C1E4FDC30DA4C26F492 * L_23 = V_5; NullCheck(L_23); Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_24; L_24 = RecipientKeyIdentifier_get_SubjectKeyIdentifier_mCA5B55F5F0C7EF3E611D0185B4701CC5A74A1EA5_inline(L_23, /*hidden argument*/NULL); NullCheck(L_24); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_25; L_25 = VirtualFuncInvoker0< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(10 /* System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString::GetOctets() */, L_24); NullCheck(L_22); X509CertStoreSelector_set_SubjectKeyIdentifier_m2AFAA3AF020DFC2688337E14B1DCCA33DFC05451(L_22, L_25, /*hidden argument*/NULL); } IL_0078: { // infos.Add(new KeyAgreeRecipientInformation(info, rid, id.EncryptedKey, // secureReadable)); RuntimeObject* L_26 = ___infos0; KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC * L_27 = ___info1; RecipientID_t744700C1480DE017B5D0AB81C6A1044A8C400125 * L_28 = V_2; RecipientEncryptedKey_tED14E5C321F7687BA4201D41E15DE457A7D56BE2 * L_29 = V_1; NullCheck(L_29); Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_30; L_30 = RecipientEncryptedKey_get_EncryptedKey_mF42A81C64202F2062416BD071A7DE04986B08251_inline(L_29, /*hidden argument*/NULL); RuntimeObject* L_31 = ___secureReadable2; KeyAgreeRecipientInformation_t428C88783EA962AE6460155DB641A5385BA20929 * L_32 = (KeyAgreeRecipientInformation_t428C88783EA962AE6460155DB641A5385BA20929 *)il2cpp_codegen_object_new(KeyAgreeRecipientInformation_t428C88783EA962AE6460155DB641A5385BA20929_il2cpp_TypeInfo_var); KeyAgreeRecipientInformation__ctor_m82957C8697BF60E2D2B9DCC737146B691BD9C63B(L_32, L_27, L_28, L_30, L_31, /*hidden argument*/NULL); NullCheck(L_26); int32_t L_33; L_33 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(2 /* System.Int32 System.Collections.IList::Add(System.Object) */, IList_tB15A9D6625D09661D6E47976BB626C703EC81910_il2cpp_TypeInfo_var, L_26, L_32); } IL_008d: { // foreach (Asn1Encodable rek in info.RecipientEncryptedKeys) RuntimeObject* L_34 = V_0; NullCheck(L_34); bool L_35; L_35 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_34); if (L_35) { goto IL_000e; } } IL_0098: { IL2CPP_LEAVE(0xAE, FINALLY_009a); } }// end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_009a; } FINALLY_009a: {// begin finally (depth: 2) { RuntimeObject* L_36 = V_0; V_6 = ((RuntimeObject*)IsInst((RuntimeObject*)L_36, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var)); RuntimeObject* L_37 = V_6; if (!L_37) { goto IL_00ad; } } IL_00a6: { RuntimeObject* L_38 = V_6; NullCheck(L_38); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_38); } IL_00ad: { IL2CPP_END_FINALLY(154) } }// end finally (depth: 2) IL2CPP_CLEANUP(154) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0xAE, IL_00ae) } IL_00ae: { // } goto IL_00bf; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_00b0; } throw e; } CATCH_00b0: {// begin catch(System.IO.IOException) // catch (IOException e) V_7 = ((IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA *)IL2CPP_GET_ACTIVE_EXCEPTION(IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA *)); // throw new ArgumentException("invalid rid in KeyAgreeRecipientInformation", e); IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA * L_39 = V_7; ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_40 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D82228EC0D314063BFC7BB308A43927D1D76852(L_40, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4DE58F5719F293D114AA635145F1B1B7DB3AA51B)), L_39, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_40, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeyAgreeRecipientInformation_ReadRecipientInfo_m503FAA9272512FD7F3E83F7DA8702FC7C10DAC8F_RuntimeMethod_var))); }// end catch (depth: 1) IL_00bf: { // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyAgreeRecipientInformation::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo,BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.RecipientID,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString,BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsSecureReadable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyAgreeRecipientInformation__ctor_m82957C8697BF60E2D2B9DCC737146B691BD9C63B (KeyAgreeRecipientInformation_t428C88783EA962AE6460155DB641A5385BA20929 * __this, KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC * ___info0, RecipientID_t744700C1480DE017B5D0AB81C6A1044A8C400125 * ___rid1, Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * ___encryptedKey2, RuntimeObject* ___secureReadable3, const RuntimeMethod* method) { { // : base(info.KeyEncryptionAlgorithm, secureReadable) KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC * L_0 = ___info0; NullCheck(L_0); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_1; L_1 = KeyAgreeRecipientInfo_get_KeyEncryptionAlgorithm_m978F34E7C0963D5CDE891904BD207EDC068CE9D8_inline(L_0, /*hidden argument*/NULL); RuntimeObject* L_2 = ___secureReadable3; RecipientInformation__ctor_mA31EB17784907EB7929804AEC96F383AC7C7C8BC(__this, L_1, L_2, /*hidden argument*/NULL); // this.info = info; KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC * L_3 = ___info0; __this->set_info_4(L_3); // this.rid = rid; RecipientID_t744700C1480DE017B5D0AB81C6A1044A8C400125 * L_4 = ___rid1; ((RecipientInformation_tB02D0534E5C0851FB482467BA26A52FAD2F853AB *)__this)->set_rid_0(L_4); // this.encryptedKey = encryptedKey; Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_5 = ___encryptedKey2; __this->set_encryptedKey_5(L_5); // } return; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyAgreeRecipientInformation::GetSenderPublicKey(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.OriginatorIdentifierOrKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * KeyAgreeRecipientInformation_GetSenderPublicKey_m9FCB7D93D76FC125D4CEDB8D4F5F04EBEA7671A4 (KeyAgreeRecipientInformation_t428C88783EA962AE6460155DB641A5385BA20929 * __this, AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * ___receiverPrivateKey0, OriginatorIdentifierOrKey_t391EC78D0FD29ED45DCF5BFF9AC5BABA8A005603 * ___originator1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OriginatorID_tE315A79325108441760EEF76B4FC3A8E13B422B0_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } OriginatorPublicKey_tCFBC1D4932A0818726AED8E4B91FFD9AE1C029F5 * V_0 = NULL; OriginatorID_tE315A79325108441760EEF76B4FC3A8E13B422B0 * V_1 = NULL; IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64 * V_2 = NULL; SubjectKeyIdentifier_t572BF9E7277584519251C3E26F9015A145A7FF62 * V_3 = NULL; { // OriginatorPublicKey opk = originator.OriginatorPublicKey; OriginatorIdentifierOrKey_t391EC78D0FD29ED45DCF5BFF9AC5BABA8A005603 * L_0 = ___originator1; NullCheck(L_0); OriginatorPublicKey_tCFBC1D4932A0818726AED8E4B91FFD9AE1C029F5 * L_1; L_1 = OriginatorIdentifierOrKey_get_OriginatorPublicKey_m1712FE1CDF09E7BF2BD5ECCE4809EF806CDEAA5E(L_0, /*hidden argument*/NULL); V_0 = L_1; // if (opk != null) OriginatorPublicKey_tCFBC1D4932A0818726AED8E4B91FFD9AE1C029F5 * L_2 = V_0; if (!L_2) { goto IL_0013; } } { // return GetPublicKeyFromOriginatorPublicKey(receiverPrivateKey, opk); AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * L_3 = ___receiverPrivateKey0; OriginatorPublicKey_tCFBC1D4932A0818726AED8E4B91FFD9AE1C029F5 * L_4 = V_0; AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * L_5; L_5 = KeyAgreeRecipientInformation_GetPublicKeyFromOriginatorPublicKey_mCA6ABE545036AB50CE389523FB7E206E793F4B27(__this, L_3, L_4, /*hidden argument*/NULL); return L_5; } IL_0013: { // OriginatorID origID = new OriginatorID(); OriginatorID_tE315A79325108441760EEF76B4FC3A8E13B422B0 * L_6 = (OriginatorID_tE315A79325108441760EEF76B4FC3A8E13B422B0 *)il2cpp_codegen_object_new(OriginatorID_tE315A79325108441760EEF76B4FC3A8E13B422B0_il2cpp_TypeInfo_var); OriginatorID__ctor_mA3FA7134168F2EF1FB69B9B166414E6E7EE7A233(L_6, /*hidden argument*/NULL); V_1 = L_6; // Asn1.Cms.IssuerAndSerialNumber iAndSN = originator.IssuerAndSerialNumber; OriginatorIdentifierOrKey_t391EC78D0FD29ED45DCF5BFF9AC5BABA8A005603 * L_7 = ___originator1; NullCheck(L_7); IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64 * L_8; L_8 = OriginatorIdentifierOrKey_get_IssuerAndSerialNumber_m73F296D97EDB1E4AEE4AF0CAE1A286CE49E944A8(L_7, /*hidden argument*/NULL); V_2 = L_8; // if (iAndSN != null) IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64 * L_9 = V_2; if (!L_9) { goto IL_0042; } } { // origID.Issuer = iAndSN.Name; OriginatorID_tE315A79325108441760EEF76B4FC3A8E13B422B0 * L_10 = V_1; IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64 * L_11 = V_2; NullCheck(L_11); X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * L_12; L_12 = IssuerAndSerialNumber_get_Name_m1A73B0BF1416F5634C5CF376455FC28CC1C9621A_inline(L_11, /*hidden argument*/NULL); NullCheck(L_10); X509CertStoreSelector_set_Issuer_mF45C905EE0E690870660F61DB38A4011AE4E666C_inline(L_10, L_12, /*hidden argument*/NULL); // origID.SerialNumber = iAndSN.SerialNumber.Value; OriginatorID_tE315A79325108441760EEF76B4FC3A8E13B422B0 * L_13 = V_1; IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64 * L_14 = V_2; NullCheck(L_14); DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * L_15; L_15 = IssuerAndSerialNumber_get_SerialNumber_mF481C0E59D4CAEB309CE8D4E73C372E65FAD48EB_inline(L_14, /*hidden argument*/NULL); NullCheck(L_15); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_16; L_16 = DerInteger_get_Value_m8C263058A637AE123BD47291A36538E05E374478(L_15, /*hidden argument*/NULL); NullCheck(L_13); X509CertStoreSelector_set_SerialNumber_m8721FD1AD35B54F1E191B115F5335EE7A07A90F5_inline(L_13, L_16, /*hidden argument*/NULL); // } goto IL_0055; } IL_0042: { // SubjectKeyIdentifier ski = originator.SubjectKeyIdentifier; OriginatorIdentifierOrKey_t391EC78D0FD29ED45DCF5BFF9AC5BABA8A005603 * L_17 = ___originator1; NullCheck(L_17); SubjectKeyIdentifier_t572BF9E7277584519251C3E26F9015A145A7FF62 * L_18; L_18 = OriginatorIdentifierOrKey_get_SubjectKeyIdentifier_m5E2ECC3A9135BC8518624DB4DA3F68FF0222BE73(L_17, /*hidden argument*/NULL); V_3 = L_18; // origID.SubjectKeyIdentifier = ski.GetKeyIdentifier(); OriginatorID_tE315A79325108441760EEF76B4FC3A8E13B422B0 * L_19 = V_1; SubjectKeyIdentifier_t572BF9E7277584519251C3E26F9015A145A7FF62 * L_20 = V_3; NullCheck(L_20); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_21; L_21 = SubjectKeyIdentifier_GetKeyIdentifier_m502BB5B30C0817ECCB75870AF8E69C76E795709F_inline(L_20, /*hidden argument*/NULL); NullCheck(L_19); X509CertStoreSelector_set_SubjectKeyIdentifier_m2AFAA3AF020DFC2688337E14B1DCCA33DFC05451(L_19, L_21, /*hidden argument*/NULL); } IL_0055: { // return GetPublicKeyFromOriginatorID(origID); OriginatorID_tE315A79325108441760EEF76B4FC3A8E13B422B0 * L_22 = V_1; AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * L_23; L_23 = KeyAgreeRecipientInformation_GetPublicKeyFromOriginatorID_m46FF169A61CABBFB8AA2B29C845E14DA8F73442F(__this, L_22, /*hidden argument*/NULL); return L_23; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyAgreeRecipientInformation::GetPublicKeyFromOriginatorPublicKey(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.OriginatorPublicKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * KeyAgreeRecipientInformation_GetPublicKeyFromOriginatorPublicKey_mCA6ABE545036AB50CE389523FB7E206E793F4B27 (KeyAgreeRecipientInformation_t428C88783EA962AE6460155DB641A5385BA20929 * __this, AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * ___receiverPrivateKey0, OriginatorPublicKey_tCFBC1D4932A0818726AED8E4B91FFD9AE1C029F5 * ___originatorPublicKey1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // PrivateKeyInfo privInfo = PrivateKeyInfoFactory.CreatePrivateKeyInfo(receiverPrivateKey); AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * L_0 = ___receiverPrivateKey0; PrivateKeyInfo_t2C1C0514E07F6048B5892B9D988A1CEFE90975AA * L_1; L_1 = PrivateKeyInfoFactory_CreatePrivateKeyInfo_m1AE444AE0B185BF4C7965C724E9474E765D924A6(L_0, /*hidden argument*/NULL); // SubjectPublicKeyInfo pubInfo = new SubjectPublicKeyInfo( // privInfo.PrivateKeyAlgorithm, // originatorPublicKey.PublicKey.GetBytes()); NullCheck(L_1); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_2; L_2 = VirtualFuncInvoker0< AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * >::Invoke(8 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo::get_PrivateKeyAlgorithm() */, L_1); OriginatorPublicKey_tCFBC1D4932A0818726AED8E4B91FFD9AE1C029F5 * L_3 = ___originatorPublicKey1; NullCheck(L_3); DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * L_4; L_4 = OriginatorPublicKey_get_PublicKey_mFEC52A32484C2D8341D71B0EC42C00A629C544FD_inline(L_3, /*hidden argument*/NULL); NullCheck(L_4); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_5; L_5 = VirtualFuncInvoker0< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(12 /* System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString::GetBytes() */, L_4); SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB * L_6 = (SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB *)il2cpp_codegen_object_new(SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB_il2cpp_TypeInfo_var); SubjectPublicKeyInfo__ctor_mCF35D42388B4DE0226FF173A389D90F16281E32C(L_6, L_2, L_5, /*hidden argument*/NULL); // return PublicKeyFactory.CreateKey(pubInfo); AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * L_7; L_7 = PublicKeyFactory_CreateKey_mCDC9554A79A6CD26010C632AFB5E37153A4DEFFB(L_6, /*hidden argument*/NULL); return L_7; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyAgreeRecipientInformation::GetPublicKeyFromOriginatorID(BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.OriginatorID) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * KeyAgreeRecipientInformation_GetPublicKeyFromOriginatorID_m46FF169A61CABBFB8AA2B29C845E14DA8F73442F (KeyAgreeRecipientInformation_t428C88783EA962AE6460155DB641A5385BA20929 * __this, OriginatorID_tE315A79325108441760EEF76B4FC3A8E13B422B0 * ___origID0, const RuntimeMethod* method) { { // throw new CmsException("No support for 'originator' as IssuerAndSerialNumber or SubjectKeyIdentifier"); CmsException_tA459F99D1C6C93528CDEC8BBB289A932766EC3DE * L_0 = (CmsException_tA459F99D1C6C93528CDEC8BBB289A932766EC3DE *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CmsException_tA459F99D1C6C93528CDEC8BBB289A932766EC3DE_il2cpp_TypeInfo_var))); CmsException__ctor_m3FAFC1C6647EE071C3D9770E42ED15956D8C2E37(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3C9E24E07B616013A928E3D71361B4CD88571F2D)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeyAgreeRecipientInformation_GetPublicKeyFromOriginatorID_m46FF169A61CABBFB8AA2B29C845E14DA8F73442F_RuntimeMethod_var))); } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.KeyParameter BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyAgreeRecipientInformation::CalculateAgreedWrapKey(System.String,BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter,BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * KeyAgreeRecipientInformation_CalculateAgreedWrapKey_mCDC7C42039E921E8091176580B5700B40985DB66 (KeyAgreeRecipientInformation_t428C88783EA962AE6460155DB641A5385BA20929 * __this, String_t* ___wrapAlg0, AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * ___senderPublicKey1, AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * ___receiverPrivateKey2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AgreementUtilities_t23710947071723616410B78FA9B7467C0E9004AF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CmsEnvelopedGenerator_t48A8897F962E710CD0966567A63BD57B50B30614_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ECPrivateKeyParameters_t4F22D9A57AC7E670B61E096835534ECE1D259029_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ECPublicKeyParameters_tB75EB7F71DB6B346048D07C4EC9D4968988F92FB_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GeneratorUtilities_t67ACB79DC6E18815C42C195F8D953A5F17210A19_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBasicAgreement_t49A0A32749B5FDF1D2945D43D56CAF934A6D548C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MqvPrivateParameters_t5FC169BF7E9130DEB59D0A3E198847975BE0DE87_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MqvPublicParameters_t45CD88AB7EC58154D669C5D5D68FC11F9BEE6680_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ParameterUtilities_t234D0F218EFEF9117357F420840DDED9D44E2FD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; RuntimeObject* V_1 = NULL; int32_t V_2 = 0; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_3 = NULL; MQVuserKeyingMaterial_t0321EDE63C88A779858E39E0D66B18497BCF6A42 * V_4 = NULL; AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * V_5 = NULL; DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * G_B2_0 = NULL; DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * G_B1_0 = NULL; { // DerObjectIdentifier agreeAlgID = keyEncAlg.Algorithm; AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_0 = ((RecipientInformation_tB02D0534E5C0851FB482467BA26A52FAD2F853AB *)__this)->get_keyEncAlg_1(); NullCheck(L_0); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_1; L_1 = VirtualFuncInvoker0< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * >::Invoke(6 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier::get_Algorithm() */, L_0); // ICipherParameters senderPublicParams = senderPublicKey; AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * L_2 = ___senderPublicKey1; V_0 = L_2; // ICipherParameters receiverPrivateParams = receiverPrivateKey; AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * L_3 = ___receiverPrivateKey2; V_1 = L_3; // if (agreeAlgID.Id.Equals(CmsEnvelopedGenerator.ECMqvSha1Kdf)) DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_4 = L_1; NullCheck(L_4); String_t* L_5; L_5 = DerObjectIdentifier_get_Id_m1A4618B1F7ED8630EDC76DF95D8C7086F1E616D6_inline(L_4, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(CmsEnvelopedGenerator_t48A8897F962E710CD0966567A63BD57B50B30614_il2cpp_TypeInfo_var); String_t* L_6 = ((CmsEnvelopedGenerator_t48A8897F962E710CD0966567A63BD57B50B30614_StaticFields*)il2cpp_codegen_static_fields_for(CmsEnvelopedGenerator_t48A8897F962E710CD0966567A63BD57B50B30614_il2cpp_TypeInfo_var))->get_ECMqvSha1Kdf_21(); NullCheck(L_5); bool L_7; L_7 = String_Equals_m8A062B96B61A7D652E7D73C9B3E904F6B0E5F41D(L_5, L_6, /*hidden argument*/NULL); G_B1_0 = L_4; if (!L_7) { G_B2_0 = L_4; goto IL_0072; } } { // byte[] ukmEncoding = info.UserKeyingMaterial.GetOctets(); KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC * L_8 = __this->get_info_4(); NullCheck(L_8); Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_9; L_9 = KeyAgreeRecipientInfo_get_UserKeyingMaterial_mD37E475EC8E3CBD8E9337338187D4F0860CFC6E0_inline(L_8, /*hidden argument*/NULL); NullCheck(L_9); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_10; L_10 = VirtualFuncInvoker0< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(10 /* System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString::GetOctets() */, L_9); // MQVuserKeyingMaterial ukm = MQVuserKeyingMaterial.GetInstance( // Asn1Object.FromByteArray(ukmEncoding)); Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * L_11; L_11 = Asn1Object_FromByteArray_m2DB00E0C5F68F2C4C3CA24B1F3075BC8DA9AD989(L_10, /*hidden argument*/NULL); MQVuserKeyingMaterial_t0321EDE63C88A779858E39E0D66B18497BCF6A42 * L_12; L_12 = MQVuserKeyingMaterial_GetInstance_m8FCC92341C31A76244D9F5C51256333DEA70AA41(L_11, /*hidden argument*/NULL); V_4 = L_12; // AsymmetricKeyParameter ephemeralKey = GetPublicKeyFromOriginatorPublicKey( // receiverPrivateKey, ukm.EphemeralPublicKey); AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * L_13 = ___receiverPrivateKey2; MQVuserKeyingMaterial_t0321EDE63C88A779858E39E0D66B18497BCF6A42 * L_14 = V_4; NullCheck(L_14); OriginatorPublicKey_tCFBC1D4932A0818726AED8E4B91FFD9AE1C029F5 * L_15; L_15 = MQVuserKeyingMaterial_get_EphemeralPublicKey_m50727D7ADFA6818FEF31BA1B167F6AB4B4BC8300_inline(L_14, /*hidden argument*/NULL); AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * L_16; L_16 = KeyAgreeRecipientInformation_GetPublicKeyFromOriginatorPublicKey_mCA6ABE545036AB50CE389523FB7E206E793F4B27(__this, L_13, L_15, /*hidden argument*/NULL); V_5 = L_16; // senderPublicParams = new MqvPublicParameters( // (ECPublicKeyParameters)senderPublicParams, // (ECPublicKeyParameters)ephemeralKey); RuntimeObject* L_17 = V_0; AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * L_18 = V_5; MqvPublicParameters_t45CD88AB7EC58154D669C5D5D68FC11F9BEE6680 * L_19 = (MqvPublicParameters_t45CD88AB7EC58154D669C5D5D68FC11F9BEE6680 *)il2cpp_codegen_object_new(MqvPublicParameters_t45CD88AB7EC58154D669C5D5D68FC11F9BEE6680_il2cpp_TypeInfo_var); MqvPublicParameters__ctor_mFDB6054261143F34685DB7BFC82347CE18A7F8D3(L_19, ((ECPublicKeyParameters_tB75EB7F71DB6B346048D07C4EC9D4968988F92FB *)CastclassClass((RuntimeObject*)L_17, ECPublicKeyParameters_tB75EB7F71DB6B346048D07C4EC9D4968988F92FB_il2cpp_TypeInfo_var)), ((ECPublicKeyParameters_tB75EB7F71DB6B346048D07C4EC9D4968988F92FB *)CastclassClass((RuntimeObject*)L_18, ECPublicKeyParameters_tB75EB7F71DB6B346048D07C4EC9D4968988F92FB_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); V_0 = L_19; // receiverPrivateParams = new MqvPrivateParameters( // (ECPrivateKeyParameters)receiverPrivateParams, // (ECPrivateKeyParameters)receiverPrivateParams); RuntimeObject* L_20 = V_1; RuntimeObject* L_21 = V_1; MqvPrivateParameters_t5FC169BF7E9130DEB59D0A3E198847975BE0DE87 * L_22 = (MqvPrivateParameters_t5FC169BF7E9130DEB59D0A3E198847975BE0DE87 *)il2cpp_codegen_object_new(MqvPrivateParameters_t5FC169BF7E9130DEB59D0A3E198847975BE0DE87_il2cpp_TypeInfo_var); MqvPrivateParameters__ctor_mF28F5ADF43751F21DD141B05289F9C0D81578AC5(L_22, ((ECPrivateKeyParameters_t4F22D9A57AC7E670B61E096835534ECE1D259029 *)CastclassClass((RuntimeObject*)L_20, ECPrivateKeyParameters_t4F22D9A57AC7E670B61E096835534ECE1D259029_il2cpp_TypeInfo_var)), ((ECPrivateKeyParameters_t4F22D9A57AC7E670B61E096835534ECE1D259029 *)CastclassClass((RuntimeObject*)L_21, ECPrivateKeyParameters_t4F22D9A57AC7E670B61E096835534ECE1D259029_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); V_1 = L_22; G_B2_0 = G_B1_0; } IL_0072: { // IBasicAgreement agreement = AgreementUtilities.GetBasicAgreementWithKdf( // agreeAlgID, wrapAlg); String_t* L_23 = ___wrapAlg0; IL2CPP_RUNTIME_CLASS_INIT(AgreementUtilities_t23710947071723616410B78FA9B7467C0E9004AF_il2cpp_TypeInfo_var); RuntimeObject* L_24; L_24 = AgreementUtilities_GetBasicAgreementWithKdf_m2CF32B9EEA7F367A7280EA0C5B6AA16BB44C63AE(G_B2_0, L_23, /*hidden argument*/NULL); // agreement.Init(receiverPrivateParams); RuntimeObject* L_25 = L_24; RuntimeObject* L_26 = V_1; NullCheck(L_25); InterfaceActionInvoker1< RuntimeObject* >::Invoke(0 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBasicAgreement::Init(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ICipherParameters) */, IBasicAgreement_t49A0A32749B5FDF1D2945D43D56CAF934A6D548C_il2cpp_TypeInfo_var, L_25, L_26); // BigInteger agreedValue = agreement.CalculateAgreement(senderPublicParams); RuntimeObject* L_27 = V_0; NullCheck(L_25); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_28; L_28 = InterfaceFuncInvoker1< BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 *, RuntimeObject* >::Invoke(2 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBasicAgreement::CalculateAgreement(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ICipherParameters) */, IBasicAgreement_t49A0A32749B5FDF1D2945D43D56CAF934A6D548C_il2cpp_TypeInfo_var, L_25, L_27); // int wrapKeySize = GeneratorUtilities.GetDefaultKeySize(wrapAlg) / 8; String_t* L_29 = ___wrapAlg0; IL2CPP_RUNTIME_CLASS_INIT(GeneratorUtilities_t67ACB79DC6E18815C42C195F8D953A5F17210A19_il2cpp_TypeInfo_var); int32_t L_30; L_30 = GeneratorUtilities_GetDefaultKeySize_mD4E88DF91FDDB43E27D9A9E5E1FCC532ECF594D1(L_29, /*hidden argument*/NULL); V_2 = ((int32_t)((int32_t)L_30/(int32_t)8)); // byte[] wrapKeyBytes = X9IntegerConverter.IntegerToBytes(agreedValue, wrapKeySize); int32_t L_31 = V_2; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_32; L_32 = X9IntegerConverter_IntegerToBytes_m192434ABE05AFFEA0C3F144E169BA2D46965AEC9(L_28, L_31, /*hidden argument*/NULL); V_3 = L_32; // return ParameterUtilities.CreateKeyParameter(wrapAlg, wrapKeyBytes); String_t* L_33 = ___wrapAlg0; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_34 = V_3; IL2CPP_RUNTIME_CLASS_INIT(ParameterUtilities_t234D0F218EFEF9117357F420840DDED9D44E2FD8_il2cpp_TypeInfo_var); KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * L_35; L_35 = ParameterUtilities_CreateKeyParameter_m19FF8F5D0988B47EDF2D296740F966424DE6D877(L_33, L_34, /*hidden argument*/NULL); return L_35; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.KeyParameter BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyAgreeRecipientInformation::UnwrapSessionKey(System.String,BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.KeyParameter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * KeyAgreeRecipientInformation_UnwrapSessionKey_m1067478250CC975B906D8248460BB9BE1A69E056 (KeyAgreeRecipientInformation_t428C88783EA962AE6460155DB641A5385BA20929 * __this, String_t* ___wrapAlg0, KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * ___agreedKey1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IWrapper_t29A9E044AAEEECE9E2FA8A8A61F76B0F50347B39_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ParameterUtilities_t234D0F218EFEF9117357F420840DDED9D44E2FD8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WrapperUtilities_tA8773B79845F802BD564227F81CD5EF74C553416_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_0 = NULL; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_1 = NULL; { // byte[] encKeyOctets = encryptedKey.GetOctets(); Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_0 = __this->get_encryptedKey_5(); NullCheck(L_0); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1; L_1 = VirtualFuncInvoker0< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(10 /* System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString::GetOctets() */, L_0); V_0 = L_1; // IWrapper keyCipher = WrapperUtilities.GetWrapper(wrapAlg); String_t* L_2 = ___wrapAlg0; IL2CPP_RUNTIME_CLASS_INIT(WrapperUtilities_tA8773B79845F802BD564227F81CD5EF74C553416_il2cpp_TypeInfo_var); RuntimeObject* L_3; L_3 = WrapperUtilities_GetWrapper_mBD3F21889F0902E5321CD22D3CCE7C6D09B89A65(L_2, /*hidden argument*/NULL); // keyCipher.Init(false, agreedKey); RuntimeObject* L_4 = L_3; KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * L_5 = ___agreedKey1; NullCheck(L_4); InterfaceActionInvoker2< bool, RuntimeObject* >::Invoke(1 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IWrapper::Init(System.Boolean,BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ICipherParameters) */, IWrapper_t29A9E044AAEEECE9E2FA8A8A61F76B0F50347B39_il2cpp_TypeInfo_var, L_4, (bool)0, L_5); // byte[] sKeyBytes = keyCipher.Unwrap(encKeyOctets, 0, encKeyOctets.Length); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_6 = V_0; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_7 = V_0; NullCheck(L_7); NullCheck(L_4); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_8; L_8 = InterfaceFuncInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(3 /* System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IWrapper::Unwrap(System.Byte[],System.Int32,System.Int32) */, IWrapper_t29A9E044AAEEECE9E2FA8A8A61F76B0F50347B39_il2cpp_TypeInfo_var, L_4, L_6, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length)))); V_1 = L_8; // return ParameterUtilities.CreateKeyParameter(GetContentAlgorithmName(), sKeyBytes); String_t* L_9; L_9 = RecipientInformation_GetContentAlgorithmName_m64C76DBDEBDB6A3BE04DEA51EA8B54FE664126BD(__this, /*hidden argument*/NULL); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_10 = V_1; IL2CPP_RUNTIME_CLASS_INIT(ParameterUtilities_t234D0F218EFEF9117357F420840DDED9D44E2FD8_il2cpp_TypeInfo_var); KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * L_11; L_11 = ParameterUtilities_CreateKeyParameter_m19FF8F5D0988B47EDF2D296740F966424DE6D877(L_9, L_10, /*hidden argument*/NULL); return L_11; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.KeyParameter BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyAgreeRecipientInformation::GetSessionKey(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * KeyAgreeRecipientInformation_GetSessionKey_m7792498485DE277C29E2019BA4ABDE7497BAC00E (KeyAgreeRecipientInformation_t428C88783EA962AE6460155DB641A5385BA20929 * __this, AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * ___receiverPrivateKey0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * V_1 = NULL; KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * V_2 = NULL; KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * V_3 = NULL; SecurityUtilityException_t302EB7051FEB04E7829C028B4BC072B6664255CA * V_4 = NULL; InvalidKeyException_t7F19EE8EB26000BAFDF50186FB1DD59F13A7FD8A * V_5 = NULL; Exception_t * V_6 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; IL_0000: try {// begin try (depth: 1) // string wrapAlg = DerObjectIdentifier.GetInstance( // Asn1Sequence.GetInstance(keyEncAlg.Parameters)[0]).Id; AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_0 = ((RecipientInformation_tB02D0534E5C0851FB482467BA26A52FAD2F853AB *)__this)->get_keyEncAlg_1(); NullCheck(L_0); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_1; L_1 = VirtualFuncInvoker0< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * >::Invoke(8 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier::get_Parameters() */, L_0); Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_2; L_2 = Asn1Sequence_GetInstance_m53E4D5619D84F02123D6C3B6EA8E0EEEF86B244C(L_1, /*hidden argument*/NULL); NullCheck(L_2); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_3; L_3 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_2, 0); IL2CPP_RUNTIME_CLASS_INIT(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_4; L_4 = DerObjectIdentifier_GetInstance_mBE1F50C71CFA8B210307AFD39E62F8AF4D5E34FF(L_3, /*hidden argument*/NULL); NullCheck(L_4); String_t* L_5; L_5 = DerObjectIdentifier_get_Id_m1A4618B1F7ED8630EDC76DF95D8C7086F1E616D6_inline(L_4, /*hidden argument*/NULL); V_0 = L_5; // AsymmetricKeyParameter senderPublicKey = GetSenderPublicKey( // receiverPrivateKey, info.Originator); AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * L_6 = ___receiverPrivateKey0; KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC * L_7 = __this->get_info_4(); NullCheck(L_7); OriginatorIdentifierOrKey_t391EC78D0FD29ED45DCF5BFF9AC5BABA8A005603 * L_8; L_8 = KeyAgreeRecipientInfo_get_Originator_m3CAAD9DEAA56A26CCDEE8263D275EF2CD7009999_inline(L_7, /*hidden argument*/NULL); AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * L_9; L_9 = KeyAgreeRecipientInformation_GetSenderPublicKey_m9FCB7D93D76FC125D4CEDB8D4F5F04EBEA7671A4(__this, L_6, L_8, /*hidden argument*/NULL); V_1 = L_9; // KeyParameter agreedWrapKey = CalculateAgreedWrapKey(wrapAlg, // senderPublicKey, receiverPrivateKey); String_t* L_10 = V_0; AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * L_11 = V_1; AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * L_12 = ___receiverPrivateKey0; KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * L_13; L_13 = KeyAgreeRecipientInformation_CalculateAgreedWrapKey_mCDC7C42039E921E8091176580B5700B40985DB66(__this, L_10, L_11, L_12, /*hidden argument*/NULL); V_2 = L_13; // return UnwrapSessionKey(wrapAlg, agreedWrapKey); String_t* L_14 = V_0; KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * L_15 = V_2; KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * L_16; L_16 = KeyAgreeRecipientInformation_UnwrapSessionKey_m1067478250CC975B906D8248460BB9BE1A69E056(__this, L_14, L_15, /*hidden argument*/NULL); V_3 = L_16; goto IL_0076; }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SecurityUtilityException_t302EB7051FEB04E7829C028B4BC072B6664255CA_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0049; } if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidKeyException_t7F19EE8EB26000BAFDF50186FB1DD59F13A7FD8A_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0058; } if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0067; } throw e; } CATCH_0049: {// begin catch(BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecurityUtilityException) // catch (SecurityUtilityException e) V_4 = ((SecurityUtilityException_t302EB7051FEB04E7829C028B4BC072B6664255CA *)IL2CPP_GET_ACTIVE_EXCEPTION(SecurityUtilityException_t302EB7051FEB04E7829C028B4BC072B6664255CA *)); // throw new CmsException("couldn't create cipher.", e); SecurityUtilityException_t302EB7051FEB04E7829C028B4BC072B6664255CA * L_17 = V_4; CmsException_tA459F99D1C6C93528CDEC8BBB289A932766EC3DE * L_18 = (CmsException_tA459F99D1C6C93528CDEC8BBB289A932766EC3DE *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CmsException_tA459F99D1C6C93528CDEC8BBB289A932766EC3DE_il2cpp_TypeInfo_var))); CmsException__ctor_m809D9B85B996E0F6DC9AA0AD774D54178AC5698B(L_18, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral01F92A55E0C4F71D4AC7BF5ADA2134AD7132F1AC)), L_17, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_18, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeyAgreeRecipientInformation_GetSessionKey_m7792498485DE277C29E2019BA4ABDE7497BAC00E_RuntimeMethod_var))); }// end catch (depth: 1) CATCH_0058: {// begin catch(BestHTTP.SecureProtocol.Org.BouncyCastle.Security.InvalidKeyException) // catch (InvalidKeyException e) V_5 = ((InvalidKeyException_t7F19EE8EB26000BAFDF50186FB1DD59F13A7FD8A *)IL2CPP_GET_ACTIVE_EXCEPTION(InvalidKeyException_t7F19EE8EB26000BAFDF50186FB1DD59F13A7FD8A *)); // throw new CmsException("key invalid in message.", e); InvalidKeyException_t7F19EE8EB26000BAFDF50186FB1DD59F13A7FD8A * L_19 = V_5; CmsException_tA459F99D1C6C93528CDEC8BBB289A932766EC3DE * L_20 = (CmsException_tA459F99D1C6C93528CDEC8BBB289A932766EC3DE *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CmsException_tA459F99D1C6C93528CDEC8BBB289A932766EC3DE_il2cpp_TypeInfo_var))); CmsException__ctor_m809D9B85B996E0F6DC9AA0AD774D54178AC5698B(L_20, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBE27790FE5F9592709AE1519C66D48EF4947F953)), L_19, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeyAgreeRecipientInformation_GetSessionKey_m7792498485DE277C29E2019BA4ABDE7497BAC00E_RuntimeMethod_var))); }// end catch (depth: 1) CATCH_0067: {// begin catch(System.Exception) // catch (Exception e) V_6 = ((Exception_t *)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *)); // throw new CmsException("originator key invalid.", e); Exception_t * L_21 = V_6; CmsException_tA459F99D1C6C93528CDEC8BBB289A932766EC3DE * L_22 = (CmsException_tA459F99D1C6C93528CDEC8BBB289A932766EC3DE *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CmsException_tA459F99D1C6C93528CDEC8BBB289A932766EC3DE_il2cpp_TypeInfo_var))); CmsException__ctor_m809D9B85B996E0F6DC9AA0AD774D54178AC5698B(L_22, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE25DB41AE94668E3BE7821713A2025E666563864)), L_21, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_22, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeyAgreeRecipientInformation_GetSessionKey_m7792498485DE277C29E2019BA4ABDE7497BAC00E_RuntimeMethod_var))); }// end catch (depth: 1) IL_0076: { // } KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * L_23 = V_3; return L_23; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsTypedStream BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyAgreeRecipientInformation::GetContentStream(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ICipherParameters) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CmsTypedStream_t73EEA14F539B2D9626982E55116A232F30D73A21 * KeyAgreeRecipientInformation_GetContentStream_mC0FE2B90652F5E13DEDF2EF880BC8012449EC2E4 (KeyAgreeRecipientInformation_t428C88783EA962AE6460155DB641A5385BA20929 * __this, RuntimeObject* ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * V_0 = NULL; KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * V_1 = NULL; { // if (!(key is AsymmetricKeyParameter)) RuntimeObject* L_0 = ___key0; if (((AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A *)IsInstClass((RuntimeObject*)L_0, AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A_il2cpp_TypeInfo_var))) { goto IL_0018; } } { // throw new ArgumentException("KeyAgreement requires asymmetric key", "key"); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_1 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral11AB4E9415AA9463409964D83190AADCCACA3814)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7D028CCE3B6E7B61AE2C752D7AE970DA04AB7C6)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeyAgreeRecipientInformation_GetContentStream_mC0FE2B90652F5E13DEDF2EF880BC8012449EC2E4_RuntimeMethod_var))); } IL_0018: { // AsymmetricKeyParameter receiverPrivateKey = (AsymmetricKeyParameter) key; RuntimeObject* L_2 = ___key0; V_0 = ((AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A *)CastclassClass((RuntimeObject*)L_2, AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A_il2cpp_TypeInfo_var)); // if (!receiverPrivateKey.IsPrivate) AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * L_3 = V_0; NullCheck(L_3); bool L_4; L_4 = AsymmetricKeyParameter_get_IsPrivate_m4A94334067C062D7991228DDB6CBFE57A5D8244B_inline(L_3, /*hidden argument*/NULL); if (L_4) { goto IL_0037; } } { // throw new ArgumentException("Expected private key", "key"); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_5 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral03B62EA5928F6650FBFDAB355634433C1C7604AD)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7D028CCE3B6E7B61AE2C752D7AE970DA04AB7C6)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeyAgreeRecipientInformation_GetContentStream_mC0FE2B90652F5E13DEDF2EF880BC8012449EC2E4_RuntimeMethod_var))); } IL_0037: { // KeyParameter sKey = GetSessionKey(receiverPrivateKey); AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * L_6 = V_0; KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * L_7; L_7 = KeyAgreeRecipientInformation_GetSessionKey_m7792498485DE277C29E2019BA4ABDE7497BAC00E(__this, L_6, /*hidden argument*/NULL); V_1 = L_7; // return GetContentFromSessionKey(sKey); KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * L_8 = V_1; CmsTypedStream_t73EEA14F539B2D9626982E55116A232F30D73A21 * L_9; L_9 = RecipientInformation_GetContentFromSessionKey_m0C29E269759D7B87B5D1B84BC1D636DE0E21166A(__this, L_8, /*hidden argument*/NULL); return L_9; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.KeyDerivationFunc::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyDerivationFunc__ctor_mA390F2AAD3A2230A2DDEC0D03CA9BC7A7E6EC2AD (KeyDerivationFunc_t77081A2881F6F03B2B805E840C798E3AC7ACA213 * __this, Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * ___seq0, const RuntimeMethod* method) { { // : base(seq) Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_0 = ___seq0; AlgorithmIdentifier__ctor_m1354F1BB3110797415F21AEE7305B862EF96E838(__this, L_0, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.KeyDerivationFunc::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyDerivationFunc__ctor_m6F731D8450108E3A3E80E1354E9985B584547721 (KeyDerivationFunc_t77081A2881F6F03B2B805E840C798E3AC7ACA213 * __this, DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___id0, Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * ___parameters1, const RuntimeMethod* method) { { // : base(id, parameters) DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_0 = ___id0; Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_1 = ___parameters1; AlgorithmIdentifier__ctor_m942B7921A63CC0139DAD59B57D2B41BBA20EF608(__this, L_0, L_1, /*hidden argument*/NULL); // } return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Security.KeyException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyException__ctor_m1D516443D81D657471EA06990CFCE88A610ACFB4 (KeyException_t145BB2019F3A9E314C4C8FF15DDDFCD63E89AE62 * __this, const RuntimeMethod* method) { { // public KeyException() : base() { } GeneralSecurityException__ctor_m9F2B5464CFE88726238594C5BC58617B9217B22C(__this, /*hidden argument*/NULL); // public KeyException() : base() { } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Security.KeyException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyException__ctor_m0EA76AB66A311BBD558596ECB9853E53949D9CAE (KeyException_t145BB2019F3A9E314C4C8FF15DDDFCD63E89AE62 * __this, String_t* ___message0, const RuntimeMethod* method) { { // public KeyException(string message) : base(message) { } String_t* L_0 = ___message0; GeneralSecurityException__ctor_m489A96C69DCB3F2633EF024AD3A3104F394BA51D(__this, L_0, /*hidden argument*/NULL); // public KeyException(string message) : base(message) { } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Security.KeyException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyException__ctor_mECD1BA80BB91F11AE8CCD567168FA3848DCCC23F (KeyException_t145BB2019F3A9E314C4C8FF15DDDFCD63E89AE62 * __this, String_t* ___message0, Exception_t * ___exception1, const RuntimeMethod* method) { { // public KeyException(string message, Exception exception) : base(message, exception) { } String_t* L_0 = ___message0; Exception_t * L_1 = ___exception1; GeneralSecurityException__ctor_m8281CA2286C5173479C6BD01CC65700A62AE2F9D(__this, L_0, L_1, /*hidden argument*/NULL); // public KeyException(string message, Exception exception) : base(message, exception) { } return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.KeyExchangeAlgorithm::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyExchangeAlgorithm__ctor_m59998C80CC5974745FA878B709CE75E325CED673 (KeyExchangeAlgorithm_tD9953762C6B6DEC6461B08F3F642B058C12CF513 * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.KeyGenerationParameters::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyGenerationParameters__ctor_m57645A39098F4DEA2AEFB8676E1EDCB298FC65C2 (KeyGenerationParameters_t1B3393E8D9D0068ABF593DC15AA436FCA158BF39 * __this, SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * ___random0, int32_t ___strength1, const RuntimeMethod* method) { { // public KeyGenerationParameters( // SecureRandom random, // int strength) Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); // if (random == null) SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * L_0 = ___random0; if (L_0) { goto IL_0014; } } { // throw new ArgumentNullException("random"); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9D40F1B51AA0CEAA15B307E54B4E8CBB55AA5F41)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeyGenerationParameters__ctor_m57645A39098F4DEA2AEFB8676E1EDCB298FC65C2_RuntimeMethod_var))); } IL_0014: { // if (strength < 1) int32_t L_2 = ___strength1; if ((((int32_t)L_2) >= ((int32_t)1))) { goto IL_0028; } } { // throw new ArgumentException("strength must be a positive value", "strength"); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_3 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE3577C2D5B36A10E4CFD76E58010316ACDBA11CA)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEF65109317E1DF79845D5868309B0E9BFB10384B)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeyGenerationParameters__ctor_m57645A39098F4DEA2AEFB8676E1EDCB298FC65C2_RuntimeMethod_var))); } IL_0028: { // this.random = random; SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * L_4 = ___random0; __this->set_random_0(L_4); // this.strength = strength; int32_t L_5 = ___strength1; __this->set_strength_1(L_5); // } return; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.KeyGenerationParameters::get_Random() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * KeyGenerationParameters_get_Random_m96B13620B3ECF5CEB64561A4DBCBC18AC6CB11F4 (KeyGenerationParameters_t1B3393E8D9D0068ABF593DC15AA436FCA158BF39 * __this, const RuntimeMethod* method) { { // get { return random; } SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * L_0 = __this->get_random_0(); return L_0; } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.KeyGenerationParameters::get_Strength() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t KeyGenerationParameters_get_Strength_m1AF6C156C99D9FF48C71158A37331779DD65ABF9 (KeyGenerationParameters_t1B3393E8D9D0068ABF593DC15AA436FCA158BF39 * __this, const RuntimeMethod* method) { { // get { return strength; } int32_t L_0 = __this->get_strength_1(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.KeyParameter::.ctor(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyParameter__ctor_m96EBA1A3EB3F4981F3C14E96086C7083DDE16E67 (KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public KeyParameter( // byte[] key) Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); // if (key == null) ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___key0; if (L_0) { goto IL_0014; } } { // throw new ArgumentNullException("key"); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7D028CCE3B6E7B61AE2C752D7AE970DA04AB7C6)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeyParameter__ctor_m96EBA1A3EB3F4981F3C14E96086C7083DDE16E67_RuntimeMethod_var))); } IL_0014: { // this.key = (byte[]) key.Clone(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = ___key0; NullCheck((RuntimeArray *)(RuntimeArray *)L_2); RuntimeObject * L_3; L_3 = Array_Clone_m3C566B3D3F4333212411BD7C3B61D798BADB3F3C((RuntimeArray *)(RuntimeArray *)L_2, /*hidden argument*/NULL); __this->set_key_0(((ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)Castclass((RuntimeObject*)L_3, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var))); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.KeyParameter::.ctor(System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyParameter__ctor_mA7E94BCEFAFE6F84602F24F9752CB2117CA7B8BF (KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___key0, int32_t ___keyOff1, int32_t ___keyLen2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public KeyParameter( // byte[] key, // int keyOff, // int keyLen) Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); // if (key == null) ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___key0; if (L_0) { goto IL_0014; } } { // throw new ArgumentNullException("key"); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7D028CCE3B6E7B61AE2C752D7AE970DA04AB7C6)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeyParameter__ctor_mA7E94BCEFAFE6F84602F24F9752CB2117CA7B8BF_RuntimeMethod_var))); } IL_0014: { // if (keyOff < 0 || keyOff > key.Length) int32_t L_2 = ___keyOff1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_001e; } } { int32_t L_3 = ___keyOff1; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = ___key0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))) { goto IL_0029; } } IL_001e: { // throw new ArgumentOutOfRangeException("keyOff"); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_5 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var))); ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC89ED497F53BA772E57D7FCD59C0427043971866)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeyParameter__ctor_mA7E94BCEFAFE6F84602F24F9752CB2117CA7B8BF_RuntimeMethod_var))); } IL_0029: { // if (keyLen < 0 || keyLen > (key.Length - keyOff)) int32_t L_6 = ___keyLen2; if ((((int32_t)L_6) < ((int32_t)0))) { goto IL_0035; } } { int32_t L_7 = ___keyLen2; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_8 = ___key0; NullCheck(L_8); int32_t L_9 = ___keyOff1; if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length))), (int32_t)L_9))))) { goto IL_0040; } } IL_0035: { // throw new ArgumentOutOfRangeException("keyLen"); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_10 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var))); ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8F9B7501515E2A09F052F2F28B58523841134766)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeyParameter__ctor_mA7E94BCEFAFE6F84602F24F9752CB2117CA7B8BF_RuntimeMethod_var))); } IL_0040: { // this.key = new byte[keyLen]; int32_t L_11 = ___keyLen2; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_12 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)L_11); __this->set_key_0(L_12); // Array.Copy(key, keyOff, this.key, 0, keyLen); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_13 = ___key0; int32_t L_14 = ___keyOff1; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_15 = __this->get_key_0(); int32_t L_16 = ___keyLen2; Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_13, L_14, (RuntimeArray *)(RuntimeArray *)L_15, 0, L_16, /*hidden argument*/NULL); // } return; } } // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.KeyParameter::GetKey() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* KeyParameter_GetKey_mCA2C132B43F669063C426602DD5A8A672531385A (KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // return (byte[]) key.Clone(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = __this->get_key_0(); NullCheck((RuntimeArray *)(RuntimeArray *)L_0); RuntimeObject * L_1; L_1 = Array_Clone_m3C566B3D3F4333212411BD7C3B61D798BADB3F3C((RuntimeArray *)(RuntimeArray *)L_0, /*hidden argument*/NULL); return ((ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)Castclass((RuntimeObject*)L_1, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var)); } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.KeyPurposeID::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyPurposeID__ctor_m78621326251A1DB1083007ABDDC92C4C70B1DC07 (KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * __this, String_t* ___id0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // : base(id) String_t* L_0 = ___id0; IL2CPP_RUNTIME_CLASS_INIT(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); DerObjectIdentifier__ctor_m8009342D7B2AD40B1E19E6AB958141979B7405CD(__this, L_0, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.KeyPurposeID::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyPurposeID__cctor_m6E9899AC9195AF3DC6D2BD5E2E69CD901081E638 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral16041F4A34A616AEA555F6041D7EEE9C28DDF5DB); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5E911BB12F7CD2F8BA182802B74FB3A6E1ED9DE5); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral76503D9253B72682A620EEAA6520F0FD44B20267); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral909F3D6787D061F47CA575DBA54915DEDA85F119); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral92DF713CD0B096E2A53BD8F4045E4587AB222F88); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC31E66F919D06AD2730738EF7F884271E99BB7DA); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC373408F71B6A085BE6E6EC41792D1D1C851ED76); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD25701B6D836EFB7F6AE0235DA533204D711C583); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE7C7449D840A91B3AF035F43E6106A0BC8372CC6); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEA21DB17BCE45901F779B0D63F761FBC9EBD7B0F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF1BD7B34E90741DCE9D6EC5D1A587586598F4D23); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFE0B1BB928B058DE0C421F4CC78A66B77C67F6D5); s_Il2CppMethodInitialized = true; } { // public static readonly KeyPurposeID AnyExtendedKeyUsage = new KeyPurposeID(X509Extensions.ExtendedKeyUsage.Id + ".0"); IL2CPP_RUNTIME_CLASS_INIT(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_0 = ((X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields*)il2cpp_codegen_static_fields_for(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_il2cpp_TypeInfo_var))->get_ExtendedKeyUsage_22(); NullCheck(L_0); IL2CPP_RUNTIME_CLASS_INIT(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); String_t* L_1; L_1 = DerObjectIdentifier_get_Id_m1A4618B1F7ED8630EDC76DF95D8C7086F1E616D6_inline(L_0, /*hidden argument*/NULL); String_t* L_2; L_2 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(L_1, _stringLiteralC31E66F919D06AD2730738EF7F884271E99BB7DA, /*hidden argument*/NULL); KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * L_3 = (KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 *)il2cpp_codegen_object_new(KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_il2cpp_TypeInfo_var); KeyPurposeID__ctor_m78621326251A1DB1083007ABDDC92C4C70B1DC07(L_3, L_2, /*hidden argument*/NULL); ((KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_StaticFields*)il2cpp_codegen_static_fields_for(KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_il2cpp_TypeInfo_var))->set_AnyExtendedKeyUsage_7(L_3); // public static readonly KeyPurposeID IdKPServerAuth = new KeyPurposeID(IdKP + ".1"); KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * L_4 = (KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 *)il2cpp_codegen_object_new(KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_il2cpp_TypeInfo_var); KeyPurposeID__ctor_m78621326251A1DB1083007ABDDC92C4C70B1DC07(L_4, _stringLiteralE7C7449D840A91B3AF035F43E6106A0BC8372CC6, /*hidden argument*/NULL); ((KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_StaticFields*)il2cpp_codegen_static_fields_for(KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_il2cpp_TypeInfo_var))->set_IdKPServerAuth_8(L_4); // public static readonly KeyPurposeID IdKPClientAuth = new KeyPurposeID(IdKP + ".2"); KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * L_5 = (KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 *)il2cpp_codegen_object_new(KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_il2cpp_TypeInfo_var); KeyPurposeID__ctor_m78621326251A1DB1083007ABDDC92C4C70B1DC07(L_5, _stringLiteralFE0B1BB928B058DE0C421F4CC78A66B77C67F6D5, /*hidden argument*/NULL); ((KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_StaticFields*)il2cpp_codegen_static_fields_for(KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_il2cpp_TypeInfo_var))->set_IdKPClientAuth_9(L_5); // public static readonly KeyPurposeID IdKPCodeSigning = new KeyPurposeID(IdKP + ".3"); KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * L_6 = (KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 *)il2cpp_codegen_object_new(KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_il2cpp_TypeInfo_var); KeyPurposeID__ctor_m78621326251A1DB1083007ABDDC92C4C70B1DC07(L_6, _stringLiteralEA21DB17BCE45901F779B0D63F761FBC9EBD7B0F, /*hidden argument*/NULL); ((KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_StaticFields*)il2cpp_codegen_static_fields_for(KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_il2cpp_TypeInfo_var))->set_IdKPCodeSigning_10(L_6); // public static readonly KeyPurposeID IdKPEmailProtection = new KeyPurposeID(IdKP + ".4"); KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * L_7 = (KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 *)il2cpp_codegen_object_new(KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_il2cpp_TypeInfo_var); KeyPurposeID__ctor_m78621326251A1DB1083007ABDDC92C4C70B1DC07(L_7, _stringLiteral16041F4A34A616AEA555F6041D7EEE9C28DDF5DB, /*hidden argument*/NULL); ((KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_StaticFields*)il2cpp_codegen_static_fields_for(KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_il2cpp_TypeInfo_var))->set_IdKPEmailProtection_11(L_7); // public static readonly KeyPurposeID IdKPIpsecEndSystem = new KeyPurposeID(IdKP + ".5"); KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * L_8 = (KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 *)il2cpp_codegen_object_new(KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_il2cpp_TypeInfo_var); KeyPurposeID__ctor_m78621326251A1DB1083007ABDDC92C4C70B1DC07(L_8, _stringLiteralC373408F71B6A085BE6E6EC41792D1D1C851ED76, /*hidden argument*/NULL); ((KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_StaticFields*)il2cpp_codegen_static_fields_for(KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_il2cpp_TypeInfo_var))->set_IdKPIpsecEndSystem_12(L_8); // public static readonly KeyPurposeID IdKPIpsecTunnel = new KeyPurposeID(IdKP + ".6"); KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * L_9 = (KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 *)il2cpp_codegen_object_new(KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_il2cpp_TypeInfo_var); KeyPurposeID__ctor_m78621326251A1DB1083007ABDDC92C4C70B1DC07(L_9, _stringLiteral909F3D6787D061F47CA575DBA54915DEDA85F119, /*hidden argument*/NULL); ((KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_StaticFields*)il2cpp_codegen_static_fields_for(KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_il2cpp_TypeInfo_var))->set_IdKPIpsecTunnel_13(L_9); // public static readonly KeyPurposeID IdKPIpsecUser = new KeyPurposeID(IdKP + ".7"); KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * L_10 = (KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 *)il2cpp_codegen_object_new(KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_il2cpp_TypeInfo_var); KeyPurposeID__ctor_m78621326251A1DB1083007ABDDC92C4C70B1DC07(L_10, _stringLiteralF1BD7B34E90741DCE9D6EC5D1A587586598F4D23, /*hidden argument*/NULL); ((KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_StaticFields*)il2cpp_codegen_static_fields_for(KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_il2cpp_TypeInfo_var))->set_IdKPIpsecUser_14(L_10); // public static readonly KeyPurposeID IdKPTimeStamping = new KeyPurposeID(IdKP + ".8"); KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * L_11 = (KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 *)il2cpp_codegen_object_new(KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_il2cpp_TypeInfo_var); KeyPurposeID__ctor_m78621326251A1DB1083007ABDDC92C4C70B1DC07(L_11, _stringLiteral92DF713CD0B096E2A53BD8F4045E4587AB222F88, /*hidden argument*/NULL); ((KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_StaticFields*)il2cpp_codegen_static_fields_for(KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_il2cpp_TypeInfo_var))->set_IdKPTimeStamping_15(L_11); // public static readonly KeyPurposeID IdKPOcspSigning = new KeyPurposeID(IdKP + ".9"); KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * L_12 = (KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 *)il2cpp_codegen_object_new(KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_il2cpp_TypeInfo_var); KeyPurposeID__ctor_m78621326251A1DB1083007ABDDC92C4C70B1DC07(L_12, _stringLiteralD25701B6D836EFB7F6AE0235DA533204D711C583, /*hidden argument*/NULL); ((KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_StaticFields*)il2cpp_codegen_static_fields_for(KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_il2cpp_TypeInfo_var))->set_IdKPOcspSigning_16(L_12); // public static readonly KeyPurposeID IdKPSmartCardLogon = new KeyPurposeID("1.3.6.1.4.1.311.20.2.2"); KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * L_13 = (KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 *)il2cpp_codegen_object_new(KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_il2cpp_TypeInfo_var); KeyPurposeID__ctor_m78621326251A1DB1083007ABDDC92C4C70B1DC07(L_13, _stringLiteral5E911BB12F7CD2F8BA182802B74FB3A6E1ED9DE5, /*hidden argument*/NULL); ((KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_StaticFields*)il2cpp_codegen_static_fields_for(KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_il2cpp_TypeInfo_var))->set_IdKPSmartCardLogon_17(L_13); // public static readonly KeyPurposeID IdKPMacAddress = new KeyPurposeID("1.3.6.1.1.1.1.22"); KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 * L_14 = (KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59 *)il2cpp_codegen_object_new(KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_il2cpp_TypeInfo_var); KeyPurposeID__ctor_m78621326251A1DB1083007ABDDC92C4C70B1DC07(L_14, _stringLiteral76503D9253B72682A620EEAA6520F0FD44B20267, /*hidden argument*/NULL); ((KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_StaticFields*)il2cpp_codegen_static_fields_for(KeyPurposeID_t01CF1CB2F96C4D8B3D77AA1E07FF308F04AD1B59_il2cpp_TypeInfo_var))->set_IdKPMacAddress_18(L_14); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.KeyRecRepContent::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyRecRepContent__ctor_m595F019873FF3BFBC0E8AB8BB8FECCCECEE88757 (KeyRecRepContent_t22F4C88ECE39C1F57BE1F388B10F38BE3CC44E01 * __this, Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * ___seq0, const RuntimeMethod* method) { int32_t V_0 = 0; Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0 * V_1 = NULL; int32_t V_2 = 0; int32_t V_3 = 0; { // private KeyRecRepContent(Asn1Sequence seq) Asn1Encodable__ctor_mF956C9DAF4A126B7B4406E2DD0EED16E64ABA126(__this, /*hidden argument*/NULL); // status = PkiStatusInfo.GetInstance(seq[0]); Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_0 = ___seq0; NullCheck(L_0); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_1; L_1 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_0, 0); PkiStatusInfo_t599558AC728FCD067FBBCD19778BE6228EBA3A17 * L_2; L_2 = PkiStatusInfo_GetInstance_m7A8AAB63793502B45BC23FEDD0C72E5EAC33ABB3(L_1, /*hidden argument*/NULL); __this->set_status_2(L_2); // for (int pos = 1; pos < seq.Count; ++pos) V_0 = 1; goto IL_00a7; } IL_001f: { // Asn1TaggedObject tObj = Asn1TaggedObject.GetInstance(seq[pos]); Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_3 = ___seq0; int32_t L_4 = V_0; NullCheck(L_3); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_5; L_5 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_3, L_4); Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0 * L_6; L_6 = Asn1TaggedObject_GetInstance_m7245B39FCEB8EA160AEFF9F8F724A71CB2EB47A8(L_5, /*hidden argument*/NULL); V_1 = L_6; // switch (tObj.TagNo) Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0 * L_7 = V_1; NullCheck(L_7); int32_t L_8; L_8 = Asn1TaggedObject_get_TagNo_m74349C4325A7ADC53200F7A483A878E6B9D53379_inline(L_7, /*hidden argument*/NULL); V_2 = L_8; int32_t L_9 = V_2; switch (L_9) { case 0: { goto IL_0047; } case 1: { goto IL_005a; } case 2: { goto IL_006d; } } } { goto IL_0080; } IL_0047: { // newSigCert = CmpCertificate.GetInstance(tObj.GetObject()); Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0 * L_10 = V_1; NullCheck(L_10); Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * L_11; L_11 = Asn1TaggedObject_GetObject_m67B210FB1D1A9F5F1FE2656AA8539AA73B9C0D64(L_10, /*hidden argument*/NULL); CmpCertificate_t426B8158788ADFD4E28E4E8F169E1E1D7651F894 * L_12; L_12 = CmpCertificate_GetInstance_mA319EAF3013759A5DD807397463555B70791BBD9(L_11, /*hidden argument*/NULL); __this->set_newSigCert_3(L_12); // break; goto IL_00a3; } IL_005a: { // caCerts = Asn1Sequence.GetInstance(tObj.GetObject()); Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0 * L_13 = V_1; NullCheck(L_13); Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * L_14; L_14 = Asn1TaggedObject_GetObject_m67B210FB1D1A9F5F1FE2656AA8539AA73B9C0D64(L_13, /*hidden argument*/NULL); Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_15; L_15 = Asn1Sequence_GetInstance_m53E4D5619D84F02123D6C3B6EA8E0EEEF86B244C(L_14, /*hidden argument*/NULL); __this->set_caCerts_4(L_15); // break; goto IL_00a3; } IL_006d: { // keyPairHist = Asn1Sequence.GetInstance(tObj.GetObject()); Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0 * L_16 = V_1; NullCheck(L_16); Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * L_17; L_17 = Asn1TaggedObject_GetObject_m67B210FB1D1A9F5F1FE2656AA8539AA73B9C0D64(L_16, /*hidden argument*/NULL); Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_18; L_18 = Asn1Sequence_GetInstance_m53E4D5619D84F02123D6C3B6EA8E0EEEF86B244C(L_17, /*hidden argument*/NULL); __this->set_keyPairHist_5(L_18); // break; goto IL_00a3; } IL_0080: { // throw new ArgumentException("unknown tag number: " + tObj.TagNo, "seq"); Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0 * L_19 = V_1; NullCheck(L_19); int32_t L_20; L_20 = Asn1TaggedObject_get_TagNo_m74349C4325A7ADC53200F7A483A878E6B9D53379_inline(L_19, /*hidden argument*/NULL); V_3 = L_20; String_t* L_21; L_21 = Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411((int32_t*)(&V_3), /*hidden argument*/NULL); String_t* L_22; L_22 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAEA77D5EF63F278131D936B44C26AFA3FE3CCF9E)), L_21, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_23 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_23, L_22, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral24C049E512CD1B48036BD162FF63700A57CA3469)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_23, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeyRecRepContent__ctor_m595F019873FF3BFBC0E8AB8BB8FECCCECEE88757_RuntimeMethod_var))); } IL_00a3: { // for (int pos = 1; pos < seq.Count; ++pos) int32_t L_24 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1)); } IL_00a7: { // for (int pos = 1; pos < seq.Count; ++pos) int32_t L_25 = V_0; Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_26 = ___seq0; NullCheck(L_26); int32_t L_27; L_27 = VirtualFuncInvoker0< int32_t >::Invoke(13 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Count() */, L_26); if ((((int32_t)L_25) < ((int32_t)L_27))) { goto IL_001f; } } { // } return; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.KeyRecRepContent BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.KeyRecRepContent::GetInstance(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyRecRepContent_t22F4C88ECE39C1F57BE1F388B10F38BE3CC44E01 * KeyRecRepContent_GetInstance_m2BBAC3C9C7CFE7012782FD2C19ADAE4DE0363047 (RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyRecRepContent_t22F4C88ECE39C1F57BE1F388B10F38BE3CC44E01_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (obj is KeyRecRepContent) RuntimeObject * L_0 = ___obj0; if (!((KeyRecRepContent_t22F4C88ECE39C1F57BE1F388B10F38BE3CC44E01 *)IsInstClass((RuntimeObject*)L_0, KeyRecRepContent_t22F4C88ECE39C1F57BE1F388B10F38BE3CC44E01_il2cpp_TypeInfo_var))) { goto IL_000f; } } { // return (KeyRecRepContent)obj; RuntimeObject * L_1 = ___obj0; return ((KeyRecRepContent_t22F4C88ECE39C1F57BE1F388B10F38BE3CC44E01 *)CastclassClass((RuntimeObject*)L_1, KeyRecRepContent_t22F4C88ECE39C1F57BE1F388B10F38BE3CC44E01_il2cpp_TypeInfo_var)); } IL_000f: { // if (obj is Asn1Sequence) RuntimeObject * L_2 = ___obj0; if (!((Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 *)IsInstClass((RuntimeObject*)L_2, Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8_il2cpp_TypeInfo_var))) { goto IL_0023; } } { // return new KeyRecRepContent((Asn1Sequence)obj); RuntimeObject * L_3 = ___obj0; KeyRecRepContent_t22F4C88ECE39C1F57BE1F388B10F38BE3CC44E01 * L_4 = (KeyRecRepContent_t22F4C88ECE39C1F57BE1F388B10F38BE3CC44E01 *)il2cpp_codegen_object_new(KeyRecRepContent_t22F4C88ECE39C1F57BE1F388B10F38BE3CC44E01_il2cpp_TypeInfo_var); KeyRecRepContent__ctor_m595F019873FF3BFBC0E8AB8BB8FECCCECEE88757(L_4, ((Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 *)CastclassClass((RuntimeObject*)L_3, Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return L_4; } IL_0023: { // throw new ArgumentException("Invalid object: " + BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.GetTypeName(obj), "obj"); RuntimeObject * L_5 = ___obj0; IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var))); String_t* L_6; L_6 = Platform_GetTypeName_m6EE4C5C80014DB651B39EAA755D394E21009EADB(L_5, /*hidden argument*/NULL); String_t* L_7; L_7 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD60E67E20F0B2BFD833682C203F47054BEBC226E)), L_6, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_8 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_8, L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral690BF02630AC0BD6AA6BD08D2C36A28E1FC54F3E)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeyRecRepContent_GetInstance_m2BBAC3C9C7CFE7012782FD2C19ADAE4DE0363047_RuntimeMethod_var))); } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.KeyRecRepContent::get_Status() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PkiStatusInfo_t599558AC728FCD067FBBCD19778BE6228EBA3A17 * KeyRecRepContent_get_Status_m524BCE7AF53F71B71B4383D74A1C24675EF1E90D (KeyRecRepContent_t22F4C88ECE39C1F57BE1F388B10F38BE3CC44E01 * __this, const RuntimeMethod* method) { { // get { return status; } PkiStatusInfo_t599558AC728FCD067FBBCD19778BE6228EBA3A17 * L_0 = __this->get_status_2(); return L_0; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.CmpCertificate BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.KeyRecRepContent::get_NewSigCert() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CmpCertificate_t426B8158788ADFD4E28E4E8F169E1E1D7651F894 * KeyRecRepContent_get_NewSigCert_mA3B310C66FAE1DD2A04154E9C3185BAE42FC1B46 (KeyRecRepContent_t22F4C88ECE39C1F57BE1F388B10F38BE3CC44E01 * __this, const RuntimeMethod* method) { { // get { return newSigCert; } CmpCertificate_t426B8158788ADFD4E28E4E8F169E1E1D7651F894 * L_0 = __this->get_newSigCert_3(); return L_0; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.CmpCertificate[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.KeyRecRepContent::GetCACerts() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CmpCertificateU5BU5D_t61BB8616D2961D5EBE491ED080F0C7361D59CC00* KeyRecRepContent_GetCACerts_m6CDEE68A07B9720DD422DE7E75D7A1E56AE6689D (KeyRecRepContent_t22F4C88ECE39C1F57BE1F388B10F38BE3CC44E01 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CmpCertificateU5BU5D_t61BB8616D2961D5EBE491ED080F0C7361D59CC00_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } CmpCertificateU5BU5D_t61BB8616D2961D5EBE491ED080F0C7361D59CC00* V_0 = NULL; int32_t V_1 = 0; { // if (caCerts == null) Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_0 = __this->get_caCerts_4(); if (L_0) { goto IL_000a; } } { // return null; return (CmpCertificateU5BU5D_t61BB8616D2961D5EBE491ED080F0C7361D59CC00*)NULL; } IL_000a: { // CmpCertificate[] results = new CmpCertificate[caCerts.Count]; Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_1 = __this->get_caCerts_4(); NullCheck(L_1); int32_t L_2; L_2 = VirtualFuncInvoker0< int32_t >::Invoke(13 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Count() */, L_1); CmpCertificateU5BU5D_t61BB8616D2961D5EBE491ED080F0C7361D59CC00* L_3 = (CmpCertificateU5BU5D_t61BB8616D2961D5EBE491ED080F0C7361D59CC00*)(CmpCertificateU5BU5D_t61BB8616D2961D5EBE491ED080F0C7361D59CC00*)SZArrayNew(CmpCertificateU5BU5D_t61BB8616D2961D5EBE491ED080F0C7361D59CC00_il2cpp_TypeInfo_var, (uint32_t)L_2); V_0 = L_3; // for (int i = 0; i != results.Length; ++i) V_1 = 0; goto IL_0037; } IL_001f: { // results[i] = CmpCertificate.GetInstance(caCerts[i]); CmpCertificateU5BU5D_t61BB8616D2961D5EBE491ED080F0C7361D59CC00* L_4 = V_0; int32_t L_5 = V_1; Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_6 = __this->get_caCerts_4(); int32_t L_7 = V_1; NullCheck(L_6); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_8; L_8 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_6, L_7); CmpCertificate_t426B8158788ADFD4E28E4E8F169E1E1D7651F894 * L_9; L_9 = CmpCertificate_GetInstance_mA319EAF3013759A5DD807397463555B70791BBD9(L_8, /*hidden argument*/NULL); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_9); (L_4)->SetAt(static_cast(L_5), (CmpCertificate_t426B8158788ADFD4E28E4E8F169E1E1D7651F894 *)L_9); // for (int i = 0; i != results.Length; ++i) int32_t L_10 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)); } IL_0037: { // for (int i = 0; i != results.Length; ++i) int32_t L_11 = V_1; CmpCertificateU5BU5D_t61BB8616D2961D5EBE491ED080F0C7361D59CC00* L_12 = V_0; NullCheck(L_12); if ((!(((uint32_t)L_11) == ((uint32_t)((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length))))))) { goto IL_001f; } } { // return results; CmpCertificateU5BU5D_t61BB8616D2961D5EBE491ED080F0C7361D59CC00* L_13 = V_0; return L_13; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.CertifiedKeyPair[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.KeyRecRepContent::GetKeyPairHist() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CertifiedKeyPairU5BU5D_t76C6C5E8814508C5C8A2BBABEC665A85B29C15D3* KeyRecRepContent_GetKeyPairHist_m56CD25E7A1507C4B755F1CFE09970897FD5648E6 (KeyRecRepContent_t22F4C88ECE39C1F57BE1F388B10F38BE3CC44E01 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CertifiedKeyPairU5BU5D_t76C6C5E8814508C5C8A2BBABEC665A85B29C15D3_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } CertifiedKeyPairU5BU5D_t76C6C5E8814508C5C8A2BBABEC665A85B29C15D3* V_0 = NULL; int32_t V_1 = 0; { // if (keyPairHist == null) Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_0 = __this->get_keyPairHist_5(); if (L_0) { goto IL_000a; } } { // return null; return (CertifiedKeyPairU5BU5D_t76C6C5E8814508C5C8A2BBABEC665A85B29C15D3*)NULL; } IL_000a: { // CertifiedKeyPair[] results = new CertifiedKeyPair[keyPairHist.Count]; Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_1 = __this->get_keyPairHist_5(); NullCheck(L_1); int32_t L_2; L_2 = VirtualFuncInvoker0< int32_t >::Invoke(13 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Count() */, L_1); CertifiedKeyPairU5BU5D_t76C6C5E8814508C5C8A2BBABEC665A85B29C15D3* L_3 = (CertifiedKeyPairU5BU5D_t76C6C5E8814508C5C8A2BBABEC665A85B29C15D3*)(CertifiedKeyPairU5BU5D_t76C6C5E8814508C5C8A2BBABEC665A85B29C15D3*)SZArrayNew(CertifiedKeyPairU5BU5D_t76C6C5E8814508C5C8A2BBABEC665A85B29C15D3_il2cpp_TypeInfo_var, (uint32_t)L_2); V_0 = L_3; // for (int i = 0; i != results.Length; ++i) V_1 = 0; goto IL_0037; } IL_001f: { // results[i] = CertifiedKeyPair.GetInstance(keyPairHist[i]); CertifiedKeyPairU5BU5D_t76C6C5E8814508C5C8A2BBABEC665A85B29C15D3* L_4 = V_0; int32_t L_5 = V_1; Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_6 = __this->get_keyPairHist_5(); int32_t L_7 = V_1; NullCheck(L_6); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_8; L_8 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_6, L_7); CertifiedKeyPair_t50EB833AED8814B77F5F26FD6F653B3C8A31B807 * L_9; L_9 = CertifiedKeyPair_GetInstance_m7EFA59C6E4B3B2F1863EEBB028F2593BD2CD41B8(L_8, /*hidden argument*/NULL); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_9); (L_4)->SetAt(static_cast(L_5), (CertifiedKeyPair_t50EB833AED8814B77F5F26FD6F653B3C8A31B807 *)L_9); // for (int i = 0; i != results.Length; ++i) int32_t L_10 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)); } IL_0037: { // for (int i = 0; i != results.Length; ++i) int32_t L_11 = V_1; CertifiedKeyPairU5BU5D_t76C6C5E8814508C5C8A2BBABEC665A85B29C15D3* L_12 = V_0; NullCheck(L_12); if ((!(((uint32_t)L_11) == ((uint32_t)((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length))))))) { goto IL_001f; } } { // return results; CertifiedKeyPairU5BU5D_t76C6C5E8814508C5C8A2BBABEC665A85B29C15D3* L_13 = V_0; return L_13; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Object BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.KeyRecRepContent::ToAsn1Object() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * KeyRecRepContent_ToAsn1Object_mCB5AC9460B60AF4E271BAE2CE7C820598E47B5E8 (KeyRecRepContent_t22F4C88ECE39C1F57BE1F388B10F38BE3CC44E01 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 * V_0 = NULL; { // Asn1EncodableVector v = new Asn1EncodableVector(status); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_0 = (Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE*)(Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE*)SZArrayNew(Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE_il2cpp_TypeInfo_var, (uint32_t)1); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_1 = L_0; PkiStatusInfo_t599558AC728FCD067FBBCD19778BE6228EBA3A17 * L_2 = __this->get_status_2(); NullCheck(L_1); ArrayElementTypeCheck (L_1, L_2); (L_1)->SetAt(static_cast(0), (Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *)L_2); Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 * L_3 = (Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 *)il2cpp_codegen_object_new(Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3_il2cpp_TypeInfo_var); Asn1EncodableVector__ctor_m1306EB1064C0D4EEC59EA15F8DFF81952B7AE7DE(L_3, L_1, /*hidden argument*/NULL); V_0 = L_3; // AddOptional(v, 0, newSigCert); Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 * L_4 = V_0; CmpCertificate_t426B8158788ADFD4E28E4E8F169E1E1D7651F894 * L_5 = __this->get_newSigCert_3(); KeyRecRepContent_AddOptional_mA988D4FDE0C9155DB5A75243655E67F1F5B84CB9(__this, L_4, 0, L_5, /*hidden argument*/NULL); // AddOptional(v, 1, caCerts); Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 * L_6 = V_0; Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_7 = __this->get_caCerts_4(); KeyRecRepContent_AddOptional_mA988D4FDE0C9155DB5A75243655E67F1F5B84CB9(__this, L_6, 1, L_7, /*hidden argument*/NULL); // AddOptional(v, 2, keyPairHist); Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 * L_8 = V_0; Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_9 = __this->get_keyPairHist_5(); KeyRecRepContent_AddOptional_mA988D4FDE0C9155DB5A75243655E67F1F5B84CB9(__this, L_8, 2, L_9, /*hidden argument*/NULL); // return new DerSequence(v); Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 * L_10 = V_0; DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 * L_11 = (DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 *)il2cpp_codegen_object_new(DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09_il2cpp_TypeInfo_var); DerSequence__ctor_mC969ECDC21E6B8169D0B78BE04B3A08192E13164(L_11, L_10, /*hidden argument*/NULL); return L_11; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.KeyRecRepContent::AddOptional(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1EncodableVector,System.Int32,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyRecRepContent_AddOptional_mA988D4FDE0C9155DB5A75243655E67F1F5B84CB9 (KeyRecRepContent_t22F4C88ECE39C1F57BE1F388B10F38BE3CC44E01 * __this, Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 * ___v0, int32_t ___tagNo1, Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * ___obj2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerTaggedObject_t88BB573E2BED5C1D2971741E012BB29FB0EB0C5E_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (obj != null) Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_0 = ___obj2; if (!L_0) { goto IL_001a; } } { // v.Add(new DerTaggedObject(true, tagNo, obj)); Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 * L_1 = ___v0; Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_2 = (Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE*)(Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE*)SZArrayNew(Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE_il2cpp_TypeInfo_var, (uint32_t)1); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_3 = L_2; int32_t L_4 = ___tagNo1; Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_5 = ___obj2; DerTaggedObject_t88BB573E2BED5C1D2971741E012BB29FB0EB0C5E * L_6 = (DerTaggedObject_t88BB573E2BED5C1D2971741E012BB29FB0EB0C5E *)il2cpp_codegen_object_new(DerTaggedObject_t88BB573E2BED5C1D2971741E012BB29FB0EB0C5E_il2cpp_TypeInfo_var); DerTaggedObject__ctor_m38581F2DCD1C43EC659CD31CDDAB0A43FD42522F(L_6, (bool)1, L_4, L_5, /*hidden argument*/NULL); NullCheck(L_3); ArrayElementTypeCheck (L_3, L_6); (L_3)->SetAt(static_cast(0), (Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *)L_6); NullCheck(L_1); Asn1EncodableVector_Add_m6EF01E6775CA3C122AC78B760B5C8AB13AC83EA8(L_1, L_3, /*hidden argument*/NULL); } IL_001a: { // } return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.KeySpecificInfo::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeySpecificInfo__ctor_m94BB142A143AD6677A8B7FEB41AADB5B8BF2D80B (KeySpecificInfo_t6C8A5DBFEF691A3EA6772568ED94CF80A142B476 * __this, DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___algorithm0, Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * ___counter1, const RuntimeMethod* method) { { // public KeySpecificInfo( // DerObjectIdentifier algorithm, // Asn1OctetString counter) Asn1Encodable__ctor_mF956C9DAF4A126B7B4406E2DD0EED16E64ABA126(__this, /*hidden argument*/NULL); // this.algorithm = algorithm; DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_0 = ___algorithm0; __this->set_algorithm_2(L_0); // this.counter = counter; Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_1 = ___counter1; __this->set_counter_3(L_1); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.KeySpecificInfo::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeySpecificInfo__ctor_m90440072DB76BEC64527E6849E7C7EF321BF704D (KeySpecificInfo_t6C8A5DBFEF691A3EA6772568ED94CF80A142B476 * __this, Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * ___seq0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; { // public KeySpecificInfo( // Asn1Sequence seq) Asn1Encodable__ctor_mF956C9DAF4A126B7B4406E2DD0EED16E64ABA126(__this, /*hidden argument*/NULL); // IEnumerator e = seq.GetEnumerator(); Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_0 = ___seq0; NullCheck(L_0); RuntimeObject* L_1; L_1 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(10 /* System.Collections.IEnumerator BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::GetEnumerator() */, L_0); V_0 = L_1; // e.MoveNext(); RuntimeObject* L_2 = V_0; NullCheck(L_2); bool L_3; L_3 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_2); // algorithm = (DerObjectIdentifier)e.Current; RuntimeObject* L_4 = V_0; NullCheck(L_4); RuntimeObject * L_5; L_5 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_4); __this->set_algorithm_2(((DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *)CastclassClass((RuntimeObject*)L_5, DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var))); // e.MoveNext(); RuntimeObject* L_6 = V_0; NullCheck(L_6); bool L_7; L_7 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_6); // counter = (Asn1OctetString)e.Current; RuntimeObject* L_8 = V_0; NullCheck(L_8); RuntimeObject * L_9; L_9 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_8); __this->set_counter_3(((Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 *)CastclassClass((RuntimeObject*)L_9, Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8_il2cpp_TypeInfo_var))); // } return; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.KeySpecificInfo::get_Algorithm() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * KeySpecificInfo_get_Algorithm_mE43935F0D5849FF6BB39C8F488722E0AF7A3450A (KeySpecificInfo_t6C8A5DBFEF691A3EA6772568ED94CF80A142B476 * __this, const RuntimeMethod* method) { { // get { return algorithm; } DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_0 = __this->get_algorithm_2(); return L_0; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.KeySpecificInfo::get_Counter() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * KeySpecificInfo_get_Counter_m8336CF3C73AB7D0232FE9D9554100C553B98A2B7 (KeySpecificInfo_t6C8A5DBFEF691A3EA6772568ED94CF80A142B476 * __this, const RuntimeMethod* method) { { // get { return counter; } Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_0 = __this->get_counter_3(); return L_0; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Object BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.KeySpecificInfo::ToAsn1Object() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * KeySpecificInfo_ToAsn1Object_mA8B03FDC37EF8FCB47103D8E4EFE279FC9623482 (KeySpecificInfo_t6C8A5DBFEF691A3EA6772568ED94CF80A142B476 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // return new DerSequence(algorithm, counter); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_0 = (Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE*)(Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE*)SZArrayNew(Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE_il2cpp_TypeInfo_var, (uint32_t)2); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_1 = L_0; DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_2 = __this->get_algorithm_2(); NullCheck(L_1); ArrayElementTypeCheck (L_1, L_2); (L_1)->SetAt(static_cast(0), (Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *)L_2); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_3 = L_1; Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_4 = __this->get_counter_3(); NullCheck(L_3); ArrayElementTypeCheck (L_3, L_4); (L_3)->SetAt(static_cast(1), (Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *)L_4); DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 * L_5 = (DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 *)il2cpp_codegen_object_new(DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09_il2cpp_TypeInfo_var); DerSequence__ctor_m014F0386FA0EDB7F97747159963DC17F535AF0A2(L_5, L_3, /*hidden argument*/NULL); return L_5; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyTransRecipientInfo::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.RecipientIdentifier,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyTransRecipientInfo__ctor_m88A068A5D7325AC9389D4F0DF65B1C4ACA46AD8D (KeyTransRecipientInfo_t5560A4301685119C4400C494D4B8D2D5BCF538A0 * __this, RecipientIdentifier_tBC500D2CDE60B57F8CB815C4599D2EE019A2E5C1 * ___rid0, AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___keyEncryptionAlgorithm1, Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * ___encryptedKey2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public KeyTransRecipientInfo( // RecipientIdentifier rid, // AlgorithmIdentifier keyEncryptionAlgorithm, // Asn1OctetString encryptedKey) Asn1Encodable__ctor_mF956C9DAF4A126B7B4406E2DD0EED16E64ABA126(__this, /*hidden argument*/NULL); // if (rid.ToAsn1Object() is Asn1TaggedObject) RecipientIdentifier_tBC500D2CDE60B57F8CB815C4599D2EE019A2E5C1 * L_0 = ___rid0; NullCheck(L_0); Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * L_1; L_1 = VirtualFuncInvoker0< Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * >::Invoke(5 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Object BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable::ToAsn1Object() */, L_0); if (!((Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0 *)IsInstClass((RuntimeObject*)L_1, Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0_il2cpp_TypeInfo_var))) { goto IL_0021; } } { // this.version = new DerInteger(2); DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * L_2 = (DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 *)il2cpp_codegen_object_new(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var); DerInteger__ctor_m014B0C2AADB00543E51D3621D5B93E030C47F6CA(L_2, 2, /*hidden argument*/NULL); __this->set_version_2(L_2); // } goto IL_002d; } IL_0021: { // this.version = new DerInteger(0); DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * L_3 = (DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 *)il2cpp_codegen_object_new(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var); DerInteger__ctor_m014B0C2AADB00543E51D3621D5B93E030C47F6CA(L_3, 0, /*hidden argument*/NULL); __this->set_version_2(L_3); } IL_002d: { // this.rid = rid; RecipientIdentifier_tBC500D2CDE60B57F8CB815C4599D2EE019A2E5C1 * L_4 = ___rid0; __this->set_rid_3(L_4); // this.keyEncryptionAlgorithm = keyEncryptionAlgorithm; AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_5 = ___keyEncryptionAlgorithm1; __this->set_keyEncryptionAlgorithm_4(L_5); // this.encryptedKey = encryptedKey; Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_6 = ___encryptedKey2; __this->set_encryptedKey_5(L_6); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyTransRecipientInfo::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyTransRecipientInfo__ctor_m26B2BCEA78B9B7CCD06FA526EC0ABDCED3DCDA24 (KeyTransRecipientInfo_t5560A4301685119C4400C494D4B8D2D5BCF538A0 * __this, Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * ___seq0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public KeyTransRecipientInfo( // Asn1Sequence seq) Asn1Encodable__ctor_mF956C9DAF4A126B7B4406E2DD0EED16E64ABA126(__this, /*hidden argument*/NULL); // this.version = (DerInteger) seq[0]; Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_0 = ___seq0; NullCheck(L_0); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_1; L_1 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_0, 0); __this->set_version_2(((DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 *)CastclassClass((RuntimeObject*)L_1, DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var))); // this.rid = RecipientIdentifier.GetInstance(seq[1]); Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_2 = ___seq0; NullCheck(L_2); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_3; L_3 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_2, 1); RecipientIdentifier_tBC500D2CDE60B57F8CB815C4599D2EE019A2E5C1 * L_4; L_4 = RecipientIdentifier_GetInstance_mF318CCF924FDB2221751F4D79E94AC4B3EAFF250(L_3, /*hidden argument*/NULL); __this->set_rid_3(L_4); // this.keyEncryptionAlgorithm = AlgorithmIdentifier.GetInstance(seq[2]); Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_5 = ___seq0; NullCheck(L_5); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_6; L_6 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_5, 2); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_7; L_7 = AlgorithmIdentifier_GetInstance_m72ED3229FC5112CA144FA81CC150D686073B3964(L_6, /*hidden argument*/NULL); __this->set_keyEncryptionAlgorithm_4(L_7); // this.encryptedKey = (Asn1OctetString) seq[3]; Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_8 = ___seq0; NullCheck(L_8); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_9; L_9 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_8, 3); __this->set_encryptedKey_5(((Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 *)CastclassClass((RuntimeObject*)L_9, Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8_il2cpp_TypeInfo_var))); // } return; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyTransRecipientInfo BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyTransRecipientInfo::GetInstance(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyTransRecipientInfo_t5560A4301685119C4400C494D4B8D2D5BCF538A0 * KeyTransRecipientInfo_GetInstance_mA0F3ED0F062B51BA7C87BAB3B4DF4DD278798C39 (RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyTransRecipientInfo_t5560A4301685119C4400C494D4B8D2D5BCF538A0_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (obj == null || obj is KeyTransRecipientInfo) RuntimeObject * L_0 = ___obj0; if (!L_0) { goto IL_000b; } } { RuntimeObject * L_1 = ___obj0; if (!((KeyTransRecipientInfo_t5560A4301685119C4400C494D4B8D2D5BCF538A0 *)IsInstClass((RuntimeObject*)L_1, KeyTransRecipientInfo_t5560A4301685119C4400C494D4B8D2D5BCF538A0_il2cpp_TypeInfo_var))) { goto IL_0012; } } IL_000b: { // return (KeyTransRecipientInfo) obj; RuntimeObject * L_2 = ___obj0; return ((KeyTransRecipientInfo_t5560A4301685119C4400C494D4B8D2D5BCF538A0 *)CastclassClass((RuntimeObject*)L_2, KeyTransRecipientInfo_t5560A4301685119C4400C494D4B8D2D5BCF538A0_il2cpp_TypeInfo_var)); } IL_0012: { // if(obj is Asn1Sequence) RuntimeObject * L_3 = ___obj0; if (!((Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 *)IsInstClass((RuntimeObject*)L_3, Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8_il2cpp_TypeInfo_var))) { goto IL_0026; } } { // return new KeyTransRecipientInfo((Asn1Sequence) obj); RuntimeObject * L_4 = ___obj0; KeyTransRecipientInfo_t5560A4301685119C4400C494D4B8D2D5BCF538A0 * L_5 = (KeyTransRecipientInfo_t5560A4301685119C4400C494D4B8D2D5BCF538A0 *)il2cpp_codegen_object_new(KeyTransRecipientInfo_t5560A4301685119C4400C494D4B8D2D5BCF538A0_il2cpp_TypeInfo_var); KeyTransRecipientInfo__ctor_m26B2BCEA78B9B7CCD06FA526EC0ABDCED3DCDA24(L_5, ((Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 *)CastclassClass((RuntimeObject*)L_4, Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return L_5; } IL_0026: { // throw new ArgumentException( // "Illegal object in KeyTransRecipientInfo: " + BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.GetTypeName(obj)); RuntimeObject * L_6 = ___obj0; IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var))); String_t* L_7; L_7 = Platform_GetTypeName_m6EE4C5C80014DB651B39EAA755D394E21009EADB(L_6, /*hidden argument*/NULL); String_t* L_8; L_8 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral534D3A6D5CD6D7E8EDDBBF86A13158CBD377292C)), L_7, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_9 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_9, L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeyTransRecipientInfo_GetInstance_mA0F3ED0F062B51BA7C87BAB3B4DF4DD278798C39_RuntimeMethod_var))); } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyTransRecipientInfo::get_Version() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * KeyTransRecipientInfo_get_Version_m04719AAA32738DF42ED8AF4AEB035F9559538F5A (KeyTransRecipientInfo_t5560A4301685119C4400C494D4B8D2D5BCF538A0 * __this, const RuntimeMethod* method) { { // get { return version; } DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * L_0 = __this->get_version_2(); return L_0; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.RecipientIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyTransRecipientInfo::get_RecipientIdentifier() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RecipientIdentifier_tBC500D2CDE60B57F8CB815C4599D2EE019A2E5C1 * KeyTransRecipientInfo_get_RecipientIdentifier_m0D266D37414056F3773B123054146FE8C1A71C33 (KeyTransRecipientInfo_t5560A4301685119C4400C494D4B8D2D5BCF538A0 * __this, const RuntimeMethod* method) { { // get { return rid; } RecipientIdentifier_tBC500D2CDE60B57F8CB815C4599D2EE019A2E5C1 * L_0 = __this->get_rid_3(); return L_0; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyTransRecipientInfo::get_KeyEncryptionAlgorithm() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * KeyTransRecipientInfo_get_KeyEncryptionAlgorithm_mC0911B8C9E051440D2E2E12ECD4B9A3302A54AEE (KeyTransRecipientInfo_t5560A4301685119C4400C494D4B8D2D5BCF538A0 * __this, const RuntimeMethod* method) { { // get { return keyEncryptionAlgorithm; } AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_0 = __this->get_keyEncryptionAlgorithm_4(); return L_0; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyTransRecipientInfo::get_EncryptedKey() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * KeyTransRecipientInfo_get_EncryptedKey_mB7EC3140CE2F08DE089A1DE4FD4C52C4B1397E05 (KeyTransRecipientInfo_t5560A4301685119C4400C494D4B8D2D5BCF538A0 * __this, const RuntimeMethod* method) { { // get { return encryptedKey; } Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_0 = __this->get_encryptedKey_5(); return L_0; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Object BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyTransRecipientInfo::ToAsn1Object() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * KeyTransRecipientInfo_ToAsn1Object_m4C01B1CA42848B744A73801F88137D36B9EC60A3 (KeyTransRecipientInfo_t5560A4301685119C4400C494D4B8D2D5BCF538A0 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // return new DerSequence(version, rid, keyEncryptionAlgorithm, encryptedKey); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_0 = (Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE*)(Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE*)SZArrayNew(Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE_il2cpp_TypeInfo_var, (uint32_t)4); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_1 = L_0; DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * L_2 = __this->get_version_2(); NullCheck(L_1); ArrayElementTypeCheck (L_1, L_2); (L_1)->SetAt(static_cast(0), (Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *)L_2); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_3 = L_1; RecipientIdentifier_tBC500D2CDE60B57F8CB815C4599D2EE019A2E5C1 * L_4 = __this->get_rid_3(); NullCheck(L_3); ArrayElementTypeCheck (L_3, L_4); (L_3)->SetAt(static_cast(1), (Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *)L_4); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_5 = L_3; AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_6 = __this->get_keyEncryptionAlgorithm_4(); NullCheck(L_5); ArrayElementTypeCheck (L_5, L_6); (L_5)->SetAt(static_cast(2), (Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *)L_6); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_7 = L_5; Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_8 = __this->get_encryptedKey_5(); NullCheck(L_7); ArrayElementTypeCheck (L_7, L_8); (L_7)->SetAt(static_cast(3), (Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *)L_8); DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 * L_9 = (DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 *)il2cpp_codegen_object_new(DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09_il2cpp_TypeInfo_var); DerSequence__ctor_m014F0386FA0EDB7F97747159963DC17F535AF0A2(L_9, L_7, /*hidden argument*/NULL); return L_9; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyTransRecipientInfoGenerator::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyTransRecipientInfoGenerator__ctor_m80F67B2406809DC95D4F1D04D1C98A2DE54D0316 (KeyTransRecipientInfoGenerator_t4D19EF837407B9F0CE3140C25A30074F5D7F9DF1 * __this, const RuntimeMethod* method) { { // internal KeyTransRecipientInfoGenerator() Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyTransRecipientInfoGenerator::set_RecipientCert(BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Certificate) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyTransRecipientInfoGenerator_set_RecipientCert_m003E75B3209A4FF91CAD52369582F805134AD411 (KeyTransRecipientInfoGenerator_t4D19EF837407B9F0CE3140C25A30074F5D7F9DF1 * __this, X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06 * ___value0, const RuntimeMethod* method) { { // this.recipientTbsCert = CmsUtilities.GetTbsCertificateStructure(value); X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06 * L_0 = ___value0; TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3 * L_1; L_1 = CmsUtilities_GetTbsCertificateStructure_m19289FC9CF866E49974F8FF559BC01CA7F5253C2(L_0, /*hidden argument*/NULL); __this->set_recipientTbsCert_1(L_1); // this.recipientPublicKey = value.GetPublicKey(); X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06 * L_2 = ___value0; NullCheck(L_2); AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * L_3; L_3 = VirtualFuncInvoker0< AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * >::Invoke(37 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Certificate::GetPublicKey() */, L_2); __this->set_recipientPublicKey_2(L_3); // this.info = recipientTbsCert.SubjectPublicKeyInfo; TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3 * L_4 = __this->get_recipientTbsCert_1(); NullCheck(L_4); SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB * L_5; L_5 = TbsCertificateStructure_get_SubjectPublicKeyInfo_m13E8936322F0795F666E00D41974E08E9F9D252D_inline(L_4, /*hidden argument*/NULL); __this->set_info_4(L_5); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyTransRecipientInfoGenerator::set_RecipientPublicKey(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyTransRecipientInfoGenerator_set_RecipientPublicKey_m0E6CDEBBE48E79B62C28548394126BBEA45EE4C5 (KeyTransRecipientInfoGenerator_t4D19EF837407B9F0CE3140C25A30074F5D7F9DF1 * __this, AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * ___value0, const RuntimeMethod* method) { il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; { // this.recipientPublicKey = value; AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * L_0 = ___value0; __this->set_recipientPublicKey_2(L_0); } IL_0007: try {// begin try (depth: 1) // info = SubjectPublicKeyInfoFactory.CreateSubjectPublicKeyInfo( // recipientPublicKey); AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * L_1 = __this->get_recipientPublicKey_2(); SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB * L_2; L_2 = SubjectPublicKeyInfoFactory_CreateSubjectPublicKeyInfo_m05DEB0821C10550E622F69B5E83F1A285F4F857D(L_1, /*hidden argument*/NULL); __this->set_info_4(L_2); // } goto IL_0026; }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_001a; } throw e; } CATCH_001a: {// begin catch(System.IO.IOException) // catch (IOException) // throw new ArgumentException("can't extract key algorithm from this key"); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_3 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral42A0E7472B3F7A0E11C675967D1474D751D60460)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeyTransRecipientInfoGenerator_set_RecipientPublicKey_m0E6CDEBBE48E79B62C28548394126BBEA45EE4C5_RuntimeMethod_var))); }// end catch (depth: 1) IL_0026: { // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyTransRecipientInfoGenerator::set_SubjectKeyIdentifier(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyTransRecipientInfoGenerator_set_SubjectKeyIdentifier_m0CB867C9A17670E0CA39E3F6DD03AE6085E1268C (KeyTransRecipientInfoGenerator_t4D19EF837407B9F0CE3140C25A30074F5D7F9DF1 * __this, Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * ___value0, const RuntimeMethod* method) { { // set { this.subjectKeyIdentifier = value; } Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_0 = ___value0; __this->set_subjectKeyIdentifier_3(L_0); // set { this.subjectKeyIdentifier = value; } return; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.RecipientInfo BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyTransRecipientInfoGenerator::Generate(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.KeyParameter,BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RecipientInfo_tAD4CBFD604399F45BD0D23A4C028E0FC88C19829 * KeyTransRecipientInfoGenerator_Generate_mA8D6E076DBB60B9E37B82AC68C17EA7D52612AED (KeyTransRecipientInfoGenerator_t4D19EF837407B9F0CE3140C25A30074F5D7F9DF1 * __this, KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * ___contentEncryptionKey0, SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * ___random1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IWrapper_t29A9E044AAEEECE9E2FA8A8A61F76B0F50347B39_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyTransRecipientInfoGenerator_t4D19EF837407B9F0CE3140C25A30074F5D7F9DF1_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyTransRecipientInfo_t5560A4301685119C4400C494D4B8D2D5BCF538A0_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ParametersWithRandom_t557A9B373F5F2998BE6C0461812FBE4EB73425AC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RecipientIdentifier_tBC500D2CDE60B57F8CB815C4599D2EE019A2E5C1_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RecipientInfo_tAD4CBFD604399F45BD0D23A4C028E0FC88C19829_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_0 = NULL; AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * V_1 = NULL; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_2 = NULL; RecipientIdentifier_tBC500D2CDE60B57F8CB815C4599D2EE019A2E5C1 * V_3 = NULL; { // byte[] keyBytes = contentEncryptionKey.GetKey(); KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * L_0 = ___contentEncryptionKey0; NullCheck(L_0); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1; L_1 = KeyParameter_GetKey_mCA2C132B43F669063C426602DD5A8A672531385A(L_0, /*hidden argument*/NULL); V_0 = L_1; // AlgorithmIdentifier keyEncryptionAlgorithm = info.AlgorithmID; SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB * L_2 = __this->get_info_4(); NullCheck(L_2); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_3; L_3 = SubjectPublicKeyInfo_get_AlgorithmID_mC6D1FC4034C33A9CE53D197B4704A328D8E6AF52_inline(L_2, /*hidden argument*/NULL); V_1 = L_3; // IWrapper keyWrapper = Helper.CreateWrapper(keyEncryptionAlgorithm.Algorithm.Id); IL2CPP_RUNTIME_CLASS_INIT(KeyTransRecipientInfoGenerator_t4D19EF837407B9F0CE3140C25A30074F5D7F9DF1_il2cpp_TypeInfo_var); CmsEnvelopedHelper_t4C541C5858FDC5D5FEFBEF5BB39D1E55C9319BF0 * L_4 = ((KeyTransRecipientInfoGenerator_t4D19EF837407B9F0CE3140C25A30074F5D7F9DF1_StaticFields*)il2cpp_codegen_static_fields_for(KeyTransRecipientInfoGenerator_t4D19EF837407B9F0CE3140C25A30074F5D7F9DF1_il2cpp_TypeInfo_var))->get_Helper_0(); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_5 = V_1; NullCheck(L_5); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_6; L_6 = VirtualFuncInvoker0< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * >::Invoke(6 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier::get_Algorithm() */, L_5); NullCheck(L_6); String_t* L_7; L_7 = DerObjectIdentifier_get_Id_m1A4618B1F7ED8630EDC76DF95D8C7086F1E616D6_inline(L_6, /*hidden argument*/NULL); NullCheck(L_4); RuntimeObject* L_8; L_8 = CmsEnvelopedHelper_CreateWrapper_mD2951A9418E173A69778DEEF45C1BCBAFD454394(L_4, L_7, /*hidden argument*/NULL); // keyWrapper.Init(true, new ParametersWithRandom(recipientPublicKey, random)); RuntimeObject* L_9 = L_8; AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * L_10 = __this->get_recipientPublicKey_2(); SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * L_11 = ___random1; ParametersWithRandom_t557A9B373F5F2998BE6C0461812FBE4EB73425AC * L_12 = (ParametersWithRandom_t557A9B373F5F2998BE6C0461812FBE4EB73425AC *)il2cpp_codegen_object_new(ParametersWithRandom_t557A9B373F5F2998BE6C0461812FBE4EB73425AC_il2cpp_TypeInfo_var); ParametersWithRandom__ctor_m9CC2D927A9DC93F6BED2DE101C93E19050FEDF97(L_12, L_10, L_11, /*hidden argument*/NULL); NullCheck(L_9); InterfaceActionInvoker2< bool, RuntimeObject* >::Invoke(1 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IWrapper::Init(System.Boolean,BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ICipherParameters) */, IWrapper_t29A9E044AAEEECE9E2FA8A8A61F76B0F50347B39_il2cpp_TypeInfo_var, L_9, (bool)1, L_12); // byte[] encryptedKeyBytes = keyWrapper.Wrap(keyBytes, 0, keyBytes.Length); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_13 = V_0; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_14 = V_0; NullCheck(L_14); NullCheck(L_9); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_15; L_15 = InterfaceFuncInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(2 /* System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IWrapper::Wrap(System.Byte[],System.Int32,System.Int32) */, IWrapper_t29A9E044AAEEECE9E2FA8A8A61F76B0F50347B39_il2cpp_TypeInfo_var, L_9, L_13, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_14)->max_length)))); V_2 = L_15; // if (recipientTbsCert != null) TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3 * L_16 = __this->get_recipientTbsCert_1(); if (!L_16) { goto IL_0076; } } { // IssuerAndSerialNumber issuerAndSerial = new IssuerAndSerialNumber( // recipientTbsCert.Issuer, recipientTbsCert.SerialNumber.Value); TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3 * L_17 = __this->get_recipientTbsCert_1(); NullCheck(L_17); X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * L_18; L_18 = TbsCertificateStructure_get_Issuer_m7162E5B96B4DC11DC1B815397BFD54D1EABCE1CD_inline(L_17, /*hidden argument*/NULL); TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3 * L_19 = __this->get_recipientTbsCert_1(); NullCheck(L_19); DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * L_20; L_20 = TbsCertificateStructure_get_SerialNumber_m2179DC4D65B461A04DBFD7415433E06662FCF165_inline(L_19, /*hidden argument*/NULL); NullCheck(L_20); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_21; L_21 = DerInteger_get_Value_m8C263058A637AE123BD47291A36538E05E374478(L_20, /*hidden argument*/NULL); IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64 * L_22 = (IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64 *)il2cpp_codegen_object_new(IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64_il2cpp_TypeInfo_var); IssuerAndSerialNumber__ctor_m8F2E8B6B4120F01AEC66DD8EB97D203E98509950(L_22, L_18, L_21, /*hidden argument*/NULL); // recipId = new RecipientIdentifier(issuerAndSerial); RecipientIdentifier_tBC500D2CDE60B57F8CB815C4599D2EE019A2E5C1 * L_23 = (RecipientIdentifier_tBC500D2CDE60B57F8CB815C4599D2EE019A2E5C1 *)il2cpp_codegen_object_new(RecipientIdentifier_tBC500D2CDE60B57F8CB815C4599D2EE019A2E5C1_il2cpp_TypeInfo_var); RecipientIdentifier__ctor_mE50D75025594E7E2F7DFA7AA81713D76FFA811C0(L_23, L_22, /*hidden argument*/NULL); V_3 = L_23; // } goto IL_0082; } IL_0076: { // recipId = new RecipientIdentifier(subjectKeyIdentifier); Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_24 = __this->get_subjectKeyIdentifier_3(); RecipientIdentifier_tBC500D2CDE60B57F8CB815C4599D2EE019A2E5C1 * L_25 = (RecipientIdentifier_tBC500D2CDE60B57F8CB815C4599D2EE019A2E5C1 *)il2cpp_codegen_object_new(RecipientIdentifier_tBC500D2CDE60B57F8CB815C4599D2EE019A2E5C1_il2cpp_TypeInfo_var); RecipientIdentifier__ctor_m0622884809CB05130B493B339875119CD6F4A1A7(L_25, L_24, /*hidden argument*/NULL); V_3 = L_25; } IL_0082: { // return new RecipientInfo(new KeyTransRecipientInfo(recipId, keyEncryptionAlgorithm, // new DerOctetString(encryptedKeyBytes))); RecipientIdentifier_tBC500D2CDE60B57F8CB815C4599D2EE019A2E5C1 * L_26 = V_3; AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_27 = V_1; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_28 = V_2; DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75 * L_29 = (DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75 *)il2cpp_codegen_object_new(DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75_il2cpp_TypeInfo_var); DerOctetString__ctor_mBD13EC2203DF652C61E5AB45AE95CC51A22F0AF2(L_29, L_28, /*hidden argument*/NULL); KeyTransRecipientInfo_t5560A4301685119C4400C494D4B8D2D5BCF538A0 * L_30 = (KeyTransRecipientInfo_t5560A4301685119C4400C494D4B8D2D5BCF538A0 *)il2cpp_codegen_object_new(KeyTransRecipientInfo_t5560A4301685119C4400C494D4B8D2D5BCF538A0_il2cpp_TypeInfo_var); KeyTransRecipientInfo__ctor_m88A068A5D7325AC9389D4F0DF65B1C4ACA46AD8D(L_30, L_26, L_27, L_29, /*hidden argument*/NULL); RecipientInfo_tAD4CBFD604399F45BD0D23A4C028E0FC88C19829 * L_31 = (RecipientInfo_tAD4CBFD604399F45BD0D23A4C028E0FC88C19829 *)il2cpp_codegen_object_new(RecipientInfo_tAD4CBFD604399F45BD0D23A4C028E0FC88C19829_il2cpp_TypeInfo_var); RecipientInfo__ctor_mD1DDDBE9E1BD73F5EB13E041354B763A93FD713C(L_31, L_30, /*hidden argument*/NULL); return L_31; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyTransRecipientInfoGenerator::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyTransRecipientInfoGenerator__cctor_mDF1FAC7C8BE59DFCF5A0B16BF5BA5E9A4C839F22 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CmsEnvelopedHelper_t4C541C5858FDC5D5FEFBEF5BB39D1E55C9319BF0_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyTransRecipientInfoGenerator_t4D19EF837407B9F0CE3140C25A30074F5D7F9DF1_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // private static readonly CmsEnvelopedHelper Helper = CmsEnvelopedHelper.Instance; IL2CPP_RUNTIME_CLASS_INIT(CmsEnvelopedHelper_t4C541C5858FDC5D5FEFBEF5BB39D1E55C9319BF0_il2cpp_TypeInfo_var); CmsEnvelopedHelper_t4C541C5858FDC5D5FEFBEF5BB39D1E55C9319BF0 * L_0 = ((CmsEnvelopedHelper_t4C541C5858FDC5D5FEFBEF5BB39D1E55C9319BF0_StaticFields*)il2cpp_codegen_static_fields_for(CmsEnvelopedHelper_t4C541C5858FDC5D5FEFBEF5BB39D1E55C9319BF0_il2cpp_TypeInfo_var))->get_Instance_0(); ((KeyTransRecipientInfoGenerator_t4D19EF837407B9F0CE3140C25A30074F5D7F9DF1_StaticFields*)il2cpp_codegen_static_fields_for(KeyTransRecipientInfoGenerator_t4D19EF837407B9F0CE3140C25A30074F5D7F9DF1_il2cpp_TypeInfo_var))->set_Helper_0(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyTransRecipientInformation::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.KeyTransRecipientInfo,BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsSecureReadable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyTransRecipientInformation__ctor_m2DB1D41BFCD56E22A4EDEBEA37B1ADD56737CB71 (KeyTransRecipientInformation_t5A77B5723E83662291A1744A96270F6A153A0830 * __this, KeyTransRecipientInfo_t5560A4301685119C4400C494D4B8D2D5BCF538A0 * ___info0, RuntimeObject* ___secureReadable1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RecipientID_t744700C1480DE017B5D0AB81C6A1044A8C400125_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RecipientIdentifier_tBC500D2CDE60B57F8CB815C4599D2EE019A2E5C1 * V_0 = NULL; Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * V_1 = NULL; IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64 * V_2 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; { // : base(info.KeyEncryptionAlgorithm, secureReadable) KeyTransRecipientInfo_t5560A4301685119C4400C494D4B8D2D5BCF538A0 * L_0 = ___info0; NullCheck(L_0); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_1; L_1 = KeyTransRecipientInfo_get_KeyEncryptionAlgorithm_mC0911B8C9E051440D2E2E12ECD4B9A3302A54AEE_inline(L_0, /*hidden argument*/NULL); RuntimeObject* L_2 = ___secureReadable1; RecipientInformation__ctor_mA31EB17784907EB7929804AEC96F383AC7C7C8BC(__this, L_1, L_2, /*hidden argument*/NULL); // this.info = info; KeyTransRecipientInfo_t5560A4301685119C4400C494D4B8D2D5BCF538A0 * L_3 = ___info0; __this->set_info_4(L_3); // this.rid = new RecipientID(); RecipientID_t744700C1480DE017B5D0AB81C6A1044A8C400125 * L_4 = (RecipientID_t744700C1480DE017B5D0AB81C6A1044A8C400125 *)il2cpp_codegen_object_new(RecipientID_t744700C1480DE017B5D0AB81C6A1044A8C400125_il2cpp_TypeInfo_var); RecipientID__ctor_m30284CC4BE38EB6ADBE38A88570543213285A349(L_4, /*hidden argument*/NULL); ((RecipientInformation_tB02D0534E5C0851FB482467BA26A52FAD2F853AB *)__this)->set_rid_0(L_4); // RecipientIdentifier r = info.RecipientIdentifier; KeyTransRecipientInfo_t5560A4301685119C4400C494D4B8D2D5BCF538A0 * L_5 = ___info0; NullCheck(L_5); RecipientIdentifier_tBC500D2CDE60B57F8CB815C4599D2EE019A2E5C1 * L_6; L_6 = KeyTransRecipientInfo_get_RecipientIdentifier_m0D266D37414056F3773B123054146FE8C1A71C33_inline(L_5, /*hidden argument*/NULL); V_0 = L_6; } IL_0026: try {// begin try (depth: 1) { // if (r.IsTagged) RecipientIdentifier_tBC500D2CDE60B57F8CB815C4599D2EE019A2E5C1 * L_7 = V_0; NullCheck(L_7); bool L_8; L_8 = RecipientIdentifier_get_IsTagged_m03B9AD5B066BB0047E1360C40E58E99C94EAADF3(L_7, /*hidden argument*/NULL); if (!L_8) { goto IL_004d; } } IL_002e: { // Asn1OctetString octs = Asn1OctetString.GetInstance(r.ID); RecipientIdentifier_tBC500D2CDE60B57F8CB815C4599D2EE019A2E5C1 * L_9 = V_0; NullCheck(L_9); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_10; L_10 = RecipientIdentifier_get_ID_m54BDBC8850EA87009C9C1F3CDCB17C3F966AC34C(L_9, /*hidden argument*/NULL); Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_11; L_11 = Asn1OctetString_GetInstance_mF572FFBA88CFF4772B2AF3E70E05EB0E8066A3C9(L_10, /*hidden argument*/NULL); V_1 = L_11; // rid.SubjectKeyIdentifier = octs.GetOctets(); RecipientID_t744700C1480DE017B5D0AB81C6A1044A8C400125 * L_12 = ((RecipientInformation_tB02D0534E5C0851FB482467BA26A52FAD2F853AB *)__this)->get_rid_0(); Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_13 = V_1; NullCheck(L_13); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_14; L_14 = VirtualFuncInvoker0< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(10 /* System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString::GetOctets() */, L_13); NullCheck(L_12); X509CertStoreSelector_set_SubjectKeyIdentifier_m2AFAA3AF020DFC2688337E14B1DCCA33DFC05451(L_12, L_14, /*hidden argument*/NULL); // } goto IL_0080; } IL_004d: { // IssuerAndSerialNumber iAnds = IssuerAndSerialNumber.GetInstance(r.ID); RecipientIdentifier_tBC500D2CDE60B57F8CB815C4599D2EE019A2E5C1 * L_15 = V_0; NullCheck(L_15); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_16; L_16 = RecipientIdentifier_get_ID_m54BDBC8850EA87009C9C1F3CDCB17C3F966AC34C(L_15, /*hidden argument*/NULL); IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64 * L_17; L_17 = IssuerAndSerialNumber_GetInstance_mF4A4D4DB8052366CCFE5E77930352FB0A3725E5B(L_16, /*hidden argument*/NULL); V_2 = L_17; // rid.Issuer = iAnds.Name; RecipientID_t744700C1480DE017B5D0AB81C6A1044A8C400125 * L_18 = ((RecipientInformation_tB02D0534E5C0851FB482467BA26A52FAD2F853AB *)__this)->get_rid_0(); IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64 * L_19 = V_2; NullCheck(L_19); X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * L_20; L_20 = IssuerAndSerialNumber_get_Name_m1A73B0BF1416F5634C5CF376455FC28CC1C9621A_inline(L_19, /*hidden argument*/NULL); NullCheck(L_18); X509CertStoreSelector_set_Issuer_mF45C905EE0E690870660F61DB38A4011AE4E666C_inline(L_18, L_20, /*hidden argument*/NULL); // rid.SerialNumber = iAnds.SerialNumber.Value; RecipientID_t744700C1480DE017B5D0AB81C6A1044A8C400125 * L_21 = ((RecipientInformation_tB02D0534E5C0851FB482467BA26A52FAD2F853AB *)__this)->get_rid_0(); IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64 * L_22 = V_2; NullCheck(L_22); DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * L_23; L_23 = IssuerAndSerialNumber_get_SerialNumber_mF481C0E59D4CAEB309CE8D4E73C372E65FAD48EB_inline(L_22, /*hidden argument*/NULL); NullCheck(L_23); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_24; L_24 = DerInteger_get_Value_m8C263058A637AE123BD47291A36538E05E374478(L_23, /*hidden argument*/NULL); NullCheck(L_21); X509CertStoreSelector_set_SerialNumber_m8721FD1AD35B54F1E191B115F5335EE7A07A90F5_inline(L_21, L_24, /*hidden argument*/NULL); } IL_0080: { // } goto IL_008e; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0082; } throw e; } CATCH_0082: {// begin catch(System.IO.IOException) // catch (IOException) // throw new ArgumentException("invalid rid in KeyTransRecipientInformation"); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_25 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_25, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA5EAF3BF1804594F0F4E627ADE58347CE3657B51)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_25, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeyTransRecipientInformation__ctor_m2DB1D41BFCD56E22A4EDEBEA37B1ADD56737CB71_RuntimeMethod_var))); }// end catch (depth: 1) IL_008e: { // } return; } } // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyTransRecipientInformation::GetExchangeEncryptionAlgorithmName(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* KeyTransRecipientInformation_GetExchangeEncryptionAlgorithmName_m94772B533330F5AD0E6B08A878CE43671179976F (KeyTransRecipientInformation_t5A77B5723E83662291A1744A96270F6A153A0830 * __this, DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___oid0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0312BE355D8116C0CA0DE25DC0B0491D17457E8A); s_Il2CppMethodInitialized = true; } { // if (Asn1Pkcs.PkcsObjectIdentifiers.RsaEncryption.Equals(oid)) IL2CPP_RUNTIME_CLASS_INIT(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_0 = ((PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields*)il2cpp_codegen_static_fields_for(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var))->get_RsaEncryption_2(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_1 = ___oid0; NullCheck(L_0); bool L_2; L_2 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_0, L_1); if (!L_2) { goto IL_0013; } } { // return "RSA//PKCS1Padding"; return _stringLiteral0312BE355D8116C0CA0DE25DC0B0491D17457E8A; } IL_0013: { // return oid.Id; DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_3 = ___oid0; NullCheck(L_3); String_t* L_4; L_4 = DerObjectIdentifier_get_Id_m1A4618B1F7ED8630EDC76DF95D8C7086F1E616D6_inline(L_3, /*hidden argument*/NULL); return L_4; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.KeyParameter BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyTransRecipientInformation::UnwrapKey(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ICipherParameters) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * KeyTransRecipientInformation_UnwrapKey_m4A171F3D0EA19AD2C09547A8067457EF5AC298C8 (KeyTransRecipientInformation_t5A77B5723E83662291A1744A96270F6A153A0830 * __this, RuntimeObject* ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IWrapper_t29A9E044AAEEECE9E2FA8A8A61F76B0F50347B39_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ParameterUtilities_t234D0F218EFEF9117357F420840DDED9D44E2FD8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WrapperUtilities_tA8773B79845F802BD564227F81CD5EF74C553416_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_0 = NULL; String_t* V_1 = NULL; RuntimeObject* V_2 = NULL; KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * V_3 = NULL; SecurityUtilityException_t302EB7051FEB04E7829C028B4BC072B6664255CA * V_4 = NULL; InvalidKeyException_t7F19EE8EB26000BAFDF50186FB1DD59F13A7FD8A * V_5 = NULL; DataLengthException_t084143F55FB641046577C7BD1F58BC059B953180 * V_6 = NULL; InvalidCipherTextException_tCB4102F353576109DF6723BAD28806C82D61BC8D * V_7 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; { // byte[] encryptedKey = info.EncryptedKey.GetOctets(); KeyTransRecipientInfo_t5560A4301685119C4400C494D4B8D2D5BCF538A0 * L_0 = __this->get_info_4(); NullCheck(L_0); Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_1; L_1 = KeyTransRecipientInfo_get_EncryptedKey_mB7EC3140CE2F08DE089A1DE4FD4C52C4B1397E05_inline(L_0, /*hidden argument*/NULL); NullCheck(L_1); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2; L_2 = VirtualFuncInvoker0< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(10 /* System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString::GetOctets() */, L_1); V_0 = L_2; // string keyExchangeAlgorithm = GetExchangeEncryptionAlgorithmName(keyEncAlg.Algorithm); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_3 = ((RecipientInformation_tB02D0534E5C0851FB482467BA26A52FAD2F853AB *)__this)->get_keyEncAlg_1(); NullCheck(L_3); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_4; L_4 = VirtualFuncInvoker0< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * >::Invoke(6 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier::get_Algorithm() */, L_3); String_t* L_5; L_5 = KeyTransRecipientInformation_GetExchangeEncryptionAlgorithmName_m94772B533330F5AD0E6B08A878CE43671179976F(__this, L_4, /*hidden argument*/NULL); V_1 = L_5; } IL_0023: try {// begin try (depth: 1) // IWrapper keyWrapper = WrapperUtilities.GetWrapper(keyExchangeAlgorithm); String_t* L_6 = V_1; IL2CPP_RUNTIME_CLASS_INIT(WrapperUtilities_tA8773B79845F802BD564227F81CD5EF74C553416_il2cpp_TypeInfo_var); RuntimeObject* L_7; L_7 = WrapperUtilities_GetWrapper_mBD3F21889F0902E5321CD22D3CCE7C6D09B89A65(L_6, /*hidden argument*/NULL); V_2 = L_7; // keyWrapper.Init(false, key); RuntimeObject* L_8 = V_2; RuntimeObject* L_9 = ___key0; NullCheck(L_8); InterfaceActionInvoker2< bool, RuntimeObject* >::Invoke(1 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IWrapper::Init(System.Boolean,BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ICipherParameters) */, IWrapper_t29A9E044AAEEECE9E2FA8A8A61F76B0F50347B39_il2cpp_TypeInfo_var, L_8, (bool)0, L_9); // return ParameterUtilities.CreateKeyParameter( // GetContentAlgorithmName(), keyWrapper.Unwrap(encryptedKey, 0, encryptedKey.Length)); String_t* L_10; L_10 = RecipientInformation_GetContentAlgorithmName_m64C76DBDEBDB6A3BE04DEA51EA8B54FE664126BD(__this, /*hidden argument*/NULL); RuntimeObject* L_11 = V_2; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_12 = V_0; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_13 = V_0; NullCheck(L_13); NullCheck(L_11); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_14; L_14 = InterfaceFuncInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(3 /* System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IWrapper::Unwrap(System.Byte[],System.Int32,System.Int32) */, IWrapper_t29A9E044AAEEECE9E2FA8A8A61F76B0F50347B39_il2cpp_TypeInfo_var, L_11, L_12, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_13)->max_length)))); IL2CPP_RUNTIME_CLASS_INIT(ParameterUtilities_t234D0F218EFEF9117357F420840DDED9D44E2FD8_il2cpp_TypeInfo_var); KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * L_15; L_15 = ParameterUtilities_CreateKeyParameter_m19FF8F5D0988B47EDF2D296740F966424DE6D877(L_10, L_14, /*hidden argument*/NULL); V_3 = L_15; goto IL_0087; }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SecurityUtilityException_t302EB7051FEB04E7829C028B4BC072B6664255CA_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_004b; } if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidKeyException_t7F19EE8EB26000BAFDF50186FB1DD59F13A7FD8A_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_005a; } if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataLengthException_t084143F55FB641046577C7BD1F58BC059B953180_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0069; } if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCipherTextException_tCB4102F353576109DF6723BAD28806C82D61BC8D_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0078; } throw e; } CATCH_004b: {// begin catch(BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecurityUtilityException) // catch (SecurityUtilityException e) V_4 = ((SecurityUtilityException_t302EB7051FEB04E7829C028B4BC072B6664255CA *)IL2CPP_GET_ACTIVE_EXCEPTION(SecurityUtilityException_t302EB7051FEB04E7829C028B4BC072B6664255CA *)); // throw new CmsException("couldn't create cipher.", e); SecurityUtilityException_t302EB7051FEB04E7829C028B4BC072B6664255CA * L_16 = V_4; CmsException_tA459F99D1C6C93528CDEC8BBB289A932766EC3DE * L_17 = (CmsException_tA459F99D1C6C93528CDEC8BBB289A932766EC3DE *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CmsException_tA459F99D1C6C93528CDEC8BBB289A932766EC3DE_il2cpp_TypeInfo_var))); CmsException__ctor_m809D9B85B996E0F6DC9AA0AD774D54178AC5698B(L_17, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral01F92A55E0C4F71D4AC7BF5ADA2134AD7132F1AC)), L_16, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeyTransRecipientInformation_UnwrapKey_m4A171F3D0EA19AD2C09547A8067457EF5AC298C8_RuntimeMethod_var))); }// end catch (depth: 1) CATCH_005a: {// begin catch(BestHTTP.SecureProtocol.Org.BouncyCastle.Security.InvalidKeyException) // catch (InvalidKeyException e) V_5 = ((InvalidKeyException_t7F19EE8EB26000BAFDF50186FB1DD59F13A7FD8A *)IL2CPP_GET_ACTIVE_EXCEPTION(InvalidKeyException_t7F19EE8EB26000BAFDF50186FB1DD59F13A7FD8A *)); // throw new CmsException("key invalid in message.", e); InvalidKeyException_t7F19EE8EB26000BAFDF50186FB1DD59F13A7FD8A * L_18 = V_5; CmsException_tA459F99D1C6C93528CDEC8BBB289A932766EC3DE * L_19 = (CmsException_tA459F99D1C6C93528CDEC8BBB289A932766EC3DE *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CmsException_tA459F99D1C6C93528CDEC8BBB289A932766EC3DE_il2cpp_TypeInfo_var))); CmsException__ctor_m809D9B85B996E0F6DC9AA0AD774D54178AC5698B(L_19, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBE27790FE5F9592709AE1519C66D48EF4947F953)), L_18, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeyTransRecipientInformation_UnwrapKey_m4A171F3D0EA19AD2C09547A8067457EF5AC298C8_RuntimeMethod_var))); }// end catch (depth: 1) CATCH_0069: {// begin catch(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.DataLengthException) // catch (DataLengthException e) V_6 = ((DataLengthException_t084143F55FB641046577C7BD1F58BC059B953180 *)IL2CPP_GET_ACTIVE_EXCEPTION(DataLengthException_t084143F55FB641046577C7BD1F58BC059B953180 *)); // throw new CmsException("illegal blocksize in message.", e); DataLengthException_t084143F55FB641046577C7BD1F58BC059B953180 * L_20 = V_6; CmsException_tA459F99D1C6C93528CDEC8BBB289A932766EC3DE * L_21 = (CmsException_tA459F99D1C6C93528CDEC8BBB289A932766EC3DE *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CmsException_tA459F99D1C6C93528CDEC8BBB289A932766EC3DE_il2cpp_TypeInfo_var))); CmsException__ctor_m809D9B85B996E0F6DC9AA0AD774D54178AC5698B(L_21, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6ACD7627D1812D17F371FBBC61ED2BBA7633C249)), L_20, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeyTransRecipientInformation_UnwrapKey_m4A171F3D0EA19AD2C09547A8067457EF5AC298C8_RuntimeMethod_var))); }// end catch (depth: 1) CATCH_0078: {// begin catch(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.InvalidCipherTextException) // catch (InvalidCipherTextException e) V_7 = ((InvalidCipherTextException_tCB4102F353576109DF6723BAD28806C82D61BC8D *)IL2CPP_GET_ACTIVE_EXCEPTION(InvalidCipherTextException_tCB4102F353576109DF6723BAD28806C82D61BC8D *)); // throw new CmsException("bad padding in message.", e); InvalidCipherTextException_tCB4102F353576109DF6723BAD28806C82D61BC8D * L_22 = V_7; CmsException_tA459F99D1C6C93528CDEC8BBB289A932766EC3DE * L_23 = (CmsException_tA459F99D1C6C93528CDEC8BBB289A932766EC3DE *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CmsException_tA459F99D1C6C93528CDEC8BBB289A932766EC3DE_il2cpp_TypeInfo_var))); CmsException__ctor_m809D9B85B996E0F6DC9AA0AD774D54178AC5698B(L_23, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral48A54DE329BF294FDB29E562C0459FBF1F84BD37)), L_22, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_23, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeyTransRecipientInformation_UnwrapKey_m4A171F3D0EA19AD2C09547A8067457EF5AC298C8_RuntimeMethod_var))); }// end catch (depth: 1) IL_0087: { // } KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * L_24 = V_3; return L_24; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsTypedStream BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.KeyTransRecipientInformation::GetContentStream(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ICipherParameters) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CmsTypedStream_t73EEA14F539B2D9626982E55116A232F30D73A21 * KeyTransRecipientInformation_GetContentStream_m1F2F652F7B601E77729A4F11DDBDADC871BC2B2A (KeyTransRecipientInformation_t5A77B5723E83662291A1744A96270F6A153A0830 * __this, RuntimeObject* ___key0, const RuntimeMethod* method) { KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * V_0 = NULL; { // KeyParameter sKey = UnwrapKey(key); RuntimeObject* L_0 = ___key0; KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * L_1; L_1 = KeyTransRecipientInformation_UnwrapKey_m4A171F3D0EA19AD2C09547A8067457EF5AC298C8(__this, L_0, /*hidden argument*/NULL); V_0 = L_1; // return GetContentFromSessionKey(sKey); KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * L_2 = V_0; CmsTypedStream_t73EEA14F539B2D9626982E55116A232F30D73A21 * L_3; L_3 = RecipientInformation_GetContentFromSessionKey_m0C29E269759D7B87B5D1B84BC1D636DE0E21166A(__this, L_2, /*hidden argument*/NULL); return L_3; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.KeyUsage BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.KeyUsage::GetInstance(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyUsage_tF5D1BD25AB89302E6BE5EF210FF50F4055A77145 * KeyUsage_GetInstance_m72A3EBC76BCAE121DC6E0D693B127FB4BDF30AF2 (RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerBitString_t305465793A47445626D3541AB8CEDE347D874524_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyUsage_tF5D1BD25AB89302E6BE5EF210FF50F4055A77145_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509Extension_t977D8DEE7C59707768F9038FE1B97F2E243B80AB_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (obj is KeyUsage) RuntimeObject * L_0 = ___obj0; if (!((KeyUsage_tF5D1BD25AB89302E6BE5EF210FF50F4055A77145 *)IsInstClass((RuntimeObject*)L_0, KeyUsage_tF5D1BD25AB89302E6BE5EF210FF50F4055A77145_il2cpp_TypeInfo_var))) { goto IL_000f; } } { // return (KeyUsage)obj; RuntimeObject * L_1 = ___obj0; return ((KeyUsage_tF5D1BD25AB89302E6BE5EF210FF50F4055A77145 *)CastclassClass((RuntimeObject*)L_1, KeyUsage_tF5D1BD25AB89302E6BE5EF210FF50F4055A77145_il2cpp_TypeInfo_var)); } IL_000f: { // if (obj is X509Extension) RuntimeObject * L_2 = ___obj0; if (!((X509Extension_t977D8DEE7C59707768F9038FE1B97F2E243B80AB *)IsInstClass((RuntimeObject*)L_2, X509Extension_t977D8DEE7C59707768F9038FE1B97F2E243B80AB_il2cpp_TypeInfo_var))) { goto IL_0028; } } { // return GetInstance(X509Extension.ConvertValueToObject((X509Extension) obj)); RuntimeObject * L_3 = ___obj0; Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * L_4; L_4 = X509Extension_ConvertValueToObject_m7A8320756D4F6CCD63814B942091D67E78738486(((X509Extension_t977D8DEE7C59707768F9038FE1B97F2E243B80AB *)CastclassClass((RuntimeObject*)L_3, X509Extension_t977D8DEE7C59707768F9038FE1B97F2E243B80AB_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); KeyUsage_tF5D1BD25AB89302E6BE5EF210FF50F4055A77145 * L_5; L_5 = KeyUsage_GetInstance_m72A3EBC76BCAE121DC6E0D693B127FB4BDF30AF2(L_4, /*hidden argument*/NULL); return L_5; } IL_0028: { // return new KeyUsage(DerBitString.GetInstance(obj)); RuntimeObject * L_6 = ___obj0; IL2CPP_RUNTIME_CLASS_INIT(DerBitString_t305465793A47445626D3541AB8CEDE347D874524_il2cpp_TypeInfo_var); DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * L_7; L_7 = DerBitString_GetInstance_mFBA6EA683F6F292F1A15D6E5BE37CFA85104C36A(L_6, /*hidden argument*/NULL); KeyUsage_tF5D1BD25AB89302E6BE5EF210FF50F4055A77145 * L_8 = (KeyUsage_tF5D1BD25AB89302E6BE5EF210FF50F4055A77145 *)il2cpp_codegen_object_new(KeyUsage_tF5D1BD25AB89302E6BE5EF210FF50F4055A77145_il2cpp_TypeInfo_var); KeyUsage__ctor_mDB9848F3323407A5145868CDDF2D8F417A5F0EF1(L_8, L_7, /*hidden argument*/NULL); return L_8; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.KeyUsage::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyUsage__ctor_m0710581203ECA072ACB963631D07720EDBC52E6B (KeyUsage_tF5D1BD25AB89302E6BE5EF210FF50F4055A77145 * __this, int32_t ___usage0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerBitString_t305465793A47445626D3541AB8CEDE347D874524_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // : base(usage) int32_t L_0 = ___usage0; IL2CPP_RUNTIME_CLASS_INIT(DerBitString_t305465793A47445626D3541AB8CEDE347D874524_il2cpp_TypeInfo_var); DerBitString__ctor_mF701223D0F3716183973E4CEF77F5558E23321F0(__this, L_0, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.KeyUsage::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyUsage__ctor_mDB9848F3323407A5145868CDDF2D8F417A5F0EF1 (KeyUsage_tF5D1BD25AB89302E6BE5EF210FF50F4055A77145 * __this, DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * ___usage0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerBitString_t305465793A47445626D3541AB8CEDE347D874524_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // : base(usage.GetBytes(), usage.PadBits) DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * L_0 = ___usage0; NullCheck(L_0); IL2CPP_RUNTIME_CLASS_INIT(DerBitString_t305465793A47445626D3541AB8CEDE347D874524_il2cpp_TypeInfo_var); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1; L_1 = VirtualFuncInvoker0< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(12 /* System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString::GetBytes() */, L_0); DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * L_2 = ___usage0; NullCheck(L_2); int32_t L_3; L_3 = VirtualFuncInvoker0< int32_t >::Invoke(13 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString::get_PadBits() */, L_2); DerBitString__ctor_m3873220573E98B131BF69FFBD42E0A63D738BE17(__this, L_1, L_3, /*hidden argument*/NULL); // } return; } } // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.KeyUsage::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* KeyUsage_ToString_m8ECB8DB4B15CECFA2448D4351E2B7B27F34D35F9 (KeyUsage_tF5D1BD25AB89302E6BE5EF210FF50F4055A77145 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3D03EE68825561C85461F61FCFCFA2EC266E7DD8); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD5D2875F228D651E1289522AEAAB8C492001C1BE); s_Il2CppMethodInitialized = true; } ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_0 = NULL; int32_t V_1 = 0; { // byte[] data = GetBytes(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0; L_0 = VirtualFuncInvoker0< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(12 /* System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString::GetBytes() */, __this); V_0 = L_0; // if (data.Length == 1) ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = V_0; NullCheck(L_1); if ((!(((uint32_t)((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length)))) == ((uint32_t)1)))) { goto IL_002e; } } { // return "KeyUsage: 0x" + (data[0] & 0xff).ToString("X"); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = V_0; NullCheck(L_2); int32_t L_3 = 0; uint8_t L_4 = (L_2)->GetAt(static_cast(L_3)); V_1 = ((int32_t)((int32_t)L_4&(int32_t)((int32_t)255))); String_t* L_5; L_5 = Int32_ToString_m5398ED0B6625B75CAF70C63B3CF2CE47D3C1B184((int32_t*)(&V_1), _stringLiteralD5D2875F228D651E1289522AEAAB8C492001C1BE, /*hidden argument*/NULL); String_t* L_6; L_6 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(_stringLiteral3D03EE68825561C85461F61FCFCFA2EC266E7DD8, L_5, /*hidden argument*/NULL); return L_6; } IL_002e: { // return "KeyUsage: 0x" + ((data[1] & 0xff) << 8 | (data[0] & 0xff)).ToString("X"); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_7 = V_0; NullCheck(L_7); int32_t L_8 = 1; uint8_t L_9 = (L_7)->GetAt(static_cast(L_8)); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_10 = V_0; NullCheck(L_10); int32_t L_11 = 0; uint8_t L_12 = (L_10)->GetAt(static_cast(L_11)); V_1 = ((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_9&(int32_t)((int32_t)255)))<<(int32_t)8))|(int32_t)((int32_t)((int32_t)L_12&(int32_t)((int32_t)255))))); String_t* L_13; L_13 = Int32_ToString_m5398ED0B6625B75CAF70C63B3CF2CE47D3C1B184((int32_t*)(&V_1), _stringLiteralD5D2875F228D651E1289522AEAAB8C492001C1BE, /*hidden argument*/NULL); String_t* L_14; L_14 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(_stringLiteral3D03EE68825561C85461F61FCFCFA2EC266E7DD8, L_13, /*hidden argument*/NULL); return L_14; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1 BestHTTP.Extensions.KeyValuePairList::get_Values() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t9C4606F69CB3833861EC4E41C2E8DA5647D07189 * KeyValuePairList_get_Values_mE8EA12BD772DCFDAFAF1D435DFFAEB26A31F7D42 (KeyValuePairList_tFB05264C65689BEB0A93912EE115844C33E3FF0F * __this, const RuntimeMethod* method) { { // public List Values { get; protected set; } List_1_t9C4606F69CB3833861EC4E41C2E8DA5647D07189 * L_0 = __this->get_U3CValuesU3Ek__BackingField_0(); return L_0; } } // System.Void BestHTTP.Extensions.KeyValuePairList::set_Values(System.Collections.Generic.List`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePairList_set_Values_m060BDF65FFB9D2C9B9878669E3A684F2944DB072 (KeyValuePairList_tFB05264C65689BEB0A93912EE115844C33E3FF0F * __this, List_1_t9C4606F69CB3833861EC4E41C2E8DA5647D07189 * ___value0, const RuntimeMethod* method) { { // public List Values { get; protected set; } List_1_t9C4606F69CB3833861EC4E41C2E8DA5647D07189 * L_0 = ___value0; __this->set_U3CValuesU3Ek__BackingField_0(L_0); return; } } // System.Boolean BestHTTP.Extensions.KeyValuePairList::TryGet(System.String,BestHTTP.Extensions.HeaderValue&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool KeyValuePairList_TryGet_m1B462A6661FC7A993D3E0125E8A33BC0BC45CB16 (KeyValuePairList_tFB05264C65689BEB0A93912EE115844C33E3FF0F * __this, String_t* ___valueKeyName0, HeaderValue_tB19EA8836300DA053E7A6E082DD196DA23BA7F77 ** ___param1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m14830FB8CB94C5F517EE78FFFC8F01F8C07D14E9_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m22277597AF3CBF965433E8285B3F3FEE770EC852_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { // @param = null; HeaderValue_tB19EA8836300DA053E7A6E082DD196DA23BA7F77 ** L_0 = ___param1; *((RuntimeObject **)L_0) = (RuntimeObject *)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_0, (void*)(RuntimeObject *)NULL); // for (int i = 0; i < Values.Count; ++i) V_0 = 0; goto IL_0034; } IL_0007: { // if (string.CompareOrdinal(Values[i].Key, valueKeyName) == 0) List_1_t9C4606F69CB3833861EC4E41C2E8DA5647D07189 * L_1; L_1 = KeyValuePairList_get_Values_mE8EA12BD772DCFDAFAF1D435DFFAEB26A31F7D42_inline(__this, /*hidden argument*/NULL); int32_t L_2 = V_0; NullCheck(L_1); HeaderValue_tB19EA8836300DA053E7A6E082DD196DA23BA7F77 * L_3; L_3 = List_1_get_Item_m22277597AF3CBF965433E8285B3F3FEE770EC852_inline(L_1, L_2, /*hidden argument*/List_1_get_Item_m22277597AF3CBF965433E8285B3F3FEE770EC852_RuntimeMethod_var); NullCheck(L_3); String_t* L_4; L_4 = HeaderValue_get_Key_mAF2366B71EAC8430909C5CC2DBD6E855ED62347A_inline(L_3, /*hidden argument*/NULL); String_t* L_5 = ___valueKeyName0; int32_t L_6; L_6 = String_CompareOrdinal_m1C7F94040504F35C89EBC8826D77FEA81B9C2C0E(L_4, L_5, /*hidden argument*/NULL); if (L_6) { goto IL_0030; } } { // @param = Values[i]; HeaderValue_tB19EA8836300DA053E7A6E082DD196DA23BA7F77 ** L_7 = ___param1; List_1_t9C4606F69CB3833861EC4E41C2E8DA5647D07189 * L_8; L_8 = KeyValuePairList_get_Values_mE8EA12BD772DCFDAFAF1D435DFFAEB26A31F7D42_inline(__this, /*hidden argument*/NULL); int32_t L_9 = V_0; NullCheck(L_8); HeaderValue_tB19EA8836300DA053E7A6E082DD196DA23BA7F77 * L_10; L_10 = List_1_get_Item_m22277597AF3CBF965433E8285B3F3FEE770EC852_inline(L_8, L_9, /*hidden argument*/List_1_get_Item_m22277597AF3CBF965433E8285B3F3FEE770EC852_RuntimeMethod_var); *((RuntimeObject **)L_7) = (RuntimeObject *)L_10; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_7, (void*)(RuntimeObject *)L_10); // return true; return (bool)1; } IL_0030: { // for (int i = 0; i < Values.Count; ++i) int32_t L_11 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); } IL_0034: { // for (int i = 0; i < Values.Count; ++i) int32_t L_12 = V_0; List_1_t9C4606F69CB3833861EC4E41C2E8DA5647D07189 * L_13; L_13 = KeyValuePairList_get_Values_mE8EA12BD772DCFDAFAF1D435DFFAEB26A31F7D42_inline(__this, /*hidden argument*/NULL); NullCheck(L_13); int32_t L_14; L_14 = List_1_get_Count_m14830FB8CB94C5F517EE78FFFC8F01F8C07D14E9_inline(L_13, /*hidden argument*/List_1_get_Count_m14830FB8CB94C5F517EE78FFFC8F01F8C07D14E9_RuntimeMethod_var); if ((((int32_t)L_12) < ((int32_t)L_14))) { goto IL_0007; } } { // return false; return (bool)0; } } // System.Void BestHTTP.Extensions.KeyValuePairList::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePairList__ctor_m499DE7A18ED47576EEDA3E69F26CE7DFD291772F (KeyValuePairList_tFB05264C65689BEB0A93912EE115844C33E3FF0F * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Kisa.KisaObjectIdentifiers::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KisaObjectIdentifiers__ctor_m85E40753D389BF7DA936322183CF2A5BFD7ADA17 (KisaObjectIdentifiers_t898950CC3EDDC3A29B3AE5ADE24CBD51FF226455 * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Kisa.KisaObjectIdentifiers::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KisaObjectIdentifiers__cctor_mB4354B59971C5C0E9A6EC4EAA27891F96699EF2C (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KisaObjectIdentifiers_t898950CC3EDDC3A29B3AE5ADE24CBD51FF226455_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2DF4F6C8773C4ADA8D0C09430BB1A6640ECCA94D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8A958FB6897A690303DAC8D56CC4BAD030B70BBC); s_Il2CppMethodInitialized = true; } { // public static readonly DerObjectIdentifier IdSeedCbc = new DerObjectIdentifier("1.2.410.200004.1.4"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_0 = (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *)il2cpp_codegen_object_new(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); DerObjectIdentifier__ctor_m8009342D7B2AD40B1E19E6AB958141979B7405CD(L_0, _stringLiteral8A958FB6897A690303DAC8D56CC4BAD030B70BBC, /*hidden argument*/NULL); ((KisaObjectIdentifiers_t898950CC3EDDC3A29B3AE5ADE24CBD51FF226455_StaticFields*)il2cpp_codegen_static_fields_for(KisaObjectIdentifiers_t898950CC3EDDC3A29B3AE5ADE24CBD51FF226455_il2cpp_TypeInfo_var))->set_IdSeedCbc_0(L_0); // public static readonly DerObjectIdentifier IdNpkiAppCmsSeedWrap = new DerObjectIdentifier("1.2.410.200004.7.1.1.1"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_1 = (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *)il2cpp_codegen_object_new(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); DerObjectIdentifier__ctor_m8009342D7B2AD40B1E19E6AB958141979B7405CD(L_1, _stringLiteral2DF4F6C8773C4ADA8D0C09430BB1A6640ECCA94D, /*hidden argument*/NULL); ((KisaObjectIdentifiers_t898950CC3EDDC3A29B3AE5ADE24CBD51FF226455_StaticFields*)il2cpp_codegen_static_fields_for(KisaObjectIdentifiers_t898950CC3EDDC3A29B3AE5ADE24CBD51FF226455_il2cpp_TypeInfo_var))->set_IdNpkiAppCmsSeedWrap_1(L_1); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void UnityStandardAssets.Vehicles.Aeroplane.LandingGear::Start() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LandingGear_Start_m70C789B2041BD240C035E877C24B286DCFDA09E8 (LandingGear_t58C1D02658AD943B7668F9B26376917773B9E1AC * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Component_GetComponent_TisAeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103_mD88E3A73D39CF612AB9E30CE2D5E83FCB1465116_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Component_GetComponent_TisAnimator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149_mF86B79BED8570481BDFC54EAEF1F692E0508BA38_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Component_GetComponent_TisRigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A_mB4A92A619135F9258670FB93AE08F229A41D0980_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // m_Plane = GetComponent(); AeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103 * L_0; L_0 = Component_GetComponent_TisAeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103_mD88E3A73D39CF612AB9E30CE2D5E83FCB1465116(__this, /*hidden argument*/Component_GetComponent_TisAeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103_mD88E3A73D39CF612AB9E30CE2D5E83FCB1465116_RuntimeMethod_var); __this->set_m_Plane_9(L_0); // m_Animator = GetComponent(); Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * L_1; L_1 = Component_GetComponent_TisAnimator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149_mF86B79BED8570481BDFC54EAEF1F692E0508BA38(__this, /*hidden argument*/Component_GetComponent_TisAnimator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149_mF86B79BED8570481BDFC54EAEF1F692E0508BA38_RuntimeMethod_var); __this->set_m_Animator_7(L_1); // m_Rigidbody = GetComponent(); Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * L_2; L_2 = Component_GetComponent_TisRigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A_mB4A92A619135F9258670FB93AE08F229A41D0980(__this, /*hidden argument*/Component_GetComponent_TisRigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A_mB4A92A619135F9258670FB93AE08F229A41D0980_RuntimeMethod_var); __this->set_m_Rigidbody_8(L_2); // } return; } } // System.Void UnityStandardAssets.Vehicles.Aeroplane.LandingGear::Update() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LandingGear_Update_m73400D86CB6743CD87E9D40E42F0B875DB870AB6 (LandingGear_t58C1D02658AD943B7668F9B26376917773B9E1AC * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral92CDC213CD9BF6DDDE9D749D9CB7FA2D63A961D7); s_Il2CppMethodInitialized = true; } { // if (m_State == GearState.Lowered && m_Plane.Altitude > raiseAtAltitude && m_Rigidbody.velocity.y > 0) int32_t L_0 = __this->get_m_State_6(); if ((!(((uint32_t)L_0) == ((uint32_t)1)))) { goto IL_003a; } } { AeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103 * L_1 = __this->get_m_Plane_9(); NullCheck(L_1); float L_2; L_2 = AeroplaneController_get_Altitude_m4E875DCD8BCB99EE7F07DA2E8762AFD46BE541FE_inline(L_1, /*hidden argument*/NULL); float L_3 = __this->get_raiseAtAltitude_4(); if ((!(((float)L_2) > ((float)L_3)))) { goto IL_003a; } } { Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * L_4 = __this->get_m_Rigidbody_8(); NullCheck(L_4); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_5; L_5 = Rigidbody_get_velocity_mCFB033F3BD14C2BA68E797DFA4950F9307EC8E2C(L_4, /*hidden argument*/NULL); float L_6 = L_5.get_y_3(); if ((!(((float)L_6) > ((float)(0.0f))))) { goto IL_003a; } } { // m_State = GearState.Raised; __this->set_m_State_6((-1)); } IL_003a: { // if (m_State == GearState.Raised && m_Plane.Altitude < lowerAtAltitude && m_Rigidbody.velocity.y < 0) int32_t L_7 = __this->get_m_State_6(); if ((!(((uint32_t)L_7) == ((uint32_t)(-1))))) { goto IL_0074; } } { AeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103 * L_8 = __this->get_m_Plane_9(); NullCheck(L_8); float L_9; L_9 = AeroplaneController_get_Altitude_m4E875DCD8BCB99EE7F07DA2E8762AFD46BE541FE_inline(L_8, /*hidden argument*/NULL); float L_10 = __this->get_lowerAtAltitude_5(); if ((!(((float)L_9) < ((float)L_10)))) { goto IL_0074; } } { Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * L_11 = __this->get_m_Rigidbody_8(); NullCheck(L_11); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_12; L_12 = Rigidbody_get_velocity_mCFB033F3BD14C2BA68E797DFA4950F9307EC8E2C(L_11, /*hidden argument*/NULL); float L_13 = L_12.get_y_3(); if ((!(((float)L_13) < ((float)(0.0f))))) { goto IL_0074; } } { // m_State = GearState.Lowered; __this->set_m_State_6(1); } IL_0074: { // m_Animator.SetInteger("GearState", (int) m_State); Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * L_14 = __this->get_m_Animator_7(); int32_t L_15 = __this->get_m_State_6(); NullCheck(L_14); Animator_SetInteger_mFB04A03AF6C24978BF2BDE9161243F8F6B9762C5(L_14, _stringLiteral92CDC213CD9BF6DDDE9D749D9CB7FA2D63A961D7, L_15, /*hidden argument*/NULL); // } return; } } // System.Void UnityStandardAssets.Vehicles.Aeroplane.LandingGear::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LandingGear__ctor_m8DFED9790FE9F6BF42F1391CCA7AE61FCEF10349 (LandingGear_t58C1D02658AD943B7668F9B26376917773B9E1AC * __this, const RuntimeMethod* method) { { // public float raiseAtAltitude = 40; __this->set_raiseAtAltitude_4((40.0f)); // public float lowerAtAltitude = 40; __this->set_lowerAtAltitude_5((40.0f)); // private GearState m_State = GearState.Lowered; __this->set_m_State_6(1); MonoBehaviour__ctor_mC0995D847F6A95B1A553652636C38A2AA8B13BED(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void LanguageDefault::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LanguageDefault__ctor_m0D0C27F099D2B5E96A7292CEE10EF4884F056BB6 (LanguageDefault_tD042AD73E528D2C0588434FCA27BAE33595E5783 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral003AEB0DCADDDD90442C6808CB62FEEB8AC1A005); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral02EA6340B56179367452A225FC70D5F115F6983B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral04C78427BE06B53DB9F1CEE9343A2F1FCCEF1241); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral09B8CDE697E612C12788519A26652CF773708DB8); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0A9FF7305BE338C269E316B0BEE476D3027E8B6E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0AE8B554E31D21D568B4D136545FE92AECD5BACE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0B3BA6E3E4E34967768E52D574A704BEFB366D84); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0DF0E7472AB631EF7CA09FF5A07637D92B89E437); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral116DF234322BBB75C0C8B4EB16718F5707626B59); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1273DAEC0D9F05DD31B2043C3024171924D10A51); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral12A834EBCA2FBD42304DF3744C6604E27718C5C4); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral14AAD8F28F6AA9300E34EEF8385683F3EF6ECD62); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral14BD9DC42A10E81B2E64E664E1188DAF7A9613BB); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1824392B13412C883B5D8074E887EFF0D9D0ECDB); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1837347544DBE68F8AF9C22DE2AF15FE56FD5FC2); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral18F8830E15119D35D0B3DA27420B82B3705D0EAB); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1AE116127FE7A6754AFB8D088FFA9091306B2E91); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1E799DA280FA1125BC8142705178BD801FBFAED4); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral222C14F66AB014CC03B486A88E1EA70EB5047392); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral236CFD811E0BFF5899745F44BBE267D9A4A79BC4); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral24BAA34060BB79D4D92A7C0500748E1016F9FB28); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral24F6E17C703A111CEDBAF2DD7D4FDBE632072195); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral25C4A4D511D9ADD68EFAE37AB3D40CC578F048E7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral27315CFD49467CE600FB7B6EE06DB59D56685EE2); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral27441E3C2148FF82FB0C194DAA6A206190BD62D5); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2C722119B0F48B84A9CE79A42D8A10E8175A96AB); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2DA3DB24E5BE0F3E7A062B02D192768D2607A77B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral30012AA97E150C6A81FC539125743F8C854966AF); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral30E82465F70655DCADD08FF2109A52B4E249F732); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral31D662523F3F3963669539E05B87AF9097F3AC29); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3B41739C2A8691E67E76BC70505CCCCC742C3F69); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3BB3E2F2AD08E30AFD107A43154CE53662C8614D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3D4DB32D30EAABD9002C0DAC3C1383B1B22192B6); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3EA7BCFD55C2E376307BCCBB30F31A7E982AF88F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral44582662BBAAC3A46B740C1A41325322EA9F35CC); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4538E1E102112A1F7389A80F5A408F04D49E22A4); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral465B6800EF3651F28B553739CAF2F3A32A1E2105); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral466667AF5777ED73F7BD31038D82A39CA99DD782); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral481BF531F6894754468B6C0F720AA094B41A1971); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral49DF44512FCC9CA23AEBB97BA329E199E7053B80); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4AAE06FCC2653520704C0099B595C3918487D50F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4B9ED093C8B83343B2C50216F336DA5A315FB725); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4DFD42FBEB2EEBDCC6AAD796584699ED2CF11A7F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4F539D3E438AC9532A3E056E50A61F6CCD62392B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral50E585819C0D7FC66C0CA531CB3FC14C49D773AE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral519AD94D394A6134ECB549B69966123B5B8A8356); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral52E038B4860FAC9F3B78139F3A227E95D368917F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral551783E77CB9FCB5ED401273B723D4051E6D0A6E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5745B045CAF8BADC5A3B1C82DF5478ACB7B945D5); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral580610F5FB66480F48933368044BBD89E4E608DE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5829FC8E7A0F8B4C9AD4ADB6206D273CFF726B47); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5C45EBE53E9E2E39389BD2C2787A688C6B242A89); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5D8680035BE790925076A087AB73E9FB073A0772); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5F6959A93B3B778E88467371222562086ADE5DA6); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral60D5A059B04E15DA6E5EF0862DCCD6CB64AA99B9); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6133C2BE2821ACAAF92A79DE2B042290474302F8); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral616097E2A4064778CDA7814FBF26DEF8EBCBC760); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral61850AA9E002C5E395225F91BB4F993737AE9A26); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral61CAC7CAE185918B2AC3B2F978E0EE9FAD61461F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral629D443B467C322F001488EE08CCCD8AEEEA63B4); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral63122F6BC8B6312359A21037BB6FBE3038B29AB9); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6673B295DB1AD68A69116F9F78378A56B7E67245); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral68109824E2F5B7EE073DBF1D5EDE1B33C05B35C9); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral68B2E674108C4BB827E60A114CE45F7BC57DC4DA); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6A217FCB93B9546B68C2A30F73B69EF5150994F2); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6D272643386259B5BD33C7E88283656158F2E750); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6EC6B6D1A9B46F9D0F6DE00D3D99A6E851B9E0C6); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6F436E58B96618C16285FE121D22EB2019A668E1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral70209D100585F41DCF819AD4AD7C110527232456); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral702401AF8C11794F79CA29BDC7101A8022A65261); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral713F506A3B28BDFF287E8D0C67076F829CBC441A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7254212DCCA27CDD7847EA60551444D043EBE741); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7453B8C50E69FD65D59A580E54E805F1AC8B58CF); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral74654D5D3F9E9C69AFB772D03553C20793E0540B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral772A092EC6FE21BB42DC531C04598014C47B1B45); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral78042B833812F6B193D3E3077C580BC1C4C26AA5); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7EDDB357174D241BAF5DD9EBD040E7B2908391B1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral814BE16AF757E2D44EF0D15E6D76E5B1B4F9AE1A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral83204952B6970480CF6B84EC6C9B649B98DD95E6); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8322F9DB7563E8AED558DBEAB872C883FD6B8556); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8400A3C0D1ADD6CDA24DA8EF0E1D2E5D41C239B7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8407CB04F02745686F8825EB812A949EFE387B51); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral846E8FFE581A3899702D65CD864D8C08317D9011); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral86F532611218781975D4AD96E50DDF38DB94FBC1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8803A42C3EBF3DF0EEAC9E7B9A1F9E505646AF8D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8804A3D0362E1679758AA4E40EB1C2BE16C1C43F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8831AB81FBD8CBAE14DC71B0E694591CA4B24450); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral88E6527BC40313AF8F64B2BDC32E69C11591CC2C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral91255E900FD832BE20D9327520ED35244A945574); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral91D927507F28A9603EDE93DD58C82DB5A90A24D3); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral93087E87481BBE023485F02F3C876019927EB4AE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral932DB59E166DB72B95897A31FD9731B6C768211C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral936D0603E2FF3786F4BAFAFF9F8763CB52EAE9BB); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral93D9C7398B56588CA42C0B0EAFB9E90E5D9E7F07); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral953AE0F56469F3DF4973E767A9C79D6676E3063B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral95AD45B2189AB613D276310BCC6809D2DA9438A7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral97A7608AC0E41B025274674683D580C13568B50F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral987B129DC592802C5E950BD06BA0ED8F1C12AADE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral987DAAC6A74B65BED6AD16AE02B6596FD14A96C4); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9977E59D6029C67FCFACEBEC6E72FAEC32CF1D15); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9D0FC7192C1BC49D9C9F14A232794521DA714D9B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9D1DA43CE9CBA725ACEA10D07C46BA50963C8C53); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA1C52417691AB77498FAE6F9B43394EBC36F5466); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA51B0EF6AC9954338624D239094263CC8C9D43FA); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA5DE9AF9DC2891B622DEE8B16FD9760B74C80E9E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA8EA98C7E235C2444F0F9DED58ACB2C5200C7220); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA958A954074FF9484F15385EEEC73469849170AA); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAAF4CFCFD1959185EC7FBAEBFB19DD28193E68AC); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAB49D9E4A3D98FBECE9A0AA5AD8332DE927850B6); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAFFC6F6F0E65082B10893D65E7D185AE0259C8A6); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB10E18314EAB53D5C8CADF7FF0B428566F2EB7D0); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB29841741B0ED5994BCC9FFA37F8DF85DD7675DE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB2F5D01615E64DEDD39E4B00E0761902DB4300FD); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB375043E052374D35DBFC775461DCF09C38D86A3); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB6715D1393DD3C6199F733E1E8211654C1DDBA4E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB7940066A5E7B1C2BCE401B210078B4881CD0FDF); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB9D0D87F8D8058F2763F8C5F3C1D8B09D0958F8F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBB6491FC4858E688C9DDDB1DB5FD836F70300267); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBCF60969B22E7B4A069AFAAC56A0343C17FCB547); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBD2B2AC85C150A80EC9300F74572E9F25387DCEF); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBE14179E6E19E4DB370B1B1D340FEF075787D84A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC17E8DF418A83A3A6C6F8D270D4F25171623D385); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC2824374C33DED498B8B13E8DD349EF610C8DB93); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC436C09C1CCC8596709DF698C17C6EC182A38FC9); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC547F47A60B1EE365F1225D6A359C72F39CF4E84); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC73995D1603E83396B3B11A3781474865F7B5F12); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC77703C85D26BD8ACE24CD7C1F39C6792D57FF8E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC7D0C10085889407FF02A27834F174B0C4C87339); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC81B61D4AD7D670A8501CF02F2A0F147248CAB6E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC81FACA20686EB8F4A61978D7596BC2DFB59EA3D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC8C8BA6638F9249D92E658C100C02CB474E7CF9C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCA20421A7FA0F75C232275A96E3BA4DE2E2DAC13); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCBCEF81934805CF0E25D96CDBBCC074D028DF8DC); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCF35AAB75ADEAB2A6BEA36DDCA64F7D95AC01589); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD09AB05F408869F6B19507FD0D3835F035CB3190); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD107B7944AC86781056FB3D3536AAB21B091DDFD); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD26E0068C34FF3F6EED5D38A32E1754073AEF519); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD501BB17BD3BE433E8A86590D1D69E40C1CBEEE9); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD52D86EFAA62C1731796153170E0F380C6F84A0A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD7B32C571DCDB4565F921142375AEB23479EB7C0); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD88E3BC07BE4A4A0D719CE356CB44CCD6AF1AB3F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD89BC5903AE40F439EA6F2CC5626C81DE7ED601A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD9CC1C8E4F10B24F3111EEBF8581C75297DDA480); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDC4E8D00D3572226F65A7F8F173531F44D39674E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDC7A2B79A47430126A902161391ABA8C481B5F0E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE10172354BC005BB1643F50F00F3B17438E35399); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE24F3FD2940E9484DCB08238A664AFADF683B36A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE410A3B16603875FAA958558C85F3960DC53199E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE69EC0323C81C640F0E1B55F6FED870705708B48); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE6FD5BD6471511A9222FE48364213053262F747F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE783135310BC70D6FDF5F5AAF0B679F770F0159E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE8C656A74E1A1C6190D3E7CA3E470340F8A627F7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE93A97DF27EB7745C95B0883E4909290D835DB52); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEA5282D98CA7DFA406615C0800B36CE089113D57); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEADFB26121515D4448D4C6E8BAD05B7968E6C874); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEB1326B0538B470465324EB7C3993F32A6CE9D5E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEB41A15A26E41D0B73F532042278C353F6BFC1F4); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEC9D16246A5039341712451C8CD097B5E32AFDD3); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEE45A9B1B4D469B39CFD49BA09C05F22C2143DD7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEF15C15221814987C7E61C7213C6BB9A8D55EE2F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF366CA157E0CC6467953E26574436949B670AC15); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF44A2E5B3F16B7CA22AC2013BDFD6005712C7DC9); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF69479A5A4CED3797AEE987A76B561412AA9E1A0); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFA4E53104C4A0E65F23F7323FD862A1A8C072AC3); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFC753E9D296FF07E771DCDF43A1D5E5DAFD6B045); s_Il2CppMethodInitialized = true; } { // public string text0 = ""; __this->set_text0_0(_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709); // public string text1 = "? ? :"; __this->set_text1_1(_stringLiteral68B2E674108C4BB827E60A114CE45F7BC57DC4DA); // public string text2 = "? ? ? :"; __this->set_text2_2(_stringLiteralC547F47A60B1EE365F1225D6A359C72F39CF4E84); // public string text3 = "? ? :"; __this->set_text3_3(_stringLiteral7254212DCCA27CDD7847EA60551444D043EBE741); // public string text4 = "???? :"; __this->set_text4_4(_stringLiteral0A9FF7305BE338C269E316B0BEE476D3027E8B6E); // public string text5 = "? ? :"; __this->set_text5_5(_stringLiteralC81B61D4AD7D670A8501CF02F2A0F147248CAB6E); // public string text6 = "???? :"; __this->set_text6_6(_stringLiteral30012AA97E150C6A81FC539125743F8C854966AF); // public string text7 = "??"; __this->set_text7_7(_stringLiteral91D927507F28A9603EDE93DD58C82DB5A90A24D3); // public string text8 = "?"; __this->set_text8_8(_stringLiteral3EA7BCFD55C2E376307BCCBB30F31A7E982AF88F); // public string text9 = "?"; __this->set_text9_9(_stringLiteral97A7608AC0E41B025274674683D580C13568B50F); // public string text10 = "???"; __this->set_text10_10(_stringLiteral932DB59E166DB72B95897A31FD9731B6C768211C); // public string text11 = "??????"; __this->set_text11_11(_stringLiteralC77703C85D26BD8ACE24CD7C1F39C6792D57FF8E); // public string text12 = "????"; __this->set_text12_12(_stringLiteral09B8CDE697E612C12788519A26652CF773708DB8); // public string text13 = "??"; __this->set_text13_13(_stringLiteral70209D100585F41DCF819AD4AD7C110527232456); // public string text14 = " ?? "; __this->set_text14_14(_stringLiteralE8C656A74E1A1C6190D3E7CA3E470340F8A627F7); // public string text15 = "????"; __this->set_text15_15(_stringLiteralD107B7944AC86781056FB3D3536AAB21B091DDFD); // public string text16 = "????"; __this->set_text16_16(_stringLiteral6673B295DB1AD68A69116F9F78378A56B7E67245); // public string text17 = "????"; __this->set_text17_17(_stringLiteral1E799DA280FA1125BC8142705178BD801FBFAED4); // public string text18 = "??"; __this->set_text18_18(_stringLiteral4538E1E102112A1F7389A80F5A408F04D49E22A4); // public string text19 = "??"; __this->set_text19_19(_stringLiteralEE45A9B1B4D469B39CFD49BA09C05F22C2143DD7); // public string text20 = "??"; __this->set_text20_20(_stringLiteralE24F3FD2940E9484DCB08238A664AFADF683B36A); // public string text21 = "??"; __this->set_text21_21(_stringLiteral86F532611218781975D4AD96E50DDF38DB94FBC1); // public string text22 = "??"; __this->set_text22_22(_stringLiteral713F506A3B28BDFF287E8D0C67076F829CBC441A); // public string text23 = "??"; __this->set_text23_23(_stringLiteralFC753E9D296FF07E771DCDF43A1D5E5DAFD6B045); // public string text24 = "? ? :"; __this->set_text24_24(_stringLiteralA8EA98C7E235C2444F0F9DED58ACB2C5200C7220); // public string text25 = "? ? :"; __this->set_text25_25(_stringLiteral14AAD8F28F6AA9300E34EEF8385683F3EF6ECD62); // public string text26 = "????"; __this->set_text26_26(_stringLiteral987B129DC592802C5E950BD06BA0ED8F1C12AADE); // public string text27 = "?????"; __this->set_text27_27(_stringLiteral8400A3C0D1ADD6CDA24DA8EF0E1D2E5D41C239B7); // public string text28 = "? ? :"; __this->set_text28_28(_stringLiteralA8EA98C7E235C2444F0F9DED58ACB2C5200C7220); // public string text29 = "? ? :"; __this->set_text29_29(_stringLiteral14AAD8F28F6AA9300E34EEF8385683F3EF6ECD62); // public string text30 = "???? :"; __this->set_text30_30(_stringLiteralDC4E8D00D3572226F65A7F8F173531F44D39674E); // public string text31 = "? ? :"; __this->set_text31_31(_stringLiteral68B2E674108C4BB827E60A114CE45F7BC57DC4DA); // public string text32 = "? ? :"; __this->set_text32_32(_stringLiteral7254212DCCA27CDD7847EA60551444D043EBE741); // public string text33 = "??"; __this->set_text33_33(_stringLiteral9D1DA43CE9CBA725ACEA10D07C46BA50963C8C53); // public string text34 = "? ? ? :"; __this->set_text34_34(_stringLiteralC547F47A60B1EE365F1225D6A359C72F39CF4E84); // public string text35 = "? ? ? :"; __this->set_text35_35(_stringLiteral83204952B6970480CF6B84EC6C9B649B98DD95E6); // public string text36 = "? ? ? :"; __this->set_text36_36(_stringLiteralB375043E052374D35DBFC775461DCF09C38D86A3); // public string text37 = "???? :"; __this->set_text37_37(_stringLiteralDC4E8D00D3572226F65A7F8F173531F44D39674E); // public string text38 = "??"; __this->set_text38_38(_stringLiteralF69479A5A4CED3797AEE987A76B561412AA9E1A0); // public string text39 = "? ?"; __this->set_text39_39(_stringLiteral3D4DB32D30EAABD9002C0DAC3C1383B1B22192B6); // public string text40 = "???"; __this->set_text40_40(_stringLiteralEB41A15A26E41D0B73F532042278C353F6BFC1F4); // public string text41 = "?????"; __this->set_text41_41(_stringLiteral6F436E58B96618C16285FE121D22EB2019A668E1); // public string text42 = "?????"; __this->set_text42_42(_stringLiteral50E585819C0D7FC66C0CA531CB3FC14C49D773AE); // public string text43 = "????"; __this->set_text43_43(_stringLiteral222C14F66AB014CC03B486A88E1EA70EB5047392); // public string text44 = "????"; __this->set_text44_44(_stringLiteralE6FD5BD6471511A9222FE48364213053262F747F); // public string text45 = "???????"; __this->set_text45_45(_stringLiteralBB6491FC4858E688C9DDDB1DB5FD836F70300267); // public string text46 = "??????6?"; __this->set_text46_46(_stringLiteral31D662523F3F3963669539E05B87AF9097F3AC29); // public string text47 = "??????6?"; __this->set_text47_47(_stringLiteral4F539D3E438AC9532A3E056E50A61F6CCD62392B); // public string text48 = "??????????"; __this->set_text48_48(_stringLiteralA958A954074FF9484F15385EEEC73469849170AA); // public string text49 = "???????"; __this->set_text49_49(_stringLiteral9D0FC7192C1BC49D9C9F14A232794521DA714D9B); // public string text50 = "?????????"; __this->set_text50_50(_stringLiteral814BE16AF757E2D44EF0D15E6D76E5B1B4F9AE1A); // public string text51 = "????"; __this->set_text51_51(_stringLiteral52E038B4860FAC9F3B78139F3A227E95D368917F); // public string text61 = "?????"; __this->set_text61_52(_stringLiteralB9D0D87F8D8058F2763F8C5F3C1D8B09D0958F8F); // public string text62 = "??"; __this->set_text62_53(_stringLiteral88E6527BC40313AF8F64B2BDC32E69C11591CC2C); // public string text63 = "??"; __this->set_text63_54(_stringLiteralC8C8BA6638F9249D92E658C100C02CB474E7CF9C); // public string text64 = "??"; __this->set_text64_55(_stringLiteralA5DE9AF9DC2891B622DEE8B16FD9760B74C80E9E); // public string text65 = "???"; __this->set_text65_56(_stringLiteral7453B8C50E69FD65D59A580E54E805F1AC8B58CF); // public string text66 = "??"; __this->set_text66_57(_stringLiteral44582662BBAAC3A46B740C1A41325322EA9F35CC); // public string text67 = "??"; __this->set_text67_58(_stringLiteralCBCEF81934805CF0E25D96CDBBCC074D028DF8DC); // public string text68 = "???? : "; __this->set_text68_59(_stringLiteralB7940066A5E7B1C2BCE401B210078B4881CD0FDF); // public string text69 = "????"; __this->set_text69_60(_stringLiteralC436C09C1CCC8596709DF698C17C6EC182A38FC9); // public string text70 = "????"; __this->set_text70_61(_stringLiteral5829FC8E7A0F8B4C9AD4ADB6206D273CFF726B47); // public string text71 = "????"; __this->set_text71_62(_stringLiteralBE14179E6E19E4DB370B1B1D340FEF075787D84A); // public string text72 = "??1"; __this->set_text72_63(_stringLiteral116DF234322BBB75C0C8B4EB16718F5707626B59); // public string text73 = "??2"; __this->set_text73_64(_stringLiteral5745B045CAF8BADC5A3B1C82DF5478ACB7B945D5); // public string text74 = "????"; __this->set_text74_65(_stringLiteralEF15C15221814987C7E61C7213C6BB9A8D55EE2F); // public string text87 = "????"; __this->set_text87_66(_stringLiteral27441E3C2148FF82FB0C194DAA6A206190BD62D5); // public string text88 = "??"; __this->set_text88_67(_stringLiteral6D272643386259B5BD33C7E88283656158F2E750); // public string text89 = "??"; __this->set_text89_68(_stringLiteral481BF531F6894754468B6C0F720AA094B41A1971); // public string text90 = "??"; __this->set_text90_69(_stringLiteral003AEB0DCADDDD90442C6808CB62FEEB8AC1A005); // public string text91 = "??"; __this->set_text91_70(_stringLiteral3B41739C2A8691E67E76BC70505CCCCC742C3F69); // public string text92 = "???"; __this->set_text92_71(_stringLiteralFA4E53104C4A0E65F23F7323FD862A1A8C072AC3); // public string text93 = "????"; __this->set_text93_72(_stringLiteralD88E3BC07BE4A4A0D719CE356CB44CCD6AF1AB3F); // public string text94 = "????"; __this->set_text94_73(_stringLiteral5C45EBE53E9E2E39389BD2C2787A688C6B242A89); // public string text95 = "??:"; __this->set_text95_74(_stringLiteral0DF0E7472AB631EF7CA09FF5A07637D92B89E437); // public string text96 = "????"; __this->set_text96_75(_stringLiteral6A217FCB93B9546B68C2A30F73B69EF5150994F2); // public string text97 = "????"; __this->set_text97_76(_stringLiteralA1C52417691AB77498FAE6F9B43394EBC36F5466); // public string text98 = "??"; __this->set_text98_77(_stringLiteral5D8680035BE790925076A087AB73E9FB073A0772); // public string text99 = "??"; __this->set_text99_78(_stringLiteralD9CC1C8E4F10B24F3111EEBF8581C75297DDA480); // public string text100 = "??"; __this->set_text100_79(_stringLiteral936D0603E2FF3786F4BAFAFF9F8763CB52EAE9BB); // public string text101 = "???"; __this->set_text101_80(_stringLiteralC17E8DF418A83A3A6C6F8D270D4F25171623D385); // public string text102 = "??"; __this->set_text102_81(_stringLiteralC81FACA20686EB8F4A61978D7596BC2DFB59EA3D); // public string text103 = "??"; __this->set_text103_82(_stringLiteral74654D5D3F9E9C69AFB772D03553C20793E0540B); // public string text104 = "??"; __this->set_text104_83(_stringLiteral580610F5FB66480F48933368044BBD89E4E608DE); // public string text105 = "??"; __this->set_text105_84(_stringLiteralCF35AAB75ADEAB2A6BEA36DDCA64F7D95AC01589); // public string text106 = "??"; __this->set_text106_85(_stringLiteralC73995D1603E83396B3B11A3781474865F7B5F12); // public string text107 = "???"; __this->set_text107_86(_stringLiteral49DF44512FCC9CA23AEBB97BA329E199E7053B80); // public string text108 = "??"; __this->set_text108_87(_stringLiteral12A834EBCA2FBD42304DF3744C6604E27718C5C4); // public string text109 = "???"; __this->set_text109_88(_stringLiteralE93A97DF27EB7745C95B0883E4909290D835DB52); // public string text110 = "??"; __this->set_text110_89(_stringLiteralD52D86EFAA62C1731796153170E0F380C6F84A0A); // public string text111 = "??????"; __this->set_text111_90(_stringLiteralB10E18314EAB53D5C8CADF7FF0B428566F2EB7D0); // public string text112 = "???????"; __this->set_text112_91(_stringLiteralD26E0068C34FF3F6EED5D38A32E1754073AEF519); // public string text113 = "?"; __this->set_text113_92(_stringLiteral4AAE06FCC2653520704C0099B595C3918487D50F); // public string text114 = "?"; __this->set_text114_93(_stringLiteral93D9C7398B56588CA42C0B0EAFB9E90E5D9E7F07); // public string text115 = "? {0} ?"; __this->set_text115_94(_stringLiteral8831AB81FBD8CBAE14DC71B0E694591CA4B24450); // public string text117 = "??{0}~{1}?,??????"; __this->set_text117_95(_stringLiteral702401AF8C11794F79CA29BDC7101A8022A65261); // public string text118 = "?????????????????????????"; __this->set_text118_96(_stringLiteralE10172354BC005BB1643F50F00F3B17438E35399); // public string text119 = "??{0}~{1}?,?????"; __this->set_text119_97(_stringLiteral18F8830E15119D35D0B3DA27420B82B3705D0EAB); // public string text500 = "??????"; __this->set_text500_98(_stringLiteralDC7A2B79A47430126A902161391ABA8C481B5F0E); // public string text501 = "??????"; __this->set_text501_99(_stringLiteral6EC6B6D1A9B46F9D0F6DE00D3D99A6E851B9E0C6); // public string text502 = "????"; __this->set_text502_100(_stringLiteral4DFD42FBEB2EEBDCC6AAD796584699ED2CF11A7F); // public string text503 = "16G???"; __this->set_text503_101(_stringLiteral772A092EC6FE21BB42DC531C04598014C47B1B45); // public string text504 = "64G???"; __this->set_text504_102(_stringLiteral27315CFD49467CE600FB7B6EE06DB59D56685EE2); // public string text122 = "???"; __this->set_text122_103(_stringLiteralC17E8DF418A83A3A6C6F8D270D4F25171623D385); // public string text123 = "??"; __this->set_text123_104(_stringLiteralEA5282D98CA7DFA406615C0800B36CE089113D57); // public string text124 = "????"; __this->set_text124_105(_stringLiteralEF15C15221814987C7E61C7213C6BB9A8D55EE2F); // public string text125 = "????"; __this->set_text125_106(_stringLiteralB6715D1393DD3C6199F733E1E8211654C1DDBA4E); // public string text126 = "? ? :"; __this->set_text126_107(_stringLiteral68109824E2F5B7EE073DBF1D5EDE1B33C05B35C9); // public string text133 = "????"; __this->set_text133_108(_stringLiteralEF15C15221814987C7E61C7213C6BB9A8D55EE2F); // public string text127 = "????"; __this->set_text127_109(_stringLiteral0AE8B554E31D21D568B4D136545FE92AECD5BACE); // public string text128 = "????"; __this->set_text128_110(_stringLiteralF366CA157E0CC6467953E26574436949B670AC15); // public string text129 = "PK??"; __this->set_text129_111(_stringLiteral61850AA9E002C5E395225F91BB4F993737AE9A26); // public string text132 = "PK??"; __this->set_text132_112(_stringLiteralE783135310BC70D6FDF5F5AAF0B679F770F0159E); // public string text130 = "???PK"; __this->set_text130_113(_stringLiteral14BD9DC42A10E81B2E64E664E1188DAF7A9613BB); // public string text131 = "??PK"; __this->set_text131_114(_stringLiteral236CFD811E0BFF5899745F44BBE267D9A4A79BC4); // public string text401 = "????"; __this->set_text401_115(_stringLiteral25C4A4D511D9ADD68EFAE37AB3D40CC578F048E7); // public string text134 = "????"; __this->set_text134_116(_stringLiteral7EDDB357174D241BAF5DD9EBD040E7B2908391B1); // public string text135 = "????"; __this->set_text135_117(_stringLiteral5F6959A93B3B778E88467371222562086ADE5DA6); // public string text136 = "????"; __this->set_text136_118(_stringLiteralC7D0C10085889407FF02A27834F174B0C4C87339); // public string text137 = "????"; __this->set_text137_119(_stringLiteralD09AB05F408869F6B19507FD0D3835F035CB3190); // public string text302 = "????"; __this->set_text302_120(_stringLiteralB2F5D01615E64DEDD39E4B00E0761902DB4300FD); // public string text303 = "??"; __this->set_text303_121(_stringLiteral93087E87481BBE023485F02F3C876019927EB4AE); // public string text304 = "??"; __this->set_text304_122(_stringLiteral02EA6340B56179367452A225FC70D5F115F6983B); // public string text305 = "????"; __this->set_text305_123(_stringLiteral4B9ED093C8B83343B2C50216F336DA5A315FB725); // public string text306 = "????"; __this->set_text306_124(_stringLiteral1273DAEC0D9F05DD31B2043C3024171924D10A51); // public string text307 = "?"; __this->set_text307_125(_stringLiteral30E82465F70655DCADD08FF2109A52B4E249F732); // public string text308 = "?"; __this->set_text308_126(_stringLiteral95AD45B2189AB613D276310BCC6809D2DA9438A7); // public string text309 = "????"; __this->set_text309_127(_stringLiteral465B6800EF3651F28B553739CAF2F3A32A1E2105); // public string text310 = "??"; __this->set_text310_128(_stringLiteral3BB3E2F2AD08E30AFD107A43154CE53662C8614D); // public string text311 = "??"; __this->set_text311_129(_stringLiteral04C78427BE06B53DB9F1CEE9343A2F1FCCEF1241); // public string text312 = "??"; __this->set_text312_130(_stringLiteralBCF60969B22E7B4A069AFAAC56A0343C17FCB547); // public string text313 = "????"; __this->set_text313_131(_stringLiteralB29841741B0ED5994BCC9FFA37F8DF85DD7675DE); // public string text314 = "{0}?"; __this->set_text314_132(_stringLiteral24F6E17C703A111CEDBAF2DD7D4FDBE632072195); // public string text315 = "????"; __this->set_text315_133(_stringLiteral519AD94D394A6134ECB549B69966123B5B8A8356); // public string text318 = "????"; __this->set_text318_134(_stringLiteral846E8FFE581A3899702D65CD864D8C08317D9011); // public string text301 = "????"; __this->set_text301_135(_stringLiteral1AE116127FE7A6754AFB8D088FFA9091306B2E91); // public string text316 = "????"; __this->set_text316_136(_stringLiteral616097E2A4064778CDA7814FBF26DEF8EBCBC760); // public string text317 = "????"; __this->set_text317_137(_stringLiteralEADFB26121515D4448D4C6E8BAD05B7968E6C874); // public string text300 = "????"; __this->set_text300_138(_stringLiteralF44A2E5B3F16B7CA22AC2013BDFD6005712C7DC9); // public string text400 = "????"; __this->set_text400_139(_stringLiteral24BAA34060BB79D4D92A7C0500748E1016F9FB28); // public string text76 = "????"; __this->set_text76_140(_stringLiteralD89BC5903AE40F439EA6F2CC5626C81DE7ED601A); // public string text77 = "???"; __this->set_text77_141(_stringLiteralBD2B2AC85C150A80EC9300F74572E9F25387DCEF); // public string text78 = "???"; __this->set_text78_142(_stringLiteral91255E900FD832BE20D9327520ED35244A945574); // public string text79 = "??"; __this->set_text79_143(_stringLiteral5D8680035BE790925076A087AB73E9FB073A0772); // public string text80 = "????"; __this->set_text80_144(_stringLiteral4DFD42FBEB2EEBDCC6AAD796584699ED2CF11A7F); // public string text81 = "??????????????????"; __this->set_text81_145(_stringLiteral2DA3DB24E5BE0F3E7A062B02D192768D2607A77B); // public string text82 = "?????"; __this->set_text82_146(_stringLiteral6133C2BE2821ACAAF92A79DE2B042290474302F8); // public string text83 = "?????"; __this->set_text83_147(_stringLiteralE410A3B16603875FAA958558C85F3960DC53199E); // public string text84 = "??????????????XYZ??????????????"; __this->set_text84_148(_stringLiteralC2824374C33DED498B8B13E8DD349EF610C8DB93); // public string text85 = "?????"; __this->set_text85_149(_stringLiteral6133C2BE2821ACAAF92A79DE2B042290474302F8); // public string text86 = "??????????????????"; __this->set_text86_150(_stringLiteral2C722119B0F48B84A9CE79A42D8A10E8175A96AB); // public string text116 = "?????"; __this->set_text116_151(_stringLiteral953AE0F56469F3DF4973E767A9C79D6676E3063B); // public string text120 = "??????????????"; __this->set_text120_152(_stringLiteralCA20421A7FA0F75C232275A96E3BA4DE2E2DAC13); // public string text121 = "?????"; __this->set_text121_153(_stringLiteralA51B0EF6AC9954338624D239094263CC8C9D43FA); // public string text200 = "??"; __this->set_text200_154(_stringLiteral466667AF5777ED73F7BD31038D82A39CA99DD782); // public string text201 = "??"; __this->set_text201_155(_stringLiteral61CAC7CAE185918B2AC3B2F978E0EE9FAD61461F); // public string text202 = "??"; __this->set_text202_156(_stringLiteral60D5A059B04E15DA6E5EF0862DCCD6CB64AA99B9); // public string text203 = "????"; __this->set_text203_157(_stringLiteralD89BC5903AE40F439EA6F2CC5626C81DE7ED601A); // public string text204 = "????"; __this->set_text204_158(_stringLiteral0B3BA6E3E4E34967768E52D574A704BEFB366D84); // public string text205 = "??"; __this->set_text205_159(_stringLiteral88E6527BC40313AF8F64B2BDC32E69C11591CC2C); // public string text1000 = "???????????????"; __this->set_text1000_160(_stringLiteral8804A3D0362E1679758AA4E40EB1C2BE16C1C43F); // public string text1001 = "????????????????"; __this->set_text1001_161(_stringLiteralAFFC6F6F0E65082B10893D65E7D185AE0259C8A6); // public string text2000 = "??????????????????PK?"; __this->set_text2000_162(_stringLiteralAAF4CFCFD1959185EC7FBAEBFB19DD28193E68AC); // public string text2001 = "?????5????3????????"; __this->set_text2001_163(_stringLiteral629D443B467C322F001488EE08CCCD8AEEEA63B4); // public string text2002 = "???????2?????1?????????"; __this->set_text2002_164(_stringLiteralEC9D16246A5039341712451C8CD097B5E32AFDD3); // public string text2003 = "??6??????5????????????????"; __this->set_text2003_165(_stringLiteral63122F6BC8B6312359A21037BB6FBE3038B29AB9); // public string text101000 = "{0}??"; __this->set_text101000_166(_stringLiteralEB1326B0538B470465324EB7C3993F32A6CE9D5E); // public string text101001 = "{0}????"; __this->set_text101001_167(_stringLiteral987DAAC6A74B65BED6AD16AE02B6596FD14A96C4); // public string text111000 = "??????????{0}??"; __this->set_text111000_168(_stringLiteral8322F9DB7563E8AED558DBEAB872C883FD6B8556); // public string text111001 = "????????{0}??"; __this->set_text111001_169(_stringLiteralE69EC0323C81C640F0E1B55F6FED870705708B48); // public string text200000 = "???"; __this->set_text200000_170(_stringLiteral8407CB04F02745686F8825EB812A949EFE387B51); // public string text201000 = "18????"; __this->set_text201000_171(_stringLiteralD7B32C571DCDB4565F921142375AEB23479EB7C0); // public string text201001 = "25????"; __this->set_text201001_172(_stringLiteral551783E77CB9FCB5ED401273B723D4051E6D0A6E); // public string text201002 = "????"; __this->set_text201002_173(_stringLiteralAB49D9E4A3D98FBECE9A0AA5AD8332DE927850B6); // public string text211000 = "?????????"; __this->set_text211000_174(_stringLiteral78042B833812F6B193D3E3077C580BC1C4C26AA5); // public string text211001 = "?????????"; __this->set_text211001_175(_stringLiteral78042B833812F6B193D3E3077C580BC1C4C26AA5); // public string text211002 = "?????????"; __this->set_text211002_176(_stringLiteralD501BB17BD3BE433E8A86590D1D69E40C1CBEEE9); // public string text1234560 = "????"; __this->set_text1234560_177(_stringLiteral1824392B13412C883B5D8074E887EFF0D9D0ECDB); // public string text1234561 = "????"; __this->set_text1234561_178(_stringLiteral9977E59D6029C67FCFACEBEC6E72FAEC32CF1D15); // public string text1234562 = "??"; __this->set_text1234562_179(_stringLiteral8803A42C3EBF3DF0EEAC9E7B9A1F9E505646AF8D); // public string text1234563 = "??"; __this->set_text1234563_180(_stringLiteral1837347544DBE68F8AF9C22DE2AF15FE56FD5FC2); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void LanguageEnglish::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LanguageEnglish__ctor_m59A77B32BF639CCC01ACFB6CF30263D15ECC1E66 (LanguageEnglish_t2712B33AFFD850AB54DA2576AF250FF8622A1249 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral02436DCFA899EF85289BA35711C248905AB26619); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral043BD722884266576F7243365839D3FDA49BAB59); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0784DB0720998870ED7E71FB9CFF67050515CB67); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral079998E3393B6BDC1FAFFA63A54F724488AE5306); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0B11E80AAA17A0F5C086D6F8F9F39074E9CDF614); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0BD16095F7E84798C71C79333951136D44D13F78); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0C5A4B9A44FFF25734984654FFE331804A3F0D4F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0E9E34245923A0BB21FDAA5FE52670E5EAD09AF1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0F08CBAF9B2A8EAE68F97D621C626A832F3DE66C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral105762E0634A62C61DC198CF5C5379A13BED338F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral120478EB9873DCCCC17823A98582639365FE652D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral144E50D9EC5B617A0C0918C140126CFD4E1B4EB8); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral149F8C9E859E00B7809E27CDD4794CFC23DDB09F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral15DF3AF4E02129EC302CAE7F8EB33DCAF79C988B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral15F30E0AC0217F04C47A90E499E8480B94E2CD1B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1650CDB5C082E30D270ECE461A17AE28379B8FB6); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral17708B72EC859E0A7BA6DAFBB240D1B447C87E65); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral19E6F54B915CB01A74B7174DFEF8AC62E0C2BB5F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1ABFEC96E90FCC8592FD051B17979FCF464ED052); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1BCFCCB71FDCBD6F9BAFA41014A2E7E8E40C7CCC); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1E84DCC432150082284CA4D4DEB2A0DDFC5B8365); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1F3D130E6B912DD675B6830139E7D974C51A68B3); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral24158C6C79FE57BE153164B9D7ADCB302F5DF09A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral259B44A894E2A674689AA1932B1F668F24722622); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral25E52E46C5BA07731EDE7FD2861848FDE45DEC46); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2780AD3C1740DDD8AB0C06BB7B2A18D1F4B90119); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral27B1240786558BB01BAF8EA86CF65C4996DEF092); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2AEE75FD319B3EC8521E6C769467B49C1888A5D6); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2B3AD6333F669606E87648FD08F4CF7B98B051B5); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2D8094826FE3A8FA2C7F771E946D9A34C4451B7E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral31886238D716151850EA1F31099F2FAEEB1376D2); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3562C79A9DE498C1C4F3CF34718882FA659BCF10); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral38BBA8C412B96991FBAF9AF6289D9D03C77CF6BF); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3A2CD30BF4F578EB33A7BC2E197540229E5DC826); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3B588742BC3D1A0ECD11CC1D392339D9E7010939); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3D0882E2AB5A41A518602D945E1E7EDE9B7714F6); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3DA3B3F9419DEFA543527EDEF953E71B0C03948A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3E2AC8CE24E047081E4681D3BCDCB9DF121FFD4C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3F9E709FAD00D54303289A1B1D916C86F335C5C3); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4036CB682368F57A752F1AE948975DAB7499EACE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral40F5431A5203B1B661E92C45EF446F7D326E2C50); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4421A706BA6795BFF237819026CD22ECB3D542E1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral447779287A1AF6F92462F26C04D7940A9F77EABA); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral45B0A933FA7A6EB5CC5B62AB96698919793F26F0); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral472FE52EE1F9F809D3DD2226C727C2E284F9E0AD); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4A1F452C1A2F394ACA54C38CCEB4EFBFE9541953); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4A261EB7E7319776625F5A015EA18053797E6890); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4D6B45838638C5E81748063BC98DE32B3C19F814); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4FB2B034CFC4D83D3A4EE1141F15F37641E29103); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral50863FA6986F7E76E712DFF2F2A2AD0E3E7AE14D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5297FF82DC6A9C349ECA94FD70CDF59E3E2D246E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral54793609F88E1BD1C262633A62D194BF2699F40A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5516BCCACB7482CB8404E6ABBECCAC6C76D81B03); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5586076C6C40BC02C91BE914F4082D4F70EE50A5); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral58B1F539A82AC072CB88DB9A4F90E8968D63C502); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral591717969A5E5E3B077255142EBD573FD6015D85); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral594DD0BF272B5892AA7F91E62C66BCD2666E72BB); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5A1278AB54EFEBBD1E0E03AB2677F22D39311C27); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5A326301BAA0094E59A01F57B24D421A47031006); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5ACC87E6B2B548D708984D8A5ABA764C905ACDF4); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5C7F4692AC7771BC2CFA46AE943EFEC925C43009); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5DF3D13924D4A9B57C580A3E9F74E4A8F575BDBD); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral623CBDCC47C6DB996D3C60509009A4E557A3E1EF); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral671C998D0CEEC195C4ED2BF0AC06E8EB3297A1A1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6790F5A313E4F3D7D9EE743046C665DE8D5FE0F2); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6927B8153CCC263D7BB57FFF824CC1DCDAEF2068); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6C77FF5301F68E4B5B05720EBE766D0DCA74B3A1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6CE02DBF10772951A436ED08602B6C21AF7A06F2); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6D95405FA7A0F595438CD7B9C671CA03426B831E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6E9AE149AF6FE253DA34CB099646365444CE6AF5); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral73A13F61B7FD5E9756396E183657AC0B0B7C757F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7479A72B853B4FDBFCA88205F6F2D9437EE4ED7F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral74B83A50A58269C4EECA165C2ABB62B80AAFC9D0); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral770093ACE938393E8EA6EF11BE76BF5B223BAD3F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral77B61DEA5A6B81422E87E6ACFCF200C568C6B9E3); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7945FC7C023D301D28C2D6E2D57C54627A1FF915); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7E37EE8FC8421E74B37EF5071971F6C330B35366); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral800C762D9EF92B399EC87C776239043ACEEC0717); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8161E3F6A0D6B886F63371E65DD485482CFADE19); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8243A16D425F93AF62CAAB2BFAE01A2D6246A5FE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral82596D39B8C63D239E6F05DD5225F859758334CE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral83374AA2BFCBA84004670EF3ABFBBECF5C901268); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8501DD252D298AC4178460630F6E6EAB74A6B5DE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8746FD182DCA32C6B26096E588A9071801FFFDA3); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8980A95220B779E75A86358E8742A7FF3C9DB27A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8A7ADA321662F03FBB59ED5284BDC97D18CC0EE8); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8C75FBB37FEAE26394302A142DCCC33CBA27B413); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8C7EAF89A55524ED26DF7B3B8BB49206013125ED); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8CAF9838DB27F09D981F0AC49F95EBEF834A9873); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8FAF85F7623BFD44FCE35A5FC39DA8E56599027E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9216BDEF5172F1DBAACFFF605E8C99BD4A930973); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral93717CD8FCD45BAB4F15D3BACC989A6A93BA2674); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral940504934E29D0857302B5D7BE2CA055B2A49D0F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral95000FA289D79FAB3A572B333C8E225E6BCB160D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9ADC43608414D00FD8569E1D15773E64F6A8B05A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9C66112461B9A8D2A9A497560D96DF33ACF276C5); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9EC87753978C124DCAA8AEC7F86EB8017F6C3A09); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9F189DCA55E8A13E16217FBC01F49E80FF2C2799); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA08A76049D93CFB9F937EFBA7C64FD31822CC8DC); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA220A22C5FAAB625E013DB9D2FE393F2A347F292); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA394227B1EAAB8CB39747A4DBF6CFADB88BF7BD4); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA3A6C2C14F2E8B8C0805954E566C209EA57E55A4); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA3AA82753EDD37B4C0FDF7DF23255467A179DF42); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA40EBFDEF859703C16F78E49909ECE79C751CC92); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA5D6D050A2B6C34B0B5FAA350E56ED662A0DA4E8); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAB126DD930EE3F620A8A213379D5A6699A8A3DCD); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAB6C8671E518A0307303A71FB3EDD8435F076403); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralABD1A5066AD876BBA7B4C0BF57BA82BAB5878D3B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAEF56E4786DAF8E6B8D0AD71460A39EFD24FB591); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB2D62E3F75706996C1B47FC533FBBFDE9C3C5173); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB3C34217CBB8F650ED8F6E70B410A604371E2EF1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB6D605A9087410128B41F667A579D1A26C21F6F6); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB78F57C917CAEBCD2158A0F79956F6090BF4B876); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBCE387482DF0CE7D0EE281D19A59E84F4C99C539); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBE355E1D370E314EF9087ADEB4BA1C2B6A42782D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC15286923E3E7294E5A3DFA193D2C9E83E1A73AF); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC33931DE0021A139A7D7E6F12EB5D5C9D715EB7F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC6753E6A408C8CADF84906DD27E247CA73E2BA1C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC7127321B48A6D941AD316178D443101703FA4CD); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC873884E5FA6DC20126ADC482CE886EE4A500F53); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC8915D600506CC1C83580BE87AA6B7F5CFC515F6); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCAF8804297181FF007CA835529DD4477CFD94A70); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCC3D91506BA6CACBADB94459BC4247D0A1F068CB); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCCB5844E0B16E1C73510EF0205A34055AA361C83); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCD3058370E4201A13BEF316F3A0D0F83E5C3CE73); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCDC4D6F5FE003765FA62102F7D8C521C2A31314D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCE1A9F8343B34A53BE31CCF513304610D6D06117); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCE863626383155D02291456632E72C0FBEC22C3C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD00025F302F3E9FF4CD9C49F35CCF5D2826551CA); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD11C38A48D751BD0D05A0BAC3C39A9C9298A7CCD); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD3711B27B3556EA6DF4CFA2B6169969660CBB7AC); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD4A9710F10742BFE9608353920D3FD826C57E612); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD8BBD3B9A2DE44452BA3DFDD4EAEB8EA9FB67C31); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD949A21957CD7284B07087EFF80761F44C6E8C8D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDB4F2B309DADE9A8ABCB4CD75A2A469548BB6D5F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDCCF22B1EB35EC58FFEB04A8C396594903C38127); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDD56D062FCC763C2BFE432F77EFF13CC9E01BE5A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDDD194C344A36DEA4CE6E312E15EB63C9A77A1D2); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDE4C398DD65524A08F3458DBBE587F3A08FAFCB1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE1A8B7ACF9F6A6C8DA34C480CF0726A9E97A6044); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE32843613CB1773FC18270F1717753DCF3F79A26); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE586D26F2F2D2462A182B41FF7B0C66457161A10); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE6768086EB88FAC17C0048218899A756FEBACC65); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE8904C5915B16CF72B7EDF4E46529AE302286E51); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE8B77FFA6B004EBE6AD02387BCBFBFA47562B049); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE9C9F4196455AAE9F6C91ADF558F7A30C0C257F3); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE9CE8D268E495F5BD09CB81F40650B2DDFB2B27E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEC07CDF9A253157A6C3AA8635DD11934A3FFD749); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEDE684886DA2E28B5693BD98ADADE77C0E010223); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEE5A9496BF3A09F757E830172FB334F6845BCE01); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF29421934EEEA6A2F46B56CCE672DE2E76D5850C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF2DCEBDC0E489573EF91725019BDC803EC347578); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF363F0EBA56CED452CE3E80AC25A0C74EEFBDF75); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF403FDAB7311C5E2F1FD551A7E0382DD660A4265); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF67FF52BAD5C543F3623D3051EA5B4ED8BCD0DEB); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF903ABCF81417315694F4593925EE527D6C1258B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFAB26B76C5BC4AB82BD5FDE8AA07D8BD73DC951B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFB8318AD7B9BBFCC1A86C5A805D80A1823243707); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFC43B3DF09F936A0E33F84F9575A87274E833018); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFED9A785A158D83955E039A71A99AE876F121C4C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFF4E3FA3AAE48BF4B222F51C8406C3BA5B9BDEAC); s_Il2CppMethodInitialized = true; } { // public new string text1 = "Name :"; __this->set_text1_181(_stringLiteral6927B8153CCC263D7BB57FFF824CC1DCDAEF2068); // public new string text2 = "Phone :"; __this->set_text2_182(_stringLiteralD3711B27B3556EA6DF4CFA2B6169969660CBB7AC); // public new string text3 = "Gender :"; __this->set_text3_183(_stringLiteral1ABFEC96E90FCC8592FD051B17979FCF464ED052); // public new string text4 = "Birthday :"; __this->set_text4_184(_stringLiteral0B11E80AAA17A0F5C086D6F8F9F39074E9CDF614); // public new string text5 = "Country :"; __this->set_text5_185(_stringLiteralD4A9710F10742BFE9608353920D3FD826C57E612); // public new string text6 = "Region :"; __this->set_text6_186(_stringLiteral1650CDB5C082E30D270ECE461A17AE28379B8FB6); // public new string text7 = "Save"; __this->set_text7_187(_stringLiteralCE863626383155D02291456632E72C0FBEC22C3C); // public new string text8 = "Male"; __this->set_text8_188(_stringLiteral9216BDEF5172F1DBAACFFF605E8C99BD4A930973); // public new string text9 = "Female"; __this->set_text9_189(_stringLiteralAB126DD930EE3F620A8A213379D5A6699A8A3DCD); // public new string text10 = "Not Filled In"; __this->set_text10_190(_stringLiteral4421A706BA6795BFF237819026CD22ECB3D542E1); // public new string text11 = "Name Cannot Be Empty"; __this->set_text11_191(_stringLiteral671C998D0CEEC195C4ED2BF0AC06E8EB3297A1A1); // public new string text12 = "Saved Successfully"; __this->set_text12_192(_stringLiteral82596D39B8C63D239E6F05DD5225F859758334CE); // public new string text13 = "My"; __this->set_text13_193(_stringLiteralF403FDAB7311C5E2F1FD551A7E0382DD660A4265); // public new string text14 = "Connect"; __this->set_text14_194(_stringLiteral15F30E0AC0217F04C47A90E499E8480B94E2CD1B); // public new string text15 = "Connecting"; __this->set_text15_195(_stringLiteralD949A21957CD7284B07087EFF80761F44C6E8C8D); // public new string text16 = "Connected"; __this->set_text16_196(_stringLiteralB6D605A9087410128B41F667A579D1A26C21F6F6); // public new string text17 = " Break "; __this->set_text17_197(_stringLiteralD11C38A48D751BD0D05A0BAC3C39A9C9298A7CCD); // public new string text18 = "Bow"; __this->set_text18_198(_stringLiteral2AEE75FD319B3EC8521E6C769467B49C1888A5D6); // public new string text19 = "Arrow"; __this->set_text19_199(_stringLiteral40F5431A5203B1B661E92C45EF446F7D326E2C50); // public new string text20 = "SetUp"; __this->set_text20_200(_stringLiteralA220A22C5FAAB625E013DB9D2FE393F2A347F292); // public new string text21 = "Course"; __this->set_text21_201(_stringLiteral8C7EAF89A55524ED26DF7B3B8BB49206013125ED); // public new string text22 = "Shop"; __this->set_text22_202(_stringLiteralEDE684886DA2E28B5693BD98ADADE77C0E010223); // public new string text23 = "Device"; __this->set_text23_203(_stringLiteralF67FF52BAD5C543F3623D3051EA5B4ED8BCD0DEB); // public new string text24 = "Account:"; __this->set_text24_204(_stringLiteral9F189DCA55E8A13E16217FBC01F49E80FF2C2799); // public new string text25 = "Password:"; __this->set_text25_205(_stringLiteral7945FC7C023D301D28C2D6E2D57C54627A1FF915); // public new string text26 = "Retrieve Password"; __this->set_text26_206(_stringLiteral9EC87753978C124DCAA8AEC7F86EB8017F6C3A09); // public new string text27 = "New User Register"; __this->set_text27_207(_stringLiteral1E84DCC432150082284CA4D4DEB2A0DDFC5B8365); // public new string text28 = "Account :"; __this->set_text28_208(_stringLiteral73A13F61B7FD5E9756396E183657AC0B0B7C757F); // public new string text29 = "Password :"; __this->set_text29_209(_stringLiteral9ADC43608414D00FD8569E1D15773E64F6A8B05A); // public new string text30 = "Confirm Password :"; __this->set_text30_210(_stringLiteralA3A6C2C14F2E8B8C0805954E566C209EA57E55A4); // public new string text31 = "Nickname :"; __this->set_text31_211(_stringLiteral5DF3D13924D4A9B57C580A3E9F74E4A8F575BDBD); // public new string text32 = "Gender :"; __this->set_text32_212(_stringLiteral1ABFEC96E90FCC8592FD051B17979FCF464ED052); // public new string text33 = "Login"; __this->set_text33_213(_stringLiteral2B3AD6333F669606E87648FD08F4CF7B98B051B5); // public new string text34 = "Phone :"; __this->set_text34_214(_stringLiteralD3711B27B3556EA6DF4CFA2B6169969660CBB7AC); // public new string text35 = "Code :"; __this->set_text35_215(_stringLiteral8CAF9838DB27F09D981F0AC49F95EBEF834A9873); // public new string text36 = "Password :"; __this->set_text36_216(_stringLiteral9ADC43608414D00FD8569E1D15773E64F6A8B05A); // public new string text37 = "Confirm Password :"; __this->set_text37_217(_stringLiteralE8904C5915B16CF72B7EDF4E46529AE302286E51); // public new string text38 = "Get"; __this->set_text38_218(_stringLiteralE32843613CB1773FC18270F1717753DCF3F79A26); // public new string text39 = "Account"; __this->set_text39_219(_stringLiteral54793609F88E1BD1C262633A62D194BF2699F40A); // public new string text40 = "Phone Number"; __this->set_text40_220(_stringLiteralAB6C8671E518A0307303A71FB3EDD8435F076403); // public new string text41 = "Please Enter Account"; __this->set_text41_221(_stringLiteralFB8318AD7B9BBFCC1A86C5A805D80A1823243707); // public new string text42 = "Please Enter Password"; __this->set_text42_222(_stringLiteral105762E0634A62C61DC198CF5C5379A13BED338F); // public new string text43 = "Login Successful"; __this->set_text43_223(_stringLiteralB78F57C917CAEBCD2158A0F79956F6090BF4B876); // public new string text44 = "Wrong Password"; __this->set_text44_224(_stringLiteral4036CB682368F57A752F1AE948975DAB7499EACE); // public new string text45 = "User Not Register"; __this->set_text45_225(_stringLiteralAEF56E4786DAF8E6B8D0AD71460A39EFD24FB591); // public new string text46 = "Account At Least 6 Digits"; __this->set_text46_226(_stringLiteral9C66112461B9A8D2A9A497560D96DF33ACF276C5); // public new string text47 = "Password At Least 6 Digits"; __this->set_text47_227(_stringLiteralA40EBFDEF859703C16F78E49909ECE79C751CC92); // public new string text48 = "Two Passwords Are Inconsistent"; __this->set_text48_228(_stringLiteral4D6B45838638C5E81748063BC98DE32B3C19F814); // public new string text49 = "Please Enter Nickname"; __this->set_text49_229(_stringLiteral120478EB9873DCCCC17823A98582639365FE652D); // public new string text50 = "Unable To Re Register"; __this->set_text50_230(_stringLiteral3B588742BC3D1A0ECD11CC1D392339D9E7010939); // public new string text51 = "Register Successful"; __this->set_text51_231(_stringLiteralCDC4D6F5FE003765FA62102F7D8C521C2A31314D); // public new string text61 = "Please Connect Device"; __this->set_text61_232(_stringLiteral6D95405FA7A0F595438CD7B9C671CA03426B831E); // public new string text62 = "Close"; __this->set_text62_233(_stringLiteral6CE02DBF10772951A436ED08602B6C21AF7A06F2); // public new string text63 = "Products"; __this->set_text63_234(_stringLiteralF363F0EBA56CED452CE3E80AC25A0C74EEFBDF75); // public new string text64 = "Bag"; __this->set_text64_235(_stringLiteral50863FA6986F7E76E712DFF2F2A2AD0E3E7AE14D); // public new string text65 = "Equipped"; __this->set_text65_236(_stringLiteral0BD16095F7E84798C71C79333951136D44D13F78); // public new string text66 = "Buy"; __this->set_text66_237(_stringLiteral2D8094826FE3A8FA2C7F771E946D9A34C4451B7E); // public new string text67 = "Property"; __this->set_text67_238(_stringLiteral5ACC87E6B2B548D708984D8A5ABA764C905ACDF4); // public new string text68 = "Difficulty : "; __this->set_text68_239(_stringLiteral8501DD252D298AC4178460630F6E6EAB74A6B5DE); // public new string text69 = "Device Course"; __this->set_text69_240(_stringLiteralFC43B3DF09F936A0E33F84F9575A87274E833018); // public new string text70 = "Game Course"; __this->set_text70_241(_stringLiteral770093ACE938393E8EA6EF11BE76BF5B223BAD3F); // public new string text71 = "Select PFP"; __this->set_text71_242(_stringLiteralD8BBD3B9A2DE44452BA3DFDD4EAEB8EA9FB67C31); // public new string text72 = "Player1"; __this->set_text72_243(_stringLiteral623CBDCC47C6DB996D3C60509009A4E557A3E1EF); // public new string text73 = "Player2"; __this->set_text73_244(_stringLiteralC6753E6A408C8CADF84906DD27E247CA73E2BA1C); // public new string text74 = "Start"; __this->set_text74_245(_stringLiteral8243A16D425F93AF62CAAB2BFAE01A2D6246A5FE); // public new string text87 = "Current Round Player"; __this->set_text87_246(_stringLiteralFF4E3FA3AAE48BF4B222F51C8406C3BA5B9BDEAC); // public new string text88 = "Continue"; __this->set_text88_247(_stringLiteralE586D26F2F2D2462A182B41FF7B0C66457161A10); // public new string text89 = "Home"; __this->set_text89_248(_stringLiteral19E6F54B915CB01A74B7174DFEF8AC62E0C2BB5F); // public new string text90 = "Share"; __this->set_text90_249(_stringLiteralABD1A5066AD876BBA7B4C0BF57BA82BAB5878D3B); // public new string text91 = "Again"; __this->set_text91_250(_stringLiteral38BBA8C412B96991FBAF9AF6289D9D03C77CF6BF); // public new string text92 = "PvP"; __this->set_text92_251(_stringLiteralC33931DE0021A139A7D7E6F12EB5D5C9D715EB7F); // public new string text93 = "Player"; __this->set_text93_252(_stringLiteralCAF8804297181FF007CA835529DD4477CFD94A70); // public new string text94 = "Select Range"; __this->set_text94_253(_stringLiteral2780AD3C1740DDD8AB0C06BB7B2A18D1F4B90119); // public new string text95 = "Score:"; __this->set_text95_254(_stringLiteral27B1240786558BB01BAF8EA86CF65C4996DEF092); // public new string text96 = "New Player Guide"; __this->set_text96_255(_stringLiteral5516BCCACB7482CB8404E6ABBECCAC6C76D81B03); // public new string text97 = "Back"; __this->set_text97_256(_stringLiteral4A261EB7E7319776625F5A015EA18053797E6890); // public new string text98 = "Complete"; __this->set_text98_257(_stringLiteralCC3D91506BA6CACBADB94459BC4247D0A1F068CB); // public new string text99 = "Challenge"; __this->set_text99_258(_stringLiteral4A1F452C1A2F394ACA54C38CCEB4EFBFE9541953); // public new string text100 = "Limit"; __this->set_text100_259(_stringLiteralA394227B1EAAB8CB39747A4DBF6CFADB88BF7BD4); // public new string text101 = "Rank"; __this->set_text101_260(_stringLiteral3DA3B3F9419DEFA543527EDEF953E71B0C03948A); // public new string text102 = "Game"; __this->set_text102_261(_stringLiteral079998E3393B6BDC1FAFFA63A54F724488AE5306); // public new string text103 = "Bind"; __this->set_text103_262(_stringLiteralEE5A9496BF3A09F757E830172FB334F6845BCE01); // public new string text104 = "Over"; __this->set_text104_263(_stringLiteral1F3D130E6B912DD675B6830139E7D974C51A68B3); // public new string text105 = "Win"; __this->set_text105_264(_stringLiteral0E9E34245923A0BB21FDAA5FE52670E5EAD09AF1); // public new string text106 = "Lose"; __this->set_text106_265(_stringLiteral74B83A50A58269C4EECA165C2ABB62B80AAFC9D0); // public new string text107 = "SoldOut"; __this->set_text107_266(_stringLiteral0C5A4B9A44FFF25734984654FFE331804A3F0D4F); // public new string text108 = "Use"; __this->set_text108_267(_stringLiteralDE4C398DD65524A08F3458DBBE587F3A08FAFCB1); // public new string text109 = "Inuse"; __this->set_text109_268(_stringLiteralC873884E5FA6DC20126ADC482CE886EE4A500F53); // public new string text110 = "Cancel"; __this->set_text110_269(_stringLiteral93717CD8FCD45BAB4F15D3BACC989A6A93BA2674); // public new string text111 = "Multiple Mirrors Is Required"; __this->set_text111_270(_stringLiteral8746FD182DCA32C6B26096E588A9071801FFFDA3); // public new string text112 = "Shoot Card Is Required"; __this->set_text112_271(_stringLiteralE9CE8D268E495F5BD09CB81F40650B2DDFB2B27E); // public new string text113 = "Bow"; __this->set_text113_272(_stringLiteral2AEE75FD319B3EC8521E6C769467B49C1888A5D6); // public new string text114 = "Arrow"; __this->set_text114_273(_stringLiteral40F5431A5203B1B661E92C45EF446F7D326E2C50); // public new string text115 = "Round {0}"; __this->set_text115_274(_stringLiteral1BCFCCB71FDCBD6F9BAFA41014A2E7E8E40C7CCC); // public new string text117 = "Limit {0}~{1} Bit, English And Figures"; __this->set_text117_275(_stringLiteral3562C79A9DE498C1C4F3CF34718882FA659BCF10); // public new string text118 = "The target has exceeded the current range, please increase the pull distance or go to the shop to equip the shoot card!"; __this->set_text118_276(_stringLiteral0784DB0720998870ED7E71FB9CFF67050515CB67); // public new string text119 = "Limit {0}~{1} Bit, Can Use Chinese"; __this->set_text119_277(_stringLiteral5C7F4692AC7771BC2CFA46AE943EFEC925C43009); // public new string text500 = "Gyr Init"; __this->set_text500_278(_stringLiteral3F9E709FAD00D54303289A1B1D916C86F335C5C3); // public new string text501 = "Mag Init"; __this->set_text501_279(_stringLiteral77B61DEA5A6B81422E87E6ACFCF200C568C6B9E3); // public new string text502 = "ResetView"; __this->set_text502_280(_stringLiteralCD3058370E4201A13BEF316F3A0D0F83E5C3CE73); // public new string text503 = "16G Acc"; __this->set_text503_281(_stringLiteralD00025F302F3E9FF4CD9C49F35CCF5D2826551CA); // public new string text504 = "64G Acc"; __this->set_text504_282(_stringLiteral043BD722884266576F7243365839D3FDA49BAB59); // public new string text122 = "Rank"; __this->set_text122_283(_stringLiteral3DA3B3F9419DEFA543527EDEF953E71B0C03948A); // public new string text123 = "Friend"; __this->set_text123_284(_stringLiteralA3AA82753EDD37B4C0FDF7DF23255467A179DF42); // public new string text124 = "Start"; __this->set_text124_285(_stringLiteral8243A16D425F93AF62CAAB2BFAE01A2D6246A5FE); // public new string text125 = "Online"; __this->set_text125_286(_stringLiteralF903ABCF81417315694F4593925EE527D6C1258B); // public new string text126 = "ID :"; __this->set_text126_287(_stringLiteral0F08CBAF9B2A8EAE68F97D621C626A832F3DE66C); // public new string text133 = "Stand Alone"; __this->set_text133_288(_stringLiteralA08A76049D93CFB9F937EFBA7C64FD31822CC8DC); // public new string text127 = "Hunting"; __this->set_text127_289(_stringLiteralCCB5844E0B16E1C73510EF0205A34055AA361C83); // public new string text128 = "Target"; __this->set_text128_290(_stringLiteral6790F5A313E4F3D7D9EE743046C665DE8D5FE0F2); // public new string text129 = "1 v 1"; __this->set_text129_291(_stringLiteral15DF3AF4E02129EC302CAE7F8EB33DCAF79C988B); // public new string text132 = "Dart Game"; __this->set_text132_292(_stringLiteral6E9AE149AF6FE253DA34CB099646365444CE6AF5); // public new string text130 = "TARGET"; __this->set_text130_293(_stringLiteral472FE52EE1F9F809D3DD2226C727C2E284F9E0AD); // public new string text131 = "HUNTING"; __this->set_text131_294(_stringLiteral8980A95220B779E75A86358E8742A7FF3C9DB27A); // public new string text401 = "Select Level"; __this->set_text401_295(_stringLiteralE6768086EB88FAC17C0048218899A756FEBACC65); // public new string text134 = "Hunting"; __this->set_text134_296(_stringLiteralCCB5844E0B16E1C73510EF0205A34055AA361C83); // public new string text135 = "Hare"; __this->set_text135_297(_stringLiteral8FAF85F7623BFD44FCE35A5FC39DA8E56599027E); // public new string text136 = "Pheasant"; __this->set_text136_298(_stringLiteralE9C9F4196455AAE9F6C91ADF558F7A30C0C257F3); // public new string text137 = "Wild Wolf"; __this->set_text137_299(_stringLiteral149F8C9E859E00B7809E27CDD4794CFC23DDB09F); // public new string text302 = "BGM"; __this->set_text302_300(_stringLiteralB2D62E3F75706996C1B47FC533FBBFDE9C3C5173); // public new string text303 = "Sound"; __this->set_text303_301(_stringLiteralB3C34217CBB8F650ED8F6E70B410A604371E2EF1); // public new string text304 = "Language"; __this->set_text304_302(_stringLiteral17708B72EC859E0A7BA6DAFBB240D1B447C87E65); // public new string text305 = "English"; __this->set_text305_303(_stringLiteralDCCF22B1EB35EC58FFEB04A8C396594903C38127); // public new string text306 = "CrossHair"; __this->set_text306_304(_stringLiteralC15286923E3E7294E5A3DFA193D2C9E83E1A73AF); // public new string text307 = "ON"; __this->set_text307_305(_stringLiteralE1A8B7ACF9F6A6C8DA34C480CF0726A9E97A6044); // public new string text308 = "OFF"; __this->set_text308_306(_stringLiteralE8B77FFA6B004EBE6AD02387BCBFBFA47562B049); // public new string text309 = "ShootLevel"; __this->set_text309_307(_stringLiteral8161E3F6A0D6B886F63371E65DD485482CFADE19); // public new string text310 = "Easy"; __this->set_text310_308(_stringLiteral7479A72B853B4FDBFCA88205F6F2D9437EE4ED7F); // public new string text311 = "Normal"; __this->set_text311_309(_stringLiteral24158C6C79FE57BE153164B9D7ADCB302F5DF09A); // public new string text312 = "Hard"; __this->set_text312_310(_stringLiteral594DD0BF272B5892AA7F91E62C66BCD2666E72BB); // public new string text313 = "ArrowWeight"; __this->set_text313_311(_stringLiteral6C77FF5301F68E4B5B05720EBE766D0DCA74B3A1); // public new string text314 = "{0}Gram"; __this->set_text314_312(_stringLiteral5A326301BAA0094E59A01F57B24D421A47031006); // public new string text315 = "Game Settings"; __this->set_text315_313(_stringLiteral144E50D9EC5B617A0C0918C140126CFD4E1B4EB8); // public new string text318 = "Novice Guidance"; __this->set_text318_314(_stringLiteralCE1A9F8343B34A53BE31CCF513304610D6D06117); // public new string text301 = "About Us"; __this->set_text301_315(_stringLiteralC8915D600506CC1C83580BE87AA6B7F5CFC515F6); // public new string text316 = "User Agreement"; __this->set_text316_316(_stringLiteralF2DCEBDC0E489573EF91725019BDC803EC347578); // public new string text317 = "Privacy Policy"; __this->set_text317_317(_stringLiteral591717969A5E5E3B077255142EBD573FD6015D85); // public new string text300 = "Quit Login"; __this->set_text300_318(_stringLiteralFED9A785A158D83955E039A71A99AE876F121C4C); // public new string text400 = "Quit Game"; __this->set_text400_319(_stringLiteralFAB26B76C5BC4AB82BD5FDE8AA07D8BD73DC951B); // public new string text76 = "ResetView"; __this->set_text76_320(_stringLiteralCD3058370E4201A13BEF316F3A0D0F83E5C3CE73); // public new string text77 = "Back"; __this->set_text77_321(_stringLiteral4A261EB7E7319776625F5A015EA18053797E6890); // public new string text78 = "Next"; __this->set_text78_322(_stringLiteral5A1278AB54EFEBBD1E0E03AB2677F22D39311C27); // public new string text79 = "Complete"; __this->set_text79_323(_stringLiteralCC3D91506BA6CACBADB94459BC4247D0A1F068CB); // public new string text80 = "ResetView"; __this->set_text80_324(_stringLiteralCD3058370E4201A13BEF316F3A0D0F83E5C3CE73); // public new string text81 = "Point the solid bow to the front, and then click \nthe angle of view to return to the front."; __this->set_text81_325(_stringLiteral8C75FBB37FEAE26394302A142DCCC33CBA27B413); // public new string text82 = "Calibrate"; __this->set_text82_326(_stringLiteral58B1F539A82AC072CB88DB9A4F90E8968D63C502); // public new string text83 = "Stop"; __this->set_text83_327(_stringLiteral800C762D9EF92B399EC87C776239043ACEEC0717); // public new string text84 = "Try to rotate the module at multiple angles until \nmultiple points in the three quadrants of XYZ form a circle."; __this->set_text84_328(_stringLiteral45B0A933FA7A6EB5CC5B62AB96698919793F26F0); // public new string text85 = "Calibrate"; __this->set_text85_329(_stringLiteral58B1F539A82AC072CB88DB9A4F90E8968D63C502); // public new string text86 = "During calibration, the aiming module needs to be placed on the desktop."; __this->set_text86_330(_stringLiteral940504934E29D0857302B5D7BE2CA055B2A49D0F); // public new string text116 = "Redo"; __this->set_text116_331(_stringLiteral7E37EE8FC8421E74B37EF5071971F6C330B35366); // public new string text120 = "The calibration effect is not ideal, please recalibrate!"; __this->set_text120_332(_stringLiteralBE355E1D370E314EF9087ADEB4BA1C2B6A42782D); // public new string text121 = "Cancel"; __this->set_text121_333(_stringLiteral93717CD8FCD45BAB4F15D3BACC989A6A93BA2674); // public new string text200 = "Tips"; __this->set_text200_334(_stringLiteralF29421934EEEA6A2F46B56CCE672DE2E76D5850C); // public new string text201 = "Scope"; __this->set_text201_335(_stringLiteral83374AA2BFCBA84004670EF3ABFBBECF5C901268); // public new string text202 = "Acc"; __this->set_text202_336(_stringLiteral02436DCFA899EF85289BA35711C248905AB26619); // public new string text203 = "Aim Reset"; __this->set_text203_337(_stringLiteralDD56D062FCC763C2BFE432F77EFF13CC9E01BE5A); // public new string text204 = "Target"; __this->set_text204_338(_stringLiteral6790F5A313E4F3D7D9EE743046C665DE8D5FE0F2); // public new string text205 = "Close"; __this->set_text205_339(_stringLiteral6CE02DBF10772951A436ED08602B6C21AF7A06F2); // public new string text1000 = "Shoot as many arrows as you can at a fixed time."; __this->set_text1000_340(_stringLiteral5297FF82DC6A9C349ECA94FD70CDF59E3E2D246E); // public new string text1001 = "The total number of rings gradually increased, \nchallenging their own records."; __this->set_text1001_341(_stringLiteral25E52E46C5BA07731EDE7FD2861848FDE45DEC46); // public new string text2000 = "Two people arched in turn, using the rules of the Olympic Games PK."; __this->set_text2000_342(_stringLiteral31886238D716151850EA1F31099F2FAEEB1376D2); // public new string text2001 = "The maximum number of games is 5, 3 arrows in each game, \nshooting arrows alternately."; __this->set_text2001_343(_stringLiteral4FB2B034CFC4D83D3A4EE1141F15F37641E29103); // public new string text2002 = "The winner will get 2 points and 1 draw each. \nThe loser will not get points."; __this->set_text2002_344(_stringLiteral3D0882E2AB5A41A518602D945E1E7EDE9B7714F6); // public new string text2003 = "If the first 6 points win, \nif it is a draw at the end of the 5 innings, \nthe game will be decided by one arrow."; __this->set_text2003_345(_stringLiteralC7127321B48A6D941AD316178D443101703FA4CD); // public new string text101000 = "{0}X Mirrors"; __this->set_text101000_346(_stringLiteral5586076C6C40BC02C91BE914F4082D4F70EE50A5); // public new string text101001 = "{0}X Shoot"; __this->set_text101001_347(_stringLiteral3E2AC8CE24E047081E4681D3BCDCB9DF121FFD4C); // public new string text111000 = "When shooting, the sight distance is enlarged by {0} times."; __this->set_text111000_348(_stringLiteralEC07CDF9A253157A6C3AA8635DD11934A3FFD749); // public new string text111001 = "In archery, the speed increases by {0} times."; __this->set_text111001_349(_stringLiteralDB4F2B309DADE9A8ABCB4CD75A2A469548BB6D5F); // public new string text200000 = "Recurve Bow"; __this->set_text200000_350(_stringLiteralA5D6D050A2B6C34B0B5FAA350E56ED662A0DA4E8); // public new string text201000 = "18 Pound Bow"; __this->set_text201000_351(_stringLiteralBCE387482DF0CE7D0EE281D19A59E84F4C99C539); // public new string text201001 = "25 Pound Bow"; __this->set_text201001_352(_stringLiteral447779287A1AF6F92462F26C04D7940A9F77EABA); // public new string text201002 = "Carbon Giber Arrow"; __this->set_text201002_353(_stringLiteral95000FA289D79FAB3A572B333C8E225E6BCB160D); // public new string text211000 = "Special bow for Olympic Games."; __this->set_text211000_354(_stringLiteral3A2CD30BF4F578EB33A7BC2E197540229E5DC826); // public new string text211001 = "Special bow for Olympic Games."; __this->set_text211001_355(_stringLiteral3A2CD30BF4F578EB33A7BC2E197540229E5DC826); // public new string text211002 = "Special competition arrow for Olympic Games."; __this->set_text211002_356(_stringLiteral8A7ADA321662F03FBB59ED5284BDC97D18CC0EE8); // public new string text1234560 = "Base Settings"; __this->set_text1234560_357(_stringLiteral259B44A894E2A674689AA1932B1F668F24722622); // public new string text1234561 = "Quit App"; __this->set_text1234561_358(_stringLiteralDDD194C344A36DEA4CE6E312E15EB63C9A77A1D2); // public new string text1234562 = "Start"; __this->set_text1234562_359(_stringLiteral8243A16D425F93AF62CAAB2BFAE01A2D6246A5FE); // public new string text1234563 = "Online"; __this->set_text1234563_360(_stringLiteralF903ABCF81417315694F4593925EE527D6C1258B); LanguageDefault__ctor_m0D0C27F099D2B5E96A7292CEE10EF4884F056BB6(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void LanguageFontSize::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LanguageFontSize__ctor_mC0AC9AB30C707D3173C83CB173AC276FFDEF00FE (LanguageFontSize_t1D69214E22205065DF39D269CA0648625ACB9029 * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void LanguageImage::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LanguageImage__ctor_mB6FA448F07B127F9DF82E1D189F81FE9F7CC3BBF (LanguageImage_tBABF4FB868D32CD241E7167C49AC822E5FF3A2E2 * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void BestHTTP.Examples.LargeFileDownloadSample::Awake() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LargeFileDownloadSample_Awake_m8A0705096E9EF118ECB778AE023124CE5F82CD29 (LargeFileDownloadSample_t622D5BD7D084CA47719D9B6BFDAB75C369BD2A42 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDB964C74040C27BE2F8C717E9B6ACF497F69CD15); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF1E83CBC9FD7DEA43BF5E293DFE062D68A62A8DE); s_Il2CppMethodInitialized = true; } { // if (PlayerPrefs.HasKey("DownloadLength")) bool L_0; L_0 = PlayerPrefs_HasKey_m48BE5886380B51AB495B91C9A26115B7CB958A92(_stringLiteralDB964C74040C27BE2F8C717E9B6ACF497F69CD15, /*hidden argument*/NULL); if (!L_0) { goto IL_0029; } } { // progress = PlayerPrefs.GetInt("DownloadProgress") / (float)PlayerPrefs.GetInt("DownloadLength"); int32_t L_1; L_1 = PlayerPrefs_GetInt_m6BCF9F844298D1810A68BAF23ECBA68C6960A986(_stringLiteralF1E83CBC9FD7DEA43BF5E293DFE062D68A62A8DE, /*hidden argument*/NULL); int32_t L_2; L_2 = PlayerPrefs_GetInt_m6BCF9F844298D1810A68BAF23ECBA68C6960A986(_stringLiteralDB964C74040C27BE2F8C717E9B6ACF497F69CD15, /*hidden argument*/NULL); __this->set_progress_7(((float)((float)((float)((float)L_1))/(float)((float)((float)L_2))))); } IL_0029: { // } return; } } // System.Void BestHTTP.Examples.LargeFileDownloadSample::OnDestroy() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LargeFileDownloadSample_OnDestroy_mDFFFD4722CBDEC51A0A03B246BBDC1B48803B762 (LargeFileDownloadSample_t622D5BD7D084CA47719D9B6BFDAB75C369BD2A42 * __this, const RuntimeMethod* method) { { // if (request != null && request.State < HTTPRequestStates.Finished) HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * L_0 = __this->get_request_5(); if (!L_0) { goto IL_0039; } } { HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * L_1 = __this->get_request_5(); NullCheck(L_1); int32_t L_2; L_2 = HTTPRequest_get_State_mA2343B8DDC11F4489B724FDC12DD6671C55DA82A_inline(L_1, /*hidden argument*/NULL); if ((((int32_t)L_2) >= ((int32_t)3))) { goto IL_0039; } } { // request.OnProgress = null; HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * L_3 = __this->get_request_5(); NullCheck(L_3); L_3->set_OnProgress_12((OnDownloadProgressDelegate_t648A73937F176382A3E8E1252C79989D5EBC4F69 *)NULL); // request.Callback = null; HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * L_4 = __this->get_request_5(); NullCheck(L_4); HTTPRequest_set_Callback_mFF8B458F232390A69C19361510FC68B7B7486D01_inline(L_4, (OnRequestFinishedDelegate_t4E35BB5277ED27A8B43D1987DE7F3B47772018B4 *)NULL, /*hidden argument*/NULL); // request.Abort(); HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * L_5 = __this->get_request_5(); NullCheck(L_5); HTTPRequest_Abort_mD093C17FDF52A73A6762C4D1959B86F0464773BE(L_5, /*hidden argument*/NULL); } IL_0039: { // } return; } } // System.Void BestHTTP.Examples.LargeFileDownloadSample::OnGUI() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LargeFileDownloadSample_OnGUI_m7FE9DEDB52E1F348ECDCB1F4DB9C31F0149D5C65 (LargeFileDownloadSample_t622D5BD7D084CA47719D9B6BFDAB75C369BD2A42 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GUIHelper_t2BF60F03A2A8EEA467A93FE5910AE1C5F1217F7F_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LargeFileDownloadSample_U3COnGUIU3Eb__7_0_m01670B7C5192ABB7BC1D67328091A5C43EDD41AF_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // GUIHelper.DrawArea(GUIHelper.ClientArea, true, () => // { // // Draw the current status // GUILayout.Label("Request status: " + status); // // GUILayout.Space(5); // // // Draw the current progress // GUILayout.Label(string.Format("Progress: {0:P2} of {1:N0}Mb", progress, PlayerPrefs.GetInt("DownloadLength") / 1048576 /*1 Mb*/)); // GUILayout.HorizontalSlider(progress, 0, 1); // // GUILayout.Space(50); // // if (request == null) // { // // Draw a slider to be able to change the fragment size // GUILayout.Label(string.Format("Desired Fragment Size: {0:N} KBytes", fragmentSize / 1024f)); // fragmentSize = (int)GUILayout.HorizontalSlider(fragmentSize, HTTPResponse.MinBufferSize, 10 * 1024 * 1024); // // GUILayout.Space(5); // // string buttonStr = PlayerPrefs.HasKey("DownloadProgress") ? "Continue Download" : "Start Download"; // if (GUILayout.Button(buttonStr)) // StreamLargeFileTest(); // } // else if (request.State == HTTPRequestStates.Processing && GUILayout.Button("Abort Download")) // { // // Simulate a connection lost // request.Abort(); // } // }); IL2CPP_RUNTIME_CLASS_INIT(GUIHelper_t2BF60F03A2A8EEA467A93FE5910AE1C5F1217F7F_il2cpp_TypeInfo_var); Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 L_0 = ((GUIHelper_t2BF60F03A2A8EEA467A93FE5910AE1C5F1217F7F_StaticFields*)il2cpp_codegen_static_fields_for(GUIHelper_t2BF60F03A2A8EEA467A93FE5910AE1C5F1217F7F_il2cpp_TypeInfo_var))->get_ClientArea_3(); Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * L_1 = (Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 *)il2cpp_codegen_object_new(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6_il2cpp_TypeInfo_var); Action__ctor_m07BE5EE8A629FBBA52AE6356D57A0D371BE2574B(L_1, __this, (intptr_t)((intptr_t)LargeFileDownloadSample_U3COnGUIU3Eb__7_0_m01670B7C5192ABB7BC1D67328091A5C43EDD41AF_RuntimeMethod_var), /*hidden argument*/NULL); GUIHelper_DrawArea_mE1680D37CB32E1AABE105064282386245DC3872D(L_0, (bool)1, L_1, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.Examples.LargeFileDownloadSample::StreamLargeFileTest() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LargeFileDownloadSample_StreamLargeFileTest_mBF9526CE0FB315F21D85803EBF5CC2E03BC8ED24 (LargeFileDownloadSample_t622D5BD7D084CA47719D9B6BFDAB75C369BD2A42 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LargeFileDownloadSample_U3CStreamLargeFileTestU3Eb__8_0_m72FEE13D86362802ADA9C9511D7A319D2179C7BC_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OnRequestFinishedDelegate_t4E35BB5277ED27A8B43D1987DE7F3B47772018B4_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2ED12E7D2E4A6A69923CC4A50186715C32FC8B0B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF1E83CBC9FD7DEA43BF5E293DFE062D68A62A8DE); s_Il2CppMethodInitialized = true; } { // request = new HTTPRequest(new Uri(URL), (req, resp) => // { // switch (req.State) // { // // The request is currently processed. With UseStreaming == true, we can get the streamed fragments here // case HTTPRequestStates.Processing: // // // Set the DownloadLength, so we can display the progress // if (!PlayerPrefs.HasKey("DownloadLength")) // { // string value = resp.GetFirstHeaderValue("content-length"); // if (!string.IsNullOrEmpty(value)) // PlayerPrefs.SetInt("DownloadLength", int.Parse(value)); // } // // // Get the fragments, and save them // ProcessFragments(resp.GetStreamedFragments()); // // status = "Processing"; // break; // // // The request finished without any problem. // case HTTPRequestStates.Finished: // if (resp.IsSuccess) // { // // Save any remaining fragments // ProcessFragments(resp.GetStreamedFragments()); // // // Completely finished // if (resp.IsStreamingFinished) // { // status = "Streaming finished!"; // // // We are done, delete the progress key // PlayerPrefs.DeleteKey("DownloadProgress"); // PlayerPrefs.Save(); // // request = null; // } // else // status = "Processing"; // } // else // { // status = string.Format("Request finished Successfully, but the server sent an error. Status Code: {0}-{1} Message: {2}", // resp.StatusCode, // resp.Message, // resp.DataAsText); // Debug.LogWarning(status); // // request = null; // } // break; // // // The request finished with an unexpected error. The request's Exception property may contain more info about the error. // case HTTPRequestStates.Error: // status = "Request Finished with Error! " + (req.Exception != null ? (req.Exception.Message + "\n" + req.Exception.StackTrace) : "No Exception"); // Debug.LogError(status); // // request = null; // break; // // // The request aborted, initiated by the user. // case HTTPRequestStates.Aborted: // status = "Request Aborted!"; // Debug.LogWarning(status); // // request = null; // break; // // // Connecting to the server is timed out. // case HTTPRequestStates.ConnectionTimedOut: // status = "Connection Timed Out!"; // Debug.LogError(status); // // request = null; // break; // // // The request didn't finished in the given time. // case HTTPRequestStates.TimedOut: // status = "Processing the request Timed Out!"; // Debug.LogError(status); // // request = null; // break; // } // }); Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_0 = (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *)il2cpp_codegen_object_new(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); Uri__ctor_m7724F43B1525624FFF97A774B6B909B075714D5C(L_0, _stringLiteral2ED12E7D2E4A6A69923CC4A50186715C32FC8B0B, /*hidden argument*/NULL); OnRequestFinishedDelegate_t4E35BB5277ED27A8B43D1987DE7F3B47772018B4 * L_1 = (OnRequestFinishedDelegate_t4E35BB5277ED27A8B43D1987DE7F3B47772018B4 *)il2cpp_codegen_object_new(OnRequestFinishedDelegate_t4E35BB5277ED27A8B43D1987DE7F3B47772018B4_il2cpp_TypeInfo_var); OnRequestFinishedDelegate__ctor_m2379F5429ED6B8FB42D7D7D8C3FADE30932BD9FA(L_1, __this, (intptr_t)((intptr_t)LargeFileDownloadSample_U3CStreamLargeFileTestU3Eb__8_0_m72FEE13D86362802ADA9C9511D7A319D2179C7BC_RuntimeMethod_var), /*hidden argument*/NULL); HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * L_2 = (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 *)il2cpp_codegen_object_new(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42_il2cpp_TypeInfo_var); HTTPRequest__ctor_m4F7F6CEC0DFC147AA0BBB24686E845E47324FBF7(L_2, L_0, L_1, /*hidden argument*/NULL); __this->set_request_5(L_2); // if (PlayerPrefs.HasKey("DownloadProgress")) bool L_3; L_3 = PlayerPrefs_HasKey_m48BE5886380B51AB495B91C9A26115B7CB958A92(_stringLiteralF1E83CBC9FD7DEA43BF5E293DFE062D68A62A8DE, /*hidden argument*/NULL); if (!L_3) { goto IL_0044; } } { // request.SetRangeHeader(PlayerPrefs.GetInt("DownloadProgress")); HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * L_4 = __this->get_request_5(); int32_t L_5; L_5 = PlayerPrefs_GetInt_m6BCF9F844298D1810A68BAF23ECBA68C6960A986(_stringLiteralF1E83CBC9FD7DEA43BF5E293DFE062D68A62A8DE, /*hidden argument*/NULL); NullCheck(L_4); HTTPRequest_SetRangeHeader_mADDC28E7B2C7ED705518E399232053B1524C15A6(L_4, L_5, /*hidden argument*/NULL); goto IL_004f; } IL_0044: { // PlayerPrefs.SetInt("DownloadProgress", 0); PlayerPrefs_SetInt_m0C5C977E960B9CA8F9AB73AF4129C3DCABD067B6(_stringLiteralF1E83CBC9FD7DEA43BF5E293DFE062D68A62A8DE, 0, /*hidden argument*/NULL); } IL_004f: { // request.DisableCache = true; HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * L_6 = __this->get_request_5(); NullCheck(L_6); HTTPRequest_set_DisableCache_m7FF877063A703DC79DCD5EB1DE3CC3E964707343(L_6, (bool)1, /*hidden argument*/NULL); // request.UseStreaming = true; HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * L_7 = __this->get_request_5(); NullCheck(L_7); HTTPRequest_set_UseStreaming_mF54D003DEC388C017F116B0C184B20F5602158CB(L_7, (bool)1, /*hidden argument*/NULL); // request.StreamFragmentSize = fragmentSize; HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * L_8 = __this->get_request_5(); int32_t L_9 = __this->get_fragmentSize_8(); NullCheck(L_8); HTTPRequest_set_StreamFragmentSize_mC1FEB4D8020ED43DAA1D03B2736B32BEBA60A88B(L_8, L_9, /*hidden argument*/NULL); // request.Send(); HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * L_10 = __this->get_request_5(); NullCheck(L_10); HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * L_11; L_11 = HTTPRequest_Send_m6DFACD89B7BA3689A32616A9B7F7AD41DBA86C46(L_10, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.Examples.LargeFileDownloadSample::ProcessFragments(System.Collections.Generic.List`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LargeFileDownloadSample_ProcessFragments_m0CE54E3D9595300EC12E422D8F7B79DC2D37E318 (LargeFileDownloadSample_t622D5BD7D084CA47719D9B6BFDAB75C369BD2A42 * __this, List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE * ___fragments0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mCEBCF66B19764A2EFF9F5F81C78323729EC10F60_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mA904D48DE837FC82817A13F3F59776C3499098BB_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDB964C74040C27BE2F8C717E9B6ACF497F69CD15); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF1E83CBC9FD7DEA43BF5E293DFE062D68A62A8DE); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { // if (fragments != null && fragments.Count > 0) List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE * L_0 = ___fragments0; if (!L_0) { goto IL_005f; } } { List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE * L_1 = ___fragments0; NullCheck(L_1); int32_t L_2; L_2 = List_1_get_Count_mCEBCF66B19764A2EFF9F5F81C78323729EC10F60_inline(L_1, /*hidden argument*/List_1_get_Count_mCEBCF66B19764A2EFF9F5F81C78323729EC10F60_RuntimeMethod_var); if ((((int32_t)L_2) <= ((int32_t)0))) { goto IL_005f; } } { // for (int i = 0; i < fragments.Count; ++i) V_0 = 0; goto IL_0034; } IL_0010: { // int downloaded = PlayerPrefs.GetInt("DownloadProgress") + fragments[i].Length; int32_t L_3; L_3 = PlayerPrefs_GetInt_m6BCF9F844298D1810A68BAF23ECBA68C6960A986(_stringLiteralF1E83CBC9FD7DEA43BF5E293DFE062D68A62A8DE, /*hidden argument*/NULL); List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE * L_4 = ___fragments0; int32_t L_5 = V_0; NullCheck(L_4); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_6; L_6 = List_1_get_Item_mA904D48DE837FC82817A13F3F59776C3499098BB_inline(L_4, L_5, /*hidden argument*/List_1_get_Item_mA904D48DE837FC82817A13F3F59776C3499098BB_RuntimeMethod_var); NullCheck(L_6); V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length))))); // PlayerPrefs.SetInt("DownloadProgress", downloaded); int32_t L_7 = V_1; PlayerPrefs_SetInt_m0C5C977E960B9CA8F9AB73AF4129C3DCABD067B6(_stringLiteralF1E83CBC9FD7DEA43BF5E293DFE062D68A62A8DE, L_7, /*hidden argument*/NULL); // for (int i = 0; i < fragments.Count; ++i) int32_t L_8 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1)); } IL_0034: { // for (int i = 0; i < fragments.Count; ++i) int32_t L_9 = V_0; List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE * L_10 = ___fragments0; NullCheck(L_10); int32_t L_11; L_11 = List_1_get_Count_mCEBCF66B19764A2EFF9F5F81C78323729EC10F60_inline(L_10, /*hidden argument*/List_1_get_Count_mCEBCF66B19764A2EFF9F5F81C78323729EC10F60_RuntimeMethod_var); if ((((int32_t)L_9) < ((int32_t)L_11))) { goto IL_0010; } } { // PlayerPrefs.Save(); PlayerPrefs_Save_m2C1E628FA335095CD88D0DA1CB50ACC924667EEC(/*hidden argument*/NULL); // progress = PlayerPrefs.GetInt("DownloadProgress") / (float)PlayerPrefs.GetInt("DownloadLength"); int32_t L_12; L_12 = PlayerPrefs_GetInt_m6BCF9F844298D1810A68BAF23ECBA68C6960A986(_stringLiteralF1E83CBC9FD7DEA43BF5E293DFE062D68A62A8DE, /*hidden argument*/NULL); int32_t L_13; L_13 = PlayerPrefs_GetInt_m6BCF9F844298D1810A68BAF23ECBA68C6960A986(_stringLiteralDB964C74040C27BE2F8C717E9B6ACF497F69CD15, /*hidden argument*/NULL); __this->set_progress_7(((float)((float)((float)((float)L_12))/(float)((float)((float)L_13))))); } IL_005f: { // } return; } } // System.Void BestHTTP.Examples.LargeFileDownloadSample::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LargeFileDownloadSample__ctor_mFAF51719A13DF62726F3AD114758E653FE9AE0CD (LargeFileDownloadSample_t622D5BD7D084CA47719D9B6BFDAB75C369BD2A42 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // string status = string.Empty; String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); __this->set_status_6(L_0); // int fragmentSize = HTTPResponse.MinBufferSize; __this->set_fragmentSize_8(((int32_t)4096)); MonoBehaviour__ctor_mC0995D847F6A95B1A553652636C38A2AA8B13BED(__this, /*hidden argument*/NULL); return; } } // System.Void BestHTTP.Examples.LargeFileDownloadSample::b__7_0() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LargeFileDownloadSample_U3COnGUIU3Eb__7_0_m01670B7C5192ABB7BC1D67328091A5C43EDD41AF (LargeFileDownloadSample_t622D5BD7D084CA47719D9B6BFDAB75C369BD2A42 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Array_Empty_TisGUILayoutOption_t2D992ABCB62BEB24A6F4A826A5CBE7AE236071AB_mA07E9D2B1A778365E5A956C5674C590821EEC9B4_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral09694282135BA555A67ACF4F4E9A95F96793ED43); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3ED0BD2AA56403B91A2CC22F11E361CBD43E429D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7C5A9B11BC0D7A18E88B52DFAB70A388DAECDEAF); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC9CF81A157AC9C24DAF2749606D1CD420E644287); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD98568A6B37648B3107D237D2964EE83A5F92BDF); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDB964C74040C27BE2F8C717E9B6ACF497F69CD15); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE05C757FDAAC3550D37DFD5446ECC4CBD06F30C6); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF1E83CBC9FD7DEA43BF5E293DFE062D68A62A8DE); s_Il2CppMethodInitialized = true; } String_t* G_B4_0 = NULL; { // GUILayout.Label("Request status: " + status); String_t* L_0 = __this->get_status_6(); String_t* L_1; L_1 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(_stringLiteral3ED0BD2AA56403B91A2CC22F11E361CBD43E429D, L_0, /*hidden argument*/NULL); GUILayoutOptionU5BU5D_tA0F031CC36F88BBBD25D6841ADD3913446E6EA2B* L_2; L_2 = Array_Empty_TisGUILayoutOption_t2D992ABCB62BEB24A6F4A826A5CBE7AE236071AB_mA07E9D2B1A778365E5A956C5674C590821EEC9B4_inline(/*hidden argument*/Array_Empty_TisGUILayoutOption_t2D992ABCB62BEB24A6F4A826A5CBE7AE236071AB_mA07E9D2B1A778365E5A956C5674C590821EEC9B4_RuntimeMethod_var); GUILayout_Label_m0DD89429577B101820231347FB04CFC489245502(L_1, L_2, /*hidden argument*/NULL); // GUILayout.Space(5); GUILayout_Space_m86E4A2CC27661A11F7D50132217B74E9D76CB9DD((5.0f), /*hidden argument*/NULL); // GUILayout.Label(string.Format("Progress: {0:P2} of {1:N0}Mb", progress, PlayerPrefs.GetInt("DownloadLength") / 1048576 /*1 Mb*/)); float L_3 = __this->get_progress_7(); float L_4 = L_3; RuntimeObject * L_5 = Box(Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var, &L_4); int32_t L_6; L_6 = PlayerPrefs_GetInt_m6BCF9F844298D1810A68BAF23ECBA68C6960A986(_stringLiteralDB964C74040C27BE2F8C717E9B6ACF497F69CD15, /*hidden argument*/NULL); int32_t L_7 = ((int32_t)((int32_t)L_6/(int32_t)((int32_t)1048576))); RuntimeObject * L_8 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_7); String_t* L_9; L_9 = String_Format_m8D1CB0410C35E052A53AE957C914C841E54BAB66(_stringLiteralC9CF81A157AC9C24DAF2749606D1CD420E644287, L_5, L_8, /*hidden argument*/NULL); GUILayoutOptionU5BU5D_tA0F031CC36F88BBBD25D6841ADD3913446E6EA2B* L_10; L_10 = Array_Empty_TisGUILayoutOption_t2D992ABCB62BEB24A6F4A826A5CBE7AE236071AB_mA07E9D2B1A778365E5A956C5674C590821EEC9B4_inline(/*hidden argument*/Array_Empty_TisGUILayoutOption_t2D992ABCB62BEB24A6F4A826A5CBE7AE236071AB_mA07E9D2B1A778365E5A956C5674C590821EEC9B4_RuntimeMethod_var); GUILayout_Label_m0DD89429577B101820231347FB04CFC489245502(L_9, L_10, /*hidden argument*/NULL); // GUILayout.HorizontalSlider(progress, 0, 1); float L_11 = __this->get_progress_7(); GUILayoutOptionU5BU5D_tA0F031CC36F88BBBD25D6841ADD3913446E6EA2B* L_12; L_12 = Array_Empty_TisGUILayoutOption_t2D992ABCB62BEB24A6F4A826A5CBE7AE236071AB_mA07E9D2B1A778365E5A956C5674C590821EEC9B4_inline(/*hidden argument*/Array_Empty_TisGUILayoutOption_t2D992ABCB62BEB24A6F4A826A5CBE7AE236071AB_mA07E9D2B1A778365E5A956C5674C590821EEC9B4_RuntimeMethod_var); float L_13; L_13 = GUILayout_HorizontalSlider_m03D4AF69A1F1EA05236AB10FAD393580F2A3DC3D(L_11, (0.0f), (1.0f), L_12, /*hidden argument*/NULL); // GUILayout.Space(50); GUILayout_Space_m86E4A2CC27661A11F7D50132217B74E9D76CB9DD((50.0f), /*hidden argument*/NULL); // if (request == null) HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * L_14 = __this->get_request_5(); if (L_14) { goto IL_0102; } } { // GUILayout.Label(string.Format("Desired Fragment Size: {0:N} KBytes", fragmentSize / 1024f)); int32_t L_15 = __this->get_fragmentSize_8(); float L_16 = ((float)((float)((float)((float)L_15))/(float)(1024.0f))); RuntimeObject * L_17 = Box(Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var, &L_16); String_t* L_18; L_18 = String_Format_mB3D38E5238C3164DB4D7D29339D9E225A4496D17(_stringLiteralE05C757FDAAC3550D37DFD5446ECC4CBD06F30C6, L_17, /*hidden argument*/NULL); GUILayoutOptionU5BU5D_tA0F031CC36F88BBBD25D6841ADD3913446E6EA2B* L_19; L_19 = Array_Empty_TisGUILayoutOption_t2D992ABCB62BEB24A6F4A826A5CBE7AE236071AB_mA07E9D2B1A778365E5A956C5674C590821EEC9B4_inline(/*hidden argument*/Array_Empty_TisGUILayoutOption_t2D992ABCB62BEB24A6F4A826A5CBE7AE236071AB_mA07E9D2B1A778365E5A956C5674C590821EEC9B4_RuntimeMethod_var); GUILayout_Label_m0DD89429577B101820231347FB04CFC489245502(L_18, L_19, /*hidden argument*/NULL); // fragmentSize = (int)GUILayout.HorizontalSlider(fragmentSize, HTTPResponse.MinBufferSize, 10 * 1024 * 1024); int32_t L_20 = __this->get_fragmentSize_8(); GUILayoutOptionU5BU5D_tA0F031CC36F88BBBD25D6841ADD3913446E6EA2B* L_21; L_21 = Array_Empty_TisGUILayoutOption_t2D992ABCB62BEB24A6F4A826A5CBE7AE236071AB_mA07E9D2B1A778365E5A956C5674C590821EEC9B4_inline(/*hidden argument*/Array_Empty_TisGUILayoutOption_t2D992ABCB62BEB24A6F4A826A5CBE7AE236071AB_mA07E9D2B1A778365E5A956C5674C590821EEC9B4_RuntimeMethod_var); float L_22; L_22 = GUILayout_HorizontalSlider_m03D4AF69A1F1EA05236AB10FAD393580F2A3DC3D(((float)((float)L_20)), (4096.0f), (10485760.0f), L_21, /*hidden argument*/NULL); __this->set_fragmentSize_8(((int32_t)((int32_t)L_22))); // GUILayout.Space(5); GUILayout_Space_m86E4A2CC27661A11F7D50132217B74E9D76CB9DD((5.0f), /*hidden argument*/NULL); // string buttonStr = PlayerPrefs.HasKey("DownloadProgress") ? "Continue Download" : "Start Download"; bool L_23; L_23 = PlayerPrefs_HasKey_m48BE5886380B51AB495B91C9A26115B7CB958A92(_stringLiteralF1E83CBC9FD7DEA43BF5E293DFE062D68A62A8DE, /*hidden argument*/NULL); if (L_23) { goto IL_00ea; } } { G_B4_0 = _stringLiteral7C5A9B11BC0D7A18E88B52DFAB70A388DAECDEAF; goto IL_00ef; } IL_00ea: { G_B4_0 = _stringLiteralD98568A6B37648B3107D237D2964EE83A5F92BDF; } IL_00ef: { // if (GUILayout.Button(buttonStr)) GUILayoutOptionU5BU5D_tA0F031CC36F88BBBD25D6841ADD3913446E6EA2B* L_24; L_24 = Array_Empty_TisGUILayoutOption_t2D992ABCB62BEB24A6F4A826A5CBE7AE236071AB_mA07E9D2B1A778365E5A956C5674C590821EEC9B4_inline(/*hidden argument*/Array_Empty_TisGUILayoutOption_t2D992ABCB62BEB24A6F4A826A5CBE7AE236071AB_mA07E9D2B1A778365E5A956C5674C590821EEC9B4_RuntimeMethod_var); bool L_25; L_25 = GUILayout_Button_m749F2887D57BDC9B6901F2C35F5C6A7E22154162(G_B4_0, L_24, /*hidden argument*/NULL); if (!L_25) { goto IL_012c; } } { // StreamLargeFileTest(); LargeFileDownloadSample_StreamLargeFileTest_mBF9526CE0FB315F21D85803EBF5CC2E03BC8ED24(__this, /*hidden argument*/NULL); // } return; } IL_0102: { // else if (request.State == HTTPRequestStates.Processing && GUILayout.Button("Abort Download")) HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * L_26 = __this->get_request_5(); NullCheck(L_26); int32_t L_27; L_27 = HTTPRequest_get_State_mA2343B8DDC11F4489B724FDC12DD6671C55DA82A_inline(L_26, /*hidden argument*/NULL); if ((!(((uint32_t)L_27) == ((uint32_t)2)))) { goto IL_012c; } } { GUILayoutOptionU5BU5D_tA0F031CC36F88BBBD25D6841ADD3913446E6EA2B* L_28; L_28 = Array_Empty_TisGUILayoutOption_t2D992ABCB62BEB24A6F4A826A5CBE7AE236071AB_mA07E9D2B1A778365E5A956C5674C590821EEC9B4_inline(/*hidden argument*/Array_Empty_TisGUILayoutOption_t2D992ABCB62BEB24A6F4A826A5CBE7AE236071AB_mA07E9D2B1A778365E5A956C5674C590821EEC9B4_RuntimeMethod_var); bool L_29; L_29 = GUILayout_Button_m749F2887D57BDC9B6901F2C35F5C6A7E22154162(_stringLiteral09694282135BA555A67ACF4F4E9A95F96793ED43, L_28, /*hidden argument*/NULL); if (!L_29) { goto IL_012c; } } { // request.Abort(); HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * L_30 = __this->get_request_5(); NullCheck(L_30); HTTPRequest_Abort_mD093C17FDF52A73A6762C4D1959B86F0464773BE(L_30, /*hidden argument*/NULL); } IL_012c: { // }); return; } } // System.Void BestHTTP.Examples.LargeFileDownloadSample::b__8_0(BestHTTP.HTTPRequest,BestHTTP.HTTPResponse) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LargeFileDownloadSample_U3CStreamLargeFileTestU3Eb__8_0_m72FEE13D86362802ADA9C9511D7A319D2179C7BC (LargeFileDownloadSample_t622D5BD7D084CA47719D9B6BFDAB75C369BD2A42 * __this, HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * ___req0, HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * ___resp1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral00B28FF06B788B9B67C6B259800F404F9F3761FD); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral11191BF1C6F1CD57E82D5B9DAFA538F74E112CA9); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral208FB3837B215C39A2EF71DECFFC19C9FDB72F27); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral23163990D038E20F9272B8569811E9D9CC45CC16); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral32AD7C42537BC83D17ED81607E9208D784DC1B19); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4282F0EC210266935AD8C4F278FE8699B66C189E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6FFB662544B7CC75E90E30E825D1C3A41E593CBC); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9289E5000354074BD5AACC679D9D0F7C5AE1D727); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA91F812B4E9ACBE9AA316EF0B8EAB265F5D286CE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDB964C74040C27BE2F8C717E9B6ACF497F69CD15); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE3667A4D276FAA0FFE19E1208BBCB7F66ED6F3D2); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF1E83CBC9FD7DEA43BF5E293DFE062D68A62A8DE); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; String_t* V_1 = NULL; String_t* G_B13_0 = NULL; LargeFileDownloadSample_t622D5BD7D084CA47719D9B6BFDAB75C369BD2A42 * G_B13_1 = NULL; String_t* G_B12_0 = NULL; LargeFileDownloadSample_t622D5BD7D084CA47719D9B6BFDAB75C369BD2A42 * G_B12_1 = NULL; String_t* G_B14_0 = NULL; String_t* G_B14_1 = NULL; LargeFileDownloadSample_t622D5BD7D084CA47719D9B6BFDAB75C369BD2A42 * G_B14_2 = NULL; { // switch (req.State) HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * L_0 = ___req0; NullCheck(L_0); int32_t L_1; L_1 = HTTPRequest_get_State_mA2343B8DDC11F4489B724FDC12DD6671C55DA82A_inline(L_0, /*hidden argument*/NULL); V_0 = L_1; int32_t L_2 = V_0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)2))) { case 0: { goto IL_0028; } case 1: { goto IL_0070; } case 2: { goto IL_00f4; } case 3: { goto IL_0146; } case 4: { goto IL_0164; } case 5: { goto IL_0182; } } } { return; } IL_0028: { // if (!PlayerPrefs.HasKey("DownloadLength")) bool L_3; L_3 = PlayerPrefs_HasKey_m48BE5886380B51AB495B91C9A26115B7CB958A92(_stringLiteralDB964C74040C27BE2F8C717E9B6ACF497F69CD15, /*hidden argument*/NULL); if (L_3) { goto IL_0058; } } { // string value = resp.GetFirstHeaderValue("content-length"); HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * L_4 = ___resp1; NullCheck(L_4); String_t* L_5; L_5 = HTTPResponse_GetFirstHeaderValue_mCEE274940680171EC84DC9DEEDB577DBF8A26D1B(L_4, _stringLiteralE3667A4D276FAA0FFE19E1208BBCB7F66ED6F3D2, /*hidden argument*/NULL); V_1 = L_5; // if (!string.IsNullOrEmpty(value)) String_t* L_6 = V_1; bool L_7; L_7 = String_IsNullOrEmpty_m9AFBB5335B441B94E884B8A9D4A27AD60E3D7F7C(L_6, /*hidden argument*/NULL); if (L_7) { goto IL_0058; } } { // PlayerPrefs.SetInt("DownloadLength", int.Parse(value)); String_t* L_8 = V_1; int32_t L_9; L_9 = Int32_Parse_mE5D220FEA7F0BFB1B220B2A30797D7DD83ACF22C(L_8, /*hidden argument*/NULL); PlayerPrefs_SetInt_m0C5C977E960B9CA8F9AB73AF4129C3DCABD067B6(_stringLiteralDB964C74040C27BE2F8C717E9B6ACF497F69CD15, L_9, /*hidden argument*/NULL); } IL_0058: { // ProcessFragments(resp.GetStreamedFragments()); HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * L_10 = ___resp1; NullCheck(L_10); List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE * L_11; L_11 = HTTPResponse_GetStreamedFragments_m5F1F589DAA1731C67037B156E4008965D9343926(L_10, /*hidden argument*/NULL); LargeFileDownloadSample_ProcessFragments_m0CE54E3D9595300EC12E422D8F7B79DC2D37E318(__this, L_11, /*hidden argument*/NULL); // status = "Processing"; __this->set_status_6(_stringLiteral32AD7C42537BC83D17ED81607E9208D784DC1B19); // break; return; } IL_0070: { // if (resp.IsSuccess) HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * L_12 = ___resp1; NullCheck(L_12); bool L_13; L_13 = HTTPResponse_get_IsSuccess_m8DF99D28A8D0B0C58F7C496DA07782BE17A2E37C(L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_00ba; } } { // ProcessFragments(resp.GetStreamedFragments()); HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * L_14 = ___resp1; NullCheck(L_14); List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE * L_15; L_15 = HTTPResponse_GetStreamedFragments_m5F1F589DAA1731C67037B156E4008965D9343926(L_14, /*hidden argument*/NULL); LargeFileDownloadSample_ProcessFragments_m0CE54E3D9595300EC12E422D8F7B79DC2D37E318(__this, L_15, /*hidden argument*/NULL); // if (resp.IsStreamingFinished) HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * L_16 = ___resp1; NullCheck(L_16); bool L_17; L_17 = HTTPResponse_get_IsStreamingFinished_m659F9CA579047CEBD3CC9E5484F08667FF5D94E6_inline(L_16, /*hidden argument*/NULL); if (!L_17) { goto IL_00ae; } } { // status = "Streaming finished!"; __this->set_status_6(_stringLiteral9289E5000354074BD5AACC679D9D0F7C5AE1D727); // PlayerPrefs.DeleteKey("DownloadProgress"); PlayerPrefs_DeleteKey_mCEF6CE08D7D7670AD4072228E261A7E746030554(_stringLiteralF1E83CBC9FD7DEA43BF5E293DFE062D68A62A8DE, /*hidden argument*/NULL); // PlayerPrefs.Save(); PlayerPrefs_Save_m2C1E628FA335095CD88D0DA1CB50ACC924667EEC(/*hidden argument*/NULL); // request = null; __this->set_request_5((HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 *)NULL); // } return; } IL_00ae: { // status = "Processing"; __this->set_status_6(_stringLiteral32AD7C42537BC83D17ED81607E9208D784DC1B19); // } return; } IL_00ba: { // status = string.Format("Request finished Successfully, but the server sent an error. Status Code: {0}-{1} Message: {2}", // resp.StatusCode, // resp.Message, // resp.DataAsText); HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * L_18 = ___resp1; NullCheck(L_18); int32_t L_19; L_19 = HTTPResponse_get_StatusCode_m3D1C85F140105D51707DADCD3A376621CFA670DF_inline(L_18, /*hidden argument*/NULL); int32_t L_20 = L_19; RuntimeObject * L_21 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_20); HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * L_22 = ___resp1; NullCheck(L_22); String_t* L_23; L_23 = HTTPResponse_get_Message_m1898E05F9D431E994A4D955B9B6C92A3C98A9383_inline(L_22, /*hidden argument*/NULL); HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * L_24 = ___resp1; NullCheck(L_24); String_t* L_25; L_25 = HTTPResponse_get_DataAsText_mE627F5169E5E8FCD960C0503DAC684E82CF38ECA(L_24, /*hidden argument*/NULL); String_t* L_26; L_26 = String_Format_m039737CCD992C5BFC8D16DFD681F5E8786E87FA6(_stringLiteral11191BF1C6F1CD57E82D5B9DAFA538F74E112CA9, L_21, L_23, L_25, /*hidden argument*/NULL); __this->set_status_6(L_26); // Debug.LogWarning(status); String_t* L_27 = __this->get_status_6(); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_LogWarning_m24085D883C9E74D7AB423F0625E13259923960E7(L_27, /*hidden argument*/NULL); // request = null; __this->set_request_5((HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 *)NULL); // break; return; } IL_00f4: { // status = "Request Finished with Error! " + (req.Exception != null ? (req.Exception.Message + "\n" + req.Exception.StackTrace) : "No Exception"); HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * L_28 = ___req0; NullCheck(L_28); Exception_t * L_29; L_29 = HTTPRequest_get_Exception_mEDB50793ED3C8EE527D30B823A15EC39C657B434_inline(L_28, /*hidden argument*/NULL); G_B12_0 = _stringLiteralA91F812B4E9ACBE9AA316EF0B8EAB265F5D286CE; G_B12_1 = __this; if (L_29) { G_B13_0 = _stringLiteralA91F812B4E9ACBE9AA316EF0B8EAB265F5D286CE; G_B13_1 = __this; goto IL_0109; } } { G_B14_0 = _stringLiteral23163990D038E20F9272B8569811E9D9CC45CC16; G_B14_1 = G_B12_0; G_B14_2 = G_B12_1; goto IL_0129; } IL_0109: { HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * L_30 = ___req0; NullCheck(L_30); Exception_t * L_31; L_31 = HTTPRequest_get_Exception_mEDB50793ED3C8EE527D30B823A15EC39C657B434_inline(L_30, /*hidden argument*/NULL); NullCheck(L_31); String_t* L_32; L_32 = VirtualFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Exception::get_Message() */, L_31); HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * L_33 = ___req0; NullCheck(L_33); Exception_t * L_34; L_34 = HTTPRequest_get_Exception_mEDB50793ED3C8EE527D30B823A15EC39C657B434_inline(L_33, /*hidden argument*/NULL); NullCheck(L_34); String_t* L_35; L_35 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Exception::get_StackTrace() */, L_34); String_t* L_36; L_36 = String_Concat_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44(L_32, _stringLiteral00B28FF06B788B9B67C6B259800F404F9F3761FD, L_35, /*hidden argument*/NULL); G_B14_0 = L_36; G_B14_1 = G_B13_0; G_B14_2 = G_B13_1; } IL_0129: { String_t* L_37; L_37 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(G_B14_1, G_B14_0, /*hidden argument*/NULL); NullCheck(G_B14_2); G_B14_2->set_status_6(L_37); // Debug.LogError(status); String_t* L_38 = __this->get_status_6(); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_LogError_m8850D65592770A364D494025FF3A73E8D4D70485(L_38, /*hidden argument*/NULL); // request = null; __this->set_request_5((HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 *)NULL); // break; return; } IL_0146: { // status = "Request Aborted!"; __this->set_status_6(_stringLiteral208FB3837B215C39A2EF71DECFFC19C9FDB72F27); // Debug.LogWarning(status); String_t* L_39 = __this->get_status_6(); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_LogWarning_m24085D883C9E74D7AB423F0625E13259923960E7(L_39, /*hidden argument*/NULL); // request = null; __this->set_request_5((HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 *)NULL); // break; return; } IL_0164: { // status = "Connection Timed Out!"; __this->set_status_6(_stringLiteral4282F0EC210266935AD8C4F278FE8699B66C189E); // Debug.LogError(status); String_t* L_40 = __this->get_status_6(); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_LogError_m8850D65592770A364D494025FF3A73E8D4D70485(L_40, /*hidden argument*/NULL); // request = null; __this->set_request_5((HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 *)NULL); // break; return; } IL_0182: { // status = "Processing the request Timed Out!"; __this->set_status_6(_stringLiteral6FFB662544B7CC75E90E30E825D1C3A41E593CBC); // Debug.LogError(status); String_t* L_41 = __this->get_status_6(); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_LogError_m8850D65592770A364D494025FF3A73E8D4D70485(L_41, /*hidden argument*/NULL); // request = null; __this->set_request_5((HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 *)NULL); // }); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ArrayMetadata_set_IsArray_m9533C18110BC3274D78D34BE249DD05C5A16CB93_inline (ArrayMetadata_tF0CA4EA5DDA5A3A4E7FFF5549F3807D19592A4B9 * __this, bool ___value0, const RuntimeMethod* method) { { // set { is_array = value; } bool L_0 = ___value0; __this->set_is_array_1(L_0); // set { is_array = value; } return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ArrayMetadata_set_IsList_mBCCA4DB64C9A4B97347EC5A93A34C772E92841E5_inline (ArrayMetadata_tF0CA4EA5DDA5A3A4E7FFF5549F3807D19592A4B9 * __this, bool ___value0, const RuntimeMethod* method) { { // set { is_list = value; } bool L_0 = ___value0; __this->set_is_list_2(L_0); // set { is_list = value; } return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ArrayMetadata_set_ElementType_mDAEF33B6B16B6B2F3B71A53067CE42D6D53EA49B_inline (ArrayMetadata_tF0CA4EA5DDA5A3A4E7FFF5549F3807D19592A4B9 * __this, Type_t * ___value0, const RuntimeMethod* method) { { // set { element_type = value; } Type_t * L_0 = ___value0; __this->set_element_type_0(L_0); // set { element_type = value; } return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ObjectMetadata_set_IsDictionary_m35539466DA7C3812A45773BF4157FB02219F82DD_inline (ObjectMetadata_tCC476FD33189C604471B5B5D5ECF7AF098B0DB62 * __this, bool ___value0, const RuntimeMethod* method) { { // set { is_dictionary = value; } bool L_0 = ___value0; __this->set_is_dictionary_1(L_0); // set { is_dictionary = value; } return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * StringComparer_get_OrdinalIgnoreCase_m8FD38206B6FFE866E97CE4DF84B037F0DF175288_inline (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_il2cpp_TypeInfo_var); StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * L_0 = ((StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_StaticFields*)il2cpp_codegen_static_fields_for(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_il2cpp_TypeInfo_var))->get__ordinalIgnoreCase_3(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ObjectMetadata_set_Properties_m29119CB8832BB41FAA57A97E5EF00B5911C22B3C_inline (ObjectMetadata_tCC476FD33189C604471B5B5D5ECF7AF098B0DB62 * __this, RuntimeObject* ___value0, const RuntimeMethod* method) { { // set { properties = value; } RuntimeObject* L_0 = ___value0; __this->set_properties_2(L_0); // set { properties = value; } return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ObjectMetadata_set_ElementType_m2BD099120F753C6DB400A0931FACBD985A8D185B_inline (ObjectMetadata_tCC476FD33189C604471B5B5D5ECF7AF098B0DB62 * __this, Type_t * ___value0, const RuntimeMethod* method) { { // set { element_type = value; } Type_t * L_0 = ___value0; __this->set_element_type_0(L_0); // set { element_type = value; } return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* ObjectMetadata_get_Properties_m807521480FEA523527B13A27B9835B920159547A_inline (ObjectMetadata_tCC476FD33189C604471B5B5D5ECF7AF098B0DB62 * __this, const RuntimeMethod* method) { { // get { return properties; } RuntimeObject* L_0 = __this->get_properties_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t JsonReader_get_Token_m99F431E80F34EC42D60383A0C5D664C88BB6DBE2_inline (JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * __this, const RuntimeMethod* method) { { // get { return token; } int32_t L_0 = __this->get_token_14(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * JsonReader_get_Value_m41A4AF5CA872B017E062E2CCCEB83398F5B4F419_inline (JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * __this, const RuntimeMethod* method) { { // get { return token_value; } RuntimeObject * L_0 = __this->get_token_value_13(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ArrayMetadata_get_IsArray_m73E4CD96BA590BF64CCFA708DE4C6719BB129C3E_inline (ArrayMetadata_tF0CA4EA5DDA5A3A4E7FFF5549F3807D19592A4B9 * __this, const RuntimeMethod* method) { { // get { return is_array; } bool L_0 = __this->get_is_array_1(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ArrayMetadata_get_IsList_m81203F474BBD2F7CF104919580A49A8F9AD6D09A_inline (ArrayMetadata_tF0CA4EA5DDA5A3A4E7FFF5549F3807D19592A4B9 * __this, const RuntimeMethod* method) { { // get { return is_list; } bool L_0 = __this->get_is_list_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ObjectMetadata_get_IsDictionary_mB0EEA3B92DA70BD1EACE8198B060EB69359F3EEA_inline (ObjectMetadata_tCC476FD33189C604471B5B5D5ECF7AF098B0DB62 * __this, const RuntimeMethod* method) { { // get { return is_dictionary; } bool L_0 = __this->get_is_dictionary_1(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool JsonReader_get_SkipNonMembers_m7502484B14185A0B54F14903DC857CE1F8195CEC_inline (JsonReader_t74E3C8119C5DF494022C19A47CC491CCA712D340 * __this, const RuntimeMethod* method) { { // get { return skip_non_members; } bool L_0 = __this->get_skip_non_members_12(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * JsonWriter_get_TextWriter_mDF41359E2D57495FB968A62FDA3D6FBB76B89B18_inline (JsonWriter_tE4E0A8D51FEAFA46BECDA611992E9234C897D09A * __this, const RuntimeMethod* method) { { // get { return writer; } TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_0 = __this->get_writer_10(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * DictionaryEntry_get_Key_m9A53AE1FA4CA017F0A7353F71658A9C36079E1D7_inline (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get__key_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * DictionaryEntry_get_Value_m2D618D04C0A8EA2A065B171F528FEA98B059F9BC_inline (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get__value_1(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JsonProtocol_set_Encoder_mDD345DB736CA7EFB764059FAA0BF3797D1CD5E61_inline (JsonProtocol_tB82FEAFDEBC166F53B523853DA071388D57D79A4 * __this, RuntimeObject* ___value0, const RuntimeMethod* method) { { // public IEncoder Encoder { get; private set; } RuntimeObject* L_0 = ___value0; __this->set_U3CEncoderU3Ek__BackingField_1(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* JsonProtocol_get_Encoder_mCC02DE42ADBFD93DF4D54DF3C00D6616C13F1B8C_inline (JsonProtocol_tB82FEAFDEBC166F53B523853DA071388D57D79A4 * __this, const RuntimeMethod* method) { { // public IEncoder Encoder { get; private set; } RuntimeObject* L_0 = __this->get_U3CEncoderU3Ek__BackingField_1(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline (String_t* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_m_stringLength_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Lexer_get_AllowComments_m1A6C52BB3E9393E290FCABF5BAFBF01B3F2E5F65_inline (Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC * __this, const RuntimeMethod* method) { { // get { return allow_comments; } bool L_0 = __this->get_allow_comments_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Lexer_set_AllowComments_mF05F92B7429CC2BD0F9B0B79F2C1F69CF8DCBB96_inline (Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC * __this, bool ___value0, const RuntimeMethod* method) { { // set { allow_comments = value; } bool L_0 = ___value0; __this->set_allow_comments_2(L_0); // set { allow_comments = value; } return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Lexer_get_AllowSingleQuotedStrings_m1EC6609CB289B9294B10E28804182CC9DCD25353_inline (Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC * __this, const RuntimeMethod* method) { { // get { return allow_single_quoted_strings; } bool L_0 = __this->get_allow_single_quoted_strings_3(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Lexer_set_AllowSingleQuotedStrings_mFB60C851F11B2077892BC1F2812F3B7DBAAB404B_inline (Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC * __this, bool ___value0, const RuntimeMethod* method) { { // set { allow_single_quoted_strings = value; } bool L_0 = ___value0; __this->set_allow_single_quoted_strings_3(L_0); // set { allow_single_quoted_strings = value; } return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Lexer_get_StringValue_mE578D55A6FC8B0E40A347E23F78D7EB1163C94FE_inline (Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC * __this, const RuntimeMethod* method) { { // get { return string_value; } String_t* L_0 = __this->get_string_value_11(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Lexer_get_EndOfInput_m376873227BFFB7D9FAAC5C470BA8F57D3D6B0F25_inline (Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC * __this, const RuntimeMethod* method) { { // get { return end_of_input; } bool L_0 = __this->get_end_of_input_4(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Lexer_get_Token_mA19AE42604DC98E18C968FED3898062A88494D26_inline (Lexer_tD33701B5D4609BBCE8D9A481525FEBDCC7074DAC * __this, const RuntimeMethod* method) { { // get { return token; } int32_t L_0 = __this->get_token_12(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* ParametersWithIV_get_Parameters_m2B5701D391CF607292513A855051EEF3D8E705E8_inline (ParametersWithIV_tD5AFAE97C3F7DA4A08BC278F9AC969DA957E87A0 * __this, const RuntimeMethod* method) { { // get { return parameters; } RuntimeObject* L_0 = __this->get_parameters_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* HeaderValue_get_Value_mE536CEFE35202D5F10D7594E0A12C6D46CA8DFFF_inline (HeaderValue_tB19EA8836300DA053E7A6E082DD196DA23BA7F77 * __this, const RuntimeMethod* method) { { // public string Value { get; set; } String_t* L_0 = __this->get_U3CValueU3Ek__BackingField_1(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void KeepAliveHeader_set_TimeOut_m1AEE19DDC7E9E47380B2685C13741228CC94FDAA_inline (KeepAliveHeader_t93C1CC9FD7D51F432D9A50741F9BC0EF59166924 * __this, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___value0, const RuntimeMethod* method) { { // public TimeSpan TimeOut { get; private set; } TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_0 = ___value0; __this->set_U3CTimeOutU3Ek__BackingField_0(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void KeepAliveHeader_set_MaxRequests_m872D60B7FDEB997BD1989D3BE73F500D43252EDD_inline (KeepAliveHeader_t93C1CC9FD7D51F432D9A50741F9BC0EF59166924 * __this, int32_t ___value0, const RuntimeMethod* method) { { // public int MaxRequests { get; private set; } int32_t L_0 = ___value0; __this->set_U3CMaxRequestsU3Ek__BackingField_1(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* DerObjectIdentifier_get_Id_m1A4618B1F7ED8630EDC76DF95D8C7086F1E616D6_inline (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * __this, const RuntimeMethod* method) { { // get { return identifier; } String_t* L_0 = __this->get_identifier_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * KekRecipientInfo_get_KeyEncryptionAlgorithm_m71694E9DAB5E4EA5BAF3D026B903143B14992D2B_inline (KekRecipientInfo_t49DC4E62062A5E6E070BCBE2704D5AE43A4A7A25 * __this, const RuntimeMethod* method) { { // get { return keyEncryptionAlgorithm; } AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_0 = __this->get_keyEncryptionAlgorithm_4(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973 * KekRecipientInfo_get_KekID_mFDEA56B9B41F238F47CE50D2D245727C2B79717E_inline (KekRecipientInfo_t49DC4E62062A5E6E070BCBE2704D5AE43A4A7A25 * __this, const RuntimeMethod* method) { { // get { return kekID; } KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973 * L_0 = __this->get_kekID_3(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * KekIdentifier_get_KeyIdentifier_mBB47FC76F62C7B823281E2F43DDA5348DE3CF7FB_inline (KekIdentifier_t5EE77FBF1344F5754EA9FE6ABF82CE7904CB0973 * __this, const RuntimeMethod* method) { { // get { return keyIdentifier; } Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_0 = __this->get_keyIdentifier_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * KekRecipientInfo_get_EncryptedKey_mA9A93096DAB4F1D684D70167B84B0A25DF310A0C_inline (KekRecipientInfo_t49DC4E62062A5E6E070BCBE2704D5AE43A4A7A25 * __this, const RuntimeMethod* method) { { // get { return encryptedKey; } Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_0 = __this->get_encryptedKey_5(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Asn1TaggedObject_get_TagNo_m74349C4325A7ADC53200F7A483A878E6B9D53379_inline (Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0 * __this, const RuntimeMethod* method) { { // get { return tagNo; } int32_t L_0 = __this->get_tagNo_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * AsymmetricCipherKeyPair_get_Public_mA3C7A50C4C75C3A9003ACC9454F6B941AED2EB98_inline (AsymmetricCipherKeyPair_t975F15F5FD9FD35454E104A768061EAFB010D929 * __this, const RuntimeMethod* method) { { // get { return publicParameter; } AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * L_0 = __this->get_publicParameter_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * AsymmetricCipherKeyPair_get_Private_m74718BBBC8CD464CA09BC88F15ED38156A92280A_inline (AsymmetricCipherKeyPair_t975F15F5FD9FD35454E104A768061EAFB010D929 * __this, const RuntimeMethod* method) { { // get { return privateParameter; } AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * L_0 = __this->get_privateParameter_1(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * TbsCertificateStructure_get_Issuer_m7162E5B96B4DC11DC1B815397BFD54D1EABCE1CD_inline (TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3 * __this, const RuntimeMethod* method) { { // get { return issuer; } X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * L_0 = __this->get_issuer_6(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * TbsCertificateStructure_get_SerialNumber_m2179DC4D65B461A04DBFD7415433E06662FCF165_inline (TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3 * __this, const RuntimeMethod* method) { { // get { return serialNumber; } DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * L_0 = __this->get_serialNumber_4(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * SubjectPublicKeyInfo_get_AlgorithmID_mC6D1FC4034C33A9CE53D197B4704A328D8E6AF52_inline (SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB * __this, const RuntimeMethod* method) { { // get { return algID; } AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_0 = __this->get_algID_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * SubjectPublicKeyInfo_get_PublicKeyData_mE74361F41A82225A09A9A4B95E37C6F5C337D7A4_inline (SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB * __this, const RuntimeMethod* method) { { // get { return keyData; } DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * L_0 = __this->get_keyData_3(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * KeyAgreeRecipientInfo_get_RecipientEncryptedKeys_m3A46FED2E3B37B52C8B3A1C81B03C6AA30FEBDC0_inline (KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC * __this, const RuntimeMethod* method) { { // get { return recipientEncryptedKeys; } Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_0 = __this->get_recipientEncryptedKeys_6(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyAgreeRecipientIdentifier_tBA5E98B2A6C72F3799020F0A9D1C465116A7A28A * RecipientEncryptedKey_get_Identifier_mBD0A3CD8FCD8F7287B890C4981354A8B33C27728_inline (RecipientEncryptedKey_tED14E5C321F7687BA4201D41E15DE457A7D56BE2 * __this, const RuntimeMethod* method) { { // get { return identifier; } KeyAgreeRecipientIdentifier_tBA5E98B2A6C72F3799020F0A9D1C465116A7A28A * L_0 = __this->get_identifier_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64 * KeyAgreeRecipientIdentifier_get_IssuerAndSerialNumber_mE5BF14ED071126E538E4323774F1EBEB9D65F6EE_inline (KeyAgreeRecipientIdentifier_tBA5E98B2A6C72F3799020F0A9D1C465116A7A28A * __this, const RuntimeMethod* method) { { // get { return issuerSerial; } IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64 * L_0 = __this->get_issuerSerial_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * IssuerAndSerialNumber_get_Name_m1A73B0BF1416F5634C5CF376455FC28CC1C9621A_inline (IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64 * __this, const RuntimeMethod* method) { { // get { return name; } X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * L_0 = __this->get_name_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void X509CertStoreSelector_set_Issuer_mF45C905EE0E690870660F61DB38A4011AE4E666C_inline (X509CertStoreSelector_tDC9D1189AE7E9E64F71CF541A2D316686E4E2996 * __this, X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * ___value0, const RuntimeMethod* method) { { // set { issuer = value; } X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * L_0 = ___value0; __this->set_issuer_6(L_0); // set { issuer = value; } return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * IssuerAndSerialNumber_get_SerialNumber_mF481C0E59D4CAEB309CE8D4E73C372E65FAD48EB_inline (IssuerAndSerialNumber_t7BA2BEB7700C21700A17F3AD6A5C67B872E7DE64 * __this, const RuntimeMethod* method) { { // get { return serialNumber; } DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * L_0 = __this->get_serialNumber_3(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void X509CertStoreSelector_set_SerialNumber_m8721FD1AD35B54F1E191B115F5335EE7A07A90F5_inline (X509CertStoreSelector_tDC9D1189AE7E9E64F71CF541A2D316686E4E2996 * __this, BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___value0, const RuntimeMethod* method) { { // set { serialNumber = value; } BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_0 = ___value0; __this->set_serialNumber_10(L_0); // set { serialNumber = value; } return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RecipientKeyIdentifier_tCDD2B03857B94474CBA49C1E4FDC30DA4C26F492 * KeyAgreeRecipientIdentifier_get_RKeyID_m70C71C5CC9C18FDC5BF4DE679B3BC8EE579A992C_inline (KeyAgreeRecipientIdentifier_tBA5E98B2A6C72F3799020F0A9D1C465116A7A28A * __this, const RuntimeMethod* method) { { // get { return rKeyID; } RecipientKeyIdentifier_tCDD2B03857B94474CBA49C1E4FDC30DA4C26F492 * L_0 = __this->get_rKeyID_3(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * RecipientKeyIdentifier_get_SubjectKeyIdentifier_mCA5B55F5F0C7EF3E611D0185B4701CC5A74A1EA5_inline (RecipientKeyIdentifier_tCDD2B03857B94474CBA49C1E4FDC30DA4C26F492 * __this, const RuntimeMethod* method) { { // get { return subjectKeyIdentifier; } Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_0 = __this->get_subjectKeyIdentifier_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * RecipientEncryptedKey_get_EncryptedKey_mF42A81C64202F2062416BD071A7DE04986B08251_inline (RecipientEncryptedKey_tED14E5C321F7687BA4201D41E15DE457A7D56BE2 * __this, const RuntimeMethod* method) { { // get { return encryptedKey; } Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_0 = __this->get_encryptedKey_3(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * KeyAgreeRecipientInfo_get_KeyEncryptionAlgorithm_m978F34E7C0963D5CDE891904BD207EDC068CE9D8_inline (KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC * __this, const RuntimeMethod* method) { { // get { return keyEncryptionAlgorithm; } AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_0 = __this->get_keyEncryptionAlgorithm_5(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* SubjectKeyIdentifier_GetKeyIdentifier_m502BB5B30C0817ECCB75870AF8E69C76E795709F_inline (SubjectKeyIdentifier_t572BF9E7277584519251C3E26F9015A145A7FF62 * __this, const RuntimeMethod* method) { { // return keyIdentifier; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = __this->get_keyIdentifier_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * OriginatorPublicKey_get_PublicKey_mFEC52A32484C2D8341D71B0EC42C00A629C544FD_inline (OriginatorPublicKey_tCFBC1D4932A0818726AED8E4B91FFD9AE1C029F5 * __this, const RuntimeMethod* method) { { // get { return mPublicKey; } DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * L_0 = __this->get_mPublicKey_3(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * KeyAgreeRecipientInfo_get_UserKeyingMaterial_mD37E475EC8E3CBD8E9337338187D4F0860CFC6E0_inline (KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC * __this, const RuntimeMethod* method) { { // get { return ukm; } Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_0 = __this->get_ukm_4(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR OriginatorPublicKey_tCFBC1D4932A0818726AED8E4B91FFD9AE1C029F5 * MQVuserKeyingMaterial_get_EphemeralPublicKey_m50727D7ADFA6818FEF31BA1B167F6AB4B4BC8300_inline (MQVuserKeyingMaterial_t0321EDE63C88A779858E39E0D66B18497BCF6A42 * __this, const RuntimeMethod* method) { { // get { return ephemeralPublicKey; } OriginatorPublicKey_tCFBC1D4932A0818726AED8E4B91FFD9AE1C029F5 * L_0 = __this->get_ephemeralPublicKey_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR OriginatorIdentifierOrKey_t391EC78D0FD29ED45DCF5BFF9AC5BABA8A005603 * KeyAgreeRecipientInfo_get_Originator_m3CAAD9DEAA56A26CCDEE8263D275EF2CD7009999_inline (KeyAgreeRecipientInfo_t564061DA87EDB364DF4FBD7CA50B2EB71D8F34EC * __this, const RuntimeMethod* method) { { // get { return originator; } OriginatorIdentifierOrKey_t391EC78D0FD29ED45DCF5BFF9AC5BABA8A005603 * L_0 = __this->get_originator_3(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool AsymmetricKeyParameter_get_IsPrivate_m4A94334067C062D7991228DDB6CBFE57A5D8244B_inline (AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * __this, const RuntimeMethod* method) { { // get { return privateKey; } bool L_0 = __this->get_privateKey_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB * TbsCertificateStructure_get_SubjectPublicKeyInfo_m13E8936322F0795F666E00D41974E08E9F9D252D_inline (TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3 * __this, const RuntimeMethod* method) { { // get { return subjectPublicKeyInfo; } SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB * L_0 = __this->get_subjectPublicKeyInfo_10(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * KeyTransRecipientInfo_get_KeyEncryptionAlgorithm_mC0911B8C9E051440D2E2E12ECD4B9A3302A54AEE_inline (KeyTransRecipientInfo_t5560A4301685119C4400C494D4B8D2D5BCF538A0 * __this, const RuntimeMethod* method) { { // get { return keyEncryptionAlgorithm; } AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_0 = __this->get_keyEncryptionAlgorithm_4(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RecipientIdentifier_tBC500D2CDE60B57F8CB815C4599D2EE019A2E5C1 * KeyTransRecipientInfo_get_RecipientIdentifier_m0D266D37414056F3773B123054146FE8C1A71C33_inline (KeyTransRecipientInfo_t5560A4301685119C4400C494D4B8D2D5BCF538A0 * __this, const RuntimeMethod* method) { { // get { return rid; } RecipientIdentifier_tBC500D2CDE60B57F8CB815C4599D2EE019A2E5C1 * L_0 = __this->get_rid_3(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * KeyTransRecipientInfo_get_EncryptedKey_mB7EC3140CE2F08DE089A1DE4FD4C52C4B1397E05_inline (KeyTransRecipientInfo_t5560A4301685119C4400C494D4B8D2D5BCF538A0 * __this, const RuntimeMethod* method) { { // get { return encryptedKey; } Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_0 = __this->get_encryptedKey_5(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_t9C4606F69CB3833861EC4E41C2E8DA5647D07189 * KeyValuePairList_get_Values_mE8EA12BD772DCFDAFAF1D435DFFAEB26A31F7D42_inline (KeyValuePairList_tFB05264C65689BEB0A93912EE115844C33E3FF0F * __this, const RuntimeMethod* method) { { // public List Values { get; protected set; } List_1_t9C4606F69CB3833861EC4E41C2E8DA5647D07189 * L_0 = __this->get_U3CValuesU3Ek__BackingField_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* HeaderValue_get_Key_mAF2366B71EAC8430909C5CC2DBD6E855ED62347A_inline (HeaderValue_tB19EA8836300DA053E7A6E082DD196DA23BA7F77 * __this, const RuntimeMethod* method) { { // public string Key { get; set; } String_t* L_0 = __this->get_U3CKeyU3Ek__BackingField_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float AeroplaneController_get_Altitude_m4E875DCD8BCB99EE7F07DA2E8762AFD46BE541FE_inline (AeroplaneController_t5A626F82B24EEB823D5033828D7ACAD34DF8C103 * __this, const RuntimeMethod* method) { { // public float Altitude { get; private set; } // The aeroplane's height above the ground. float L_0 = __this->get_U3CAltitudeU3Ek__BackingField_18(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t HTTPRequest_get_State_mA2343B8DDC11F4489B724FDC12DD6671C55DA82A_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method) { { // public HTTPRequestStates State { get; internal set; } int32_t L_0 = __this->get_U3CStateU3Ek__BackingField_28(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPRequest_set_Callback_mFF8B458F232390A69C19361510FC68B7B7486D01_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, OnRequestFinishedDelegate_t4E35BB5277ED27A8B43D1987DE7F3B47772018B4 * ___value0, const RuntimeMethod* method) { { // public OnRequestFinishedDelegate Callback { get; set; } OnRequestFinishedDelegate_t4E35BB5277ED27A8B43D1987DE7F3B47772018B4 * L_0 = ___value0; __this->set_U3CCallbackU3Ek__BackingField_11(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool HTTPResponse_get_IsStreamingFinished_m659F9CA579047CEBD3CC9E5484F08667FF5D94E6_inline (HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * __this, const RuntimeMethod* method) { { // public bool IsStreamingFinished { get; internal set; } bool L_0 = __this->get_U3CIsStreamingFinishedU3Ek__BackingField_8(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t HTTPResponse_get_StatusCode_m3D1C85F140105D51707DADCD3A376621CFA670DF_inline (HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * __this, const RuntimeMethod* method) { { // public int StatusCode { get; protected set; } int32_t L_0 = __this->get_U3CStatusCodeU3Ek__BackingField_5(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* HTTPResponse_get_Message_m1898E05F9D431E994A4D955B9B6C92A3C98A9383_inline (HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * __this, const RuntimeMethod* method) { { // public string Message { get; protected set; } String_t* L_0 = __this->get_U3CMessageU3Ek__BackingField_6(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Exception_t * HTTPRequest_get_Exception_mEDB50793ED3C8EE527D30B823A15EC39C657B434_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method) { { // public Exception Exception { get; internal set; } Exception_t * L_0 = __this->get_U3CExceptionU3Ek__BackingField_19(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Stack_1_get_Count_mFD1C100DE65847CAB033057C77027AA5DB427B54_gshared_inline (Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__size_1(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_m7B5E3383CB67492E573AC0D875ED82A51350F188_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, int32_t ___index0, const RuntimeMethod* method) { { int32_t L_0 = ___index0; int32_t L_1 = (int32_t)__this->get__size_2(); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_000e; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4841366ABC2B2AFA37C10900551D7E07522C0929(/*hidden argument*/NULL); } IL_000e: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__items_1(); int32_t L_3 = ___index0; RuntimeObject * L_4; L_4 = IL2CPP_ARRAY_UNSAFE_LOAD((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_2, (int32_t)L_3); return (RuntimeObject *)L_4; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* Array_Empty_TisRuntimeObject_m002765312BF306B1B3B5BFAB9550C0A2A1820CDA_gshared_inline (const RuntimeMethod* method) { { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = ((EmptyArray_1_tBF73225DFA890366D579424FE8F40073BF9FBAD4_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__size_2(); return (int32_t)L_0; } }