#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 VirtualActionInvoker2 { typedef void (*Action)(void*, T1, T2, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template 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 VirtualActionInvoker4 { typedef void (*Action)(void*, T1, T2, T3, T4, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method); } }; template 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 VirtualFuncInvoker3 { typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method); } }; template 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 InterfaceActionInvoker3 { typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2, T3 p3) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method); } }; template 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); } }; // System.Action`1 struct Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC; // System.Action`1 struct Action_1_t41459F578D5FCF151500CBC8CF9276BDC6C984FE; // System.Action`2 struct Action_2_t110B526D14830B3074682426066849C15C290882; // System.Action`2 struct Action_2_tB1E900EE56707598576A70203857030B4D9C936C; // System.Action`2 struct Action_2_t502726B4D7373B9926DF64C2ADAAA5BD8A314062; // System.Action`3 struct Action_3_t2B590811781714B7E9AEF6A3F3962EEC9ED5FF32; // BestHTTP.Extensions.CircularBuffer`1 struct CircularBuffer_1_t0EEE361509A7632E72FAA9678BD22A0E639DEC88; // System.Comparison`1 struct Comparison_1_t47C8B3739FFDD51D29B281A2FD2C36A57DDF9E38; // System.Collections.Generic.Dictionary`2> struct Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086; // System.Func`2 struct Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C; // System.Func`2 struct Func_2_t060A650AB95DEF14D4F579FA5999ACEFEEE0FD82; // System.Func`4 struct Func_4_t0EA5243FC4B656A18B7AC7B130FD78666AA9FE84; // System.Collections.Generic.List`1 struct List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE; // System.Collections.Generic.List`1 struct List_1_t39946D94B66FAE9B0DED5D3A84AD116AF9DDDCC1; // System.Collections.Generic.List`1 struct List_1_tAD12AAEF731C82149A38A979F0E10F94A6F3F913; // System.Collections.Generic.List`1 struct List_1_t34AA4AF4E7352129CA58045901530E41445AC16D; // System.Collections.Generic.List`1 struct List_1_tF9D8E572A8599785D6C36AD7BDC592752B89E0A1; // System.Collections.Generic.List`1 struct List_1_tEF3D2378B547F18609950BEABF54AF34FBBC9733; // System.Collections.Generic.List`1 struct List_1_t6D0A10F47F3440798295D2FFFC6D016477AF38E5; // System.Collections.Generic.List`1 struct List_1_t2B519B7CD269238D4C71A96E4B005CF88488FACA; // System.Collections.Generic.List`1 struct List_1_t9C4606F69CB3833861EC4E41C2E8DA5647D07189; // System.Collections.Generic.List`1 struct List_1_t857A27AA47EED217A2CFE04C0C9B7FCDDE0C284F; // System.Collections.Generic.List`1 struct List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5; // System.Collections.Generic.List`1 struct List_1_t367B604D3EA3D6A9EC95A32A521EF83F5DA9B447; // System.Collections.Generic.List`1 struct List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3; // System.Collections.Generic.List`1 struct List_1_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0; // System.Collections.Generic.List`1 struct List_1_tC68C1FDC8957D84E9A7C1DB169384F9F4A1D686A; // System.Collections.Generic.List`1 struct List_1_t3F9EF315AB2F77BBF0220562A966A7A60FD0DF56; // JCUnityLib.Singleton`1 struct Singleton_1_t071853BF0705B5B5B8F435CF6F7E4AE60E60507D; // JCUnityLib.Singleton`1 struct Singleton_1_t0719B3A1BB0D5839C1D99BAA5C727447D38C8302; // UnityEngine.UI.CoroutineTween.TweenRunner`1 struct TweenRunner_1_tD84B9953874682FCC36990AF2C54D748293908F3; // 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; // System.Char[] struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.ContentInfo[] struct ContentInfoU5BU5D_tB242C6E38BA3C72A5125CA177D6042A541D63873; // System.Delegate[] struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier[] struct DerObjectIdentifierU5BU5D_t801513A53C26B675A2EC1C7456321775EDCC225F; // BestHTTP.Extensions.HeaderValue[] struct HeaderValueU5BU5D_tB17E7E2A7576BB62B119BF7E73C8E14A2AC611B6; // System.Int32[] struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32; // System.IntPtr[] struct IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6; // System.Object[] struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE; // UnityEngine.ParticleSystem[] struct ParticleSystemU5BU5D_t9786AE8909F75284FDCB6BAD155E24AAFDB88CC7; // UnityEngine.EventSystems.RaycastResult[] struct RaycastResultU5BU5D_t55B9DF597EFA3BE063604C0950E370D850283B9D; // UnityEngine.UI.Selectable[] struct SelectableU5BU5D_tECF9F5BDBF0652A937D18F10C883EFDAE2E62535; // System.Diagnostics.StackTrace[] struct StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971; // System.String[] struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A; // UnityEngine.Transform[] struct TransformU5BU5D_t7821C0520CC567C0A069329C01AE9C058C7E3F1D; // System.Type[] struct TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755; // UnityEngine.UIVertex[] struct UIVertexU5BU5D_tE3D523C48DFEBC775876720DE2539A79FB7E5E5A; // System.UInt32[] struct UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF; // UnityEngine.Vector2[] struct Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA; // UnityEngine.Vector3[] struct Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs.X509CertificateEntry[] struct X509CertificateEntryU5BU5D_tA2C8111B89B14B0A674CCA7C45C79819015D180B; // UnityStandardAssets.SceneUtils.ParticleSceneControls/DemoParticleSystem[] struct DemoParticleSystemU5BU5D_tECC3FBA90A93A35A05B79DFD1CA338C08FEDD8B1; // UnityStandardAssets.Cameras.AbstractTargetFollower struct AbstractTargetFollower_tE4043836A9382BE340DA022ECD069C9489F84D47; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier struct AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9; // UnityEngine.UI.AnimationTriggers struct AnimationTriggers_tF38CA7FA631709E096B57D732668D86081F44C11; // System.ArgumentException struct ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00; // System.ArgumentNullException struct ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB; // 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.Crypto.Operators.Asn1SignatureFactory struct Asn1SignatureFactory_t82880FE5F99692E8C940551308221AA7CAB2682A; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1TaggedObject struct Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Operators.Asn1VerifierFactoryProvider struct Asn1VerifierFactoryProvider_t4AB1B332A609AF2476DA0AE60D91F1563C1B564D; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair struct AsymmetricCipherKeyPair_t975F15F5FD9FD35454E104A768061EAFB010D929; // BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs.AsymmetricKeyEntry struct AsymmetricKeyEntry_t3CBF289F816398AE0AB9B8E7E8E31AECE8BD69AF; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter struct AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeCertificate struct AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.AuthenticatedSafe struct AuthenticatedSafe_t05262AA3FF2545528CE2F83A5DFAC25ECB03715E; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AuthorityKeyIdentifier struct AuthorityKeyIdentifier_t7B2B4140751EC0CA5D50488C12732095FDDAFC92; // System.Threading.AutoResetEvent struct AutoResetEvent_t3B012223F0DE760BF0D282C5F7B9084C6D3AF53D; // UnityEngine.EventSystems.BaseEventData struct BaseEventData_t722C48843CF21B50E06CC0E2E679415E38A7444E; // UnityEngine.EventSystems.BaseInputModule struct BaseInputModule_t395DEB45C225A941B2C831CBDB000A23E5899924; // UnityEngine.EventSystems.BaseRaycaster struct BaseRaycaster_tBC0FB2CBE6D3D40991EC20F689C43F76AD82A876; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.BasicConstraints struct BasicConstraints_t726ADB92F5098B7B4A50C44450B9A219DD48AA7C; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.BerOctetString struct BerOctetString_tA32D321D3EBCA6B4AC19A4D7F67831E029C7D29B; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.BerOutputStream struct BerOutputStream_t581AE0B357D4F0A4C0AC9C3870D0948E720B92F3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.BerSequence struct BerSequence_t06054EFD23083345199811B3DD646A2F94BA429F; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger struct BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9; // System.Reflection.Binder struct Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30; // BestHTTP.Extensions.BufferPoolMemoryStream struct BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B; // UnityEngine.UI.Button struct Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D; // UnityEngine.Camera struct Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C; // UnityEngine.Canvas struct Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA; // UnityEngine.CanvasRenderer struct CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.CertBag struct CertBag_tC3C2856E87424F3FF2F47F056DDE728F1F6C48AE; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.CertificateList struct CertificateList_tC023E9119F567E5589711845D4A07A59F9F26B34; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.CertificationRequest struct CertificationRequest_tF7C5762BE0EFC9D9F716ECC527DE8C9CF152DFCB; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.CertificationRequestInfo struct CertificationRequestInfo_t3041B37C5C290BADC8C0362E9283EA64455F0A2C; // 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.SecureProtocol.Org.BouncyCastle.Asn1.Cms.ContentInfo struct ContentInfo_tDB28674AE75D44B150F20D9A0D92CDB45F03675B; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.ContentInfo struct ContentInfo_tAA34B324F30DA6F788492750D8D7DC53CAB168E0; // BestHTTP.Authentication.Credentials struct Credentials_tD6C60AC7DFFD64212481FBCB4AF02846196F5CE8; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Date.DateTimeObject struct DateTimeObject_tD3D00CE2EC23DE07701C2169068B3D47BC4D5B54; // System.Text.DecoderFallback struct DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D; // BestHTTP.Decompression.Zlib.DeflateStream struct DeflateStream_t6D255105218D9D7440C9121FC55176D0C8D96B3B; // System.DelegateData struct DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString struct DerBitString_t305465793A47445626D3541AB8CEDE347D874524; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBmpString struct DerBmpString_tB0F02E1EFC0ACDBA2871E3A5E054DFA0D08A1444; // 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.DerOutputStream struct DerOutputStream_tCED4ABFA88DC5F83FB2CF5879416013FC726C305; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerPrintableString struct DerPrintableString_t9CB2F58B355139C935A860E004FA76FD3E381205; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerSequence struct DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerSet struct DerSet_tD36B7728620B3A88D0C4F3AC574F77B00AD49FAA; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerStringBase struct DerStringBase_t6A042D217F7D84704C0AFFD73317FB834F9A2FB5; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerTaggedObject struct DerTaggedObject_t88BB573E2BED5C1D2971741E012BB29FB0EB0C5E; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.DigestInfo struct DigestInfo_t939FF0DD1AE65995C2A92E52B6C76176C87A80FE; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X500.DirectoryString struct DirectoryString_tA030C0623BF9F46B387E4EA911636428CACB9F0F; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.DsaParameters struct DsaParameters_t47EC24036618CF52C5EF89B4929A5611E1F90245; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.DsaPrivateKeyParameters struct DsaPrivateKeyParameters_tA17C08FE231F8805F46FD353E879F63AB5BFAC98; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.DsaPublicKeyParameters struct DsaPublicKeyParameters_t2C9F1F39FCA3C0439000593CFF3F9AC89B9C3BA9; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.DsaValidationParameters struct DsaValidationParameters_tE4F9920A145D294FB8EBB06638CBAA4082C0A2C3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECCurve struct ECCurve_t850A42EEB1867F313B111B5A75430D443165B926; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ECDomainParameters struct ECDomainParameters_t497C366AFE7E3BFD490E52439C422AFDE91B12DC; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint struct ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters struct ECPrivateKeyParameters_t4F22D9A57AC7E670B61E096835534ECE1D259029; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Sec.ECPrivateKeyStructure struct ECPrivateKeyStructure_tE5B1C3407130141881B203E1431D28C8FBC0848E; // 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.Pkcs.EncryptedData struct EncryptedData_t723978F9CCFCFBC5C581B8075958D1CB6AA28604; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.EncryptedPrivateKeyInfo struct EncryptedPrivateKeyInfo_t71DA33AAC6A7D5DCFF48BE911C32F82B2FCF5F60; // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.EncryptionException struct EncryptionException_t12E7FCDEDFE1D27B6F076E0B23919DCF4BB0671B; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.EncryptionScheme struct EncryptionScheme_tF6D3E1C9A31370065D9A5D693F204C4EA218F757; // System.Enum struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections.EnumerableProxy struct EnumerableProxy_t026114E7F2A8CD4B2FA989282FE080341A4614E2; // UnityEngine.EventSystems.EventSystem struct EventSystem_t5DC458FCD0355A74CDCCE79287B38B9C4278E39C; // System.Exception struct Exception_t; // UnityEngine.UI.FontData struct FontData_t0F1E9B3ED8136CD40782AC9A6AFB69CAD127C738; // BestHTTP.Decompression.Zlib.GZipStream struct GZipStream_t99D1C296F7C62A7A6ED44277279DB835B13B37F1; // UnityEngine.GameObject struct GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.GeneralNames struct GeneralNames_tFF74584199F5CAD145B6DA73D7552D4B4FD101E5; // UnityEngine.UI.Graphic struct Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24; // UnityEngine.UI.GraphicRaycaster struct GraphicRaycaster_tD6DFF30B8B7F1E0DA9522A4F2BB9DC18E19638E6; // BestHTTP.Caching.HTTPCacheFileInfo struct HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA; // BestHTTP.Forms.HTTPFormBase struct HTTPFormBase_t62B2F52574B8465343CE4B246C6021BC42A45BF2; // BestHTTP.HTTPRequest struct HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42; // BestHTTP.HTTPResponse struct HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections.HashSet struct HashSet_t1E14FE66FBB0732BFDA0861868A51969563DF754; // System.Collections.Hashtable struct Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC; // BestHTTP.Extensions.HeaderParser struct HeaderParser_t90F5D0027B4A301EFD28FC225846CB32AB67AD5E; // BestHTTP.Extensions.HeaderValue struct HeaderValue_tB19EA8836300DA053E7A6E082DD196DA23BA7F77; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IAsymmetricBlockCipher struct IAsymmetricBlockCipher_tD85974B803F5DD17452DA8A4405647D1B2942F23; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBufferedCipher struct IBufferedCipher_t0E3B75F928671B207A069CE6C2A95F27FC41D915; // 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; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IDigest struct IDigest_tB278FE56BD588CA024BB5476E2A7468F836C78C6; // System.Collections.IEnumerable struct IEnumerable_t47A618747A1BB2A868710316F7372094849163A2; // System.Collections.IEnumerator struct IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105; // System.IFormatProvider struct IFormatProvider_tF2AECC4B14F41D36718920D67F930CED940412DF; // System.Collections.IList struct IList_tB15A9D6625D09661D6E47976BB626C703EC81910; // BestHTTP.Logger.ILogger struct ILogger_t095358641393F797166A40BDE9240B6A2C53D4AC; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IMac struct IMac_tF574CEDFF4E3D5D95581FD8DF86EF985AE61B37C; // System.IO.IOException struct IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA; // BestHTTP.SecureProtocol.Org.BouncyCastle.OpenSsl.IPasswordFinder struct IPasswordFinder_t5F34C28411DC73687421897FD73ACC4ED2196030; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.IRandomGenerator struct IRandomGenerator_tA534F4AC93EEA5CDB578DDE58AE9A1E9C7B7487A; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections.ISet struct ISet_t5A23607F3EDC64EF08417F0C1A4212EB39469049; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ISignatureFactory struct ISignatureFactory_t1572BDBCE1A2741BB5DF8A6BE3FC219B7722135B; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ISigner struct ISigner_tCCA744D5676F335002A9182CD1A47660B2100EEA; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IVerifierFactory struct IVerifierFactory_t32298618FCE25BBB4B1B58D97DE26E1C64CA010F; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IVerifierFactoryProvider struct IVerifierFactoryProvider_tA6D5743A235196B76EBD51FFBA49A1C8C08DA539; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IWrapper struct IWrapper_t29A9E044AAEEECE9E2FA8A8A61F76B0F50347B39; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.IX509AttributeCertificate struct IX509AttributeCertificate_t96382508C6487F5655E190C16E2BCB3486645DA8; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.InvalidCipherTextException struct InvalidCipherTextException_tCB4102F353576109DF6723BAD28806C82D61BC8D; // UnityEngine.Events.InvokableCallList struct InvokableCallList_tB7C66AA0C00F9C102C8BDC17A144E569AC7527A9; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.KeyDerivationFunc struct KeyDerivationFunc_t77081A2881F6F03B2B805E840C798E3AC7ACA213; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.KeyParameter struct KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC; // BestHTTP.Extensions.KeyValuePairList struct KeyValuePairList_tFB05264C65689BEB0A93912EE115844C33E3FF0F; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.MD2Digest struct MD2Digest_tE97575A1FE161C3EF2E20EB0566460A3050492C5; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.MD5Digest struct MD5Digest_t928D0A068D9E4C50824CD21F75ED29809466123B; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.MacData struct MacData_tE23C59E80FD08E069EB579A0C3952D4E715C8C95; // UnityEngine.Material struct Material_t8927C00353A72755313F046D0CE85178AE8218EE; // System.Reflection.MemberFilter struct MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81; // MenuBackController struct MenuBackController_t545B27D5E7BCA7C609808B7960239E0FC034ADA4; // UnityEngine.Mesh struct Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6; // System.Reflection.MethodInfo struct MethodInfo_t; // BestHTTP.SecureProtocol.Org.BouncyCastle.OpenSsl.MiscPemGenerator struct MiscPemGenerator_t3A2794F71D43786161FE86028D9238FCBDEC3153; // UnityEngine.MonoBehaviour struct MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.SigI.NameOrPseudonym struct NameOrPseudonym_tF6044721E0BAB1EB8E314834B6467F3B24BCCCE3; // UnityEngine.Object struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A; // 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.Crypto.Generators.OpenSslPbeParametersGenerator struct OpenSslPbeParametersGenerator_tFF5C2D9DDE99EF1102EC81C40F9EAD9462B3FDF3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ParametersWithIV struct ParametersWithIV_tD5AFAE97C3F7DA4A08BC278F9AC969DA957E87A0; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ParametersWithRandom struct ParametersWithRandom_t557A9B373F5F2998BE6C0461812FBE4EB73425AC; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ParametersWithSalt struct ParametersWithSalt_tF495B61AEB2FDA838029B1257F7DEF8B127DAF62; // UnityStandardAssets.SceneUtils.ParticleSceneControls struct ParticleSceneControls_t8535BFA9A38CB3210524D0D7BA2EDD95363DC246; // UnityEngine.ParticleSystem struct ParticleSystem_t2F526CCDBD3512879B3FCBE04BCAB20D7B4F391E; // UnityStandardAssets.Utility.ParticleSystemDestroyer struct ParticleSystemDestroyer_tC58A4B7AC857DA72A8B30F56BAD2C04BF9A1221D; // UnityStandardAssets.Effects.ParticleSystemMultiplier struct ParticleSystemMultiplier_tF64154D58A295DB07871009BCB8997DA413C9372; // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.PasswordException struct PasswordException_t1D526CC1EA292CFDED0E0C35719386456FD11779; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.PasswordRecipientInfo struct PasswordRecipientInfo_t022421B5CF631A5AFE34BECCF930C2EAC00B879D; // BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.PasswordRecipientInfoGenerator struct PasswordRecipientInfoGenerator_tB774F596B4F50D8C2EEFE5DA626C529C1ADAD201; // BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.PasswordRecipientInformation struct PasswordRecipientInformation_t2CBDBF4277732A9461135702A275C81047A8A036; // PauseMenu struct PauseMenu_tA57AC8D7056D427531596655447E6DDDBB7DB791; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PbeParameter struct PbeParameter_tABB63C3CEA11162B0EE758EBE77623654FD3C07A; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.PbeParametersGenerator struct PbeParametersGenerator_tC2462C70A4D8F16F12866BCED5DA847140B3BBE0; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PbeS2Parameters struct PbeS2Parameters_tCD6B0E5AF0003903F31D3C8451D774570CDB4050; // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.PbeUtilities struct PbeUtilities_tFC3AAA915CD845D87146D5DB52CB269A88E52C3A; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.Pbkdf2Params struct Pbkdf2Params_tE4A876D2BE1C2BE089A53C10A1FD8447E225D3B7; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.PbmParameter struct PbmParameter_t63F1B75258F7F6A89EB4D6EE72D1BA558DDE5D63; // BestHTTP.SecureProtocol.Org.BouncyCastle.OpenSsl.PemException struct PemException_t66DE4ECA4E87B504799F22A998BAD6A422753126; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.IO.Pem.PemGenerationException struct PemGenerationException_t6F4706635F256B918B6C8DAF001BA8091F7113B7; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.IO.Pem.PemHeader struct PemHeader_t5480C918C5CD9EB243178D1388CC9DE07AF429FD; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.IO.Pem.PemObject struct PemObject_tEC1D288DDCA42638704F21E9BB403BF9F00D45D5; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.IO.Pem.PemObjectGenerator struct PemObjectGenerator_tB05E0CE9773A1AB5F00412F424FA709521A32563; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.PemParser struct PemParser_tB3FC6780946303F9667460AF6A79F87A8C0F3215; // BestHTTP.SecureProtocol.Org.BouncyCastle.OpenSsl.PemReader struct PemReader_tF1396906E5390DF2CB7066DAD488B932A0667A02; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.IO.Pem.PemReader struct PemReader_t6E2B48BC6FFB51180A2E80A32F41ADD2C3991318; // BestHTTP.SecureProtocol.Org.BouncyCastle.OpenSsl.PemUtilities struct PemUtilities_t16486A3A5E4A3D91CB984C3EEA6F2A109A57DD2E; // BestHTTP.SecureProtocol.Org.BouncyCastle.OpenSsl.PemWriter struct PemWriter_t3088297EC9FAF01B00865D6297091CB8505C98E2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.IO.Pem.PemWriter struct PemWriter_tBD518860EFED3382051637D2372D21CFA33EED8C; // BestHTTP.WebSocket.Extensions.PerMessageCompression struct PerMessageCompression_tA416CBC39B57DD1A3C7CCA49B96534A62C20E31C; // PersistenHandler struct PersistenHandler_t0045D44D2514530321E6C396BB8FD5B9222E4CB1; // UnityEngine.Events.PersistentCallGroup struct PersistentCallGroup_t9A1D83DA2BA3118C103FA87D93CE92557A956FDC; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.SigI.PersonalData struct PersonalData_t36F1E4DB734C176E7DA302121AAAEAD723055423; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.Pfx struct Pfx_t3DC0FBC834C816FD9F9DDBB110EC841BAF006FA3; // PhoneValidateController struct PhoneValidateController_tA68BAFB6E7CD7EFAC5B1A61B170F077143050F23; // UnityStandardAssets.Cameras.PivotBasedCameraRig struct PivotBasedCameraRig_t1E552B68C93B235EBD5B489D604BACD8EDC870F2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs.Pkcs10CertificationRequest struct Pkcs10CertificationRequest_t83CC34C032AFF4D41FCB58DBCC277BBE7980A996; // BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs.Pkcs10CertificationRequestDelaySigned struct Pkcs10CertificationRequestDelaySigned_t5F9444F02D719EB7DAACFA5B5386BAFAD73E6161; // BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs.Pkcs12Entry struct Pkcs12Entry_tEFAF0FAB8C5FCE175C5A80614CBAA6C70D7D39D6; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Generators.Pkcs12ParametersGenerator struct Pkcs12ParametersGenerator_t3A010D9BA28A4844EC70DEC34E80BD9552F135C4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.Pkcs12PbeParams struct Pkcs12PbeParams_t78C4C6FAE45A3B6F55EF88E8458605BB90FB903E; // BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs.Pkcs12Store struct Pkcs12Store_t7E763D92DBE7A96F7903C34D6B4D179710F9B980; // BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs.Pkcs12StoreBuilder struct Pkcs12StoreBuilder_tCA31CF49F94065954EC54E802B27950102A00DD5; // BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs.Pkcs12Utilities struct Pkcs12Utilities_t414AD8DD3957F19A30FA3B3D802C8FB1470B7BBA; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Encodings.Pkcs1Encoding struct Pkcs1Encoding_t394A58F7A8B08BB6882774A5CF81630CCB8D9818; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Generators.Pkcs5S1ParametersGenerator struct Pkcs5S1ParametersGenerator_tEE4FCBDC52A16FE98CBA99A531CC1D218213789B; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Generators.Pkcs5S2ParametersGenerator struct Pkcs5S2ParametersGenerator_tB60224E77A62F2C25854CD558CDE82B1C485BC0F; // UnityEngine.EventSystems.PointerEventData struct PointerEventData_tC6C1BEE9D4C8755A31DA7FC0C9A1F28A36456954; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo struct PrivateKeyInfo_t2C1C0514E07F6048B5892B9D988A1CEFE90975AA; // BestHTTP.Proxy struct Proxy_t84F0DDAE5A37016479C7094FFB8F78835B8BD4F6; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.RC2CbcParameter struct RC2CbcParameter_t1629811CA7C5F4B71FD6CB1A121833EE3B3EE7D4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.RecipientID struct RecipientID_t744700C1480DE017B5D0AB81C6A1044A8C400125; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.RecipientInfo struct RecipientInfo_tAD4CBFD604399F45BD0D23A4C028E0FC88C19829; // BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.RecipientInformation struct RecipientInformation_tB02D0534E5C0851FB482467BA26A52FAD2F853AB; // UnityEngine.UI.RectMask2D struct RectMask2D_tD909811991B341D752E4C978C89EFB80FA7A2B15; // UnityEngine.RectTransform struct RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072; // RequestResult struct RequestResult_tCE96198172C7000A24026429191217E64CDA9DFB; // UnityEngine.Rigidbody struct Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters struct RsaKeyParameters_t5CEAA6F9B92D2B6F1225DFF7C089B43146012801; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.RsaPrivateCrtKeyParameters struct RsaPrivateCrtKeyParameters_tA9185E010DB8134822436B7526FAAEA7708FFCA6; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.RsaPrivateKeyStructure struct RsaPrivateKeyStructure_tEBAF070C7C3370B960215F537F3B94B693B66D25; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.RsaPublicKeyStructure struct RsaPublicKeyStructure_tF82F198D8A7999775A7A0B03248E971DE1FA8C37; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters struct RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.SafeBag struct SafeBag_t1B137820B5E15C8BEC267B2B14BDBDF4ECF77534; // System.Runtime.Serialization.SafeSerializationManager struct SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F; // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom struct SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28; // UnityEngine.UI.Selectable struct Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD; // System.Threading.SemaphoreSlim struct SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.Sha1Digest struct Sha1Digest_t9ABD0D9950F85C2952992508FA19FCBD0CF82459; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.Sha256Digest struct Sha256Digest_tCF11D57008BAA24F85355CC0CAA88846A48A6F2D; // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SignatureException struct SignatureException_t8646C7AB185E39DCCA9ED2BC70B36207BA5A8EBA; // UnityEngine.Sprite struct Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9; // System.IO.Stream struct Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB; // System.String struct String_t; // System.Text.StringBuilder struct StringBuilder_t; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.SubjectKeyIdentifier struct SubjectKeyIdentifier_t572BF9E7277584519251C3E26F9015A145A7FF62; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo struct SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB; // UnityEngine.UI.Text struct Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1; // UnityEngine.TextGenerator struct TextGenerator_t893F256D3587633108E00E5731CDC5A77AFF1B70; // System.IO.TextReader struct TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F; // System.IO.TextWriter struct TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643; // UnityEngine.Texture2D struct Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF; // UnityEngine.UI.Toggle struct Toggle_t68F5A84CDD2BBAEA866F42EB4E0C9F2B431D612E; // UnityEngine.UI.ToggleGroup struct ToggleGroup_t12E1DFDEB3FFD979A20299EE42A94388AC619C95; // UnityEngine.Transform struct Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1; // System.Type struct Type_t; // UnityEngine.Events.UnityAction struct UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099; // UnityEngine.Events.UnityEvent struct UnityEvent_tA0EA9BC49FD7D5185E7A238EF2E0E6F5D0EE27F4; // UnityEngine.Networking.UnityWebRequest struct UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E; // System.Uri struct Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612; // UnityEngine.UI.VertexHelper struct VertexHelper_tDE8B67D3B076061C4F8DF325B0D63ED2E5367E55; // System.Void struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5; // BestHTTP.WebSocket.WebSocket struct WebSocket_tC5AF27C0708BBCF99D3D7332F846C0FFFD446C54; // BestHTTP.WebSocket.Frames.WebSocketFrame struct WebSocketFrame_tC5BC4CFDA1F1C64F8D887FCE5A80B804AD7241CC; // BestHTTP.WebSocket.WebSocketResponse struct WebSocketResponse_tBFF22330A397E15C5849F83779F881AFC6EE8CDF; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Certificate struct X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06; // BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs.X509CertificateEntry struct X509CertificateEntry_tB47F6587E5679B9935CD1D830FF74CB1309E76D3; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509CertificateParser struct X509CertificateParser_t76052650A7486EB7C9B24F64A8D228E18BB62AAF; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509CertificateStructure struct X509CertificateStructure_tD48237F907D1001604C98590613EFD6D720BEDE1; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Crl struct X509Crl_t963C99FFAA5E9B3E8AE0BBB6F74D45D52C7BBB04; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509CrlParser struct X509CrlParser_t5A69F403A4E632BD648423A86C85BA28CC698FCA; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name struct X509Name_t201376CBB74D033CD213122565CA7469C5FC8630; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509NameEntryConverter struct X509NameEntryConverter_tB7E7BD9119CAFF57159A4641EEF350B6A5111351; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate struct X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParameters struct X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECPoint struct X9ECPoint_t06D47967D73B459616A01610E0E5D88AB08BDF71; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9FieldID struct X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8; // BestHTTP.Decompression.Zlib.ZlibBaseStream struct ZlibBaseStream_t84173E4AB4AB9AD1558AE40ED9D301D847C30188; // UnityEngine.UI.Button/ButtonClickedEvent struct ButtonClickedEvent_tE6D6D94ED8100451CF00D2BED1FB2253F37BB14F; // UnityEngine.Camera/CameraCallback struct CameraCallback_tD9E7B69E561CE2EFDEEDB0E7F1406AC52247160D; // UnityEngine.UI.MaskableGraphic/CullStateChangedEvent struct CullStateChangedEvent_t9B69755DEBEF041C3CC15C3604610BDD72856BD4; // UnityStandardAssets.SceneUtils.ParticleSceneControls/DemoParticleSystem struct DemoParticleSystem_t6F0E4F45BF28278B96F760E47CFDF17FA7F76C2B; // UnityStandardAssets.SceneUtils.ParticleSceneControls/DemoParticleSystemList struct DemoParticleSystemList_t3885BBD1CA5C4C983B20441E24226833802CD01E; // UnityStandardAssets.Utility.ParticleSystemDestroyer/d__4 struct U3CStartU3Ed__4_tA78F17B2ACCCF6A6521A65728EC2957F6A742934; // PhoneValidateController/d__0 struct U3CSendPhoneValidateCodeU3Ed__0_t7C1E4C5AF66CCCAD9A58992933A5C16AD4519C8D; // PhoneValidateController/d__1 struct U3CValidatePhoneU3Ed__1_tBDF5E824FED560BB85676093E3AD634B57756DEE; // BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs.Pkcs12Store/CertId struct CertId_t7E95DE6D107D879D5D6408D4CE8AF103660ED6D9; // BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs.Pkcs12Store/IgnoresCaseHashtable struct IgnoresCaseHashtable_t1FE3ECBA3A977156B90D9257F58CF048D28B2CEE; // System.IO.Stream/ReadWriteTask struct ReadWriteTask_t32CD2C230786712954C1DB518DBE420A1F4C7974; // UnityEngine.UI.Toggle/ToggleEvent struct ToggleEvent_t7B9EFE80B7D7F16F3E7B8FA75FEF45B00E0C0075; 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* 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* Asn1Null_t5D40C5C3674510061A0C219CEB9849A5EF6492BC_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* Asn1SignatureFactory_t82880FE5F99692E8C940551308221AA7CAB2682A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Asn1TaggedObject_t4B044FB8A3CF8DEE46156A0F07290A97EBA600F0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Asn1VerifierFactoryProvider_t4AB1B332A609AF2476DA0AE60D91F1563C1B564D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* AsymmetricCipherKeyPair_t975F15F5FD9FD35454E104A768061EAFB010D929_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* AsymmetricKeyEntry_t3CBF289F816398AE0AB9B8E7E8E31AECE8BD69AF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* AuthenticatedSafe_t05262AA3FF2545528CE2F83A5DFAC25ECB03715E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* BCObjectIdentifiers_t7C3698D878F567B9CDCBBAC0429FDBBFAB20E0F8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* BerOctetString_tA32D321D3EBCA6B4AC19A4D7F67831E029C7D29B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* BerOutputStream_t581AE0B357D4F0A4C0AC9C3870D0948E720B92F3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* BerSequence_t06054EFD23083345199811B3DD646A2F94BA429F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CertBag_tC3C2856E87424F3FF2F47F056DDE728F1F6C48AE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CertId_t7E95DE6D107D879D5D6408D4CE8AF103660ED6D9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CertificationRequestInfo_t3041B37C5C290BADC8C0362E9283EA64455F0A2C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CipherUtilities_t04E0AB05F1E536696E94A4C341858AF51D6E94E7_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* CmsPbeKey_tBF17FCE3F33E7423EA23A8DB6AF64B21D85CAC43_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ContentInfoU5BU5D_tB242C6E38BA3C72A5125CA177D6042A541D63873_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ContentInfo_tAA34B324F30DA6F788492750D8D7DC53CAB168E0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CustomNamedCurves_tB4D6EE33CCB4DD0A6F99DFAC03080937D5D68707_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DeflateStream_t6D255105218D9D7440C9121FC55176D0C8D96B3B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DerBitString_t305465793A47445626D3541AB8CEDE347D874524_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DerBmpString_tB0F02E1EFC0ACDBA2871E3A5E054DFA0D08A1444_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* DerOutputStream_tCED4ABFA88DC5F83FB2CF5879416013FC726C305_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DerPrintableString_t9CB2F58B355139C935A860E004FA76FD3E381205_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DerSet_tD36B7728620B3A88D0C4F3AC574F77B00AD49FAA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DerTaggedObject_t88BB573E2BED5C1D2971741E012BB29FB0EB0C5E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DesParameters_t5B50722BE26589C95A36ED73026A0D7E1DC58E34_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DigestInfo_t939FF0DD1AE65995C2A92E52B6C76176C87A80FE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DigestUtilities_tB5A6CF632B0E12AB785E7F9D437596A3E2DC8127_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DsaParameters_t47EC24036618CF52C5EF89B4929A5611E1F90245_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DsaPrivateKeyParameters_tA17C08FE231F8805F46FD353E879F63AB5BFAC98_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DsaPublicKeyParameters_t2C9F1F39FCA3C0439000593CFF3F9AC89B9C3BA9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ECPrivateKeyParameters_t4F22D9A57AC7E670B61E096835534ECE1D259029_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EncryptedData_t723978F9CCFCFBC5C581B8075958D1CB6AA28604_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EncryptionException_t12E7FCDEDFE1D27B6F076E0B23919DCF4BB0671B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EnumerableProxy_t026114E7F2A8CD4B2FA989282FE080341A4614E2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* GeneratorUtilities_t67ACB79DC6E18815C42C195F8D953A5F17210A19_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HTTPManager_t1E0A5A6FF0F475D0ABDB2ACA2C62B52648703DBD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HashSet_t1E14FE66FBB0732BFDA0861868A51969563DF754_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HeaderParser_t90F5D0027B4A301EFD28FC225846CB32AB67AD5E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Hex_t3B7B2ED165B9CA45F45E3F1EF2436D4FCA11F6FE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IAsymmetricBlockCipher_tD85974B803F5DD17452DA8A4405647D1B2942F23_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IBlockResult_t6A7C472F432343ADBA690B12778C4CF5FFB19CCE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IBufferedCipher_t0E3B75F928671B207A069CE6C2A95F27FC41D915_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ICollection_tC1E1DED86C0A66845675392606B302452210D5DA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDigest_tB278FE56BD588CA024BB5476E2A7468F836C78C6_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEnumerable_t47A618747A1BB2A868710316F7372094849163A2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IList_tB15A9D6625D09661D6E47976BB626C703EC81910_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ILogger_t095358641393F797166A40BDE9240B6A2C53D4AC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IMac_tF574CEDFF4E3D5D95581FD8DF86EF985AE61B37C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IPasswordFinder_t5F34C28411DC73687421897FD73ACC4ED2196030_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ISet_t5A23607F3EDC64EF08417F0C1A4212EB39469049_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ISignatureFactory_t1572BDBCE1A2741BB5DF8A6BE3FC219B7722135B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ISigner_tCCA744D5676F335002A9182CD1A47660B2100EEA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IStreamCalculator_t4F9460D63B0B76B77564036A39E861A0A03ABD07_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IVerifierFactoryProvider_tA6D5743A235196B76EBD51FFBA49A1C8C08DA539_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IVerifierFactory_t32298618FCE25BBB4B1B58D97DE26E1C64CA010F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IVerifier_tCA7824E68A9E21FEA945B0FDD274BB1CAF9872B6_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IWrapper_t29A9E044AAEEECE9E2FA8A8A61F76B0F50347B39_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IgnoresCaseHashtable_t1FE3ECBA3A977156B90D9257F58CF048D28B2CEE_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* KeyDerivationFunc_t77081A2881F6F03B2B805E840C798E3AC7ACA213_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_t367B604D3EA3D6A9EC95A32A521EF83F5DA9B447_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* MD2Digest_tE97575A1FE161C3EF2E20EB0566460A3050492C5_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* MD5Digest_t928D0A068D9E4C50824CD21F75ED29809466123B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* MacData_tE23C59E80FD08E069EB579A0C3952D4E715C8C95_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* MacUtilities_t870E4AF1B674CB6A920687E584CDC3FBDA5FD58E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* MenuBackController_t545B27D5E7BCA7C609808B7960239E0FC034ADA4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* MiscPemGenerator_t3A2794F71D43786161FE86028D9238FCBDEC3153_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OiwObjectIdentifiers_tACD1AAAAC365CD86B5E7F0DE22B66469A4A93CED_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OpenSslPbeParametersGenerator_tFF5C2D9DDE99EF1102EC81C40F9EAD9462B3FDF3_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* ParticleSceneControls_t8535BFA9A38CB3210524D0D7BA2EDD95363DC246_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PasswordException_t1D526CC1EA292CFDED0E0C35719386456FD11779_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PasswordRecipientInfoGenerator_tB774F596B4F50D8C2EEFE5DA626C529C1ADAD201_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PasswordRecipientInfo_t022421B5CF631A5AFE34BECCF930C2EAC00B879D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PbeParameter_tABB63C3CEA11162B0EE758EBE77623654FD3C07A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PbeS2Parameters_tCD6B0E5AF0003903F31D3C8451D774570CDB4050_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PbeUtilities_tFC3AAA915CD845D87146D5DB52CB269A88E52C3A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Pbkdf2Params_tE4A876D2BE1C2BE089A53C10A1FD8447E225D3B7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PbmParameter_t63F1B75258F7F6A89EB4D6EE72D1BA558DDE5D63_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PemBaseAlg_tD6B3B3A5B862C18C4257FEED63257A3171CCB41B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PemException_t66DE4ECA4E87B504799F22A998BAD6A422753126_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PemGenerationException_t6F4706635F256B918B6C8DAF001BA8091F7113B7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PemHeader_t5480C918C5CD9EB243178D1388CC9DE07AF429FD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PemMode_t18614713AE3372E7FD770296933FFE78FEB758EA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PemObjectGenerator_tB05E0CE9773A1AB5F00412F424FA709521A32563_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PemObject_tEC1D288DDCA42638704F21E9BB403BF9F00D45D5_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PemUtilities_t16486A3A5E4A3D91CB984C3EEA6F2A109A57DD2E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PerMessageCompression_tA416CBC39B57DD1A3C7CCA49B96534A62C20E31C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PersistenHandler_t0045D44D2514530321E6C396BB8FD5B9222E4CB1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PersonalData_t36F1E4DB734C176E7DA302121AAAEAD723055423_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Pfx_t3DC0FBC834C816FD9F9DDBB110EC841BAF006FA3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Pkcs10CertificationRequest_t83CC34C032AFF4D41FCB58DBCC277BBE7980A996_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Pkcs12ParametersGenerator_t3A010D9BA28A4844EC70DEC34E80BD9552F135C4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Pkcs12PbeParams_t78C4C6FAE45A3B6F55EF88E8458605BB90FB903E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Pkcs12Store_t7E763D92DBE7A96F7903C34D6B4D179710F9B980_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Pkcs1Encoding_t394A58F7A8B08BB6882774A5CF81630CCB8D9818_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Pkcs5S1ParametersGenerator_tEE4FCBDC52A16FE98CBA99A531CC1D218213789B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Pkcs5S2ParametersGenerator_tB60224E77A62F2C25854CD558CDE82B1C485BC0F_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* PointerEventData_tC6C1BEE9D4C8755A31DA7FC0C9A1F28A36456954_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PrivateKeyInfo_t2C1C0514E07F6048B5892B9D988A1CEFE90975AA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RecipientID_t744700C1480DE017B5D0AB81C6A1044A8C400125_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RecipientInfo_tAD4CBFD604399F45BD0D23A4C028E0FC88C19829_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RsaKeyParameters_t5CEAA6F9B92D2B6F1225DFF7C089B43146012801_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RsaPrivateCrtKeyParameters_tA9185E010DB8134822436B7526FAAEA7708FFCA6_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SafeBag_t1B137820B5E15C8BEC267B2B14BDBDF4ECF77534_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SecurityUtilityException_t302EB7051FEB04E7829C028B4BC072B6664255CA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Sha1Digest_t9ABD0D9950F85C2952992508FA19FCBD0CF82459_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Sha256Digest_tCF11D57008BAA24F85355CC0CAA88846A48A6F2D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SignatureException_t8646C7AB185E39DCCA9ED2BC70B36207BA5A8EBA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SubjectKeyIdentifier_t572BF9E7277584519251C3E26F9015A145A7FF62_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CSendPhoneValidateCodeU3Ed__0_t7C1E4C5AF66CCCAD9A58992933A5C16AD4519C8D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CStartU3Ed__4_tA78F17B2ACCCF6A6521A65728EC2957F6A742934_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CValidatePhoneU3Ed__1_tBDF5E824FED560BB85676093E3AD634B57756DEE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* VariableSizedBufferPool_tE14092885C0BD541BE236F97F0F8832DD4502E8E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* WrapperUtilities_tA8773B79845F802BD564227F81CD5EF74C553416_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* X509CertificateEntryU5BU5D_tA2C8111B89B14B0A674CCA7C45C79819015D180B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* X509CertificateEntry_tB47F6587E5679B9935CD1D830FF74CB1309E76D3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* X509CertificateParser_t76052650A7486EB7C9B24F64A8D228E18BB62AAF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* X509CrlParser_t5A69F403A4E632BD648423A86C85BA28CC698FCA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C String_t* _stringLiteral00BEF706F2CEA32C8B2B0422849D5EB1AE2D65D7; IL2CPP_EXTERN_C String_t* _stringLiteral01F92A55E0C4F71D4AC7BF5ADA2134AD7132F1AC; IL2CPP_EXTERN_C String_t* _stringLiteral0331E199316A3C0763209E393BFF310F32646B5D; IL2CPP_EXTERN_C String_t* _stringLiteral0340A21B710FC76E195B43926C0D305E65B8B623; IL2CPP_EXTERN_C String_t* _stringLiteral04C8B9CA601D09C92B620D508D19F994619B6489; IL2CPP_EXTERN_C String_t* _stringLiteral08DFED9B56DBA3DB573A6E23566527810FD3F2D4; IL2CPP_EXTERN_C String_t* _stringLiteral0B0D15285D19F3A286675C99AC15D8701A3A32B9; IL2CPP_EXTERN_C String_t* _stringLiteral0B833C37945C57A0421D076553F6F7823A06BB81; IL2CPP_EXTERN_C String_t* _stringLiteral0BE11E57278B4DB1404B685496A04A9ACD355655; IL2CPP_EXTERN_C String_t* _stringLiteral0EBFEDCE71CC77070BD35887BBA6B3AC08479560; IL2CPP_EXTERN_C String_t* _stringLiteral106CA6D4E30D25D2B2EAFADF9BE9BC07FDD3AF5A; IL2CPP_EXTERN_C String_t* _stringLiteral108E27322A3374160951957B502B82309353F2C9; IL2CPP_EXTERN_C String_t* _stringLiteral1168E92C164109D6220480DEDA987085B2A21155; IL2CPP_EXTERN_C String_t* _stringLiteral12B6D3EBE0DF63ECED513CEBB6CBFD4886D587D6; IL2CPP_EXTERN_C String_t* _stringLiteral12C0D00507D5556F04E6640916CA4AAF502616A1; IL2CPP_EXTERN_C String_t* _stringLiteral13859FD7C685BBD6997CB517DC9763B23171060C; IL2CPP_EXTERN_C String_t* _stringLiteral15088A7C50E83E49058833A4287B3C2F1CD730D2; IL2CPP_EXTERN_C String_t* _stringLiteral155A4BC12A234318BF135F4542D363DCE33CE8A5; IL2CPP_EXTERN_C String_t* _stringLiteral1560964A8AEF719BAD169318C60536682174D6AD; IL2CPP_EXTERN_C String_t* _stringLiteral158B6A1BFB4007A30B92DF912CBC29F2328168DD; IL2CPP_EXTERN_C String_t* _stringLiteral15935CC3EABFA703DA20018706DD381CE7C2BDCA; IL2CPP_EXTERN_C String_t* _stringLiteral15F9BBF24A489C6698241DE3669F9412B577E565; IL2CPP_EXTERN_C String_t* _stringLiteral17F4D0F233F7C806CBB7F1E4936F65607B1F1168; IL2CPP_EXTERN_C String_t* _stringLiteral1A2DA8F72D36031BEEA5C38749A396A964B925C0; IL2CPP_EXTERN_C String_t* _stringLiteral1AB2935D72BBF94AC41BB4693003661EAEEAF2F1; IL2CPP_EXTERN_C String_t* _stringLiteral1ADF1FBB828B224ABAA0FD6E763FD8610E8BFF80; IL2CPP_EXTERN_C String_t* _stringLiteral1C48B21438963550E02C3EB6980E4F775EFC4A2E; IL2CPP_EXTERN_C String_t* _stringLiteral1C6A1D479EAFD03F8CFE248842DDE2CCD5765F76; IL2CPP_EXTERN_C String_t* _stringLiteral1E33D32C3373A953D5BC7F17E5206B87BDEF526C; IL2CPP_EXTERN_C String_t* _stringLiteral1E83782D29840681D776F87FB62A65D213B72668; IL2CPP_EXTERN_C String_t* _stringLiteral1FDF3C1B76238A2773D9417DEDEF895091BA1556; IL2CPP_EXTERN_C String_t* _stringLiteral208AB955F2E809407B7FCCE1C2D128F670FAC0BE; IL2CPP_EXTERN_C String_t* _stringLiteral227D58E8FC9FDF45A2B329349A1DFEA264430F2C; IL2CPP_EXTERN_C String_t* _stringLiteral22CB3D8BC65336F8C8EAB339F3EF9833882D7F8B; IL2CPP_EXTERN_C String_t* _stringLiteral23228BB35C2FF2A812B3D2A9AABD6DF25DB1AA30; IL2CPP_EXTERN_C String_t* _stringLiteral24A4FFE5385B9EBCC4BE3C842A9D2BB5AD07E3AC; IL2CPP_EXTERN_C String_t* _stringLiteral24C049E512CD1B48036BD162FF63700A57CA3469; IL2CPP_EXTERN_C String_t* _stringLiteral2594D1B685BA6F00D4A64DE944F76318ED32B71E; IL2CPP_EXTERN_C String_t* _stringLiteral25AD3725960332804AAFE26D844A7D5EE6CF8193; IL2CPP_EXTERN_C String_t* _stringLiteral25B337A7C78249301D0595CEF2477556A9A1AF60; IL2CPP_EXTERN_C String_t* _stringLiteral26E294139715163FBE9A18930A1D8CF567887641; IL2CPP_EXTERN_C String_t* _stringLiteral27002B9BE41A625217AB81BE1906E31855175FDD; IL2CPP_EXTERN_C String_t* _stringLiteral275E10A915726C579E0140FFFD4D3AC3C717D440; IL2CPP_EXTERN_C String_t* _stringLiteral27C1981EC30975BB45A7604629B3C6B25D863D44; IL2CPP_EXTERN_C String_t* _stringLiteral27DBE413B8F6DFFC67F04969ED9883B94BE4554B; IL2CPP_EXTERN_C String_t* _stringLiteral28C11933787BDDFED89271C7B4D0E37135471289; IL2CPP_EXTERN_C String_t* _stringLiteral28CFD4B42FAC205F7F948E0DAF4E1297B574750E; IL2CPP_EXTERN_C String_t* _stringLiteral28FBEEE08114DC5B4ACFB1DC757708335C779A0F; IL2CPP_EXTERN_C String_t* _stringLiteral293FFD890AB5C4872D2545D031F6CB01D4B06A77; IL2CPP_EXTERN_C String_t* _stringLiteral2A293F1E0CEC51496717DA60BC97E1ED807BB582; IL2CPP_EXTERN_C String_t* _stringLiteral2C6981066B2B86B5B2DD17BCE00AEAEDF74D7B0E; IL2CPP_EXTERN_C String_t* _stringLiteral2D90F919A888ADB87B410BA1FCB1198A389B2D2B; IL2CPP_EXTERN_C String_t* _stringLiteral2ECCF0272C09381DA599D0B70DB523A192791180; IL2CPP_EXTERN_C String_t* _stringLiteral30A57D0DB2B6AB49CC5E5ADEF89F974F22049700; IL2CPP_EXTERN_C String_t* _stringLiteral30D41E64B9DEDC79F352691BD17F02A933E14EF8; IL2CPP_EXTERN_C String_t* _stringLiteral3215F10F66828C7C96B23E82D05F59101D067C7A; IL2CPP_EXTERN_C String_t* _stringLiteral33038386B47A94676767B67BA384962CDFC9EF7C; IL2CPP_EXTERN_C String_t* _stringLiteral33547EA59C2E156A129216ECD3790EADEEE76080; IL2CPP_EXTERN_C String_t* _stringLiteral33BB5A11405346DBDDE78D1A74DE8913BDA24E15; IL2CPP_EXTERN_C String_t* _stringLiteral34F488F3A7598B499FFD44C0E69D6621558D9605; IL2CPP_EXTERN_C String_t* _stringLiteral367A8B260E7454309EADDBE5377B457D2EA3B668; IL2CPP_EXTERN_C String_t* _stringLiteral368942C603B7A2851B61AACF8E4F62C03D97C40D; IL2CPP_EXTERN_C String_t* _stringLiteral36D8CB02FF3942E9A21982468B9490598ED9367F; IL2CPP_EXTERN_C String_t* _stringLiteral37012E583DD1F1C8F246850642B98606CD18CCCC; IL2CPP_EXTERN_C String_t* _stringLiteral38422701C5C214A0B355747D6E333E4DE0111035; IL2CPP_EXTERN_C String_t* _stringLiteral3842A82D0ECAE0FE61A63C7417153A09ABC232E0; IL2CPP_EXTERN_C String_t* _stringLiteral3861137596EF18CCF359AFF6490719A39A2E5875; IL2CPP_EXTERN_C String_t* _stringLiteral3956D72A41B2012A5CB83CD9BE6B55CAAF89BD70; IL2CPP_EXTERN_C String_t* _stringLiteral3B3527D051D4FB581E42ACAD71E8EB7CC5150518; IL2CPP_EXTERN_C String_t* _stringLiteral3B61056CE34B3597E690DEF082DF2AB2F399A4E8; IL2CPP_EXTERN_C String_t* _stringLiteral3CC3C941905D86748177C12D9E3DAC65146D2125; IL2CPP_EXTERN_C String_t* _stringLiteral40202E94CB94F4414051283AC5DD66540DCE9C28; IL2CPP_EXTERN_C String_t* _stringLiteral40E9738AA3B6606C5FAE9E06F08FB38F64D9168E; IL2CPP_EXTERN_C String_t* _stringLiteral423ACA01AC170A50869ECDEF572CD96995576718; IL2CPP_EXTERN_C String_t* _stringLiteral42E1B66C6F034C42ACDBA649CB666AAF2C2D7966; IL2CPP_EXTERN_C String_t* _stringLiteral4351851F76A2B0C936892EAF654EAD35BC2A592A; IL2CPP_EXTERN_C String_t* _stringLiteral4408D910CFD8CBB13B1D24EAF91F35D1AA3192E4; IL2CPP_EXTERN_C String_t* _stringLiteral440ED22446BFF66B59A1F0EDF79A1BA71369E990; IL2CPP_EXTERN_C String_t* _stringLiteral4513FC7C8C3770B1425E96417784B0BC8355E1A1; IL2CPP_EXTERN_C String_t* _stringLiteral480A766A0065A80A6D1E7FCC6715154E0931922D; IL2CPP_EXTERN_C String_t* _stringLiteral4A63E520AD7E3C739323B1DC34A9E2A4C52C3F2D; IL2CPP_EXTERN_C String_t* _stringLiteral4AE59B3EED5C15C1E86A80FBCFADDD80DEC4B26D; IL2CPP_EXTERN_C String_t* _stringLiteral4C7B95628CA1510F2AC4AFFB70206033E7E814A9; IL2CPP_EXTERN_C String_t* _stringLiteral4C8FC0834485EA54FDC1DD8AEC5C3965BE95DFEA; IL2CPP_EXTERN_C String_t* _stringLiteral4CB0724FEED457371B27FF0ACD3DF1D9FEDFC302; IL2CPP_EXTERN_C String_t* _stringLiteral4CB9C2CDAEE3CEA31E24AB38EFD779480A4C0C6C; IL2CPP_EXTERN_C String_t* _stringLiteral4D4B47B04BF8246AA78EF2F02E58E5A15585FBC7; IL2CPP_EXTERN_C String_t* _stringLiteral4ED7884296E5AFFBFC2049B8730C05BB2A72243F; IL2CPP_EXTERN_C String_t* _stringLiteral4EFDC5A3B4909776464ECFF1AC1874842791F66A; IL2CPP_EXTERN_C String_t* _stringLiteral5015B7F3BAED68B5979DB5BD43BA480E81754317; IL2CPP_EXTERN_C String_t* _stringLiteral50D3DA08E20421DC6D85C2E5FA2B8A423AB10921; IL2CPP_EXTERN_C String_t* _stringLiteral52BDFA54A164366A4CCA7F4E8E9D4CC3289B914B; IL2CPP_EXTERN_C String_t* _stringLiteral52F8273A1A2B51485BD9987D15EA7800F76E3926; IL2CPP_EXTERN_C String_t* _stringLiteral532C4E47EA629F750FFF39D950B7C82FEEF3A9C6; IL2CPP_EXTERN_C String_t* _stringLiteral532EDB63D38BE849355CC05BBD302AC7006BF005; IL2CPP_EXTERN_C String_t* _stringLiteral54695663CDBC951C368A7673334FC7C1E530A547; IL2CPP_EXTERN_C String_t* _stringLiteral54DDC3C597635541149E17BEEA6749A0C5E11C0B; IL2CPP_EXTERN_C String_t* _stringLiteral55E33AEC810D7C6A9309168416814B8AB9759431; IL2CPP_EXTERN_C String_t* _stringLiteral57E05BC290095A5FBA63D7AF28498D97AB0DDC16; IL2CPP_EXTERN_C String_t* _stringLiteral588C958B7FA5CC9110A1CAEFAE17C433F15C999F; IL2CPP_EXTERN_C String_t* _stringLiteral58A688CFBA609E559507D0B172BB034EB704BF9E; IL2CPP_EXTERN_C String_t* _stringLiteral59E555155ED542AA79630106AA34AA1874C34481; IL2CPP_EXTERN_C String_t* _stringLiteral5A06357B575D7058D36E87C495E9D91FCD00437A; IL2CPP_EXTERN_C String_t* _stringLiteral5A4E411F65E7CA15BA995630065445903EBE9E78; IL2CPP_EXTERN_C String_t* _stringLiteral5A689E664B886472E89591E8B920B5F788C949D0; IL2CPP_EXTERN_C String_t* _stringLiteral5BB7E4F1F14CBD0910B9D120A2E8EFE0C07F9B50; IL2CPP_EXTERN_C String_t* _stringLiteral5CDBAC457EFE37BD1A4DE9D7CA08E257E79A06E8; IL2CPP_EXTERN_C String_t* _stringLiteral5F1A7897AF6D5097460B156B520C63C705855CA1; IL2CPP_EXTERN_C String_t* _stringLiteral5F3AED0D9F5E2A729FFCBC5B6BCE51C6EAA3AA41; IL2CPP_EXTERN_C String_t* _stringLiteral621A88910F64FF87BDD36301A9D5D9D3AF16CA9A; IL2CPP_EXTERN_C String_t* _stringLiteral626C9A80FD55ADF427FBBBB85379D65BEDD9303A; IL2CPP_EXTERN_C String_t* _stringLiteral638C5441E8427B2B9D2C941DDBF958579B5FE3F0; IL2CPP_EXTERN_C String_t* _stringLiteral647783A586F68BF6437CB9DA80DA5F6C73C08B53; IL2CPP_EXTERN_C String_t* _stringLiteral651673A81FBA9E74D8B1B88A7971760D4ACEE6A0; IL2CPP_EXTERN_C String_t* _stringLiteral6660E94E54CB5A5F38BC7D53A6C50B2065290B4D; IL2CPP_EXTERN_C String_t* _stringLiteral67D7D14C7D4C9BB18E0DB8AE823CF02AF1B7852B; IL2CPP_EXTERN_C String_t* _stringLiteral690BF02630AC0BD6AA6BD08D2C36A28E1FC54F3E; IL2CPP_EXTERN_C String_t* _stringLiteral696F2297856596F103752435F66DAAB5EBEA310A; IL2CPP_EXTERN_C String_t* _stringLiteral6A8BA3A091AD02088C20BEFFA94C01D62506011C; IL2CPP_EXTERN_C String_t* _stringLiteral6AFE1D0C40E13763A7F8A82F890891FEBC235BBE; IL2CPP_EXTERN_C String_t* _stringLiteral6B04ED5948A08598C9C43C4C6F67B6F0AF4EDFB5; IL2CPP_EXTERN_C String_t* _stringLiteral6CBFF2147FF3B1DA39875934AF62F9B2D97A614B; IL2CPP_EXTERN_C String_t* _stringLiteral6D23736889B6137816A29A1FCC6CA823FC637B6D; IL2CPP_EXTERN_C String_t* _stringLiteral6D49103AD28DEF5FFC976F2C7364B18D82CD07EF; IL2CPP_EXTERN_C String_t* _stringLiteral6D61A5962793C9EE547ED83C65E277AFBF5D42D7; IL2CPP_EXTERN_C String_t* _stringLiteral6D9E89E98987FC5C99FEEA4CA53C720AB58FBA6E; IL2CPP_EXTERN_C String_t* _stringLiteral6E7CBDA006FCC8893A6B1EEE63FAEFCD7045475E; IL2CPP_EXTERN_C String_t* _stringLiteral6EB88BB6D8FEDB1AA37407138A21C08BFA38EB34; IL2CPP_EXTERN_C String_t* _stringLiteral6F20A94003032FC79F89A7F5ED0918324D92DD0A; IL2CPP_EXTERN_C String_t* _stringLiteral6F9B65F92FAA549479F5A80F84910D7FF25D68B8; IL2CPP_EXTERN_C String_t* _stringLiteral708429802CBDDA081DA338B83F5F3E07D419993A; IL2CPP_EXTERN_C String_t* _stringLiteral72AB8C4B7BFA4010EAE7EE30F7B739FD66EAEA66; IL2CPP_EXTERN_C String_t* _stringLiteral72AD7E08D9683AE6C82C9B8C667B4A6DA471A59A; IL2CPP_EXTERN_C String_t* _stringLiteral738AEED44B152A9B0CA27F2539BFC222AC9F7EED; IL2CPP_EXTERN_C String_t* _stringLiteral74554F58C28B2AB0BFD4550A1FA1AB3E65ED05DD; IL2CPP_EXTERN_C String_t* _stringLiteral75ADA50A0DF156DF31A6C94182F39198B919EAC9; IL2CPP_EXTERN_C String_t* _stringLiteral7681E8CD443B054DDF3FE06E029C1874A60D0B0A; IL2CPP_EXTERN_C String_t* _stringLiteral769730E3859F26CE69E2259BFA69AC9D67130632; IL2CPP_EXTERN_C String_t* _stringLiteral7754CFE0D1E1D8BB5C2913E98E6CD0181CC7C61D; IL2CPP_EXTERN_C String_t* _stringLiteral79F466F06C54A4D8C08C697848005070BA1302D9; IL2CPP_EXTERN_C String_t* _stringLiteral7A4E1DCBAF7A95A93456E658ED029E6ED99132B9; IL2CPP_EXTERN_C String_t* _stringLiteral7ADB26976C64E2913ACB7A7907862FA832C541C3; IL2CPP_EXTERN_C String_t* _stringLiteral7BAB6C1AFDE0F5062E870520A697C2B67A8CFC76; IL2CPP_EXTERN_C String_t* _stringLiteral7CC3C3C21E89E2C485A9ADAB596614424D3DCC79; IL2CPP_EXTERN_C String_t* _stringLiteral7D0E8DD5BC5FD6DFFAFDF4A7961A53A2D4BF819F; IL2CPP_EXTERN_C String_t* _stringLiteral7E72F695FA1ADD82694BFAAE0D450A02CFF9BAD1; IL2CPP_EXTERN_C String_t* _stringLiteral7FE4C943D16057F73462CCC48EFBC413EE1EEEE1; IL2CPP_EXTERN_C String_t* _stringLiteral813661506A5DABD9B15FE77AA73D2864A4E115C6; IL2CPP_EXTERN_C String_t* _stringLiteral831BFD427B999973389FEBD63A8D4EC7D609AC21; IL2CPP_EXTERN_C String_t* _stringLiteral835935470BE3AD56EC53600D8D5427C4EB9EE754; IL2CPP_EXTERN_C String_t* _stringLiteral83A241C52DAFE0694C5B5B264CF687E09DF793D6; IL2CPP_EXTERN_C String_t* _stringLiteral842B8C7345E8AE5608EE332378D4489B8AF9C37C; IL2CPP_EXTERN_C String_t* _stringLiteral85B87AC2D26814380B0C13D2992BF533914427A6; IL2CPP_EXTERN_C String_t* _stringLiteral86BBAACC00198DBB3046818AD3FC2AA10AE48DE1; IL2CPP_EXTERN_C String_t* _stringLiteral87019103EEDB72584BE34F931FF21D94E73D1EF5; IL2CPP_EXTERN_C String_t* _stringLiteral872863942A17DEDCD0300265682277E23AC55930; IL2CPP_EXTERN_C String_t* _stringLiteral8804EDA0D4213791DF26ABBDBB850EE8A91B7209; IL2CPP_EXTERN_C String_t* _stringLiteral88560356D4A82A5F9FD47AE8E5B8096518AFD8B1; IL2CPP_EXTERN_C String_t* _stringLiteral88B2E4D2FC45B6629293A1E0E86146E44DC12776; IL2CPP_EXTERN_C String_t* _stringLiteral88DDAB027017DF6291675C075F485D30B553E814; IL2CPP_EXTERN_C String_t* _stringLiteral8A65D50D32061C1355F20BAC8CA8C999E8B45CD9; IL2CPP_EXTERN_C String_t* _stringLiteral8BB58B989DAAEFFC9FC49609A564874097684981; IL2CPP_EXTERN_C String_t* _stringLiteral8F14545E96A97CA6E4BB71607070728BAD81EE42; IL2CPP_EXTERN_C String_t* _stringLiteral8F838727C3DA072CC51B306D630E4A9A332661CD; IL2CPP_EXTERN_C String_t* _stringLiteral91418DC5CE55D8F41D97B9EB719D8DA971A0A80D; IL2CPP_EXTERN_C String_t* _stringLiteral923BA8F8C238AECEE5536C43D1ED18DE8D7E734E; IL2CPP_EXTERN_C String_t* _stringLiteral929005093FDAFAC5D770520C4CC44C5F7EEF5E0E; IL2CPP_EXTERN_C String_t* _stringLiteral93354B37B373435173DDCFA9A0B49380D6715EFA; IL2CPP_EXTERN_C String_t* _stringLiteral93421ACF97EB27289EB773153680740AC2B91F17; IL2CPP_EXTERN_C String_t* _stringLiteral95CECB12EF5997654615668E9338F78021E26420; IL2CPP_EXTERN_C String_t* _stringLiteral967BB572C3DEEEC4C0F1673589A5DB5F3CBACD23; IL2CPP_EXTERN_C String_t* _stringLiteral9788EEC62FC8EA918BD049D71D916A2F1C19F169; IL2CPP_EXTERN_C String_t* _stringLiteral9796FE9D05F5107C6EF06459CA7CE689548B3930; IL2CPP_EXTERN_C String_t* _stringLiteral98115FABCB5C56BF27798D3371E951330C85B36A; IL2CPP_EXTERN_C String_t* _stringLiteral9991EA282C69197AE3541F691817B8AA8AA75E37; IL2CPP_EXTERN_C String_t* _stringLiteral9AB4AF5FA652CB899B14FB85768EB00CC1A84336; IL2CPP_EXTERN_C String_t* _stringLiteral9B3E0BB731BE6B60233737EC6BE4D311A531EAA3; IL2CPP_EXTERN_C String_t* _stringLiteral9C1576AC27CAC8326EA3CDE03CE7A486E12F423A; IL2CPP_EXTERN_C String_t* _stringLiteral9C86DC74663ECC1CCD6B393712268E40409B9836; IL2CPP_EXTERN_C String_t* _stringLiteral9D40F1B51AA0CEAA15B307E54B4E8CBB55AA5F41; IL2CPP_EXTERN_C String_t* _stringLiteral9E08846F84A87F4628A9EA2E58E82F48F327487F; IL2CPP_EXTERN_C String_t* _stringLiteral9FF8084A38A2BA5D3AF5434C6F7CDE90FE7E4F17; IL2CPP_EXTERN_C String_t* _stringLiteralA25C69590D313E80E32DAF839FFE871D0B53E5EB; IL2CPP_EXTERN_C String_t* _stringLiteralA26F3B56E8EC18D5E9B2F3593565BC50DD1C00EA; IL2CPP_EXTERN_C String_t* _stringLiteralA274C859B4B0F7D8B162451A5C2CA398FB1E7EF0; IL2CPP_EXTERN_C String_t* _stringLiteralA274E8124D27A871893F48591FC7D460F9CDF7BB; IL2CPP_EXTERN_C String_t* _stringLiteralA559775A4AA76573065DBA5D758E691409DE6ABC; IL2CPP_EXTERN_C String_t* _stringLiteralA5E015D1E82C615895DEEC39A1A58332540759EE; IL2CPP_EXTERN_C String_t* _stringLiteralA6DBDE4DFCE47C72AFA52C1981772A8DD7EFD2C8; IL2CPP_EXTERN_C String_t* _stringLiteralA7AD513E5696D5979899AAB85472797E009007D2; IL2CPP_EXTERN_C String_t* _stringLiteralA89A7CB6222D1265F348002D4FBC509E85F04E3C; IL2CPP_EXTERN_C String_t* _stringLiteralAA66D0C50542E2C2440FD7CD41EAF952D2AA6C07; IL2CPP_EXTERN_C String_t* _stringLiteralAA858DC323C5CD60EC7E3DF87F87F08C6D6A5ED4; IL2CPP_EXTERN_C String_t* _stringLiteralAB6241D920E1982A65736289A38A8270778B5CA4; IL2CPP_EXTERN_C String_t* _stringLiteralAC245E4F2ABD5E3E670839E36195798CA234D066; IL2CPP_EXTERN_C String_t* _stringLiteralAC51A6122475BAEA7B938D45B29BF5F44B3BDD57; IL2CPP_EXTERN_C String_t* _stringLiteralAD0EAD579F4BA2AF0880E986F927DEA09057BEB6; IL2CPP_EXTERN_C String_t* _stringLiteralAD214CA4022DF1E8E1E116B03230BDA457A47E3F; IL2CPP_EXTERN_C String_t* _stringLiteralADE0D0FF240BEC39C18B0D0787282CC14089C1BF; IL2CPP_EXTERN_C String_t* _stringLiteralAF7D31C5BBF30417DDBEDAFDC1967745DE3F8BE4; IL2CPP_EXTERN_C String_t* _stringLiteralAFB614D1497653B425D05DA1383AC8F86188BA56; IL2CPP_EXTERN_C String_t* _stringLiteralB01AED2D0100CD3952094A11FD72AFB01E1A1486; IL2CPP_EXTERN_C String_t* _stringLiteralB19634932BB7856F4D81F8177AF846DD0F91CA97; IL2CPP_EXTERN_C String_t* _stringLiteralB20BDFA407E8ED6000A3283A5EA7C89A8F902A74; IL2CPP_EXTERN_C String_t* _stringLiteralB319C97AB77A81D045CEE9D6CAFD2CC690867A26; IL2CPP_EXTERN_C String_t* _stringLiteralB347E2008E28D6FD19E14499D1DD858D83C0AF5B; IL2CPP_EXTERN_C String_t* _stringLiteralB3E6259D30715265CA9709E610A61728023A0455; IL2CPP_EXTERN_C String_t* _stringLiteralB45413D5021961F635D2351C965C6FBA649B7EC9; IL2CPP_EXTERN_C String_t* _stringLiteralB4D001C31FBECAB595B5B52B652E63F27D0364A7; IL2CPP_EXTERN_C String_t* _stringLiteralB63C27A619AD7A36C4B3F3ECF3FA384C6EE13052; IL2CPP_EXTERN_C String_t* _stringLiteralB65E1ED8B21DF0EA1C64796D6F9EE485AE148AEC; IL2CPP_EXTERN_C String_t* _stringLiteralB6A39BCD19B30575C38B01DF6389C3E3565F9EE0; IL2CPP_EXTERN_C String_t* _stringLiteralB7745A740C0A1346D860F22A7638EF5A029B56E5; IL2CPP_EXTERN_C String_t* _stringLiteralB7C45DD316C68ABF3429C20058C2981C652192F2; IL2CPP_EXTERN_C String_t* _stringLiteralB843B9E914BD029C6579E0F0829EAD6BFE812527; IL2CPP_EXTERN_C String_t* _stringLiteralB8922EC46451A10AF98A8BC936A0D7240221208C; IL2CPP_EXTERN_C String_t* _stringLiteralB9781714FE806F152E476A132D5187A200851483; IL2CPP_EXTERN_C String_t* _stringLiteralBA5079145312D61DF9DFE662DDDE58D2F42F8ED7; IL2CPP_EXTERN_C String_t* _stringLiteralBB09E6CC72C48F6E392498A64392F09213A02DB5; IL2CPP_EXTERN_C String_t* _stringLiteralBB1838C056CEE8E62129BA8CAE83D4B2A6E0E57D; IL2CPP_EXTERN_C String_t* _stringLiteralBB4EB8C44E60B09618FF6FA600D42DED52EBF759; IL2CPP_EXTERN_C String_t* _stringLiteralBB50F4519348FF1FC23BC3FF4F8254828745E8F4; IL2CPP_EXTERN_C String_t* _stringLiteralBBD8995AC116DBD781E2AC5892D774247494EC4E; IL2CPP_EXTERN_C String_t* _stringLiteralBE27790FE5F9592709AE1519C66D48EF4947F953; IL2CPP_EXTERN_C String_t* _stringLiteralBEA31DED1ABF5868FEA293ACC324947D7494ADDE; IL2CPP_EXTERN_C String_t* _stringLiteralC052903D81D1DB8D13AA0B8B401AE659C1BD8686; IL2CPP_EXTERN_C String_t* _stringLiteralC14A09080BF0C5125B47EAB9B7C3CF850E38279C; IL2CPP_EXTERN_C String_t* _stringLiteralC18EC69C8911CDC7ED562349D2736635C36DC13D; IL2CPP_EXTERN_C String_t* _stringLiteralC35E6E7218663D5133C7A29D53733C333363C1E5; IL2CPP_EXTERN_C String_t* _stringLiteralC40E5E193F8BD0F7C27AC84B5EF1B5CEB47CC249; IL2CPP_EXTERN_C String_t* _stringLiteralC4516D53E7FB744FA2A59B2651B20A5A1BC1F0C0; IL2CPP_EXTERN_C String_t* _stringLiteralC4A56FAB460818749E58F90AE234288DB165DA29; IL2CPP_EXTERN_C String_t* _stringLiteralC5B9D29112F10A57FA32ECF1804323A12B39785C; IL2CPP_EXTERN_C String_t* _stringLiteralC715ABAB0194B09F559C12418DDEFBF93E0D80C5; IL2CPP_EXTERN_C String_t* _stringLiteralC8458C8D48DCD6681DD4323441C4F6083121ECEF; IL2CPP_EXTERN_C String_t* _stringLiteralC98A5458D506397E4A6E0D9F916FFC06231E6406; IL2CPP_EXTERN_C String_t* _stringLiteralC9A60DAF92C3EDA5CB6CB6E661BA58F19E737431; IL2CPP_EXTERN_C String_t* _stringLiteralCAA6B825391555CB21E1F30044573329D55E0F38; IL2CPP_EXTERN_C String_t* _stringLiteralCAD8DAB2E71C78CA03FFF8463CEE936369363A58; IL2CPP_EXTERN_C String_t* _stringLiteralCB01C9E05D4942E28C25813D557B7F1C5FA5FB54; IL2CPP_EXTERN_C String_t* _stringLiteralCCAD23ED8EFB047E7DDC3717C32DD95445488797; IL2CPP_EXTERN_C String_t* _stringLiteralCDDE7E78FCC67275355EB8BF4E41C8CC2315DFE7; IL2CPP_EXTERN_C String_t* _stringLiteralCDE394519BDBA16E1F5D2D08306FCA052D9AE702; IL2CPP_EXTERN_C String_t* _stringLiteralCE0379382C2810C1AED5C5B0021E7B8221741E17; IL2CPP_EXTERN_C String_t* _stringLiteralCF6AA114F688B92A58866087FFFDCB1C8B3C8BAA; IL2CPP_EXTERN_C String_t* _stringLiteralCF9379CFF61615D76E0B0B6E0128B81E4CF1ABF1; IL2CPP_EXTERN_C String_t* _stringLiteralD0068DC89392872EB9C01A8AA52CCC00FC7C640C; IL2CPP_EXTERN_C String_t* _stringLiteralD0C6D4AFE953D9CE14E2F81B70259C4AB735DF92; IL2CPP_EXTERN_C String_t* _stringLiteralD450D41DFB34DEBA2752CBF7F31F7DE814ABEDA7; IL2CPP_EXTERN_C String_t* _stringLiteralD46D6C07FF90F8FDAC6964EC9280FC794C019111; IL2CPP_EXTERN_C String_t* _stringLiteralD56123798265CD0AB8A91DF961AD411823527003; IL2CPP_EXTERN_C String_t* _stringLiteralD60E67E20F0B2BFD833682C203F47054BEBC226E; IL2CPP_EXTERN_C String_t* _stringLiteralD67531B1D048A405842E4D7679A976CB2A3BC547; IL2CPP_EXTERN_C String_t* _stringLiteralD6753FC0539E7444F8A1B733D853D951E3C61224; IL2CPP_EXTERN_C String_t* _stringLiteralD70A42F9911B87AD36BFF9331A9D77B90B2BB312; IL2CPP_EXTERN_C String_t* _stringLiteralD77560853C61DE5CDFFFF7284C867C8AADA1C7EB; IL2CPP_EXTERN_C String_t* _stringLiteralDA430D713F700D689E39EE937ED5D91A114BD06C; IL2CPP_EXTERN_C String_t* _stringLiteralDBD28BC2EF720C8CC9728E3C1DBFA5999E43D889; IL2CPP_EXTERN_C String_t* _stringLiteralDC936AE62A93EE9993B8E9AF4E0DF8057AEA4DD0; IL2CPP_EXTERN_C String_t* _stringLiteralDD9C7849851C546319ED5DCC821A7B730DE8FF73; IL2CPP_EXTERN_C String_t* _stringLiteralDDB1E5CA18A9EC127B1F85C807C5ED8AC4DC732F; IL2CPP_EXTERN_C String_t* _stringLiteralDF148E756900B3F6F4BCFCAA06628B0369B4345A; IL2CPP_EXTERN_C String_t* _stringLiteralDFB72CAA660E859C2C08D5894EE4F8CF31499205; IL2CPP_EXTERN_C String_t* _stringLiteralE013CB7175F896483B899015961929F95C2D8F3B; IL2CPP_EXTERN_C String_t* _stringLiteralE0D890FAC4E2B6D9BA38821A105CF9C7927D2E9D; IL2CPP_EXTERN_C String_t* _stringLiteralE134CE3B47F0CA2291ABAA4D77503AC1B87A4F4B; IL2CPP_EXTERN_C String_t* _stringLiteralE238DF8CFBCA8644400598530413D41F2D360CEB; IL2CPP_EXTERN_C String_t* _stringLiteralE2748C15A306B030A614C7A2C0345FF6B7157B31; IL2CPP_EXTERN_C String_t* _stringLiteralE30B9CF94B6B5F8B03DDC681649AA91F91052589; IL2CPP_EXTERN_C String_t* _stringLiteralE349B7FF58448DE324AFCB5A47484A6E9B92F901; IL2CPP_EXTERN_C String_t* _stringLiteralE5CD40A254AC8BAAA92E07C4B4F420C4575EB473; IL2CPP_EXTERN_C String_t* _stringLiteralE5EDEFFF3F808206D94F2F2155C1DC87C822DAD1; IL2CPP_EXTERN_C String_t* _stringLiteralE7B4EE2FEA9DA0CE32E9A690C2F7C5B75E561F6D; IL2CPP_EXTERN_C String_t* _stringLiteralE7D028CCE3B6E7B61AE2C752D7AE970DA04AB7C6; IL2CPP_EXTERN_C String_t* _stringLiteralE891C28DDBD8DEA74B8242699E98BC0B682CDE50; IL2CPP_EXTERN_C String_t* _stringLiteralE8F97FBA9104D1EA5047948E6DFB67FACD9F5B73; IL2CPP_EXTERN_C String_t* _stringLiteralE95B0886054499DA2CC6B7A7E00855AD8E48EFD2; IL2CPP_EXTERN_C String_t* _stringLiteralEB0C5C7B9696B48D8934946ABC5AF8C7E345A166; IL2CPP_EXTERN_C String_t* _stringLiteralEB2CD4C6704ED17A9EC3675F0D53B6B9EC56DDAE; IL2CPP_EXTERN_C String_t* _stringLiteralEB7CCC8642D7B5521BC4E7440146281DA06EFDDF; IL2CPP_EXTERN_C String_t* _stringLiteralEBFEA42051B997E17C9814A7196FFB19014A1B51; IL2CPP_EXTERN_C String_t* _stringLiteralECAC83771A00C701043A940F621CC1C765D30D31; IL2CPP_EXTERN_C String_t* _stringLiteralEEB581426294AB7C542B4DF1DCD5666EA637F50E; IL2CPP_EXTERN_C String_t* _stringLiteralEFF24F032CA56F730D1D2B777C72D59A0DFBB023; IL2CPP_EXTERN_C String_t* _stringLiteralF39378FDB228D1C899BABB186E12163DE48302F5; IL2CPP_EXTERN_C String_t* _stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7; IL2CPP_EXTERN_C String_t* _stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D; IL2CPP_EXTERN_C String_t* _stringLiteralF4B67B27E4DD10700B0726FC3E0A89E2CDBB84C8; IL2CPP_EXTERN_C String_t* _stringLiteralF5F3D518D74CDAE2E342951A37B15FC36585931B; IL2CPP_EXTERN_C String_t* _stringLiteralF61B6A23CE93B6AFE193ECD7C22723977C0AE9BE; IL2CPP_EXTERN_C String_t* _stringLiteralF69464799A5315E9EDFCCA4192F95C0EC63497E2; IL2CPP_EXTERN_C String_t* _stringLiteralF7A3C33AFDA430D7C0DD7F5D7FCFF2148AAEDC61; IL2CPP_EXTERN_C String_t* _stringLiteralF7E6C53D86D8ADC0DB8EFC0A2CD9877CC8BC9914; IL2CPP_EXTERN_C String_t* _stringLiteralF8263941E7AF6E5400E121F49F46D3950F7B2674; IL2CPP_EXTERN_C String_t* _stringLiteralF8A55603D4897810C47EB31DB7176AED7ADF7040; IL2CPP_EXTERN_C String_t* _stringLiteralF9AC1B61D3DD77044C578CF8A47DDD6BB4D9BF9B; IL2CPP_EXTERN_C String_t* _stringLiteralFB0D08045BC59A6E6CCC741B5723192FE0F11FB1; IL2CPP_EXTERN_C String_t* _stringLiteralFB13E84196D89AEC308FE4EBDDBA438D9B79AFC9; IL2CPP_EXTERN_C String_t* _stringLiteralFB8144E92B418A6358F0B6DA1EF166FF4808FB53; IL2CPP_EXTERN_C String_t* _stringLiteralFC6AE34B365B3224669B1AE16E9272C39DADE3D8; IL2CPP_EXTERN_C String_t* _stringLiteralFC781037C309A91CFD1B45D0522BA44D3572D90D; IL2CPP_EXTERN_C String_t* _stringLiteralFD0541DDC28710D257FB999346ED7F8EA302E0A5; IL2CPP_EXTERN_C String_t* _stringLiteralFE2B9FED4F01812ED4CCA5B2E8D25DD225A20216; IL2CPP_EXTERN_C String_t* _stringLiteralFECD8400D40388654726CCBD85C70BC0C92155FC; IL2CPP_EXTERN_C String_t* _stringLiteralFF24683A7CE01C9C5DF5A82B08C1095A31338169; IL2CPP_EXTERN_C const RuntimeMethod* Array_Empty_TisAsn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC_m6133560D3294995A1E65C8837F69C407350CD6DB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponentInChildren_TisCamera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C_m4A6F4D4DA173325202560896349A5992857330C7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponent_TisParticleSystemMultiplier_tF64154D58A295DB07871009BCB8997DA413C9372_m086D40182BA3795F0007ABA5A4377278A0507E93_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponent_TisParticleSystem_t2F526CCDBD3512879B3FCBE04BCAB20D7B4F391E_mB99807A1A71B241CAA87B667FE074751724A2763_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponent_TisToggle_t68F5A84CDD2BBAEA866F42EB4E0C9F2B431D612E_m544EDB55EC6C249F96B487032ECEB73B848CD844_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponentsInChildren_TisParticleSystem_t2F526CCDBD3512879B3FCBE04BCAB20D7B4F391E_mDAF9A5D8D4A04ACDD64E45F3932B39273E855E3B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* GameObject_AddComponent_TisPersistenHandler_t0045D44D2514530321E6C396BB8FD5B9222E4CB1_mEF5A40AC0A3DE5EA95FC905BA7A020DD17AC52CF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m5023DFD162EDF7320CE8B2A2CF50C54B50BE1E62_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_RemoveAt_m776A2FA26D0AA2185665AC714486953B3DBA5D9E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m3B54A4C20C7EA7D3350768955A3CD521D7F069D3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mF1D464BA700E6389AEA8AF2F197270F387D9A41F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m14830FB8CB94C5F517EE78FFFC8F01F8C07D14E9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m199DB87BCE947106FBA38E19FDFE80CB65B61144_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m38EC27A53451661964C4F33683313E1FFF3A060D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m82AF14687C6FA2B1572D859A551E3ADBCBADC3C0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m22277597AF3CBF965433E8285B3F3FEE770EC852_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m38C091C1676A311B55BC80FB0432388175E3CE57_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m3F624A80E7853289E4759DE8F16CF23B0958365B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Object_Instantiate_TisTransform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1_m748821B299E8B2FAC05C55F2C8137BED1DB54917_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ParticleSceneControls_Next_m4AB6C18CBE0148C4D354FDCAD5EE45D472577B8E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ParticleSceneControls_Previous_mC2FE564898A6019238C5611E63B5EC3581CEAA63_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PasswordRecipientInfo_GetInstance_mC45806559DEBF80EF3FB455039CDC4FD4AE9635C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PasswordRecipientInformation_GetContentStream_m3A58BFC47A8A5BC18F8E12BC8537DDEAE71C59F7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PbeParameter_GetInstance_mC8A1BF10E5DD7E123C9E5FB3504654A98A135F91_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PbeParameter__ctor_m7A864D60939AEEA83665F380F5A901A67FF49BA8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PbeParametersGenerator_Init_mCC4B94B261058B579A8EC7CB3AEB9C1D97B4DF44_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PbeS2Parameters__ctor_m32893B42960DAA2449258556859586A76B78D5DF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PbeUtilities_MakePbeGenerator_m339D3DDFD6989D2B3CCDA93D30B748B48F91F2EE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Pbkdf2Params_GetInstance_mA76B9F7788A37825111A76FCDBE10444B9B6D80F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Pbkdf2Params__ctor_m687A52A9F3CC5FA0FD8E155D3EDEBE9A8B807E64_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PbmParameter_GetInstance_mCE78A6B8534740794DFEAA965292CBA423D32D9C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PemParser_ReadPemObject_m5E590EDFDB81FC5BEA5B90F25F129C27F8D999E8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PemReader_GetCurveParameters_m532E35BE8E30E521E478379A4C634B880141BC83_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PemReader_LoadObject_m65BE776BCCB29F1194C71D38C06315E82844207A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PemReader_ReadCertificateRequest_mE01E396CDB8286CC0D4C5659DB41EC0368728578_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PemReader_ReadCertificate_m080610FFC0A137838903BAE250978E275C3A45E4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PemReader_ReadCrl_m8782A41CE0D44004579502AA1F72048092C54674_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PemReader_ReadObject_m1FC5F3A6F3EFB56A29042957809CBB2CAAD800B5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PemReader_ReadPkcs7_mB96ACCC580DD0F02787B35C020B893398502E9AB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PemReader_ReadPrivateKey_mFDFF79E1789C53FA90B42E275CD7A26717FC9A48_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PemReader__ctor_m100006695CE56FE2FD677B8454279A3ABBCA276C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PemUtilities_Crypt_m5C4E1149C81EEE9EEBCF03F80D01C433BF3309BB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PemUtilities_ParseDekAlgName_m3E6401EDD6C200D075DED9C0465E69666A70AAD4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PemWriter_WriteObject_m2357E9258320E8EED89994AF6D76E293620A2E02_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PemWriter__ctor_m043364085BA5C32FA9D032A22FC136B8B804A34D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PersonalData_GetInstance_m1F8C55BB2B4C3FE7A649640AB7748C6D07BBA397_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PersonalData__ctor_m6D71463C2671197F694C722933A6A4C1A77B2459_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Pfx__ctor_mB40FC3D7DAF0E4E63AEAE9B013E0CC6F6CE42FCB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Pkcs10CertificationRequestDelaySigned__ctor_m53B0320A49265A5F84B4F4FA9E25F2045A0FA856_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Pkcs10CertificationRequest_SetSignatureParameters_m477D0389E49889774BEB49126E3E3AF1D218A328_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Pkcs10CertificationRequest_Verify_m7D332A490AA7DE73A226C66B5F5C509E6EAC8758_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Pkcs10CertificationRequest__ctor_mCED3048884B07700FBBDCDB93E724301BF208355_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Pkcs12Entry__ctor_mC1F188FC10C14FAD0BAA2F6035BA3A51FD3547D8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Pkcs12PbeParams_GetInstance_m36047B9C19D8489F7FA01634F458B47DD93EDAF0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Pkcs12PbeParams__ctor_m08FDF35DD5665A227087916FC661ED0476DC0F7C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Pkcs12Store_CryptPbeData_mD650125EDCA07EC0E77A4CB59F2AFA1769D2C1E3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Pkcs12Store_DeleteEntry_mABDE0AAFBA8884A419E9B6F5CC9C2BE4309C70A3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Pkcs12Store_GetCertificateAlias_m6FADA707CEC1CDD292C96A8993599C0BB2010DB5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Pkcs12Store_GetCertificateChain_m537DE632000EAEBCE38CB723F6258AE397CFA76D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Pkcs12Store_GetCertificate_m529F10F86A5EC9F6CA3D607A895F438BB790FC6C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Pkcs12Store_GetKey_m94F8D2890DAE319F5647008A6C88ED386F504611_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Pkcs12Store_IsCertificateEntry_m1DEFCC0A65BD1FFA2F6737F954A207CD2DB7C8AE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Pkcs12Store_IsKeyEntry_m704603FDB09897ECD32EB29749318EFB4DE69EE9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Pkcs12Store_LoadKeyBag_m2F38F31F262269E76F6426440A40038FD265CE9C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Pkcs12Store_Load_m7BA37542FF708F42C9852C4A09807261E5191216_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Pkcs12Store_Save_m7AC52F7B528DC094E71607495E22AA1FA5F3B57E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Pkcs12Store_SetCertificateEntry_m7E0D505630080CE463FF59348CA56CC478A94E50_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Pkcs12Store_SetKeyEntry_m14F50E49B74986677523B56D2DF1DBE774950309_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Pkcs12Utilities_ConvertToDefiniteLength_m660B5D8903AF571C1718A62EBE9568FE3411DB3C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Pkcs1Encoding_DecodeBlockOrRandom_m5B2F9A990A56BBC784E4B80158E23F8673F50EC8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Pkcs1Encoding_DecodeBlock_m89D69AB3CF15FE186D9F6FD9B067DC65A24D1C53_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Pkcs1Encoding_EncodeBlock_mA32D4FC10641824807DA84171C6F1689F5D79CE0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Pkcs1Encoding_Init_m30D6ABD066E951C0EE2E79618AA869F41422F5F3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Singleton_1__ctor_m62CBF66F74F4535007FED242AFFA41C6ACCB8B68_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeType* Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* AsymmetricKeyEntry_t3CBF289F816398AE0AB9B8E7E8E31AECE8BD69AF_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* PemBaseAlg_tD6B3B3A5B862C18C4257FEED63257A3171CCB41B_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* PemMode_t18614713AE3372E7FD770296933FFE78FEB758EA_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* String_t_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* X509CertificateEntry_tB47F6587E5679B9935CD1D830FF74CB1309E76D3_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 BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C; struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726; struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34; struct ContentInfoU5BU5D_tB242C6E38BA3C72A5125CA177D6042A541D63873; struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE; struct ParticleSystemU5BU5D_t9786AE8909F75284FDCB6BAD155E24AAFDB88CC7; struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A; struct X509CertificateEntryU5BU5D_tA2C8111B89B14B0A674CCA7C45C79819015D180B; struct DemoParticleSystemU5BU5D_tECC3FBA90A93A35A05B79DFD1CA338C08FEDD8B1; 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.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_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_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_t367B604D3EA3D6A9EC95A32A521EF83F5DA9B447 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items RaycastResultU5BU5D_t55B9DF597EFA3BE063604C0950E370D850283B9D* ____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_t367B604D3EA3D6A9EC95A32A521EF83F5DA9B447, ____items_1)); } inline RaycastResultU5BU5D_t55B9DF597EFA3BE063604C0950E370D850283B9D* get__items_1() const { return ____items_1; } inline RaycastResultU5BU5D_t55B9DF597EFA3BE063604C0950E370D850283B9D** get_address_of__items_1() { return &____items_1; } inline void set__items_1(RaycastResultU5BU5D_t55B9DF597EFA3BE063604C0950E370D850283B9D* 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_t367B604D3EA3D6A9EC95A32A521EF83F5DA9B447, ____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_t367B604D3EA3D6A9EC95A32A521EF83F5DA9B447, ____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_t367B604D3EA3D6A9EC95A32A521EF83F5DA9B447, ____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_t367B604D3EA3D6A9EC95A32A521EF83F5DA9B447_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray RaycastResultU5BU5D_t55B9DF597EFA3BE063604C0950E370D850283B9D* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast(offsetof(List_1_t367B604D3EA3D6A9EC95A32A521EF83F5DA9B447_StaticFields, ____emptyArray_5)); } inline RaycastResultU5BU5D_t55B9DF597EFA3BE063604C0950E370D850283B9D* get__emptyArray_5() const { return ____emptyArray_5; } inline RaycastResultU5BU5D_t55B9DF597EFA3BE063604C0950E370D850283B9D** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(RaycastResultU5BU5D_t55B9DF597EFA3BE063604C0950E370D850283B9D* 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.List`1 struct List_1_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items TransformU5BU5D_t7821C0520CC567C0A069329C01AE9C058C7E3F1D* ____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_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0, ____items_1)); } inline TransformU5BU5D_t7821C0520CC567C0A069329C01AE9C058C7E3F1D* get__items_1() const { return ____items_1; } inline TransformU5BU5D_t7821C0520CC567C0A069329C01AE9C058C7E3F1D** get_address_of__items_1() { return &____items_1; } inline void set__items_1(TransformU5BU5D_t7821C0520CC567C0A069329C01AE9C058C7E3F1D* 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_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0, ____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_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0, ____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_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0, ____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_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray TransformU5BU5D_t7821C0520CC567C0A069329C01AE9C058C7E3F1D* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast(offsetof(List_1_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0_StaticFields, ____emptyArray_5)); } inline TransformU5BU5D_t7821C0520CC567C0A069329C01AE9C058C7E3F1D* get__emptyArray_5() const { return ____emptyArray_5; } inline TransformU5BU5D_t7821C0520CC567C0A069329C01AE9C058C7E3F1D** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(TransformU5BU5D_t7821C0520CC567C0A069329C01AE9C058C7E3F1D* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // JCUnityLib.Singleton`1 struct Singleton_1_t0719B3A1BB0D5839C1D99BAA5C727447D38C8302 : public RuntimeObject { public: public: }; struct Singleton_1_t0719B3A1BB0D5839C1D99BAA5C727447D38C8302_StaticFields { public: // T JCUnityLib.Singleton`1::s_Instance PhoneValidateController_tA68BAFB6E7CD7EFAC5B1A61B170F077143050F23 * ___s_Instance_0; public: inline static int32_t get_offset_of_s_Instance_0() { return static_cast(offsetof(Singleton_1_t0719B3A1BB0D5839C1D99BAA5C727447D38C8302_StaticFields, ___s_Instance_0)); } inline PhoneValidateController_tA68BAFB6E7CD7EFAC5B1A61B170F077143050F23 * get_s_Instance_0() const { return ___s_Instance_0; } inline PhoneValidateController_tA68BAFB6E7CD7EFAC5B1A61B170F077143050F23 ** get_address_of_s_Instance_0() { return &___s_Instance_0; } inline void set_s_Instance_0(PhoneValidateController_tA68BAFB6E7CD7EFAC5B1A61B170F077143050F23 * value) { ___s_Instance_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_Instance_0), (void*)value); } }; // UnityEngine.EventSystems.AbstractEventData struct AbstractEventData_tA0B5065DE3430C0031ADE061668E1C7073D718DF : public RuntimeObject { public: // System.Boolean UnityEngine.EventSystems.AbstractEventData::m_Used bool ___m_Used_0; public: inline static int32_t get_offset_of_m_Used_0() { return static_cast(offsetof(AbstractEventData_tA0B5065DE3430C0031ADE061668E1C7073D718DF, ___m_Used_0)); } inline bool get_m_Used_0() const { return ___m_Used_0; } inline bool* get_address_of_m_Used_0() { return &___m_Used_0; } inline void set_m_Used_0(bool value) { ___m_Used_0 = 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.Operators.Asn1SignatureFactory struct Asn1SignatureFactory_t82880FE5F99692E8C940551308221AA7CAB2682A : public RuntimeObject { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Operators.Asn1SignatureFactory::algID AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___algID_0; // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Operators.Asn1SignatureFactory::algorithm String_t* ___algorithm_1; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Operators.Asn1SignatureFactory::privateKey AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * ___privateKey_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Operators.Asn1SignatureFactory::random SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * ___random_3; public: inline static int32_t get_offset_of_algID_0() { return static_cast(offsetof(Asn1SignatureFactory_t82880FE5F99692E8C940551308221AA7CAB2682A, ___algID_0)); } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * get_algID_0() const { return ___algID_0; } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 ** get_address_of_algID_0() { return &___algID_0; } inline void set_algID_0(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * value) { ___algID_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___algID_0), (void*)value); } inline static int32_t get_offset_of_algorithm_1() { return static_cast(offsetof(Asn1SignatureFactory_t82880FE5F99692E8C940551308221AA7CAB2682A, ___algorithm_1)); } inline String_t* get_algorithm_1() const { return ___algorithm_1; } inline String_t** get_address_of_algorithm_1() { return &___algorithm_1; } inline void set_algorithm_1(String_t* value) { ___algorithm_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___algorithm_1), (void*)value); } inline static int32_t get_offset_of_privateKey_2() { return static_cast(offsetof(Asn1SignatureFactory_t82880FE5F99692E8C940551308221AA7CAB2682A, ___privateKey_2)); } inline AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * get_privateKey_2() const { return ___privateKey_2; } inline AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A ** get_address_of_privateKey_2() { return &___privateKey_2; } inline void set_privateKey_2(AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * value) { ___privateKey_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___privateKey_2), (void*)value); } inline static int32_t get_offset_of_random_3() { return static_cast(offsetof(Asn1SignatureFactory_t82880FE5F99692E8C940551308221AA7CAB2682A, ___random_3)); } inline SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * get_random_3() const { return ___random_3; } inline SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 ** get_address_of_random_3() { return &___random_3; } inline void set_random_3(SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * value) { ___random_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___random_3), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Operators.Asn1VerifierFactoryProvider struct Asn1VerifierFactoryProvider_t4AB1B332A609AF2476DA0AE60D91F1563C1B564D : public RuntimeObject { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Operators.Asn1VerifierFactoryProvider::publicKey AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * ___publicKey_0; public: inline static int32_t get_offset_of_publicKey_0() { return static_cast(offsetof(Asn1VerifierFactoryProvider_t4AB1B332A609AF2476DA0AE60D91F1563C1B564D, ___publicKey_0)); } inline AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * get_publicKey_0() const { return ___publicKey_0; } inline AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A ** get_address_of_publicKey_0() { return &___publicKey_0; } inline void set_publicKey_0(AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * value) { ___publicKey_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___publicKey_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.Asn1.BC.BCObjectIdentifiers struct BCObjectIdentifiers_t7C3698D878F567B9CDCBBAC0429FDBBFAB20E0F8 : public RuntimeObject { public: public: }; struct BCObjectIdentifiers_t7C3698D878F567B9CDCBBAC0429FDBBFAB20E0F8_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::bc DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___bc_0; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::bc_pbe DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___bc_pbe_1; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::bc_pbe_sha1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___bc_pbe_sha1_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::bc_pbe_sha256 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___bc_pbe_sha256_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::bc_pbe_sha384 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___bc_pbe_sha384_4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::bc_pbe_sha512 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___bc_pbe_sha512_5; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::bc_pbe_sha224 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___bc_pbe_sha224_6; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::bc_pbe_sha1_pkcs5 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___bc_pbe_sha1_pkcs5_7; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::bc_pbe_sha1_pkcs12 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___bc_pbe_sha1_pkcs12_8; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::bc_pbe_sha256_pkcs5 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___bc_pbe_sha256_pkcs5_9; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::bc_pbe_sha256_pkcs12 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___bc_pbe_sha256_pkcs12_10; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::bc_pbe_sha1_pkcs12_aes128_cbc DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___bc_pbe_sha1_pkcs12_aes128_cbc_11; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::bc_pbe_sha1_pkcs12_aes192_cbc DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___bc_pbe_sha1_pkcs12_aes192_cbc_12; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::bc_pbe_sha1_pkcs12_aes256_cbc DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___bc_pbe_sha1_pkcs12_aes256_cbc_13; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::bc_pbe_sha256_pkcs12_aes128_cbc DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___bc_pbe_sha256_pkcs12_aes128_cbc_14; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::bc_pbe_sha256_pkcs12_aes192_cbc DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___bc_pbe_sha256_pkcs12_aes192_cbc_15; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::bc_pbe_sha256_pkcs12_aes256_cbc DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___bc_pbe_sha256_pkcs12_aes256_cbc_16; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::bc_sig DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___bc_sig_17; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincs256 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___sphincs256_18; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincs256_with_BLAKE512 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___sphincs256_with_BLAKE512_19; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincs256_with_SHA512 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___sphincs256_with_SHA512_20; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincs256_with_SHA3_512 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___sphincs256_with_SHA3_512_21; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::xmss DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___xmss_22; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::xmss_with_SHA256 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___xmss_with_SHA256_23; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::xmss_with_SHA512 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___xmss_with_SHA512_24; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::xmss_with_SHAKE128 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___xmss_with_SHAKE128_25; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::xmss_with_SHAKE256 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___xmss_with_SHAKE256_26; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::xmss_mt DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___xmss_mt_27; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::xmss_mt_with_SHA256 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___xmss_mt_with_SHA256_28; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::xmss_mt_with_SHA512 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___xmss_mt_with_SHA512_29; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::xmss_mt_with_SHAKE128 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___xmss_mt_with_SHAKE128_30; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::xmss_mt_with_SHAKE256 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___xmss_mt_with_SHAKE256_31; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::bc_exch DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___bc_exch_32; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::newHope DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___newHope_33; public: inline static int32_t get_offset_of_bc_0() { return static_cast(offsetof(BCObjectIdentifiers_t7C3698D878F567B9CDCBBAC0429FDBBFAB20E0F8_StaticFields, ___bc_0)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_bc_0() const { return ___bc_0; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_bc_0() { return &___bc_0; } inline void set_bc_0(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___bc_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___bc_0), (void*)value); } inline static int32_t get_offset_of_bc_pbe_1() { return static_cast(offsetof(BCObjectIdentifiers_t7C3698D878F567B9CDCBBAC0429FDBBFAB20E0F8_StaticFields, ___bc_pbe_1)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_bc_pbe_1() const { return ___bc_pbe_1; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_bc_pbe_1() { return &___bc_pbe_1; } inline void set_bc_pbe_1(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___bc_pbe_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___bc_pbe_1), (void*)value); } inline static int32_t get_offset_of_bc_pbe_sha1_2() { return static_cast(offsetof(BCObjectIdentifiers_t7C3698D878F567B9CDCBBAC0429FDBBFAB20E0F8_StaticFields, ___bc_pbe_sha1_2)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_bc_pbe_sha1_2() const { return ___bc_pbe_sha1_2; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_bc_pbe_sha1_2() { return &___bc_pbe_sha1_2; } inline void set_bc_pbe_sha1_2(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___bc_pbe_sha1_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___bc_pbe_sha1_2), (void*)value); } inline static int32_t get_offset_of_bc_pbe_sha256_3() { return static_cast(offsetof(BCObjectIdentifiers_t7C3698D878F567B9CDCBBAC0429FDBBFAB20E0F8_StaticFields, ___bc_pbe_sha256_3)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_bc_pbe_sha256_3() const { return ___bc_pbe_sha256_3; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_bc_pbe_sha256_3() { return &___bc_pbe_sha256_3; } inline void set_bc_pbe_sha256_3(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___bc_pbe_sha256_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___bc_pbe_sha256_3), (void*)value); } inline static int32_t get_offset_of_bc_pbe_sha384_4() { return static_cast(offsetof(BCObjectIdentifiers_t7C3698D878F567B9CDCBBAC0429FDBBFAB20E0F8_StaticFields, ___bc_pbe_sha384_4)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_bc_pbe_sha384_4() const { return ___bc_pbe_sha384_4; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_bc_pbe_sha384_4() { return &___bc_pbe_sha384_4; } inline void set_bc_pbe_sha384_4(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___bc_pbe_sha384_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___bc_pbe_sha384_4), (void*)value); } inline static int32_t get_offset_of_bc_pbe_sha512_5() { return static_cast(offsetof(BCObjectIdentifiers_t7C3698D878F567B9CDCBBAC0429FDBBFAB20E0F8_StaticFields, ___bc_pbe_sha512_5)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_bc_pbe_sha512_5() const { return ___bc_pbe_sha512_5; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_bc_pbe_sha512_5() { return &___bc_pbe_sha512_5; } inline void set_bc_pbe_sha512_5(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___bc_pbe_sha512_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___bc_pbe_sha512_5), (void*)value); } inline static int32_t get_offset_of_bc_pbe_sha224_6() { return static_cast(offsetof(BCObjectIdentifiers_t7C3698D878F567B9CDCBBAC0429FDBBFAB20E0F8_StaticFields, ___bc_pbe_sha224_6)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_bc_pbe_sha224_6() const { return ___bc_pbe_sha224_6; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_bc_pbe_sha224_6() { return &___bc_pbe_sha224_6; } inline void set_bc_pbe_sha224_6(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___bc_pbe_sha224_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___bc_pbe_sha224_6), (void*)value); } inline static int32_t get_offset_of_bc_pbe_sha1_pkcs5_7() { return static_cast(offsetof(BCObjectIdentifiers_t7C3698D878F567B9CDCBBAC0429FDBBFAB20E0F8_StaticFields, ___bc_pbe_sha1_pkcs5_7)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_bc_pbe_sha1_pkcs5_7() const { return ___bc_pbe_sha1_pkcs5_7; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_bc_pbe_sha1_pkcs5_7() { return &___bc_pbe_sha1_pkcs5_7; } inline void set_bc_pbe_sha1_pkcs5_7(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___bc_pbe_sha1_pkcs5_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___bc_pbe_sha1_pkcs5_7), (void*)value); } inline static int32_t get_offset_of_bc_pbe_sha1_pkcs12_8() { return static_cast(offsetof(BCObjectIdentifiers_t7C3698D878F567B9CDCBBAC0429FDBBFAB20E0F8_StaticFields, ___bc_pbe_sha1_pkcs12_8)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_bc_pbe_sha1_pkcs12_8() const { return ___bc_pbe_sha1_pkcs12_8; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_bc_pbe_sha1_pkcs12_8() { return &___bc_pbe_sha1_pkcs12_8; } inline void set_bc_pbe_sha1_pkcs12_8(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___bc_pbe_sha1_pkcs12_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___bc_pbe_sha1_pkcs12_8), (void*)value); } inline static int32_t get_offset_of_bc_pbe_sha256_pkcs5_9() { return static_cast(offsetof(BCObjectIdentifiers_t7C3698D878F567B9CDCBBAC0429FDBBFAB20E0F8_StaticFields, ___bc_pbe_sha256_pkcs5_9)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_bc_pbe_sha256_pkcs5_9() const { return ___bc_pbe_sha256_pkcs5_9; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_bc_pbe_sha256_pkcs5_9() { return &___bc_pbe_sha256_pkcs5_9; } inline void set_bc_pbe_sha256_pkcs5_9(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___bc_pbe_sha256_pkcs5_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___bc_pbe_sha256_pkcs5_9), (void*)value); } inline static int32_t get_offset_of_bc_pbe_sha256_pkcs12_10() { return static_cast(offsetof(BCObjectIdentifiers_t7C3698D878F567B9CDCBBAC0429FDBBFAB20E0F8_StaticFields, ___bc_pbe_sha256_pkcs12_10)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_bc_pbe_sha256_pkcs12_10() const { return ___bc_pbe_sha256_pkcs12_10; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_bc_pbe_sha256_pkcs12_10() { return &___bc_pbe_sha256_pkcs12_10; } inline void set_bc_pbe_sha256_pkcs12_10(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___bc_pbe_sha256_pkcs12_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___bc_pbe_sha256_pkcs12_10), (void*)value); } inline static int32_t get_offset_of_bc_pbe_sha1_pkcs12_aes128_cbc_11() { return static_cast(offsetof(BCObjectIdentifiers_t7C3698D878F567B9CDCBBAC0429FDBBFAB20E0F8_StaticFields, ___bc_pbe_sha1_pkcs12_aes128_cbc_11)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_bc_pbe_sha1_pkcs12_aes128_cbc_11() const { return ___bc_pbe_sha1_pkcs12_aes128_cbc_11; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_bc_pbe_sha1_pkcs12_aes128_cbc_11() { return &___bc_pbe_sha1_pkcs12_aes128_cbc_11; } inline void set_bc_pbe_sha1_pkcs12_aes128_cbc_11(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___bc_pbe_sha1_pkcs12_aes128_cbc_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___bc_pbe_sha1_pkcs12_aes128_cbc_11), (void*)value); } inline static int32_t get_offset_of_bc_pbe_sha1_pkcs12_aes192_cbc_12() { return static_cast(offsetof(BCObjectIdentifiers_t7C3698D878F567B9CDCBBAC0429FDBBFAB20E0F8_StaticFields, ___bc_pbe_sha1_pkcs12_aes192_cbc_12)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_bc_pbe_sha1_pkcs12_aes192_cbc_12() const { return ___bc_pbe_sha1_pkcs12_aes192_cbc_12; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_bc_pbe_sha1_pkcs12_aes192_cbc_12() { return &___bc_pbe_sha1_pkcs12_aes192_cbc_12; } inline void set_bc_pbe_sha1_pkcs12_aes192_cbc_12(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___bc_pbe_sha1_pkcs12_aes192_cbc_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___bc_pbe_sha1_pkcs12_aes192_cbc_12), (void*)value); } inline static int32_t get_offset_of_bc_pbe_sha1_pkcs12_aes256_cbc_13() { return static_cast(offsetof(BCObjectIdentifiers_t7C3698D878F567B9CDCBBAC0429FDBBFAB20E0F8_StaticFields, ___bc_pbe_sha1_pkcs12_aes256_cbc_13)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_bc_pbe_sha1_pkcs12_aes256_cbc_13() const { return ___bc_pbe_sha1_pkcs12_aes256_cbc_13; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_bc_pbe_sha1_pkcs12_aes256_cbc_13() { return &___bc_pbe_sha1_pkcs12_aes256_cbc_13; } inline void set_bc_pbe_sha1_pkcs12_aes256_cbc_13(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___bc_pbe_sha1_pkcs12_aes256_cbc_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___bc_pbe_sha1_pkcs12_aes256_cbc_13), (void*)value); } inline static int32_t get_offset_of_bc_pbe_sha256_pkcs12_aes128_cbc_14() { return static_cast(offsetof(BCObjectIdentifiers_t7C3698D878F567B9CDCBBAC0429FDBBFAB20E0F8_StaticFields, ___bc_pbe_sha256_pkcs12_aes128_cbc_14)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_bc_pbe_sha256_pkcs12_aes128_cbc_14() const { return ___bc_pbe_sha256_pkcs12_aes128_cbc_14; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_bc_pbe_sha256_pkcs12_aes128_cbc_14() { return &___bc_pbe_sha256_pkcs12_aes128_cbc_14; } inline void set_bc_pbe_sha256_pkcs12_aes128_cbc_14(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___bc_pbe_sha256_pkcs12_aes128_cbc_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___bc_pbe_sha256_pkcs12_aes128_cbc_14), (void*)value); } inline static int32_t get_offset_of_bc_pbe_sha256_pkcs12_aes192_cbc_15() { return static_cast(offsetof(BCObjectIdentifiers_t7C3698D878F567B9CDCBBAC0429FDBBFAB20E0F8_StaticFields, ___bc_pbe_sha256_pkcs12_aes192_cbc_15)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_bc_pbe_sha256_pkcs12_aes192_cbc_15() const { return ___bc_pbe_sha256_pkcs12_aes192_cbc_15; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_bc_pbe_sha256_pkcs12_aes192_cbc_15() { return &___bc_pbe_sha256_pkcs12_aes192_cbc_15; } inline void set_bc_pbe_sha256_pkcs12_aes192_cbc_15(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___bc_pbe_sha256_pkcs12_aes192_cbc_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___bc_pbe_sha256_pkcs12_aes192_cbc_15), (void*)value); } inline static int32_t get_offset_of_bc_pbe_sha256_pkcs12_aes256_cbc_16() { return static_cast(offsetof(BCObjectIdentifiers_t7C3698D878F567B9CDCBBAC0429FDBBFAB20E0F8_StaticFields, ___bc_pbe_sha256_pkcs12_aes256_cbc_16)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_bc_pbe_sha256_pkcs12_aes256_cbc_16() const { return ___bc_pbe_sha256_pkcs12_aes256_cbc_16; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_bc_pbe_sha256_pkcs12_aes256_cbc_16() { return &___bc_pbe_sha256_pkcs12_aes256_cbc_16; } inline void set_bc_pbe_sha256_pkcs12_aes256_cbc_16(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___bc_pbe_sha256_pkcs12_aes256_cbc_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___bc_pbe_sha256_pkcs12_aes256_cbc_16), (void*)value); } inline static int32_t get_offset_of_bc_sig_17() { return static_cast(offsetof(BCObjectIdentifiers_t7C3698D878F567B9CDCBBAC0429FDBBFAB20E0F8_StaticFields, ___bc_sig_17)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_bc_sig_17() const { return ___bc_sig_17; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_bc_sig_17() { return &___bc_sig_17; } inline void set_bc_sig_17(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___bc_sig_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___bc_sig_17), (void*)value); } inline static int32_t get_offset_of_sphincs256_18() { return static_cast(offsetof(BCObjectIdentifiers_t7C3698D878F567B9CDCBBAC0429FDBBFAB20E0F8_StaticFields, ___sphincs256_18)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_sphincs256_18() const { return ___sphincs256_18; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_sphincs256_18() { return &___sphincs256_18; } inline void set_sphincs256_18(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___sphincs256_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___sphincs256_18), (void*)value); } inline static int32_t get_offset_of_sphincs256_with_BLAKE512_19() { return static_cast(offsetof(BCObjectIdentifiers_t7C3698D878F567B9CDCBBAC0429FDBBFAB20E0F8_StaticFields, ___sphincs256_with_BLAKE512_19)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_sphincs256_with_BLAKE512_19() const { return ___sphincs256_with_BLAKE512_19; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_sphincs256_with_BLAKE512_19() { return &___sphincs256_with_BLAKE512_19; } inline void set_sphincs256_with_BLAKE512_19(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___sphincs256_with_BLAKE512_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___sphincs256_with_BLAKE512_19), (void*)value); } inline static int32_t get_offset_of_sphincs256_with_SHA512_20() { return static_cast(offsetof(BCObjectIdentifiers_t7C3698D878F567B9CDCBBAC0429FDBBFAB20E0F8_StaticFields, ___sphincs256_with_SHA512_20)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_sphincs256_with_SHA512_20() const { return ___sphincs256_with_SHA512_20; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_sphincs256_with_SHA512_20() { return &___sphincs256_with_SHA512_20; } inline void set_sphincs256_with_SHA512_20(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___sphincs256_with_SHA512_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___sphincs256_with_SHA512_20), (void*)value); } inline static int32_t get_offset_of_sphincs256_with_SHA3_512_21() { return static_cast(offsetof(BCObjectIdentifiers_t7C3698D878F567B9CDCBBAC0429FDBBFAB20E0F8_StaticFields, ___sphincs256_with_SHA3_512_21)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_sphincs256_with_SHA3_512_21() const { return ___sphincs256_with_SHA3_512_21; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_sphincs256_with_SHA3_512_21() { return &___sphincs256_with_SHA3_512_21; } inline void set_sphincs256_with_SHA3_512_21(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___sphincs256_with_SHA3_512_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___sphincs256_with_SHA3_512_21), (void*)value); } inline static int32_t get_offset_of_xmss_22() { return static_cast(offsetof(BCObjectIdentifiers_t7C3698D878F567B9CDCBBAC0429FDBBFAB20E0F8_StaticFields, ___xmss_22)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_xmss_22() const { return ___xmss_22; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_xmss_22() { return &___xmss_22; } inline void set_xmss_22(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___xmss_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___xmss_22), (void*)value); } inline static int32_t get_offset_of_xmss_with_SHA256_23() { return static_cast(offsetof(BCObjectIdentifiers_t7C3698D878F567B9CDCBBAC0429FDBBFAB20E0F8_StaticFields, ___xmss_with_SHA256_23)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_xmss_with_SHA256_23() const { return ___xmss_with_SHA256_23; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_xmss_with_SHA256_23() { return &___xmss_with_SHA256_23; } inline void set_xmss_with_SHA256_23(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___xmss_with_SHA256_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___xmss_with_SHA256_23), (void*)value); } inline static int32_t get_offset_of_xmss_with_SHA512_24() { return static_cast(offsetof(BCObjectIdentifiers_t7C3698D878F567B9CDCBBAC0429FDBBFAB20E0F8_StaticFields, ___xmss_with_SHA512_24)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_xmss_with_SHA512_24() const { return ___xmss_with_SHA512_24; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_xmss_with_SHA512_24() { return &___xmss_with_SHA512_24; } inline void set_xmss_with_SHA512_24(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___xmss_with_SHA512_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___xmss_with_SHA512_24), (void*)value); } inline static int32_t get_offset_of_xmss_with_SHAKE128_25() { return static_cast(offsetof(BCObjectIdentifiers_t7C3698D878F567B9CDCBBAC0429FDBBFAB20E0F8_StaticFields, ___xmss_with_SHAKE128_25)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_xmss_with_SHAKE128_25() const { return ___xmss_with_SHAKE128_25; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_xmss_with_SHAKE128_25() { return &___xmss_with_SHAKE128_25; } inline void set_xmss_with_SHAKE128_25(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___xmss_with_SHAKE128_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___xmss_with_SHAKE128_25), (void*)value); } inline static int32_t get_offset_of_xmss_with_SHAKE256_26() { return static_cast(offsetof(BCObjectIdentifiers_t7C3698D878F567B9CDCBBAC0429FDBBFAB20E0F8_StaticFields, ___xmss_with_SHAKE256_26)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_xmss_with_SHAKE256_26() const { return ___xmss_with_SHAKE256_26; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_xmss_with_SHAKE256_26() { return &___xmss_with_SHAKE256_26; } inline void set_xmss_with_SHAKE256_26(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___xmss_with_SHAKE256_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___xmss_with_SHAKE256_26), (void*)value); } inline static int32_t get_offset_of_xmss_mt_27() { return static_cast(offsetof(BCObjectIdentifiers_t7C3698D878F567B9CDCBBAC0429FDBBFAB20E0F8_StaticFields, ___xmss_mt_27)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_xmss_mt_27() const { return ___xmss_mt_27; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_xmss_mt_27() { return &___xmss_mt_27; } inline void set_xmss_mt_27(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___xmss_mt_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___xmss_mt_27), (void*)value); } inline static int32_t get_offset_of_xmss_mt_with_SHA256_28() { return static_cast(offsetof(BCObjectIdentifiers_t7C3698D878F567B9CDCBBAC0429FDBBFAB20E0F8_StaticFields, ___xmss_mt_with_SHA256_28)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_xmss_mt_with_SHA256_28() const { return ___xmss_mt_with_SHA256_28; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_xmss_mt_with_SHA256_28() { return &___xmss_mt_with_SHA256_28; } inline void set_xmss_mt_with_SHA256_28(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___xmss_mt_with_SHA256_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___xmss_mt_with_SHA256_28), (void*)value); } inline static int32_t get_offset_of_xmss_mt_with_SHA512_29() { return static_cast(offsetof(BCObjectIdentifiers_t7C3698D878F567B9CDCBBAC0429FDBBFAB20E0F8_StaticFields, ___xmss_mt_with_SHA512_29)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_xmss_mt_with_SHA512_29() const { return ___xmss_mt_with_SHA512_29; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_xmss_mt_with_SHA512_29() { return &___xmss_mt_with_SHA512_29; } inline void set_xmss_mt_with_SHA512_29(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___xmss_mt_with_SHA512_29 = value; Il2CppCodeGenWriteBarrier((void**)(&___xmss_mt_with_SHA512_29), (void*)value); } inline static int32_t get_offset_of_xmss_mt_with_SHAKE128_30() { return static_cast(offsetof(BCObjectIdentifiers_t7C3698D878F567B9CDCBBAC0429FDBBFAB20E0F8_StaticFields, ___xmss_mt_with_SHAKE128_30)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_xmss_mt_with_SHAKE128_30() const { return ___xmss_mt_with_SHAKE128_30; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_xmss_mt_with_SHAKE128_30() { return &___xmss_mt_with_SHAKE128_30; } inline void set_xmss_mt_with_SHAKE128_30(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___xmss_mt_with_SHAKE128_30 = value; Il2CppCodeGenWriteBarrier((void**)(&___xmss_mt_with_SHAKE128_30), (void*)value); } inline static int32_t get_offset_of_xmss_mt_with_SHAKE256_31() { return static_cast(offsetof(BCObjectIdentifiers_t7C3698D878F567B9CDCBBAC0429FDBBFAB20E0F8_StaticFields, ___xmss_mt_with_SHAKE256_31)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_xmss_mt_with_SHAKE256_31() const { return ___xmss_mt_with_SHAKE256_31; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_xmss_mt_with_SHAKE256_31() { return &___xmss_mt_with_SHAKE256_31; } inline void set_xmss_mt_with_SHAKE256_31(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___xmss_mt_with_SHAKE256_31 = value; Il2CppCodeGenWriteBarrier((void**)(&___xmss_mt_with_SHAKE256_31), (void*)value); } inline static int32_t get_offset_of_bc_exch_32() { return static_cast(offsetof(BCObjectIdentifiers_t7C3698D878F567B9CDCBBAC0429FDBBFAB20E0F8_StaticFields, ___bc_exch_32)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_bc_exch_32() const { return ___bc_exch_32; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_bc_exch_32() { return &___bc_exch_32; } inline void set_bc_exch_32(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___bc_exch_32 = value; Il2CppCodeGenWriteBarrier((void**)(&___bc_exch_32), (void*)value); } inline static int32_t get_offset_of_newHope_33() { return static_cast(offsetof(BCObjectIdentifiers_t7C3698D878F567B9CDCBBAC0429FDBBFAB20E0F8_StaticFields, ___newHope_33)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_newHope_33() const { return ___newHope_33; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_newHope_33() { return &___newHope_33; } inline void set_newHope_33(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___newHope_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___newHope_33), (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.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.CmsPbeKey struct CmsPbeKey_tBF17FCE3F33E7423EA23A8DB6AF64B21D85CAC43 : public RuntimeObject { public: // System.Char[] BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsPbeKey::password CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___password_0; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsPbeKey::salt ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___salt_1; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsPbeKey::iterationCount int32_t ___iterationCount_2; public: inline static int32_t get_offset_of_password_0() { return static_cast(offsetof(CmsPbeKey_tBF17FCE3F33E7423EA23A8DB6AF64B21D85CAC43, ___password_0)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_password_0() const { return ___password_0; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_password_0() { return &___password_0; } inline void set_password_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___password_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___password_0), (void*)value); } inline static int32_t get_offset_of_salt_1() { return static_cast(offsetof(CmsPbeKey_tBF17FCE3F33E7423EA23A8DB6AF64B21D85CAC43, ___salt_1)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_salt_1() const { return ___salt_1; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_salt_1() { return &___salt_1; } inline void set_salt_1(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___salt_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___salt_1), (void*)value); } inline static int32_t get_offset_of_iterationCount_2() { return static_cast(offsetof(CmsPbeKey_tBF17FCE3F33E7423EA23A8DB6AF64B21D85CAC43, ___iterationCount_2)); } inline int32_t get_iterationCount_2() const { return ___iterationCount_2; } inline int32_t* get_address_of_iterationCount_2() { return &___iterationCount_2; } inline void set_iterationCount_2(int32_t value) { ___iterationCount_2 = 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); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers struct CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C : public RuntimeObject { public: public: }; struct CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3411 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___GostR3411_1; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3411Hmac DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___GostR3411Hmac_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR28147Cbc DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___GostR28147Cbc_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::ID_Gost28147_89_CryptoPro_A_ParamSet DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___ID_Gost28147_89_CryptoPro_A_ParamSet_4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3410x94 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___GostR3410x94_5; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3410x2001 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___GostR3410x2001_6; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3411x94WithGostR3410x94 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___GostR3411x94WithGostR3410x94_7; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3411x94WithGostR3410x2001 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___GostR3411x94WithGostR3410x2001_8; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3411x94CryptoProParamSet DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___GostR3411x94CryptoProParamSet_9; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3410x94CryptoProA DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___GostR3410x94CryptoProA_10; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3410x94CryptoProB DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___GostR3410x94CryptoProB_11; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3410x94CryptoProC DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___GostR3410x94CryptoProC_12; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3410x94CryptoProD DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___GostR3410x94CryptoProD_13; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3410x94CryptoProXchA DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___GostR3410x94CryptoProXchA_14; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3410x94CryptoProXchB DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___GostR3410x94CryptoProXchB_15; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3410x94CryptoProXchC DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___GostR3410x94CryptoProXchC_16; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3410x2001CryptoProA DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___GostR3410x2001CryptoProA_17; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3410x2001CryptoProB DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___GostR3410x2001CryptoProB_18; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3410x2001CryptoProC DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___GostR3410x2001CryptoProC_19; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3410x2001CryptoProXchA DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___GostR3410x2001CryptoProXchA_20; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3410x2001CryptoProXchB DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___GostR3410x2001CryptoProXchB_21; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostElSgDH3410Default DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___GostElSgDH3410Default_22; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostElSgDH3410x1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___GostElSgDH3410x1_23; public: inline static int32_t get_offset_of_GostR3411_1() { return static_cast(offsetof(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields, ___GostR3411_1)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_GostR3411_1() const { return ___GostR3411_1; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_GostR3411_1() { return &___GostR3411_1; } inline void set_GostR3411_1(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___GostR3411_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___GostR3411_1), (void*)value); } inline static int32_t get_offset_of_GostR3411Hmac_2() { return static_cast(offsetof(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields, ___GostR3411Hmac_2)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_GostR3411Hmac_2() const { return ___GostR3411Hmac_2; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_GostR3411Hmac_2() { return &___GostR3411Hmac_2; } inline void set_GostR3411Hmac_2(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___GostR3411Hmac_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___GostR3411Hmac_2), (void*)value); } inline static int32_t get_offset_of_GostR28147Cbc_3() { return static_cast(offsetof(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields, ___GostR28147Cbc_3)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_GostR28147Cbc_3() const { return ___GostR28147Cbc_3; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_GostR28147Cbc_3() { return &___GostR28147Cbc_3; } inline void set_GostR28147Cbc_3(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___GostR28147Cbc_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___GostR28147Cbc_3), (void*)value); } inline static int32_t get_offset_of_ID_Gost28147_89_CryptoPro_A_ParamSet_4() { return static_cast(offsetof(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields, ___ID_Gost28147_89_CryptoPro_A_ParamSet_4)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_ID_Gost28147_89_CryptoPro_A_ParamSet_4() const { return ___ID_Gost28147_89_CryptoPro_A_ParamSet_4; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_ID_Gost28147_89_CryptoPro_A_ParamSet_4() { return &___ID_Gost28147_89_CryptoPro_A_ParamSet_4; } inline void set_ID_Gost28147_89_CryptoPro_A_ParamSet_4(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___ID_Gost28147_89_CryptoPro_A_ParamSet_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___ID_Gost28147_89_CryptoPro_A_ParamSet_4), (void*)value); } inline static int32_t get_offset_of_GostR3410x94_5() { return static_cast(offsetof(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields, ___GostR3410x94_5)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_GostR3410x94_5() const { return ___GostR3410x94_5; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_GostR3410x94_5() { return &___GostR3410x94_5; } inline void set_GostR3410x94_5(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___GostR3410x94_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___GostR3410x94_5), (void*)value); } inline static int32_t get_offset_of_GostR3410x2001_6() { return static_cast(offsetof(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields, ___GostR3410x2001_6)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_GostR3410x2001_6() const { return ___GostR3410x2001_6; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_GostR3410x2001_6() { return &___GostR3410x2001_6; } inline void set_GostR3410x2001_6(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___GostR3410x2001_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___GostR3410x2001_6), (void*)value); } inline static int32_t get_offset_of_GostR3411x94WithGostR3410x94_7() { return static_cast(offsetof(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields, ___GostR3411x94WithGostR3410x94_7)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_GostR3411x94WithGostR3410x94_7() const { return ___GostR3411x94WithGostR3410x94_7; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_GostR3411x94WithGostR3410x94_7() { return &___GostR3411x94WithGostR3410x94_7; } inline void set_GostR3411x94WithGostR3410x94_7(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___GostR3411x94WithGostR3410x94_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___GostR3411x94WithGostR3410x94_7), (void*)value); } inline static int32_t get_offset_of_GostR3411x94WithGostR3410x2001_8() { return static_cast(offsetof(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields, ___GostR3411x94WithGostR3410x2001_8)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_GostR3411x94WithGostR3410x2001_8() const { return ___GostR3411x94WithGostR3410x2001_8; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_GostR3411x94WithGostR3410x2001_8() { return &___GostR3411x94WithGostR3410x2001_8; } inline void set_GostR3411x94WithGostR3410x2001_8(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___GostR3411x94WithGostR3410x2001_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___GostR3411x94WithGostR3410x2001_8), (void*)value); } inline static int32_t get_offset_of_GostR3411x94CryptoProParamSet_9() { return static_cast(offsetof(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields, ___GostR3411x94CryptoProParamSet_9)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_GostR3411x94CryptoProParamSet_9() const { return ___GostR3411x94CryptoProParamSet_9; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_GostR3411x94CryptoProParamSet_9() { return &___GostR3411x94CryptoProParamSet_9; } inline void set_GostR3411x94CryptoProParamSet_9(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___GostR3411x94CryptoProParamSet_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___GostR3411x94CryptoProParamSet_9), (void*)value); } inline static int32_t get_offset_of_GostR3410x94CryptoProA_10() { return static_cast(offsetof(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields, ___GostR3410x94CryptoProA_10)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_GostR3410x94CryptoProA_10() const { return ___GostR3410x94CryptoProA_10; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_GostR3410x94CryptoProA_10() { return &___GostR3410x94CryptoProA_10; } inline void set_GostR3410x94CryptoProA_10(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___GostR3410x94CryptoProA_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___GostR3410x94CryptoProA_10), (void*)value); } inline static int32_t get_offset_of_GostR3410x94CryptoProB_11() { return static_cast(offsetof(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields, ___GostR3410x94CryptoProB_11)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_GostR3410x94CryptoProB_11() const { return ___GostR3410x94CryptoProB_11; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_GostR3410x94CryptoProB_11() { return &___GostR3410x94CryptoProB_11; } inline void set_GostR3410x94CryptoProB_11(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___GostR3410x94CryptoProB_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___GostR3410x94CryptoProB_11), (void*)value); } inline static int32_t get_offset_of_GostR3410x94CryptoProC_12() { return static_cast(offsetof(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields, ___GostR3410x94CryptoProC_12)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_GostR3410x94CryptoProC_12() const { return ___GostR3410x94CryptoProC_12; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_GostR3410x94CryptoProC_12() { return &___GostR3410x94CryptoProC_12; } inline void set_GostR3410x94CryptoProC_12(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___GostR3410x94CryptoProC_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___GostR3410x94CryptoProC_12), (void*)value); } inline static int32_t get_offset_of_GostR3410x94CryptoProD_13() { return static_cast(offsetof(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields, ___GostR3410x94CryptoProD_13)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_GostR3410x94CryptoProD_13() const { return ___GostR3410x94CryptoProD_13; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_GostR3410x94CryptoProD_13() { return &___GostR3410x94CryptoProD_13; } inline void set_GostR3410x94CryptoProD_13(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___GostR3410x94CryptoProD_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___GostR3410x94CryptoProD_13), (void*)value); } inline static int32_t get_offset_of_GostR3410x94CryptoProXchA_14() { return static_cast(offsetof(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields, ___GostR3410x94CryptoProXchA_14)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_GostR3410x94CryptoProXchA_14() const { return ___GostR3410x94CryptoProXchA_14; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_GostR3410x94CryptoProXchA_14() { return &___GostR3410x94CryptoProXchA_14; } inline void set_GostR3410x94CryptoProXchA_14(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___GostR3410x94CryptoProXchA_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___GostR3410x94CryptoProXchA_14), (void*)value); } inline static int32_t get_offset_of_GostR3410x94CryptoProXchB_15() { return static_cast(offsetof(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields, ___GostR3410x94CryptoProXchB_15)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_GostR3410x94CryptoProXchB_15() const { return ___GostR3410x94CryptoProXchB_15; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_GostR3410x94CryptoProXchB_15() { return &___GostR3410x94CryptoProXchB_15; } inline void set_GostR3410x94CryptoProXchB_15(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___GostR3410x94CryptoProXchB_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___GostR3410x94CryptoProXchB_15), (void*)value); } inline static int32_t get_offset_of_GostR3410x94CryptoProXchC_16() { return static_cast(offsetof(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields, ___GostR3410x94CryptoProXchC_16)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_GostR3410x94CryptoProXchC_16() const { return ___GostR3410x94CryptoProXchC_16; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_GostR3410x94CryptoProXchC_16() { return &___GostR3410x94CryptoProXchC_16; } inline void set_GostR3410x94CryptoProXchC_16(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___GostR3410x94CryptoProXchC_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___GostR3410x94CryptoProXchC_16), (void*)value); } inline static int32_t get_offset_of_GostR3410x2001CryptoProA_17() { return static_cast(offsetof(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields, ___GostR3410x2001CryptoProA_17)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_GostR3410x2001CryptoProA_17() const { return ___GostR3410x2001CryptoProA_17; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_GostR3410x2001CryptoProA_17() { return &___GostR3410x2001CryptoProA_17; } inline void set_GostR3410x2001CryptoProA_17(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___GostR3410x2001CryptoProA_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___GostR3410x2001CryptoProA_17), (void*)value); } inline static int32_t get_offset_of_GostR3410x2001CryptoProB_18() { return static_cast(offsetof(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields, ___GostR3410x2001CryptoProB_18)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_GostR3410x2001CryptoProB_18() const { return ___GostR3410x2001CryptoProB_18; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_GostR3410x2001CryptoProB_18() { return &___GostR3410x2001CryptoProB_18; } inline void set_GostR3410x2001CryptoProB_18(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___GostR3410x2001CryptoProB_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___GostR3410x2001CryptoProB_18), (void*)value); } inline static int32_t get_offset_of_GostR3410x2001CryptoProC_19() { return static_cast(offsetof(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields, ___GostR3410x2001CryptoProC_19)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_GostR3410x2001CryptoProC_19() const { return ___GostR3410x2001CryptoProC_19; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_GostR3410x2001CryptoProC_19() { return &___GostR3410x2001CryptoProC_19; } inline void set_GostR3410x2001CryptoProC_19(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___GostR3410x2001CryptoProC_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___GostR3410x2001CryptoProC_19), (void*)value); } inline static int32_t get_offset_of_GostR3410x2001CryptoProXchA_20() { return static_cast(offsetof(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields, ___GostR3410x2001CryptoProXchA_20)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_GostR3410x2001CryptoProXchA_20() const { return ___GostR3410x2001CryptoProXchA_20; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_GostR3410x2001CryptoProXchA_20() { return &___GostR3410x2001CryptoProXchA_20; } inline void set_GostR3410x2001CryptoProXchA_20(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___GostR3410x2001CryptoProXchA_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___GostR3410x2001CryptoProXchA_20), (void*)value); } inline static int32_t get_offset_of_GostR3410x2001CryptoProXchB_21() { return static_cast(offsetof(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields, ___GostR3410x2001CryptoProXchB_21)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_GostR3410x2001CryptoProXchB_21() const { return ___GostR3410x2001CryptoProXchB_21; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_GostR3410x2001CryptoProXchB_21() { return &___GostR3410x2001CryptoProXchB_21; } inline void set_GostR3410x2001CryptoProXchB_21(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___GostR3410x2001CryptoProXchB_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___GostR3410x2001CryptoProXchB_21), (void*)value); } inline static int32_t get_offset_of_GostElSgDH3410Default_22() { return static_cast(offsetof(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields, ___GostElSgDH3410Default_22)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_GostElSgDH3410Default_22() const { return ___GostElSgDH3410Default_22; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_GostElSgDH3410Default_22() { return &___GostElSgDH3410Default_22; } inline void set_GostElSgDH3410Default_22(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___GostElSgDH3410Default_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___GostElSgDH3410Default_22), (void*)value); } inline static int32_t get_offset_of_GostElSgDH3410x1_23() { return static_cast(offsetof(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields, ___GostElSgDH3410x1_23)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_GostElSgDH3410x1_23() const { return ___GostElSgDH3410x1_23; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_GostElSgDH3410x1_23() { return &___GostElSgDH3410x1_23; } inline void set_GostElSgDH3410x1_23(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___GostElSgDH3410x1_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___GostElSgDH3410x1_23), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.DsaParameters struct DsaParameters_t47EC24036618CF52C5EF89B4929A5611E1F90245 : public RuntimeObject { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.DsaParameters::p BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___p_0; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.DsaParameters::q BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___q_1; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.DsaParameters::g BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___g_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.DsaValidationParameters BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.DsaParameters::validation DsaValidationParameters_tE4F9920A145D294FB8EBB06638CBAA4082C0A2C3 * ___validation_3; public: inline static int32_t get_offset_of_p_0() { return static_cast(offsetof(DsaParameters_t47EC24036618CF52C5EF89B4929A5611E1F90245, ___p_0)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_p_0() const { return ___p_0; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_p_0() { return &___p_0; } inline void set_p_0(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___p_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___p_0), (void*)value); } inline static int32_t get_offset_of_q_1() { return static_cast(offsetof(DsaParameters_t47EC24036618CF52C5EF89B4929A5611E1F90245, ___q_1)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_q_1() const { return ___q_1; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_q_1() { return &___q_1; } inline void set_q_1(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___q_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___q_1), (void*)value); } inline static int32_t get_offset_of_g_2() { return static_cast(offsetof(DsaParameters_t47EC24036618CF52C5EF89B4929A5611E1F90245, ___g_2)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_g_2() const { return ___g_2; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_g_2() { return &___g_2; } inline void set_g_2(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___g_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___g_2), (void*)value); } inline static int32_t get_offset_of_validation_3() { return static_cast(offsetof(DsaParameters_t47EC24036618CF52C5EF89B4929A5611E1F90245, ___validation_3)); } inline DsaValidationParameters_tE4F9920A145D294FB8EBB06638CBAA4082C0A2C3 * get_validation_3() const { return ___validation_3; } inline DsaValidationParameters_tE4F9920A145D294FB8EBB06638CBAA4082C0A2C3 ** get_address_of_validation_3() { return &___validation_3; } inline void set_validation_3(DsaValidationParameters_tE4F9920A145D294FB8EBB06638CBAA4082C0A2C3 * value) { ___validation_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___validation_3), (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.SecureProtocol.Org.BouncyCastle.Utilities.Collections.EnumerableProxy struct EnumerableProxy_t026114E7F2A8CD4B2FA989282FE080341A4614E2 : public RuntimeObject { public: // System.Collections.IEnumerable BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections.EnumerableProxy::inner RuntimeObject* ___inner_0; public: inline static int32_t get_offset_of_inner_0() { return static_cast(offsetof(EnumerableProxy_t026114E7F2A8CD4B2FA989282FE080341A4614E2, ___inner_0)); } inline RuntimeObject* get_inner_0() const { return ___inner_0; } inline RuntimeObject** get_address_of_inner_0() { return &___inner_0; } inline void set_inner_0(RuntimeObject* value) { ___inner_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___inner_0), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.GeneralDigest struct GeneralDigest_t87A61506D31B11798E0404E71466E4D5B8B9B4B8 : public RuntimeObject { public: // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.GeneralDigest::xBuf ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___xBuf_1; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.GeneralDigest::xBufOff int32_t ___xBufOff_2; // System.Int64 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.GeneralDigest::byteCount int64_t ___byteCount_3; public: inline static int32_t get_offset_of_xBuf_1() { return static_cast(offsetof(GeneralDigest_t87A61506D31B11798E0404E71466E4D5B8B9B4B8, ___xBuf_1)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_xBuf_1() const { return ___xBuf_1; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_xBuf_1() { return &___xBuf_1; } inline void set_xBuf_1(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___xBuf_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___xBuf_1), (void*)value); } inline static int32_t get_offset_of_xBufOff_2() { return static_cast(offsetof(GeneralDigest_t87A61506D31B11798E0404E71466E4D5B8B9B4B8, ___xBufOff_2)); } inline int32_t get_xBufOff_2() const { return ___xBufOff_2; } inline int32_t* get_address_of_xBufOff_2() { return &___xBufOff_2; } inline void set_xBufOff_2(int32_t value) { ___xBufOff_2 = value; } inline static int32_t get_offset_of_byteCount_3() { return static_cast(offsetof(GeneralDigest_t87A61506D31B11798E0404E71466E4D5B8B9B4B8, ___byteCount_3)); } inline int64_t get_byteCount_3() const { return ___byteCount_3; } inline int64_t* get_address_of_byteCount_3() { return &___byteCount_3; } inline void set_byteCount_3(int64_t value) { ___byteCount_3 = 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.SecureProtocol.Org.BouncyCastle.Utilities.Collections.HashSet struct HashSet_t1E14FE66FBB0732BFDA0861868A51969563DF754 : public RuntimeObject { public: // System.Collections.IDictionary BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections.HashSet::impl RuntimeObject* ___impl_0; public: inline static int32_t get_offset_of_impl_0() { return static_cast(offsetof(HashSet_t1E14FE66FBB0732BFDA0861868A51969563DF754, ___impl_0)); } inline RuntimeObject* get_impl_0() const { return ___impl_0; } inline RuntimeObject** get_address_of_impl_0() { return &___impl_0; } inline void set_impl_0(RuntimeObject* value) { ___impl_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___impl_0), (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); } }; // 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.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.Crypto.Digests.MD2Digest struct MD2Digest_tE97575A1FE161C3EF2E20EB0566460A3050492C5 : public RuntimeObject { public: // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.MD2Digest::X ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___X_2; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.MD2Digest::xOff int32_t ___xOff_3; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.MD2Digest::M ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___M_4; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.MD2Digest::mOff int32_t ___mOff_5; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.MD2Digest::C ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___C_6; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.MD2Digest::COff int32_t ___COff_7; public: inline static int32_t get_offset_of_X_2() { return static_cast(offsetof(MD2Digest_tE97575A1FE161C3EF2E20EB0566460A3050492C5, ___X_2)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_X_2() const { return ___X_2; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_X_2() { return &___X_2; } inline void set_X_2(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___X_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___X_2), (void*)value); } inline static int32_t get_offset_of_xOff_3() { return static_cast(offsetof(MD2Digest_tE97575A1FE161C3EF2E20EB0566460A3050492C5, ___xOff_3)); } inline int32_t get_xOff_3() const { return ___xOff_3; } inline int32_t* get_address_of_xOff_3() { return &___xOff_3; } inline void set_xOff_3(int32_t value) { ___xOff_3 = value; } inline static int32_t get_offset_of_M_4() { return static_cast(offsetof(MD2Digest_tE97575A1FE161C3EF2E20EB0566460A3050492C5, ___M_4)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_M_4() const { return ___M_4; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_M_4() { return &___M_4; } inline void set_M_4(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___M_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___M_4), (void*)value); } inline static int32_t get_offset_of_mOff_5() { return static_cast(offsetof(MD2Digest_tE97575A1FE161C3EF2E20EB0566460A3050492C5, ___mOff_5)); } inline int32_t get_mOff_5() const { return ___mOff_5; } inline int32_t* get_address_of_mOff_5() { return &___mOff_5; } inline void set_mOff_5(int32_t value) { ___mOff_5 = value; } inline static int32_t get_offset_of_C_6() { return static_cast(offsetof(MD2Digest_tE97575A1FE161C3EF2E20EB0566460A3050492C5, ___C_6)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_C_6() const { return ___C_6; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_C_6() { return &___C_6; } inline void set_C_6(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___C_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___C_6), (void*)value); } inline static int32_t get_offset_of_COff_7() { return static_cast(offsetof(MD2Digest_tE97575A1FE161C3EF2E20EB0566460A3050492C5, ___COff_7)); } inline int32_t get_COff_7() const { return ___COff_7; } inline int32_t* get_address_of_COff_7() { return &___COff_7; } inline void set_COff_7(int32_t value) { ___COff_7 = value; } }; struct MD2Digest_tE97575A1FE161C3EF2E20EB0566460A3050492C5_StaticFields { public: // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.MD2Digest::S ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___S_8; public: inline static int32_t get_offset_of_S_8() { return static_cast(offsetof(MD2Digest_tE97575A1FE161C3EF2E20EB0566460A3050492C5_StaticFields, ___S_8)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_S_8() const { return ___S_8; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_S_8() { return &___S_8; } inline void set_S_8(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___S_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___S_8), (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: }; // MenuBackController struct MenuBackController_t545B27D5E7BCA7C609808B7960239E0FC034ADA4 : public RuntimeObject { public: // System.Collections.Generic.List`1 MenuBackController::views List_1_t857A27AA47EED217A2CFE04C0C9B7FCDDE0C284F * ___views_0; // System.Int64 MenuBackController::lastPressExitTime int64_t ___lastPressExitTime_1; public: inline static int32_t get_offset_of_views_0() { return static_cast(offsetof(MenuBackController_t545B27D5E7BCA7C609808B7960239E0FC034ADA4, ___views_0)); } inline List_1_t857A27AA47EED217A2CFE04C0C9B7FCDDE0C284F * get_views_0() const { return ___views_0; } inline List_1_t857A27AA47EED217A2CFE04C0C9B7FCDDE0C284F ** get_address_of_views_0() { return &___views_0; } inline void set_views_0(List_1_t857A27AA47EED217A2CFE04C0C9B7FCDDE0C284F * value) { ___views_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___views_0), (void*)value); } inline static int32_t get_offset_of_lastPressExitTime_1() { return static_cast(offsetof(MenuBackController_t545B27D5E7BCA7C609808B7960239E0FC034ADA4, ___lastPressExitTime_1)); } inline int64_t get_lastPressExitTime_1() const { return ___lastPressExitTime_1; } inline int64_t* get_address_of_lastPressExitTime_1() { return &___lastPressExitTime_1; } inline void set_lastPressExitTime_1(int64_t value) { ___lastPressExitTime_1 = value; } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.OpenSsl.MiscPemGenerator struct MiscPemGenerator_t3A2794F71D43786161FE86028D9238FCBDEC3153 : public RuntimeObject { public: // System.Object BestHTTP.SecureProtocol.Org.BouncyCastle.OpenSsl.MiscPemGenerator::obj RuntimeObject * ___obj_0; // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.OpenSsl.MiscPemGenerator::algorithm String_t* ___algorithm_1; // System.Char[] BestHTTP.SecureProtocol.Org.BouncyCastle.OpenSsl.MiscPemGenerator::password CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___password_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom BestHTTP.SecureProtocol.Org.BouncyCastle.OpenSsl.MiscPemGenerator::random SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * ___random_3; public: inline static int32_t get_offset_of_obj_0() { return static_cast(offsetof(MiscPemGenerator_t3A2794F71D43786161FE86028D9238FCBDEC3153, ___obj_0)); } inline RuntimeObject * get_obj_0() const { return ___obj_0; } inline RuntimeObject ** get_address_of_obj_0() { return &___obj_0; } inline void set_obj_0(RuntimeObject * value) { ___obj_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___obj_0), (void*)value); } inline static int32_t get_offset_of_algorithm_1() { return static_cast(offsetof(MiscPemGenerator_t3A2794F71D43786161FE86028D9238FCBDEC3153, ___algorithm_1)); } inline String_t* get_algorithm_1() const { return ___algorithm_1; } inline String_t** get_address_of_algorithm_1() { return &___algorithm_1; } inline void set_algorithm_1(String_t* value) { ___algorithm_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___algorithm_1), (void*)value); } inline static int32_t get_offset_of_password_2() { return static_cast(offsetof(MiscPemGenerator_t3A2794F71D43786161FE86028D9238FCBDEC3153, ___password_2)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_password_2() const { return ___password_2; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_password_2() { return &___password_2; } inline void set_password_2(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___password_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___password_2), (void*)value); } inline static int32_t get_offset_of_random_3() { return static_cast(offsetof(MiscPemGenerator_t3A2794F71D43786161FE86028D9238FCBDEC3153, ___random_3)); } inline SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * get_random_3() const { return ___random_3; } inline SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 ** get_address_of_random_3() { return &___random_3; } inline void set_random_3(SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * value) { ___random_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___random_3), (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.Oiw.OiwObjectIdentifiers struct OiwObjectIdentifiers_tACD1AAAAC365CD86B5E7F0DE22B66469A4A93CED : public RuntimeObject { public: public: }; struct OiwObjectIdentifiers_tACD1AAAAC365CD86B5E7F0DE22B66469A4A93CED_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Oiw.OiwObjectIdentifiers::MD4WithRsa DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___MD4WithRsa_0; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Oiw.OiwObjectIdentifiers::MD5WithRsa DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___MD5WithRsa_1; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Oiw.OiwObjectIdentifiers::MD4WithRsaEncryption DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___MD4WithRsaEncryption_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Oiw.OiwObjectIdentifiers::DesEcb DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DesEcb_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Oiw.OiwObjectIdentifiers::DesCbc DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DesCbc_4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Oiw.OiwObjectIdentifiers::DesOfb DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DesOfb_5; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Oiw.OiwObjectIdentifiers::DesCfb DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DesCfb_6; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Oiw.OiwObjectIdentifiers::DesEde DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DesEde_7; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Oiw.OiwObjectIdentifiers::IdSha1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdSha1_8; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Oiw.OiwObjectIdentifiers::DsaWithSha1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DsaWithSha1_9; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Oiw.OiwObjectIdentifiers::Sha1WithRsa DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Sha1WithRsa_10; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Oiw.OiwObjectIdentifiers::ElGamalAlgorithm DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___ElGamalAlgorithm_11; public: inline static int32_t get_offset_of_MD4WithRsa_0() { return static_cast(offsetof(OiwObjectIdentifiers_tACD1AAAAC365CD86B5E7F0DE22B66469A4A93CED_StaticFields, ___MD4WithRsa_0)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_MD4WithRsa_0() const { return ___MD4WithRsa_0; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_MD4WithRsa_0() { return &___MD4WithRsa_0; } inline void set_MD4WithRsa_0(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___MD4WithRsa_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___MD4WithRsa_0), (void*)value); } inline static int32_t get_offset_of_MD5WithRsa_1() { return static_cast(offsetof(OiwObjectIdentifiers_tACD1AAAAC365CD86B5E7F0DE22B66469A4A93CED_StaticFields, ___MD5WithRsa_1)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_MD5WithRsa_1() const { return ___MD5WithRsa_1; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_MD5WithRsa_1() { return &___MD5WithRsa_1; } inline void set_MD5WithRsa_1(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___MD5WithRsa_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___MD5WithRsa_1), (void*)value); } inline static int32_t get_offset_of_MD4WithRsaEncryption_2() { return static_cast(offsetof(OiwObjectIdentifiers_tACD1AAAAC365CD86B5E7F0DE22B66469A4A93CED_StaticFields, ___MD4WithRsaEncryption_2)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_MD4WithRsaEncryption_2() const { return ___MD4WithRsaEncryption_2; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_MD4WithRsaEncryption_2() { return &___MD4WithRsaEncryption_2; } inline void set_MD4WithRsaEncryption_2(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___MD4WithRsaEncryption_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___MD4WithRsaEncryption_2), (void*)value); } inline static int32_t get_offset_of_DesEcb_3() { return static_cast(offsetof(OiwObjectIdentifiers_tACD1AAAAC365CD86B5E7F0DE22B66469A4A93CED_StaticFields, ___DesEcb_3)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DesEcb_3() const { return ___DesEcb_3; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DesEcb_3() { return &___DesEcb_3; } inline void set_DesEcb_3(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DesEcb_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___DesEcb_3), (void*)value); } inline static int32_t get_offset_of_DesCbc_4() { return static_cast(offsetof(OiwObjectIdentifiers_tACD1AAAAC365CD86B5E7F0DE22B66469A4A93CED_StaticFields, ___DesCbc_4)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DesCbc_4() const { return ___DesCbc_4; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DesCbc_4() { return &___DesCbc_4; } inline void set_DesCbc_4(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DesCbc_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___DesCbc_4), (void*)value); } inline static int32_t get_offset_of_DesOfb_5() { return static_cast(offsetof(OiwObjectIdentifiers_tACD1AAAAC365CD86B5E7F0DE22B66469A4A93CED_StaticFields, ___DesOfb_5)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DesOfb_5() const { return ___DesOfb_5; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DesOfb_5() { return &___DesOfb_5; } inline void set_DesOfb_5(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DesOfb_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___DesOfb_5), (void*)value); } inline static int32_t get_offset_of_DesCfb_6() { return static_cast(offsetof(OiwObjectIdentifiers_tACD1AAAAC365CD86B5E7F0DE22B66469A4A93CED_StaticFields, ___DesCfb_6)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DesCfb_6() const { return ___DesCfb_6; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DesCfb_6() { return &___DesCfb_6; } inline void set_DesCfb_6(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DesCfb_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___DesCfb_6), (void*)value); } inline static int32_t get_offset_of_DesEde_7() { return static_cast(offsetof(OiwObjectIdentifiers_tACD1AAAAC365CD86B5E7F0DE22B66469A4A93CED_StaticFields, ___DesEde_7)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DesEde_7() const { return ___DesEde_7; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DesEde_7() { return &___DesEde_7; } inline void set_DesEde_7(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DesEde_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___DesEde_7), (void*)value); } inline static int32_t get_offset_of_IdSha1_8() { return static_cast(offsetof(OiwObjectIdentifiers_tACD1AAAAC365CD86B5E7F0DE22B66469A4A93CED_StaticFields, ___IdSha1_8)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdSha1_8() const { return ___IdSha1_8; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdSha1_8() { return &___IdSha1_8; } inline void set_IdSha1_8(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdSha1_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdSha1_8), (void*)value); } inline static int32_t get_offset_of_DsaWithSha1_9() { return static_cast(offsetof(OiwObjectIdentifiers_tACD1AAAAC365CD86B5E7F0DE22B66469A4A93CED_StaticFields, ___DsaWithSha1_9)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DsaWithSha1_9() const { return ___DsaWithSha1_9; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DsaWithSha1_9() { return &___DsaWithSha1_9; } inline void set_DsaWithSha1_9(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DsaWithSha1_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___DsaWithSha1_9), (void*)value); } inline static int32_t get_offset_of_Sha1WithRsa_10() { return static_cast(offsetof(OiwObjectIdentifiers_tACD1AAAAC365CD86B5E7F0DE22B66469A4A93CED_StaticFields, ___Sha1WithRsa_10)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Sha1WithRsa_10() const { return ___Sha1WithRsa_10; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Sha1WithRsa_10() { return &___Sha1WithRsa_10; } inline void set_Sha1WithRsa_10(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Sha1WithRsa_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___Sha1WithRsa_10), (void*)value); } inline static int32_t get_offset_of_ElGamalAlgorithm_11() { return static_cast(offsetof(OiwObjectIdentifiers_tACD1AAAAC365CD86B5E7F0DE22B66469A4A93CED_StaticFields, ___ElGamalAlgorithm_11)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_ElGamalAlgorithm_11() const { return ___ElGamalAlgorithm_11; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_ElGamalAlgorithm_11() { return &___ElGamalAlgorithm_11; } inline void set_ElGamalAlgorithm_11(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___ElGamalAlgorithm_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___ElGamalAlgorithm_11), (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.Crypto.Parameters.ParametersWithSalt struct ParametersWithSalt_tF495B61AEB2FDA838029B1257F7DEF8B127DAF62 : public RuntimeObject { public: // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ParametersWithSalt::salt ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___salt_0; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ICipherParameters BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ParametersWithSalt::parameters RuntimeObject* ___parameters_1; public: inline static int32_t get_offset_of_salt_0() { return static_cast(offsetof(ParametersWithSalt_tF495B61AEB2FDA838029B1257F7DEF8B127DAF62, ___salt_0)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_salt_0() const { return ___salt_0; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_salt_0() { return &___salt_0; } inline void set_salt_0(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___salt_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___salt_0), (void*)value); } inline static int32_t get_offset_of_parameters_1() { return static_cast(offsetof(ParametersWithSalt_tF495B61AEB2FDA838029B1257F7DEF8B127DAF62, ___parameters_1)); } inline RuntimeObject* get_parameters_1() const { return ___parameters_1; } inline RuntimeObject** get_address_of_parameters_1() { return &___parameters_1; } inline void set_parameters_1(RuntimeObject* value) { ___parameters_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___parameters_1), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.PasswordRecipientInfoGenerator struct PasswordRecipientInfoGenerator_tB774F596B4F50D8C2EEFE5DA626C529C1ADAD201 : public RuntimeObject { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.PasswordRecipientInfoGenerator::keyDerivationAlgorithm AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___keyDerivationAlgorithm_1; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.KeyParameter BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.PasswordRecipientInfoGenerator::keyEncryptionKey KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * ___keyEncryptionKey_2; // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.PasswordRecipientInfoGenerator::keyEncryptionKeyOID String_t* ___keyEncryptionKeyOID_3; public: inline static int32_t get_offset_of_keyDerivationAlgorithm_1() { return static_cast(offsetof(PasswordRecipientInfoGenerator_tB774F596B4F50D8C2EEFE5DA626C529C1ADAD201, ___keyDerivationAlgorithm_1)); } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * get_keyDerivationAlgorithm_1() const { return ___keyDerivationAlgorithm_1; } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 ** get_address_of_keyDerivationAlgorithm_1() { return &___keyDerivationAlgorithm_1; } inline void set_keyDerivationAlgorithm_1(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * value) { ___keyDerivationAlgorithm_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___keyDerivationAlgorithm_1), (void*)value); } inline static int32_t get_offset_of_keyEncryptionKey_2() { return static_cast(offsetof(PasswordRecipientInfoGenerator_tB774F596B4F50D8C2EEFE5DA626C529C1ADAD201, ___keyEncryptionKey_2)); } inline KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * get_keyEncryptionKey_2() const { return ___keyEncryptionKey_2; } inline KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC ** get_address_of_keyEncryptionKey_2() { return &___keyEncryptionKey_2; } inline void set_keyEncryptionKey_2(KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * value) { ___keyEncryptionKey_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___keyEncryptionKey_2), (void*)value); } inline static int32_t get_offset_of_keyEncryptionKeyOID_3() { return static_cast(offsetof(PasswordRecipientInfoGenerator_tB774F596B4F50D8C2EEFE5DA626C529C1ADAD201, ___keyEncryptionKeyOID_3)); } inline String_t* get_keyEncryptionKeyOID_3() const { return ___keyEncryptionKeyOID_3; } inline String_t** get_address_of_keyEncryptionKeyOID_3() { return &___keyEncryptionKeyOID_3; } inline void set_keyEncryptionKeyOID_3(String_t* value) { ___keyEncryptionKeyOID_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___keyEncryptionKeyOID_3), (void*)value); } }; struct PasswordRecipientInfoGenerator_tB774F596B4F50D8C2EEFE5DA626C529C1ADAD201_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.CmsEnvelopedHelper BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.PasswordRecipientInfoGenerator::Helper CmsEnvelopedHelper_t4C541C5858FDC5D5FEFBEF5BB39D1E55C9319BF0 * ___Helper_0; public: inline static int32_t get_offset_of_Helper_0() { return static_cast(offsetof(PasswordRecipientInfoGenerator_tB774F596B4F50D8C2EEFE5DA626C529C1ADAD201_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.PbeParametersGenerator struct PbeParametersGenerator_tC2462C70A4D8F16F12866BCED5DA847140B3BBE0 : public RuntimeObject { public: // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.PbeParametersGenerator::mPassword ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___mPassword_0; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.PbeParametersGenerator::mSalt ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___mSalt_1; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.PbeParametersGenerator::mIterationCount int32_t ___mIterationCount_2; public: inline static int32_t get_offset_of_mPassword_0() { return static_cast(offsetof(PbeParametersGenerator_tC2462C70A4D8F16F12866BCED5DA847140B3BBE0, ___mPassword_0)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_mPassword_0() const { return ___mPassword_0; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_mPassword_0() { return &___mPassword_0; } inline void set_mPassword_0(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___mPassword_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___mPassword_0), (void*)value); } inline static int32_t get_offset_of_mSalt_1() { return static_cast(offsetof(PbeParametersGenerator_tC2462C70A4D8F16F12866BCED5DA847140B3BBE0, ___mSalt_1)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_mSalt_1() const { return ___mSalt_1; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_mSalt_1() { return &___mSalt_1; } inline void set_mSalt_1(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___mSalt_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___mSalt_1), (void*)value); } inline static int32_t get_offset_of_mIterationCount_2() { return static_cast(offsetof(PbeParametersGenerator_tC2462C70A4D8F16F12866BCED5DA847140B3BBE0, ___mIterationCount_2)); } inline int32_t get_mIterationCount_2() const { return ___mIterationCount_2; } inline int32_t* get_address_of_mIterationCount_2() { return &___mIterationCount_2; } inline void set_mIterationCount_2(int32_t value) { ___mIterationCount_2 = value; } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.PbeUtilities struct PbeUtilities_tFC3AAA915CD845D87146D5DB52CB269A88E52C3A : public RuntimeObject { public: public: }; struct PbeUtilities_tFC3AAA915CD845D87146D5DB52CB269A88E52C3A_StaticFields { public: // System.Collections.IDictionary BestHTTP.SecureProtocol.Org.BouncyCastle.Security.PbeUtilities::algorithms RuntimeObject* ___algorithms_4; // System.Collections.IDictionary BestHTTP.SecureProtocol.Org.BouncyCastle.Security.PbeUtilities::algorithmType RuntimeObject* ___algorithmType_5; // System.Collections.IDictionary BestHTTP.SecureProtocol.Org.BouncyCastle.Security.PbeUtilities::oids RuntimeObject* ___oids_6; public: inline static int32_t get_offset_of_algorithms_4() { return static_cast(offsetof(PbeUtilities_tFC3AAA915CD845D87146D5DB52CB269A88E52C3A_StaticFields, ___algorithms_4)); } inline RuntimeObject* get_algorithms_4() const { return ___algorithms_4; } inline RuntimeObject** get_address_of_algorithms_4() { return &___algorithms_4; } inline void set_algorithms_4(RuntimeObject* value) { ___algorithms_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___algorithms_4), (void*)value); } inline static int32_t get_offset_of_algorithmType_5() { return static_cast(offsetof(PbeUtilities_tFC3AAA915CD845D87146D5DB52CB269A88E52C3A_StaticFields, ___algorithmType_5)); } inline RuntimeObject* get_algorithmType_5() const { return ___algorithmType_5; } inline RuntimeObject** get_address_of_algorithmType_5() { return &___algorithmType_5; } inline void set_algorithmType_5(RuntimeObject* value) { ___algorithmType_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___algorithmType_5), (void*)value); } inline static int32_t get_offset_of_oids_6() { return static_cast(offsetof(PbeUtilities_tFC3AAA915CD845D87146D5DB52CB269A88E52C3A_StaticFields, ___oids_6)); } inline RuntimeObject* get_oids_6() const { return ___oids_6; } inline RuntimeObject** get_address_of_oids_6() { return &___oids_6; } inline void set_oids_6(RuntimeObject* value) { ___oids_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___oids_6), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.IO.Pem.PemHeader struct PemHeader_t5480C918C5CD9EB243178D1388CC9DE07AF429FD : public RuntimeObject { public: // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.IO.Pem.PemHeader::name String_t* ___name_0; // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.IO.Pem.PemHeader::val String_t* ___val_1; public: inline static int32_t get_offset_of_name_0() { return static_cast(offsetof(PemHeader_t5480C918C5CD9EB243178D1388CC9DE07AF429FD, ___name_0)); } inline String_t* get_name_0() const { return ___name_0; } inline String_t** get_address_of_name_0() { return &___name_0; } inline void set_name_0(String_t* value) { ___name_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___name_0), (void*)value); } inline static int32_t get_offset_of_val_1() { return static_cast(offsetof(PemHeader_t5480C918C5CD9EB243178D1388CC9DE07AF429FD, ___val_1)); } inline String_t* get_val_1() const { return ___val_1; } inline String_t** get_address_of_val_1() { return &___val_1; } inline void set_val_1(String_t* value) { ___val_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___val_1), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.IO.Pem.PemObject struct PemObject_tEC1D288DDCA42638704F21E9BB403BF9F00D45D5 : public RuntimeObject { public: // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.IO.Pem.PemObject::type String_t* ___type_0; // System.Collections.IList BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.IO.Pem.PemObject::headers RuntimeObject* ___headers_1; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.IO.Pem.PemObject::content ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___content_2; public: inline static int32_t get_offset_of_type_0() { return static_cast(offsetof(PemObject_tEC1D288DDCA42638704F21E9BB403BF9F00D45D5, ___type_0)); } inline String_t* get_type_0() const { return ___type_0; } inline String_t** get_address_of_type_0() { return &___type_0; } inline void set_type_0(String_t* value) { ___type_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___type_0), (void*)value); } inline static int32_t get_offset_of_headers_1() { return static_cast(offsetof(PemObject_tEC1D288DDCA42638704F21E9BB403BF9F00D45D5, ___headers_1)); } inline RuntimeObject* get_headers_1() const { return ___headers_1; } inline RuntimeObject** get_address_of_headers_1() { return &___headers_1; } inline void set_headers_1(RuntimeObject* value) { ___headers_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___headers_1), (void*)value); } inline static int32_t get_offset_of_content_2() { return static_cast(offsetof(PemObject_tEC1D288DDCA42638704F21E9BB403BF9F00D45D5, ___content_2)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_content_2() const { return ___content_2; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_content_2() { return &___content_2; } inline void set_content_2(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___content_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___content_2), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.PemParser struct PemParser_tB3FC6780946303F9667460AF6A79F87A8C0F3215 : public RuntimeObject { public: // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.X509.PemParser::_header1 String_t* ____header1_0; // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.X509.PemParser::_header2 String_t* ____header2_1; // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.X509.PemParser::_footer1 String_t* ____footer1_2; // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.X509.PemParser::_footer2 String_t* ____footer2_3; public: inline static int32_t get_offset_of__header1_0() { return static_cast(offsetof(PemParser_tB3FC6780946303F9667460AF6A79F87A8C0F3215, ____header1_0)); } inline String_t* get__header1_0() const { return ____header1_0; } inline String_t** get_address_of__header1_0() { return &____header1_0; } inline void set__header1_0(String_t* value) { ____header1_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____header1_0), (void*)value); } inline static int32_t get_offset_of__header2_1() { return static_cast(offsetof(PemParser_tB3FC6780946303F9667460AF6A79F87A8C0F3215, ____header2_1)); } inline String_t* get__header2_1() const { return ____header2_1; } inline String_t** get_address_of__header2_1() { return &____header2_1; } inline void set__header2_1(String_t* value) { ____header2_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____header2_1), (void*)value); } inline static int32_t get_offset_of__footer1_2() { return static_cast(offsetof(PemParser_tB3FC6780946303F9667460AF6A79F87A8C0F3215, ____footer1_2)); } inline String_t* get__footer1_2() const { return ____footer1_2; } inline String_t** get_address_of__footer1_2() { return &____footer1_2; } inline void set__footer1_2(String_t* value) { ____footer1_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____footer1_2), (void*)value); } inline static int32_t get_offset_of__footer2_3() { return static_cast(offsetof(PemParser_tB3FC6780946303F9667460AF6A79F87A8C0F3215, ____footer2_3)); } inline String_t* get__footer2_3() const { return ____footer2_3; } inline String_t** get_address_of__footer2_3() { return &____footer2_3; } inline void set__footer2_3(String_t* value) { ____footer2_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____footer2_3), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.IO.Pem.PemReader struct PemReader_t6E2B48BC6FFB51180A2E80A32F41ADD2C3991318 : public RuntimeObject { public: // System.IO.TextReader BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.IO.Pem.PemReader::reader TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * ___reader_2; public: inline static int32_t get_offset_of_reader_2() { return static_cast(offsetof(PemReader_t6E2B48BC6FFB51180A2E80A32F41ADD2C3991318, ___reader_2)); } inline TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * get_reader_2() const { return ___reader_2; } inline TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F ** get_address_of_reader_2() { return &___reader_2; } inline void set_reader_2(TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * value) { ___reader_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___reader_2), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.OpenSsl.PemUtilities struct PemUtilities_t16486A3A5E4A3D91CB984C3EEA6F2A109A57DD2E : public RuntimeObject { public: public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.IO.Pem.PemWriter struct PemWriter_tBD518860EFED3382051637D2372D21CFA33EED8C : public RuntimeObject { public: // System.IO.TextWriter BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.IO.Pem.PemWriter::writer TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * ___writer_1; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.IO.Pem.PemWriter::nlLength int32_t ___nlLength_2; // System.Char[] BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.IO.Pem.PemWriter::buf CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___buf_3; public: inline static int32_t get_offset_of_writer_1() { return static_cast(offsetof(PemWriter_tBD518860EFED3382051637D2372D21CFA33EED8C, ___writer_1)); } inline TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * get_writer_1() const { return ___writer_1; } inline TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 ** get_address_of_writer_1() { return &___writer_1; } inline void set_writer_1(TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * value) { ___writer_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___writer_1), (void*)value); } inline static int32_t get_offset_of_nlLength_2() { return static_cast(offsetof(PemWriter_tBD518860EFED3382051637D2372D21CFA33EED8C, ___nlLength_2)); } inline int32_t get_nlLength_2() const { return ___nlLength_2; } inline int32_t* get_address_of_nlLength_2() { return &___nlLength_2; } inline void set_nlLength_2(int32_t value) { ___nlLength_2 = value; } inline static int32_t get_offset_of_buf_3() { return static_cast(offsetof(PemWriter_tBD518860EFED3382051637D2372D21CFA33EED8C, ___buf_3)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_buf_3() const { return ___buf_3; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_buf_3() { return &___buf_3; } inline void set_buf_3(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___buf_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___buf_3), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs.Pkcs12Entry struct Pkcs12Entry_tEFAF0FAB8C5FCE175C5A80614CBAA6C70D7D39D6 : public RuntimeObject { public: // System.Collections.IDictionary BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs.Pkcs12Entry::attributes RuntimeObject* ___attributes_0; public: inline static int32_t get_offset_of_attributes_0() { return static_cast(offsetof(Pkcs12Entry_tEFAF0FAB8C5FCE175C5A80614CBAA6C70D7D39D6, ___attributes_0)); } inline RuntimeObject* get_attributes_0() const { return ___attributes_0; } inline RuntimeObject** get_address_of_attributes_0() { return &___attributes_0; } inline void set_attributes_0(RuntimeObject* value) { ___attributes_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___attributes_0), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs.Pkcs12Store struct Pkcs12Store_t7E763D92DBE7A96F7903C34D6B4D179710F9B980 : public RuntimeObject { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs.Pkcs12Store/IgnoresCaseHashtable BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs.Pkcs12Store::keys IgnoresCaseHashtable_t1FE3ECBA3A977156B90D9257F58CF048D28B2CEE * ___keys_0; // System.Collections.IDictionary BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs.Pkcs12Store::localIds RuntimeObject* ___localIds_1; // BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs.Pkcs12Store/IgnoresCaseHashtable BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs.Pkcs12Store::certs IgnoresCaseHashtable_t1FE3ECBA3A977156B90D9257F58CF048D28B2CEE * ___certs_2; // System.Collections.IDictionary BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs.Pkcs12Store::chainCerts RuntimeObject* ___chainCerts_3; // System.Collections.IDictionary BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs.Pkcs12Store::keyCerts RuntimeObject* ___keyCerts_4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs.Pkcs12Store::keyAlgorithm DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___keyAlgorithm_5; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs.Pkcs12Store::certAlgorithm DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___certAlgorithm_6; // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs.Pkcs12Store::useDerEncoding bool ___useDerEncoding_7; // BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs.AsymmetricKeyEntry BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs.Pkcs12Store::unmarkedKeyEntry AsymmetricKeyEntry_t3CBF289F816398AE0AB9B8E7E8E31AECE8BD69AF * ___unmarkedKeyEntry_8; public: inline static int32_t get_offset_of_keys_0() { return static_cast(offsetof(Pkcs12Store_t7E763D92DBE7A96F7903C34D6B4D179710F9B980, ___keys_0)); } inline IgnoresCaseHashtable_t1FE3ECBA3A977156B90D9257F58CF048D28B2CEE * get_keys_0() const { return ___keys_0; } inline IgnoresCaseHashtable_t1FE3ECBA3A977156B90D9257F58CF048D28B2CEE ** get_address_of_keys_0() { return &___keys_0; } inline void set_keys_0(IgnoresCaseHashtable_t1FE3ECBA3A977156B90D9257F58CF048D28B2CEE * value) { ___keys_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_0), (void*)value); } inline static int32_t get_offset_of_localIds_1() { return static_cast(offsetof(Pkcs12Store_t7E763D92DBE7A96F7903C34D6B4D179710F9B980, ___localIds_1)); } inline RuntimeObject* get_localIds_1() const { return ___localIds_1; } inline RuntimeObject** get_address_of_localIds_1() { return &___localIds_1; } inline void set_localIds_1(RuntimeObject* value) { ___localIds_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___localIds_1), (void*)value); } inline static int32_t get_offset_of_certs_2() { return static_cast(offsetof(Pkcs12Store_t7E763D92DBE7A96F7903C34D6B4D179710F9B980, ___certs_2)); } inline IgnoresCaseHashtable_t1FE3ECBA3A977156B90D9257F58CF048D28B2CEE * get_certs_2() const { return ___certs_2; } inline IgnoresCaseHashtable_t1FE3ECBA3A977156B90D9257F58CF048D28B2CEE ** get_address_of_certs_2() { return &___certs_2; } inline void set_certs_2(IgnoresCaseHashtable_t1FE3ECBA3A977156B90D9257F58CF048D28B2CEE * value) { ___certs_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___certs_2), (void*)value); } inline static int32_t get_offset_of_chainCerts_3() { return static_cast(offsetof(Pkcs12Store_t7E763D92DBE7A96F7903C34D6B4D179710F9B980, ___chainCerts_3)); } inline RuntimeObject* get_chainCerts_3() const { return ___chainCerts_3; } inline RuntimeObject** get_address_of_chainCerts_3() { return &___chainCerts_3; } inline void set_chainCerts_3(RuntimeObject* value) { ___chainCerts_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___chainCerts_3), (void*)value); } inline static int32_t get_offset_of_keyCerts_4() { return static_cast(offsetof(Pkcs12Store_t7E763D92DBE7A96F7903C34D6B4D179710F9B980, ___keyCerts_4)); } inline RuntimeObject* get_keyCerts_4() const { return ___keyCerts_4; } inline RuntimeObject** get_address_of_keyCerts_4() { return &___keyCerts_4; } inline void set_keyCerts_4(RuntimeObject* value) { ___keyCerts_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___keyCerts_4), (void*)value); } inline static int32_t get_offset_of_keyAlgorithm_5() { return static_cast(offsetof(Pkcs12Store_t7E763D92DBE7A96F7903C34D6B4D179710F9B980, ___keyAlgorithm_5)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_keyAlgorithm_5() const { return ___keyAlgorithm_5; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_keyAlgorithm_5() { return &___keyAlgorithm_5; } inline void set_keyAlgorithm_5(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___keyAlgorithm_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___keyAlgorithm_5), (void*)value); } inline static int32_t get_offset_of_certAlgorithm_6() { return static_cast(offsetof(Pkcs12Store_t7E763D92DBE7A96F7903C34D6B4D179710F9B980, ___certAlgorithm_6)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_certAlgorithm_6() const { return ___certAlgorithm_6; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_certAlgorithm_6() { return &___certAlgorithm_6; } inline void set_certAlgorithm_6(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___certAlgorithm_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___certAlgorithm_6), (void*)value); } inline static int32_t get_offset_of_useDerEncoding_7() { return static_cast(offsetof(Pkcs12Store_t7E763D92DBE7A96F7903C34D6B4D179710F9B980, ___useDerEncoding_7)); } inline bool get_useDerEncoding_7() const { return ___useDerEncoding_7; } inline bool* get_address_of_useDerEncoding_7() { return &___useDerEncoding_7; } inline void set_useDerEncoding_7(bool value) { ___useDerEncoding_7 = value; } inline static int32_t get_offset_of_unmarkedKeyEntry_8() { return static_cast(offsetof(Pkcs12Store_t7E763D92DBE7A96F7903C34D6B4D179710F9B980, ___unmarkedKeyEntry_8)); } inline AsymmetricKeyEntry_t3CBF289F816398AE0AB9B8E7E8E31AECE8BD69AF * get_unmarkedKeyEntry_8() const { return ___unmarkedKeyEntry_8; } inline AsymmetricKeyEntry_t3CBF289F816398AE0AB9B8E7E8E31AECE8BD69AF ** get_address_of_unmarkedKeyEntry_8() { return &___unmarkedKeyEntry_8; } inline void set_unmarkedKeyEntry_8(AsymmetricKeyEntry_t3CBF289F816398AE0AB9B8E7E8E31AECE8BD69AF * value) { ___unmarkedKeyEntry_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___unmarkedKeyEntry_8), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs.Pkcs12StoreBuilder struct Pkcs12StoreBuilder_tCA31CF49F94065954EC54E802B27950102A00DD5 : public RuntimeObject { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs.Pkcs12StoreBuilder::keyAlgorithm DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___keyAlgorithm_0; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs.Pkcs12StoreBuilder::certAlgorithm DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___certAlgorithm_1; // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs.Pkcs12StoreBuilder::useDerEncoding bool ___useDerEncoding_2; public: inline static int32_t get_offset_of_keyAlgorithm_0() { return static_cast(offsetof(Pkcs12StoreBuilder_tCA31CF49F94065954EC54E802B27950102A00DD5, ___keyAlgorithm_0)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_keyAlgorithm_0() const { return ___keyAlgorithm_0; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_keyAlgorithm_0() { return &___keyAlgorithm_0; } inline void set_keyAlgorithm_0(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___keyAlgorithm_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___keyAlgorithm_0), (void*)value); } inline static int32_t get_offset_of_certAlgorithm_1() { return static_cast(offsetof(Pkcs12StoreBuilder_tCA31CF49F94065954EC54E802B27950102A00DD5, ___certAlgorithm_1)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_certAlgorithm_1() const { return ___certAlgorithm_1; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_certAlgorithm_1() { return &___certAlgorithm_1; } inline void set_certAlgorithm_1(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___certAlgorithm_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___certAlgorithm_1), (void*)value); } inline static int32_t get_offset_of_useDerEncoding_2() { return static_cast(offsetof(Pkcs12StoreBuilder_tCA31CF49F94065954EC54E802B27950102A00DD5, ___useDerEncoding_2)); } inline bool get_useDerEncoding_2() const { return ___useDerEncoding_2; } inline bool* get_address_of_useDerEncoding_2() { return &___useDerEncoding_2; } inline void set_useDerEncoding_2(bool value) { ___useDerEncoding_2 = value; } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs.Pkcs12Utilities struct Pkcs12Utilities_t414AD8DD3957F19A30FA3B3D802C8FB1470B7BBA : public RuntimeObject { public: public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Encodings.Pkcs1Encoding struct Pkcs1Encoding_t394A58F7A8B08BB6882774A5CF81630CCB8D9818 : public RuntimeObject { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Encodings.Pkcs1Encoding::random SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * ___random_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IAsymmetricBlockCipher BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Encodings.Pkcs1Encoding::engine RuntimeObject* ___engine_4; // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Encodings.Pkcs1Encoding::forEncryption bool ___forEncryption_5; // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Encodings.Pkcs1Encoding::forPrivateKey bool ___forPrivateKey_6; // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Encodings.Pkcs1Encoding::useStrictLength bool ___useStrictLength_7; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Encodings.Pkcs1Encoding::pLen int32_t ___pLen_8; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Encodings.Pkcs1Encoding::fallback ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___fallback_9; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Encodings.Pkcs1Encoding::blockBuffer ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___blockBuffer_10; public: inline static int32_t get_offset_of_random_3() { return static_cast(offsetof(Pkcs1Encoding_t394A58F7A8B08BB6882774A5CF81630CCB8D9818, ___random_3)); } inline SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * get_random_3() const { return ___random_3; } inline SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 ** get_address_of_random_3() { return &___random_3; } inline void set_random_3(SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * value) { ___random_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___random_3), (void*)value); } inline static int32_t get_offset_of_engine_4() { return static_cast(offsetof(Pkcs1Encoding_t394A58F7A8B08BB6882774A5CF81630CCB8D9818, ___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_forEncryption_5() { return static_cast(offsetof(Pkcs1Encoding_t394A58F7A8B08BB6882774A5CF81630CCB8D9818, ___forEncryption_5)); } inline bool get_forEncryption_5() const { return ___forEncryption_5; } inline bool* get_address_of_forEncryption_5() { return &___forEncryption_5; } inline void set_forEncryption_5(bool value) { ___forEncryption_5 = value; } inline static int32_t get_offset_of_forPrivateKey_6() { return static_cast(offsetof(Pkcs1Encoding_t394A58F7A8B08BB6882774A5CF81630CCB8D9818, ___forPrivateKey_6)); } inline bool get_forPrivateKey_6() const { return ___forPrivateKey_6; } inline bool* get_address_of_forPrivateKey_6() { return &___forPrivateKey_6; } inline void set_forPrivateKey_6(bool value) { ___forPrivateKey_6 = value; } inline static int32_t get_offset_of_useStrictLength_7() { return static_cast(offsetof(Pkcs1Encoding_t394A58F7A8B08BB6882774A5CF81630CCB8D9818, ___useStrictLength_7)); } inline bool get_useStrictLength_7() const { return ___useStrictLength_7; } inline bool* get_address_of_useStrictLength_7() { return &___useStrictLength_7; } inline void set_useStrictLength_7(bool value) { ___useStrictLength_7 = value; } inline static int32_t get_offset_of_pLen_8() { return static_cast(offsetof(Pkcs1Encoding_t394A58F7A8B08BB6882774A5CF81630CCB8D9818, ___pLen_8)); } inline int32_t get_pLen_8() const { return ___pLen_8; } inline int32_t* get_address_of_pLen_8() { return &___pLen_8; } inline void set_pLen_8(int32_t value) { ___pLen_8 = value; } inline static int32_t get_offset_of_fallback_9() { return static_cast(offsetof(Pkcs1Encoding_t394A58F7A8B08BB6882774A5CF81630CCB8D9818, ___fallback_9)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_fallback_9() const { return ___fallback_9; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_fallback_9() { return &___fallback_9; } inline void set_fallback_9(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___fallback_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___fallback_9), (void*)value); } inline static int32_t get_offset_of_blockBuffer_10() { return static_cast(offsetof(Pkcs1Encoding_t394A58F7A8B08BB6882774A5CF81630CCB8D9818, ___blockBuffer_10)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_blockBuffer_10() const { return ___blockBuffer_10; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_blockBuffer_10() { return &___blockBuffer_10; } inline void set_blockBuffer_10(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___blockBuffer_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___blockBuffer_10), (void*)value); } }; struct Pkcs1Encoding_t394A58F7A8B08BB6882774A5CF81630CCB8D9818_StaticFields { public: // System.Boolean[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Encodings.Pkcs1Encoding::strictLengthEnabled BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* ___strictLengthEnabled_2; public: inline static int32_t get_offset_of_strictLengthEnabled_2() { return static_cast(offsetof(Pkcs1Encoding_t394A58F7A8B08BB6882774A5CF81630CCB8D9818_StaticFields, ___strictLengthEnabled_2)); } inline BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* get_strictLengthEnabled_2() const { return ___strictLengthEnabled_2; } inline BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C** get_address_of_strictLengthEnabled_2() { return &___strictLengthEnabled_2; } inline void set_strictLengthEnabled_2(BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* value) { ___strictLengthEnabled_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___strictLengthEnabled_2), (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); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform struct Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804 : public RuntimeObject { public: public: }; struct Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_StaticFields { public: // System.Globalization.CompareInfo BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform::InvariantCompareInfo CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * ___InvariantCompareInfo_0; // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform::NewLine String_t* ___NewLine_1; public: inline static int32_t get_offset_of_InvariantCompareInfo_0() { return static_cast(offsetof(Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_StaticFields, ___InvariantCompareInfo_0)); } inline CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * get_InvariantCompareInfo_0() const { return ___InvariantCompareInfo_0; } inline CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 ** get_address_of_InvariantCompareInfo_0() { return &___InvariantCompareInfo_0; } inline void set_InvariantCompareInfo_0(CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * value) { ___InvariantCompareInfo_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___InvariantCompareInfo_0), (void*)value); } inline static int32_t get_offset_of_NewLine_1() { return static_cast(offsetof(Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_StaticFields, ___NewLine_1)); } inline String_t* get_NewLine_1() const { return ___NewLine_1; } inline String_t** get_address_of_NewLine_1() { return &___NewLine_1; } inline void set_NewLine_1(String_t* value) { ___NewLine_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___NewLine_1), (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; } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers struct TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E : public RuntimeObject { public: public: }; struct TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::TeleTrusTAlgorithm DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___TeleTrusTAlgorithm_0; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::RipeMD160 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___RipeMD160_1; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::RipeMD128 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___RipeMD128_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::RipeMD256 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___RipeMD256_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::TeleTrusTRsaSignatureAlgorithm DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___TeleTrusTRsaSignatureAlgorithm_4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::RsaSignatureWithRipeMD160 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___RsaSignatureWithRipeMD160_5; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::RsaSignatureWithRipeMD128 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___RsaSignatureWithRipeMD128_6; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::RsaSignatureWithRipeMD256 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___RsaSignatureWithRipeMD256_7; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::ECSign DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___ECSign_8; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::ECSignWithSha1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___ECSignWithSha1_9; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::ECSignWithRipeMD160 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___ECSignWithRipeMD160_10; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::EccBrainpool DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___EccBrainpool_11; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::EllipticCurve DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___EllipticCurve_12; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::VersionOne DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___VersionOne_13; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::BrainpoolP160R1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___BrainpoolP160R1_14; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::BrainpoolP160T1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___BrainpoolP160T1_15; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::BrainpoolP192R1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___BrainpoolP192R1_16; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::BrainpoolP192T1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___BrainpoolP192T1_17; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::BrainpoolP224R1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___BrainpoolP224R1_18; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::BrainpoolP224T1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___BrainpoolP224T1_19; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::BrainpoolP256R1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___BrainpoolP256R1_20; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::BrainpoolP256T1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___BrainpoolP256T1_21; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::BrainpoolP320R1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___BrainpoolP320R1_22; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::BrainpoolP320T1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___BrainpoolP320T1_23; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::BrainpoolP384R1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___BrainpoolP384R1_24; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::BrainpoolP384T1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___BrainpoolP384T1_25; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::BrainpoolP512R1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___BrainpoolP512R1_26; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::BrainpoolP512T1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___BrainpoolP512T1_27; public: inline static int32_t get_offset_of_TeleTrusTAlgorithm_0() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___TeleTrusTAlgorithm_0)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_TeleTrusTAlgorithm_0() const { return ___TeleTrusTAlgorithm_0; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_TeleTrusTAlgorithm_0() { return &___TeleTrusTAlgorithm_0; } inline void set_TeleTrusTAlgorithm_0(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___TeleTrusTAlgorithm_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___TeleTrusTAlgorithm_0), (void*)value); } inline static int32_t get_offset_of_RipeMD160_1() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___RipeMD160_1)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_RipeMD160_1() const { return ___RipeMD160_1; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_RipeMD160_1() { return &___RipeMD160_1; } inline void set_RipeMD160_1(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___RipeMD160_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___RipeMD160_1), (void*)value); } inline static int32_t get_offset_of_RipeMD128_2() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___RipeMD128_2)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_RipeMD128_2() const { return ___RipeMD128_2; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_RipeMD128_2() { return &___RipeMD128_2; } inline void set_RipeMD128_2(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___RipeMD128_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___RipeMD128_2), (void*)value); } inline static int32_t get_offset_of_RipeMD256_3() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___RipeMD256_3)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_RipeMD256_3() const { return ___RipeMD256_3; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_RipeMD256_3() { return &___RipeMD256_3; } inline void set_RipeMD256_3(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___RipeMD256_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___RipeMD256_3), (void*)value); } inline static int32_t get_offset_of_TeleTrusTRsaSignatureAlgorithm_4() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___TeleTrusTRsaSignatureAlgorithm_4)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_TeleTrusTRsaSignatureAlgorithm_4() const { return ___TeleTrusTRsaSignatureAlgorithm_4; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_TeleTrusTRsaSignatureAlgorithm_4() { return &___TeleTrusTRsaSignatureAlgorithm_4; } inline void set_TeleTrusTRsaSignatureAlgorithm_4(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___TeleTrusTRsaSignatureAlgorithm_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___TeleTrusTRsaSignatureAlgorithm_4), (void*)value); } inline static int32_t get_offset_of_RsaSignatureWithRipeMD160_5() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___RsaSignatureWithRipeMD160_5)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_RsaSignatureWithRipeMD160_5() const { return ___RsaSignatureWithRipeMD160_5; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_RsaSignatureWithRipeMD160_5() { return &___RsaSignatureWithRipeMD160_5; } inline void set_RsaSignatureWithRipeMD160_5(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___RsaSignatureWithRipeMD160_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___RsaSignatureWithRipeMD160_5), (void*)value); } inline static int32_t get_offset_of_RsaSignatureWithRipeMD128_6() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___RsaSignatureWithRipeMD128_6)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_RsaSignatureWithRipeMD128_6() const { return ___RsaSignatureWithRipeMD128_6; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_RsaSignatureWithRipeMD128_6() { return &___RsaSignatureWithRipeMD128_6; } inline void set_RsaSignatureWithRipeMD128_6(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___RsaSignatureWithRipeMD128_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___RsaSignatureWithRipeMD128_6), (void*)value); } inline static int32_t get_offset_of_RsaSignatureWithRipeMD256_7() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___RsaSignatureWithRipeMD256_7)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_RsaSignatureWithRipeMD256_7() const { return ___RsaSignatureWithRipeMD256_7; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_RsaSignatureWithRipeMD256_7() { return &___RsaSignatureWithRipeMD256_7; } inline void set_RsaSignatureWithRipeMD256_7(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___RsaSignatureWithRipeMD256_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___RsaSignatureWithRipeMD256_7), (void*)value); } inline static int32_t get_offset_of_ECSign_8() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___ECSign_8)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_ECSign_8() const { return ___ECSign_8; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_ECSign_8() { return &___ECSign_8; } inline void set_ECSign_8(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___ECSign_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___ECSign_8), (void*)value); } inline static int32_t get_offset_of_ECSignWithSha1_9() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___ECSignWithSha1_9)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_ECSignWithSha1_9() const { return ___ECSignWithSha1_9; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_ECSignWithSha1_9() { return &___ECSignWithSha1_9; } inline void set_ECSignWithSha1_9(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___ECSignWithSha1_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___ECSignWithSha1_9), (void*)value); } inline static int32_t get_offset_of_ECSignWithRipeMD160_10() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___ECSignWithRipeMD160_10)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_ECSignWithRipeMD160_10() const { return ___ECSignWithRipeMD160_10; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_ECSignWithRipeMD160_10() { return &___ECSignWithRipeMD160_10; } inline void set_ECSignWithRipeMD160_10(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___ECSignWithRipeMD160_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___ECSignWithRipeMD160_10), (void*)value); } inline static int32_t get_offset_of_EccBrainpool_11() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___EccBrainpool_11)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_EccBrainpool_11() const { return ___EccBrainpool_11; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_EccBrainpool_11() { return &___EccBrainpool_11; } inline void set_EccBrainpool_11(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___EccBrainpool_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___EccBrainpool_11), (void*)value); } inline static int32_t get_offset_of_EllipticCurve_12() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___EllipticCurve_12)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_EllipticCurve_12() const { return ___EllipticCurve_12; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_EllipticCurve_12() { return &___EllipticCurve_12; } inline void set_EllipticCurve_12(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___EllipticCurve_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___EllipticCurve_12), (void*)value); } inline static int32_t get_offset_of_VersionOne_13() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___VersionOne_13)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_VersionOne_13() const { return ___VersionOne_13; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_VersionOne_13() { return &___VersionOne_13; } inline void set_VersionOne_13(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___VersionOne_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___VersionOne_13), (void*)value); } inline static int32_t get_offset_of_BrainpoolP160R1_14() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___BrainpoolP160R1_14)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_BrainpoolP160R1_14() const { return ___BrainpoolP160R1_14; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_BrainpoolP160R1_14() { return &___BrainpoolP160R1_14; } inline void set_BrainpoolP160R1_14(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___BrainpoolP160R1_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___BrainpoolP160R1_14), (void*)value); } inline static int32_t get_offset_of_BrainpoolP160T1_15() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___BrainpoolP160T1_15)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_BrainpoolP160T1_15() const { return ___BrainpoolP160T1_15; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_BrainpoolP160T1_15() { return &___BrainpoolP160T1_15; } inline void set_BrainpoolP160T1_15(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___BrainpoolP160T1_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___BrainpoolP160T1_15), (void*)value); } inline static int32_t get_offset_of_BrainpoolP192R1_16() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___BrainpoolP192R1_16)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_BrainpoolP192R1_16() const { return ___BrainpoolP192R1_16; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_BrainpoolP192R1_16() { return &___BrainpoolP192R1_16; } inline void set_BrainpoolP192R1_16(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___BrainpoolP192R1_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___BrainpoolP192R1_16), (void*)value); } inline static int32_t get_offset_of_BrainpoolP192T1_17() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___BrainpoolP192T1_17)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_BrainpoolP192T1_17() const { return ___BrainpoolP192T1_17; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_BrainpoolP192T1_17() { return &___BrainpoolP192T1_17; } inline void set_BrainpoolP192T1_17(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___BrainpoolP192T1_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___BrainpoolP192T1_17), (void*)value); } inline static int32_t get_offset_of_BrainpoolP224R1_18() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___BrainpoolP224R1_18)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_BrainpoolP224R1_18() const { return ___BrainpoolP224R1_18; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_BrainpoolP224R1_18() { return &___BrainpoolP224R1_18; } inline void set_BrainpoolP224R1_18(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___BrainpoolP224R1_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___BrainpoolP224R1_18), (void*)value); } inline static int32_t get_offset_of_BrainpoolP224T1_19() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___BrainpoolP224T1_19)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_BrainpoolP224T1_19() const { return ___BrainpoolP224T1_19; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_BrainpoolP224T1_19() { return &___BrainpoolP224T1_19; } inline void set_BrainpoolP224T1_19(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___BrainpoolP224T1_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___BrainpoolP224T1_19), (void*)value); } inline static int32_t get_offset_of_BrainpoolP256R1_20() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___BrainpoolP256R1_20)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_BrainpoolP256R1_20() const { return ___BrainpoolP256R1_20; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_BrainpoolP256R1_20() { return &___BrainpoolP256R1_20; } inline void set_BrainpoolP256R1_20(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___BrainpoolP256R1_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___BrainpoolP256R1_20), (void*)value); } inline static int32_t get_offset_of_BrainpoolP256T1_21() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___BrainpoolP256T1_21)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_BrainpoolP256T1_21() const { return ___BrainpoolP256T1_21; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_BrainpoolP256T1_21() { return &___BrainpoolP256T1_21; } inline void set_BrainpoolP256T1_21(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___BrainpoolP256T1_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___BrainpoolP256T1_21), (void*)value); } inline static int32_t get_offset_of_BrainpoolP320R1_22() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___BrainpoolP320R1_22)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_BrainpoolP320R1_22() const { return ___BrainpoolP320R1_22; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_BrainpoolP320R1_22() { return &___BrainpoolP320R1_22; } inline void set_BrainpoolP320R1_22(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___BrainpoolP320R1_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___BrainpoolP320R1_22), (void*)value); } inline static int32_t get_offset_of_BrainpoolP320T1_23() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___BrainpoolP320T1_23)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_BrainpoolP320T1_23() const { return ___BrainpoolP320T1_23; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_BrainpoolP320T1_23() { return &___BrainpoolP320T1_23; } inline void set_BrainpoolP320T1_23(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___BrainpoolP320T1_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___BrainpoolP320T1_23), (void*)value); } inline static int32_t get_offset_of_BrainpoolP384R1_24() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___BrainpoolP384R1_24)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_BrainpoolP384R1_24() const { return ___BrainpoolP384R1_24; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_BrainpoolP384R1_24() { return &___BrainpoolP384R1_24; } inline void set_BrainpoolP384R1_24(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___BrainpoolP384R1_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___BrainpoolP384R1_24), (void*)value); } inline static int32_t get_offset_of_BrainpoolP384T1_25() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___BrainpoolP384T1_25)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_BrainpoolP384T1_25() const { return ___BrainpoolP384T1_25; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_BrainpoolP384T1_25() { return &___BrainpoolP384T1_25; } inline void set_BrainpoolP384T1_25(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___BrainpoolP384T1_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___BrainpoolP384T1_25), (void*)value); } inline static int32_t get_offset_of_BrainpoolP512R1_26() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___BrainpoolP512R1_26)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_BrainpoolP512R1_26() const { return ___BrainpoolP512R1_26; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_BrainpoolP512R1_26() { return &___BrainpoolP512R1_26; } inline void set_BrainpoolP512R1_26(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___BrainpoolP512R1_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___BrainpoolP512R1_26), (void*)value); } inline static int32_t get_offset_of_BrainpoolP512T1_27() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___BrainpoolP512T1_27)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_BrainpoolP512T1_27() const { return ___BrainpoolP512T1_27; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_BrainpoolP512T1_27() { return &___BrainpoolP512T1_27; } inline void set_BrainpoolP512T1_27(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___BrainpoolP512T1_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___BrainpoolP512T1_27), (void*)value); } }; // UnityEngine.Events.UnityEventBase struct UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB : public RuntimeObject { public: // UnityEngine.Events.InvokableCallList UnityEngine.Events.UnityEventBase::m_Calls InvokableCallList_tB7C66AA0C00F9C102C8BDC17A144E569AC7527A9 * ___m_Calls_0; // UnityEngine.Events.PersistentCallGroup UnityEngine.Events.UnityEventBase::m_PersistentCalls PersistentCallGroup_t9A1D83DA2BA3118C103FA87D93CE92557A956FDC * ___m_PersistentCalls_1; // System.Boolean UnityEngine.Events.UnityEventBase::m_CallsDirty bool ___m_CallsDirty_2; public: inline static int32_t get_offset_of_m_Calls_0() { return static_cast(offsetof(UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB, ___m_Calls_0)); } inline InvokableCallList_tB7C66AA0C00F9C102C8BDC17A144E569AC7527A9 * get_m_Calls_0() const { return ___m_Calls_0; } inline InvokableCallList_tB7C66AA0C00F9C102C8BDC17A144E569AC7527A9 ** get_address_of_m_Calls_0() { return &___m_Calls_0; } inline void set_m_Calls_0(InvokableCallList_tB7C66AA0C00F9C102C8BDC17A144E569AC7527A9 * value) { ___m_Calls_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Calls_0), (void*)value); } inline static int32_t get_offset_of_m_PersistentCalls_1() { return static_cast(offsetof(UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB, ___m_PersistentCalls_1)); } inline PersistentCallGroup_t9A1D83DA2BA3118C103FA87D93CE92557A956FDC * get_m_PersistentCalls_1() const { return ___m_PersistentCalls_1; } inline PersistentCallGroup_t9A1D83DA2BA3118C103FA87D93CE92557A956FDC ** get_address_of_m_PersistentCalls_1() { return &___m_PersistentCalls_1; } inline void set_m_PersistentCalls_1(PersistentCallGroup_t9A1D83DA2BA3118C103FA87D93CE92557A956FDC * value) { ___m_PersistentCalls_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_PersistentCalls_1), (void*)value); } inline static int32_t get_offset_of_m_CallsDirty_2() { return static_cast(offsetof(UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB, ___m_CallsDirty_2)); } inline bool get_m_CallsDirty_2() const { return ___m_CallsDirty_2; } inline bool* get_address_of_m_CallsDirty_2() { return &___m_CallsDirty_2; } inline void set_m_CallsDirty_2(bool value) { ___m_CallsDirty_2 = value; } }; // 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 { }; // 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.X509.X509CertificateParser struct X509CertificateParser_t76052650A7486EB7C9B24F64A8D228E18BB62AAF : public RuntimeObject { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Set BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509CertificateParser::sData Asn1Set_t9EBB628AB5FBF1FCC866DC7AEA45C59A72698F49 * ___sData_1; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509CertificateParser::sDataObjectCount int32_t ___sDataObjectCount_2; // System.IO.Stream BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509CertificateParser::currentStream Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___currentStream_3; public: inline static int32_t get_offset_of_sData_1() { return static_cast(offsetof(X509CertificateParser_t76052650A7486EB7C9B24F64A8D228E18BB62AAF, ___sData_1)); } inline Asn1Set_t9EBB628AB5FBF1FCC866DC7AEA45C59A72698F49 * get_sData_1() const { return ___sData_1; } inline Asn1Set_t9EBB628AB5FBF1FCC866DC7AEA45C59A72698F49 ** get_address_of_sData_1() { return &___sData_1; } inline void set_sData_1(Asn1Set_t9EBB628AB5FBF1FCC866DC7AEA45C59A72698F49 * value) { ___sData_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___sData_1), (void*)value); } inline static int32_t get_offset_of_sDataObjectCount_2() { return static_cast(offsetof(X509CertificateParser_t76052650A7486EB7C9B24F64A8D228E18BB62AAF, ___sDataObjectCount_2)); } inline int32_t get_sDataObjectCount_2() const { return ___sDataObjectCount_2; } inline int32_t* get_address_of_sDataObjectCount_2() { return &___sDataObjectCount_2; } inline void set_sDataObjectCount_2(int32_t value) { ___sDataObjectCount_2 = value; } inline static int32_t get_offset_of_currentStream_3() { return static_cast(offsetof(X509CertificateParser_t76052650A7486EB7C9B24F64A8D228E18BB62AAF, ___currentStream_3)); } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_currentStream_3() const { return ___currentStream_3; } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_currentStream_3() { return &___currentStream_3; } inline void set_currentStream_3(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value) { ___currentStream_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentStream_3), (void*)value); } }; struct X509CertificateParser_t76052650A7486EB7C9B24F64A8D228E18BB62AAF_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.PemParser BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509CertificateParser::PemCertParser PemParser_tB3FC6780946303F9667460AF6A79F87A8C0F3215 * ___PemCertParser_0; public: inline static int32_t get_offset_of_PemCertParser_0() { return static_cast(offsetof(X509CertificateParser_t76052650A7486EB7C9B24F64A8D228E18BB62AAF_StaticFields, ___PemCertParser_0)); } inline PemParser_tB3FC6780946303F9667460AF6A79F87A8C0F3215 * get_PemCertParser_0() const { return ___PemCertParser_0; } inline PemParser_tB3FC6780946303F9667460AF6A79F87A8C0F3215 ** get_address_of_PemCertParser_0() { return &___PemCertParser_0; } inline void set_PemCertParser_0(PemParser_tB3FC6780946303F9667460AF6A79F87A8C0F3215 * value) { ___PemCertParser_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___PemCertParser_0), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509CrlParser struct X509CrlParser_t5A69F403A4E632BD648423A86C85BA28CC698FCA : public RuntimeObject { public: // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509CrlParser::lazyAsn1 bool ___lazyAsn1_1; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Set BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509CrlParser::sCrlData Asn1Set_t9EBB628AB5FBF1FCC866DC7AEA45C59A72698F49 * ___sCrlData_2; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509CrlParser::sCrlDataObjectCount int32_t ___sCrlDataObjectCount_3; // System.IO.Stream BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509CrlParser::currentCrlStream Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___currentCrlStream_4; public: inline static int32_t get_offset_of_lazyAsn1_1() { return static_cast(offsetof(X509CrlParser_t5A69F403A4E632BD648423A86C85BA28CC698FCA, ___lazyAsn1_1)); } inline bool get_lazyAsn1_1() const { return ___lazyAsn1_1; } inline bool* get_address_of_lazyAsn1_1() { return &___lazyAsn1_1; } inline void set_lazyAsn1_1(bool value) { ___lazyAsn1_1 = value; } inline static int32_t get_offset_of_sCrlData_2() { return static_cast(offsetof(X509CrlParser_t5A69F403A4E632BD648423A86C85BA28CC698FCA, ___sCrlData_2)); } inline Asn1Set_t9EBB628AB5FBF1FCC866DC7AEA45C59A72698F49 * get_sCrlData_2() const { return ___sCrlData_2; } inline Asn1Set_t9EBB628AB5FBF1FCC866DC7AEA45C59A72698F49 ** get_address_of_sCrlData_2() { return &___sCrlData_2; } inline void set_sCrlData_2(Asn1Set_t9EBB628AB5FBF1FCC866DC7AEA45C59A72698F49 * value) { ___sCrlData_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___sCrlData_2), (void*)value); } inline static int32_t get_offset_of_sCrlDataObjectCount_3() { return static_cast(offsetof(X509CrlParser_t5A69F403A4E632BD648423A86C85BA28CC698FCA, ___sCrlDataObjectCount_3)); } inline int32_t get_sCrlDataObjectCount_3() const { return ___sCrlDataObjectCount_3; } inline int32_t* get_address_of_sCrlDataObjectCount_3() { return &___sCrlDataObjectCount_3; } inline void set_sCrlDataObjectCount_3(int32_t value) { ___sCrlDataObjectCount_3 = value; } inline static int32_t get_offset_of_currentCrlStream_4() { return static_cast(offsetof(X509CrlParser_t5A69F403A4E632BD648423A86C85BA28CC698FCA, ___currentCrlStream_4)); } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_currentCrlStream_4() const { return ___currentCrlStream_4; } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_currentCrlStream_4() { return &___currentCrlStream_4; } inline void set_currentCrlStream_4(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value) { ___currentCrlStream_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentCrlStream_4), (void*)value); } }; struct X509CrlParser_t5A69F403A4E632BD648423A86C85BA28CC698FCA_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.PemParser BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509CrlParser::PemCrlParser PemParser_tB3FC6780946303F9667460AF6A79F87A8C0F3215 * ___PemCrlParser_0; public: inline static int32_t get_offset_of_PemCrlParser_0() { return static_cast(offsetof(X509CrlParser_t5A69F403A4E632BD648423A86C85BA28CC698FCA_StaticFields, ___PemCrlParser_0)); } inline PemParser_tB3FC6780946303F9667460AF6A79F87A8C0F3215 * get_PemCrlParser_0() const { return ___PemCrlParser_0; } inline PemParser_tB3FC6780946303F9667460AF6A79F87A8C0F3215 ** get_address_of_PemCrlParser_0() { return &___PemCrlParser_0; } inline void set_PemCrlParser_0(PemParser_tB3FC6780946303F9667460AF6A79F87A8C0F3215 * value) { ___PemCrlParser_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___PemCrlParser_0), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509ExtensionBase struct X509ExtensionBase_t91B691B9E834F516C9CE847F2B900B019A37CCE7 : public RuntimeObject { public: public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers struct X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E : public RuntimeObject { public: public: }; struct X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::ansi_X9_62 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___ansi_X9_62_1; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::IdFieldType DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdFieldType_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::PrimeField DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___PrimeField_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::CharacteristicTwoField DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___CharacteristicTwoField_4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::GNBasis DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___GNBasis_5; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::TPBasis DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___TPBasis_6; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::PPBasis DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___PPBasis_7; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::id_ecSigType DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___id_ecSigType_9; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::ECDsaWithSha1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___ECDsaWithSha1_10; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::id_publicKeyType DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___id_publicKeyType_12; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::IdECPublicKey DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdECPublicKey_13; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::ECDsaWithSha2 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___ECDsaWithSha2_14; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::ECDsaWithSha224 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___ECDsaWithSha224_15; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::ECDsaWithSha256 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___ECDsaWithSha256_16; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::ECDsaWithSha384 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___ECDsaWithSha384_17; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::ECDsaWithSha512 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___ECDsaWithSha512_18; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::EllipticCurve DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___EllipticCurve_19; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::CTwoCurve DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___CTwoCurve_20; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Pnb163v1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___C2Pnb163v1_21; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Pnb163v2 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___C2Pnb163v2_22; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Pnb163v3 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___C2Pnb163v3_23; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Pnb176w1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___C2Pnb176w1_24; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Tnb191v1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___C2Tnb191v1_25; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Tnb191v2 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___C2Tnb191v2_26; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Tnb191v3 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___C2Tnb191v3_27; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Onb191v4 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___C2Onb191v4_28; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Onb191v5 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___C2Onb191v5_29; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Pnb208w1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___C2Pnb208w1_30; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Tnb239v1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___C2Tnb239v1_31; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Tnb239v2 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___C2Tnb239v2_32; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Tnb239v3 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___C2Tnb239v3_33; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Onb239v4 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___C2Onb239v4_34; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Onb239v5 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___C2Onb239v5_35; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Pnb272w1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___C2Pnb272w1_36; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Pnb304w1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___C2Pnb304w1_37; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Tnb359v1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___C2Tnb359v1_38; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Pnb368w1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___C2Pnb368w1_39; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Tnb431r1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___C2Tnb431r1_40; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::PrimeCurve DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___PrimeCurve_41; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::Prime192v1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Prime192v1_42; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::Prime192v2 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Prime192v2_43; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::Prime192v3 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Prime192v3_44; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::Prime239v1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Prime239v1_45; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::Prime239v2 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Prime239v2_46; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::Prime239v3 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Prime239v3_47; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::Prime256v1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Prime256v1_48; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::IdDsa DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdDsa_49; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::IdDsaWithSha1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdDsaWithSha1_50; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::X9x63Scheme DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___X9x63Scheme_51; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::DHSinglePassStdDHSha1KdfScheme DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DHSinglePassStdDHSha1KdfScheme_52; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::DHSinglePassCofactorDHSha1KdfScheme DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DHSinglePassCofactorDHSha1KdfScheme_53; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::MqvSinglePassSha1KdfScheme DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___MqvSinglePassSha1KdfScheme_54; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::ansi_x9_42 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___ansi_x9_42_55; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::DHPublicNumber DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DHPublicNumber_56; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::X9x42Schemes DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___X9x42Schemes_57; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::DHStatic DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DHStatic_58; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::DHEphem DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DHEphem_59; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::DHOneFlow DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DHOneFlow_60; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::DHHybrid1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DHHybrid1_61; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::DHHybrid2 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DHHybrid2_62; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::DHHybridOneFlow DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DHHybridOneFlow_63; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::Mqv2 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Mqv2_64; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::Mqv1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Mqv1_65; public: inline static int32_t get_offset_of_ansi_X9_62_1() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___ansi_X9_62_1)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_ansi_X9_62_1() const { return ___ansi_X9_62_1; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_ansi_X9_62_1() { return &___ansi_X9_62_1; } inline void set_ansi_X9_62_1(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___ansi_X9_62_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___ansi_X9_62_1), (void*)value); } inline static int32_t get_offset_of_IdFieldType_2() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___IdFieldType_2)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdFieldType_2() const { return ___IdFieldType_2; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdFieldType_2() { return &___IdFieldType_2; } inline void set_IdFieldType_2(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdFieldType_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdFieldType_2), (void*)value); } inline static int32_t get_offset_of_PrimeField_3() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___PrimeField_3)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_PrimeField_3() const { return ___PrimeField_3; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_PrimeField_3() { return &___PrimeField_3; } inline void set_PrimeField_3(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___PrimeField_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___PrimeField_3), (void*)value); } inline static int32_t get_offset_of_CharacteristicTwoField_4() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___CharacteristicTwoField_4)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_CharacteristicTwoField_4() const { return ___CharacteristicTwoField_4; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_CharacteristicTwoField_4() { return &___CharacteristicTwoField_4; } inline void set_CharacteristicTwoField_4(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___CharacteristicTwoField_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___CharacteristicTwoField_4), (void*)value); } inline static int32_t get_offset_of_GNBasis_5() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___GNBasis_5)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_GNBasis_5() const { return ___GNBasis_5; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_GNBasis_5() { return &___GNBasis_5; } inline void set_GNBasis_5(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___GNBasis_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___GNBasis_5), (void*)value); } inline static int32_t get_offset_of_TPBasis_6() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___TPBasis_6)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_TPBasis_6() const { return ___TPBasis_6; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_TPBasis_6() { return &___TPBasis_6; } inline void set_TPBasis_6(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___TPBasis_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___TPBasis_6), (void*)value); } inline static int32_t get_offset_of_PPBasis_7() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___PPBasis_7)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_PPBasis_7() const { return ___PPBasis_7; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_PPBasis_7() { return &___PPBasis_7; } inline void set_PPBasis_7(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___PPBasis_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___PPBasis_7), (void*)value); } inline static int32_t get_offset_of_id_ecSigType_9() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___id_ecSigType_9)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_id_ecSigType_9() const { return ___id_ecSigType_9; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_id_ecSigType_9() { return &___id_ecSigType_9; } inline void set_id_ecSigType_9(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___id_ecSigType_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___id_ecSigType_9), (void*)value); } inline static int32_t get_offset_of_ECDsaWithSha1_10() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___ECDsaWithSha1_10)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_ECDsaWithSha1_10() const { return ___ECDsaWithSha1_10; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_ECDsaWithSha1_10() { return &___ECDsaWithSha1_10; } inline void set_ECDsaWithSha1_10(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___ECDsaWithSha1_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___ECDsaWithSha1_10), (void*)value); } inline static int32_t get_offset_of_id_publicKeyType_12() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___id_publicKeyType_12)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_id_publicKeyType_12() const { return ___id_publicKeyType_12; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_id_publicKeyType_12() { return &___id_publicKeyType_12; } inline void set_id_publicKeyType_12(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___id_publicKeyType_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___id_publicKeyType_12), (void*)value); } inline static int32_t get_offset_of_IdECPublicKey_13() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___IdECPublicKey_13)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdECPublicKey_13() const { return ___IdECPublicKey_13; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdECPublicKey_13() { return &___IdECPublicKey_13; } inline void set_IdECPublicKey_13(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdECPublicKey_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdECPublicKey_13), (void*)value); } inline static int32_t get_offset_of_ECDsaWithSha2_14() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___ECDsaWithSha2_14)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_ECDsaWithSha2_14() const { return ___ECDsaWithSha2_14; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_ECDsaWithSha2_14() { return &___ECDsaWithSha2_14; } inline void set_ECDsaWithSha2_14(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___ECDsaWithSha2_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___ECDsaWithSha2_14), (void*)value); } inline static int32_t get_offset_of_ECDsaWithSha224_15() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___ECDsaWithSha224_15)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_ECDsaWithSha224_15() const { return ___ECDsaWithSha224_15; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_ECDsaWithSha224_15() { return &___ECDsaWithSha224_15; } inline void set_ECDsaWithSha224_15(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___ECDsaWithSha224_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___ECDsaWithSha224_15), (void*)value); } inline static int32_t get_offset_of_ECDsaWithSha256_16() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___ECDsaWithSha256_16)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_ECDsaWithSha256_16() const { return ___ECDsaWithSha256_16; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_ECDsaWithSha256_16() { return &___ECDsaWithSha256_16; } inline void set_ECDsaWithSha256_16(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___ECDsaWithSha256_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___ECDsaWithSha256_16), (void*)value); } inline static int32_t get_offset_of_ECDsaWithSha384_17() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___ECDsaWithSha384_17)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_ECDsaWithSha384_17() const { return ___ECDsaWithSha384_17; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_ECDsaWithSha384_17() { return &___ECDsaWithSha384_17; } inline void set_ECDsaWithSha384_17(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___ECDsaWithSha384_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___ECDsaWithSha384_17), (void*)value); } inline static int32_t get_offset_of_ECDsaWithSha512_18() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___ECDsaWithSha512_18)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_ECDsaWithSha512_18() const { return ___ECDsaWithSha512_18; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_ECDsaWithSha512_18() { return &___ECDsaWithSha512_18; } inline void set_ECDsaWithSha512_18(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___ECDsaWithSha512_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___ECDsaWithSha512_18), (void*)value); } inline static int32_t get_offset_of_EllipticCurve_19() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___EllipticCurve_19)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_EllipticCurve_19() const { return ___EllipticCurve_19; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_EllipticCurve_19() { return &___EllipticCurve_19; } inline void set_EllipticCurve_19(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___EllipticCurve_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___EllipticCurve_19), (void*)value); } inline static int32_t get_offset_of_CTwoCurve_20() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___CTwoCurve_20)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_CTwoCurve_20() const { return ___CTwoCurve_20; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_CTwoCurve_20() { return &___CTwoCurve_20; } inline void set_CTwoCurve_20(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___CTwoCurve_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___CTwoCurve_20), (void*)value); } inline static int32_t get_offset_of_C2Pnb163v1_21() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___C2Pnb163v1_21)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_C2Pnb163v1_21() const { return ___C2Pnb163v1_21; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_C2Pnb163v1_21() { return &___C2Pnb163v1_21; } inline void set_C2Pnb163v1_21(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___C2Pnb163v1_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___C2Pnb163v1_21), (void*)value); } inline static int32_t get_offset_of_C2Pnb163v2_22() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___C2Pnb163v2_22)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_C2Pnb163v2_22() const { return ___C2Pnb163v2_22; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_C2Pnb163v2_22() { return &___C2Pnb163v2_22; } inline void set_C2Pnb163v2_22(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___C2Pnb163v2_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___C2Pnb163v2_22), (void*)value); } inline static int32_t get_offset_of_C2Pnb163v3_23() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___C2Pnb163v3_23)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_C2Pnb163v3_23() const { return ___C2Pnb163v3_23; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_C2Pnb163v3_23() { return &___C2Pnb163v3_23; } inline void set_C2Pnb163v3_23(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___C2Pnb163v3_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___C2Pnb163v3_23), (void*)value); } inline static int32_t get_offset_of_C2Pnb176w1_24() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___C2Pnb176w1_24)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_C2Pnb176w1_24() const { return ___C2Pnb176w1_24; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_C2Pnb176w1_24() { return &___C2Pnb176w1_24; } inline void set_C2Pnb176w1_24(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___C2Pnb176w1_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___C2Pnb176w1_24), (void*)value); } inline static int32_t get_offset_of_C2Tnb191v1_25() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___C2Tnb191v1_25)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_C2Tnb191v1_25() const { return ___C2Tnb191v1_25; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_C2Tnb191v1_25() { return &___C2Tnb191v1_25; } inline void set_C2Tnb191v1_25(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___C2Tnb191v1_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___C2Tnb191v1_25), (void*)value); } inline static int32_t get_offset_of_C2Tnb191v2_26() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___C2Tnb191v2_26)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_C2Tnb191v2_26() const { return ___C2Tnb191v2_26; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_C2Tnb191v2_26() { return &___C2Tnb191v2_26; } inline void set_C2Tnb191v2_26(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___C2Tnb191v2_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___C2Tnb191v2_26), (void*)value); } inline static int32_t get_offset_of_C2Tnb191v3_27() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___C2Tnb191v3_27)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_C2Tnb191v3_27() const { return ___C2Tnb191v3_27; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_C2Tnb191v3_27() { return &___C2Tnb191v3_27; } inline void set_C2Tnb191v3_27(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___C2Tnb191v3_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___C2Tnb191v3_27), (void*)value); } inline static int32_t get_offset_of_C2Onb191v4_28() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___C2Onb191v4_28)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_C2Onb191v4_28() const { return ___C2Onb191v4_28; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_C2Onb191v4_28() { return &___C2Onb191v4_28; } inline void set_C2Onb191v4_28(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___C2Onb191v4_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___C2Onb191v4_28), (void*)value); } inline static int32_t get_offset_of_C2Onb191v5_29() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___C2Onb191v5_29)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_C2Onb191v5_29() const { return ___C2Onb191v5_29; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_C2Onb191v5_29() { return &___C2Onb191v5_29; } inline void set_C2Onb191v5_29(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___C2Onb191v5_29 = value; Il2CppCodeGenWriteBarrier((void**)(&___C2Onb191v5_29), (void*)value); } inline static int32_t get_offset_of_C2Pnb208w1_30() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___C2Pnb208w1_30)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_C2Pnb208w1_30() const { return ___C2Pnb208w1_30; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_C2Pnb208w1_30() { return &___C2Pnb208w1_30; } inline void set_C2Pnb208w1_30(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___C2Pnb208w1_30 = value; Il2CppCodeGenWriteBarrier((void**)(&___C2Pnb208w1_30), (void*)value); } inline static int32_t get_offset_of_C2Tnb239v1_31() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___C2Tnb239v1_31)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_C2Tnb239v1_31() const { return ___C2Tnb239v1_31; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_C2Tnb239v1_31() { return &___C2Tnb239v1_31; } inline void set_C2Tnb239v1_31(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___C2Tnb239v1_31 = value; Il2CppCodeGenWriteBarrier((void**)(&___C2Tnb239v1_31), (void*)value); } inline static int32_t get_offset_of_C2Tnb239v2_32() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___C2Tnb239v2_32)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_C2Tnb239v2_32() const { return ___C2Tnb239v2_32; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_C2Tnb239v2_32() { return &___C2Tnb239v2_32; } inline void set_C2Tnb239v2_32(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___C2Tnb239v2_32 = value; Il2CppCodeGenWriteBarrier((void**)(&___C2Tnb239v2_32), (void*)value); } inline static int32_t get_offset_of_C2Tnb239v3_33() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___C2Tnb239v3_33)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_C2Tnb239v3_33() const { return ___C2Tnb239v3_33; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_C2Tnb239v3_33() { return &___C2Tnb239v3_33; } inline void set_C2Tnb239v3_33(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___C2Tnb239v3_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___C2Tnb239v3_33), (void*)value); } inline static int32_t get_offset_of_C2Onb239v4_34() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___C2Onb239v4_34)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_C2Onb239v4_34() const { return ___C2Onb239v4_34; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_C2Onb239v4_34() { return &___C2Onb239v4_34; } inline void set_C2Onb239v4_34(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___C2Onb239v4_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___C2Onb239v4_34), (void*)value); } inline static int32_t get_offset_of_C2Onb239v5_35() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___C2Onb239v5_35)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_C2Onb239v5_35() const { return ___C2Onb239v5_35; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_C2Onb239v5_35() { return &___C2Onb239v5_35; } inline void set_C2Onb239v5_35(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___C2Onb239v5_35 = value; Il2CppCodeGenWriteBarrier((void**)(&___C2Onb239v5_35), (void*)value); } inline static int32_t get_offset_of_C2Pnb272w1_36() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___C2Pnb272w1_36)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_C2Pnb272w1_36() const { return ___C2Pnb272w1_36; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_C2Pnb272w1_36() { return &___C2Pnb272w1_36; } inline void set_C2Pnb272w1_36(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___C2Pnb272w1_36 = value; Il2CppCodeGenWriteBarrier((void**)(&___C2Pnb272w1_36), (void*)value); } inline static int32_t get_offset_of_C2Pnb304w1_37() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___C2Pnb304w1_37)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_C2Pnb304w1_37() const { return ___C2Pnb304w1_37; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_C2Pnb304w1_37() { return &___C2Pnb304w1_37; } inline void set_C2Pnb304w1_37(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___C2Pnb304w1_37 = value; Il2CppCodeGenWriteBarrier((void**)(&___C2Pnb304w1_37), (void*)value); } inline static int32_t get_offset_of_C2Tnb359v1_38() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___C2Tnb359v1_38)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_C2Tnb359v1_38() const { return ___C2Tnb359v1_38; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_C2Tnb359v1_38() { return &___C2Tnb359v1_38; } inline void set_C2Tnb359v1_38(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___C2Tnb359v1_38 = value; Il2CppCodeGenWriteBarrier((void**)(&___C2Tnb359v1_38), (void*)value); } inline static int32_t get_offset_of_C2Pnb368w1_39() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___C2Pnb368w1_39)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_C2Pnb368w1_39() const { return ___C2Pnb368w1_39; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_C2Pnb368w1_39() { return &___C2Pnb368w1_39; } inline void set_C2Pnb368w1_39(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___C2Pnb368w1_39 = value; Il2CppCodeGenWriteBarrier((void**)(&___C2Pnb368w1_39), (void*)value); } inline static int32_t get_offset_of_C2Tnb431r1_40() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___C2Tnb431r1_40)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_C2Tnb431r1_40() const { return ___C2Tnb431r1_40; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_C2Tnb431r1_40() { return &___C2Tnb431r1_40; } inline void set_C2Tnb431r1_40(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___C2Tnb431r1_40 = value; Il2CppCodeGenWriteBarrier((void**)(&___C2Tnb431r1_40), (void*)value); } inline static int32_t get_offset_of_PrimeCurve_41() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___PrimeCurve_41)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_PrimeCurve_41() const { return ___PrimeCurve_41; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_PrimeCurve_41() { return &___PrimeCurve_41; } inline void set_PrimeCurve_41(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___PrimeCurve_41 = value; Il2CppCodeGenWriteBarrier((void**)(&___PrimeCurve_41), (void*)value); } inline static int32_t get_offset_of_Prime192v1_42() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___Prime192v1_42)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Prime192v1_42() const { return ___Prime192v1_42; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Prime192v1_42() { return &___Prime192v1_42; } inline void set_Prime192v1_42(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Prime192v1_42 = value; Il2CppCodeGenWriteBarrier((void**)(&___Prime192v1_42), (void*)value); } inline static int32_t get_offset_of_Prime192v2_43() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___Prime192v2_43)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Prime192v2_43() const { return ___Prime192v2_43; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Prime192v2_43() { return &___Prime192v2_43; } inline void set_Prime192v2_43(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Prime192v2_43 = value; Il2CppCodeGenWriteBarrier((void**)(&___Prime192v2_43), (void*)value); } inline static int32_t get_offset_of_Prime192v3_44() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___Prime192v3_44)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Prime192v3_44() const { return ___Prime192v3_44; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Prime192v3_44() { return &___Prime192v3_44; } inline void set_Prime192v3_44(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Prime192v3_44 = value; Il2CppCodeGenWriteBarrier((void**)(&___Prime192v3_44), (void*)value); } inline static int32_t get_offset_of_Prime239v1_45() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___Prime239v1_45)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Prime239v1_45() const { return ___Prime239v1_45; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Prime239v1_45() { return &___Prime239v1_45; } inline void set_Prime239v1_45(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Prime239v1_45 = value; Il2CppCodeGenWriteBarrier((void**)(&___Prime239v1_45), (void*)value); } inline static int32_t get_offset_of_Prime239v2_46() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___Prime239v2_46)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Prime239v2_46() const { return ___Prime239v2_46; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Prime239v2_46() { return &___Prime239v2_46; } inline void set_Prime239v2_46(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Prime239v2_46 = value; Il2CppCodeGenWriteBarrier((void**)(&___Prime239v2_46), (void*)value); } inline static int32_t get_offset_of_Prime239v3_47() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___Prime239v3_47)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Prime239v3_47() const { return ___Prime239v3_47; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Prime239v3_47() { return &___Prime239v3_47; } inline void set_Prime239v3_47(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Prime239v3_47 = value; Il2CppCodeGenWriteBarrier((void**)(&___Prime239v3_47), (void*)value); } inline static int32_t get_offset_of_Prime256v1_48() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___Prime256v1_48)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Prime256v1_48() const { return ___Prime256v1_48; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Prime256v1_48() { return &___Prime256v1_48; } inline void set_Prime256v1_48(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Prime256v1_48 = value; Il2CppCodeGenWriteBarrier((void**)(&___Prime256v1_48), (void*)value); } inline static int32_t get_offset_of_IdDsa_49() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___IdDsa_49)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdDsa_49() const { return ___IdDsa_49; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdDsa_49() { return &___IdDsa_49; } inline void set_IdDsa_49(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdDsa_49 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdDsa_49), (void*)value); } inline static int32_t get_offset_of_IdDsaWithSha1_50() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___IdDsaWithSha1_50)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdDsaWithSha1_50() const { return ___IdDsaWithSha1_50; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdDsaWithSha1_50() { return &___IdDsaWithSha1_50; } inline void set_IdDsaWithSha1_50(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdDsaWithSha1_50 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdDsaWithSha1_50), (void*)value); } inline static int32_t get_offset_of_X9x63Scheme_51() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___X9x63Scheme_51)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_X9x63Scheme_51() const { return ___X9x63Scheme_51; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_X9x63Scheme_51() { return &___X9x63Scheme_51; } inline void set_X9x63Scheme_51(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___X9x63Scheme_51 = value; Il2CppCodeGenWriteBarrier((void**)(&___X9x63Scheme_51), (void*)value); } inline static int32_t get_offset_of_DHSinglePassStdDHSha1KdfScheme_52() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___DHSinglePassStdDHSha1KdfScheme_52)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DHSinglePassStdDHSha1KdfScheme_52() const { return ___DHSinglePassStdDHSha1KdfScheme_52; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DHSinglePassStdDHSha1KdfScheme_52() { return &___DHSinglePassStdDHSha1KdfScheme_52; } inline void set_DHSinglePassStdDHSha1KdfScheme_52(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DHSinglePassStdDHSha1KdfScheme_52 = value; Il2CppCodeGenWriteBarrier((void**)(&___DHSinglePassStdDHSha1KdfScheme_52), (void*)value); } inline static int32_t get_offset_of_DHSinglePassCofactorDHSha1KdfScheme_53() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___DHSinglePassCofactorDHSha1KdfScheme_53)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DHSinglePassCofactorDHSha1KdfScheme_53() const { return ___DHSinglePassCofactorDHSha1KdfScheme_53; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DHSinglePassCofactorDHSha1KdfScheme_53() { return &___DHSinglePassCofactorDHSha1KdfScheme_53; } inline void set_DHSinglePassCofactorDHSha1KdfScheme_53(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DHSinglePassCofactorDHSha1KdfScheme_53 = value; Il2CppCodeGenWriteBarrier((void**)(&___DHSinglePassCofactorDHSha1KdfScheme_53), (void*)value); } inline static int32_t get_offset_of_MqvSinglePassSha1KdfScheme_54() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___MqvSinglePassSha1KdfScheme_54)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_MqvSinglePassSha1KdfScheme_54() const { return ___MqvSinglePassSha1KdfScheme_54; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_MqvSinglePassSha1KdfScheme_54() { return &___MqvSinglePassSha1KdfScheme_54; } inline void set_MqvSinglePassSha1KdfScheme_54(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___MqvSinglePassSha1KdfScheme_54 = value; Il2CppCodeGenWriteBarrier((void**)(&___MqvSinglePassSha1KdfScheme_54), (void*)value); } inline static int32_t get_offset_of_ansi_x9_42_55() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___ansi_x9_42_55)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_ansi_x9_42_55() const { return ___ansi_x9_42_55; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_ansi_x9_42_55() { return &___ansi_x9_42_55; } inline void set_ansi_x9_42_55(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___ansi_x9_42_55 = value; Il2CppCodeGenWriteBarrier((void**)(&___ansi_x9_42_55), (void*)value); } inline static int32_t get_offset_of_DHPublicNumber_56() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___DHPublicNumber_56)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DHPublicNumber_56() const { return ___DHPublicNumber_56; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DHPublicNumber_56() { return &___DHPublicNumber_56; } inline void set_DHPublicNumber_56(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DHPublicNumber_56 = value; Il2CppCodeGenWriteBarrier((void**)(&___DHPublicNumber_56), (void*)value); } inline static int32_t get_offset_of_X9x42Schemes_57() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___X9x42Schemes_57)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_X9x42Schemes_57() const { return ___X9x42Schemes_57; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_X9x42Schemes_57() { return &___X9x42Schemes_57; } inline void set_X9x42Schemes_57(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___X9x42Schemes_57 = value; Il2CppCodeGenWriteBarrier((void**)(&___X9x42Schemes_57), (void*)value); } inline static int32_t get_offset_of_DHStatic_58() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___DHStatic_58)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DHStatic_58() const { return ___DHStatic_58; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DHStatic_58() { return &___DHStatic_58; } inline void set_DHStatic_58(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DHStatic_58 = value; Il2CppCodeGenWriteBarrier((void**)(&___DHStatic_58), (void*)value); } inline static int32_t get_offset_of_DHEphem_59() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___DHEphem_59)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DHEphem_59() const { return ___DHEphem_59; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DHEphem_59() { return &___DHEphem_59; } inline void set_DHEphem_59(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DHEphem_59 = value; Il2CppCodeGenWriteBarrier((void**)(&___DHEphem_59), (void*)value); } inline static int32_t get_offset_of_DHOneFlow_60() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___DHOneFlow_60)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DHOneFlow_60() const { return ___DHOneFlow_60; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DHOneFlow_60() { return &___DHOneFlow_60; } inline void set_DHOneFlow_60(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DHOneFlow_60 = value; Il2CppCodeGenWriteBarrier((void**)(&___DHOneFlow_60), (void*)value); } inline static int32_t get_offset_of_DHHybrid1_61() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___DHHybrid1_61)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DHHybrid1_61() const { return ___DHHybrid1_61; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DHHybrid1_61() { return &___DHHybrid1_61; } inline void set_DHHybrid1_61(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DHHybrid1_61 = value; Il2CppCodeGenWriteBarrier((void**)(&___DHHybrid1_61), (void*)value); } inline static int32_t get_offset_of_DHHybrid2_62() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___DHHybrid2_62)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DHHybrid2_62() const { return ___DHHybrid2_62; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DHHybrid2_62() { return &___DHHybrid2_62; } inline void set_DHHybrid2_62(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DHHybrid2_62 = value; Il2CppCodeGenWriteBarrier((void**)(&___DHHybrid2_62), (void*)value); } inline static int32_t get_offset_of_DHHybridOneFlow_63() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___DHHybridOneFlow_63)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DHHybridOneFlow_63() const { return ___DHHybridOneFlow_63; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DHHybridOneFlow_63() { return &___DHHybridOneFlow_63; } inline void set_DHHybridOneFlow_63(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DHHybridOneFlow_63 = value; Il2CppCodeGenWriteBarrier((void**)(&___DHHybridOneFlow_63), (void*)value); } inline static int32_t get_offset_of_Mqv2_64() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___Mqv2_64)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Mqv2_64() const { return ___Mqv2_64; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Mqv2_64() { return &___Mqv2_64; } inline void set_Mqv2_64(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Mqv2_64 = value; Il2CppCodeGenWriteBarrier((void**)(&___Mqv2_64), (void*)value); } inline static int32_t get_offset_of_Mqv1_65() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___Mqv1_65)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Mqv1_65() const { return ___Mqv1_65; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Mqv1_65() { return &___Mqv1_65; } inline void set_Mqv1_65(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Mqv1_65 = value; Il2CppCodeGenWriteBarrier((void**)(&___Mqv1_65), (void*)value); } }; // UnityStandardAssets.SceneUtils.ParticleSceneControls/DemoParticleSystemList struct DemoParticleSystemList_t3885BBD1CA5C4C983B20441E24226833802CD01E : public RuntimeObject { public: // UnityStandardAssets.SceneUtils.ParticleSceneControls/DemoParticleSystem[] UnityStandardAssets.SceneUtils.ParticleSceneControls/DemoParticleSystemList::items DemoParticleSystemU5BU5D_tECC3FBA90A93A35A05B79DFD1CA338C08FEDD8B1* ___items_0; public: inline static int32_t get_offset_of_items_0() { return static_cast(offsetof(DemoParticleSystemList_t3885BBD1CA5C4C983B20441E24226833802CD01E, ___items_0)); } inline DemoParticleSystemU5BU5D_tECC3FBA90A93A35A05B79DFD1CA338C08FEDD8B1* get_items_0() const { return ___items_0; } inline DemoParticleSystemU5BU5D_tECC3FBA90A93A35A05B79DFD1CA338C08FEDD8B1** get_address_of_items_0() { return &___items_0; } inline void set_items_0(DemoParticleSystemU5BU5D_tECC3FBA90A93A35A05B79DFD1CA338C08FEDD8B1* value) { ___items_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___items_0), (void*)value); } }; // UnityStandardAssets.Utility.ParticleSystemDestroyer/d__4 struct U3CStartU3Ed__4_tA78F17B2ACCCF6A6521A65728EC2957F6A742934 : public RuntimeObject { public: // System.Int32 UnityStandardAssets.Utility.ParticleSystemDestroyer/d__4::<>1__state int32_t ___U3CU3E1__state_0; // System.Object UnityStandardAssets.Utility.ParticleSystemDestroyer/d__4::<>2__current RuntimeObject * ___U3CU3E2__current_1; // UnityStandardAssets.Utility.ParticleSystemDestroyer UnityStandardAssets.Utility.ParticleSystemDestroyer/d__4::<>4__this ParticleSystemDestroyer_tC58A4B7AC857DA72A8B30F56BAD2C04BF9A1221D * ___U3CU3E4__this_2; // UnityEngine.ParticleSystem[] UnityStandardAssets.Utility.ParticleSystemDestroyer/d__4::5__2 ParticleSystemU5BU5D_t9786AE8909F75284FDCB6BAD155E24AAFDB88CC7* ___U3CsystemsU3E5__2_3; // System.Single UnityStandardAssets.Utility.ParticleSystemDestroyer/d__4::5__3 float ___U3CstopTimeU3E5__3_4; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast(offsetof(U3CStartU3Ed__4_tA78F17B2ACCCF6A6521A65728EC2957F6A742934, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast(offsetof(U3CStartU3Ed__4_tA78F17B2ACCCF6A6521A65728EC2957F6A742934, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast(offsetof(U3CStartU3Ed__4_tA78F17B2ACCCF6A6521A65728EC2957F6A742934, ___U3CU3E4__this_2)); } inline ParticleSystemDestroyer_tC58A4B7AC857DA72A8B30F56BAD2C04BF9A1221D * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; } inline ParticleSystemDestroyer_tC58A4B7AC857DA72A8B30F56BAD2C04BF9A1221D ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; } inline void set_U3CU3E4__this_2(ParticleSystemDestroyer_tC58A4B7AC857DA72A8B30F56BAD2C04BF9A1221D * value) { ___U3CU3E4__this_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value); } inline static int32_t get_offset_of_U3CsystemsU3E5__2_3() { return static_cast(offsetof(U3CStartU3Ed__4_tA78F17B2ACCCF6A6521A65728EC2957F6A742934, ___U3CsystemsU3E5__2_3)); } inline ParticleSystemU5BU5D_t9786AE8909F75284FDCB6BAD155E24AAFDB88CC7* get_U3CsystemsU3E5__2_3() const { return ___U3CsystemsU3E5__2_3; } inline ParticleSystemU5BU5D_t9786AE8909F75284FDCB6BAD155E24AAFDB88CC7** get_address_of_U3CsystemsU3E5__2_3() { return &___U3CsystemsU3E5__2_3; } inline void set_U3CsystemsU3E5__2_3(ParticleSystemU5BU5D_t9786AE8909F75284FDCB6BAD155E24AAFDB88CC7* value) { ___U3CsystemsU3E5__2_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CsystemsU3E5__2_3), (void*)value); } inline static int32_t get_offset_of_U3CstopTimeU3E5__3_4() { return static_cast(offsetof(U3CStartU3Ed__4_tA78F17B2ACCCF6A6521A65728EC2957F6A742934, ___U3CstopTimeU3E5__3_4)); } inline float get_U3CstopTimeU3E5__3_4() const { return ___U3CstopTimeU3E5__3_4; } inline float* get_address_of_U3CstopTimeU3E5__3_4() { return &___U3CstopTimeU3E5__3_4; } inline void set_U3CstopTimeU3E5__3_4(float value) { ___U3CstopTimeU3E5__3_4 = value; } }; // PhoneValidateController/d__0 struct U3CSendPhoneValidateCodeU3Ed__0_t7C1E4C5AF66CCCAD9A58992933A5C16AD4519C8D : public RuntimeObject { public: // System.Int32 PhoneValidateController/d__0::<>1__state int32_t ___U3CU3E1__state_0; // System.Object PhoneValidateController/d__0::<>2__current RuntimeObject * ___U3CU3E2__current_1; // System.String PhoneValidateController/d__0::phone String_t* ___phone_2; // System.Action`1 PhoneValidateController/d__0::callback Action_1_t41459F578D5FCF151500CBC8CF9276BDC6C984FE * ___callback_3; // UnityEngine.Networking.UnityWebRequest PhoneValidateController/d__0::5__2 UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * ___U3CrequestU3E5__2_4; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast(offsetof(U3CSendPhoneValidateCodeU3Ed__0_t7C1E4C5AF66CCCAD9A58992933A5C16AD4519C8D, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast(offsetof(U3CSendPhoneValidateCodeU3Ed__0_t7C1E4C5AF66CCCAD9A58992933A5C16AD4519C8D, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_phone_2() { return static_cast(offsetof(U3CSendPhoneValidateCodeU3Ed__0_t7C1E4C5AF66CCCAD9A58992933A5C16AD4519C8D, ___phone_2)); } inline String_t* get_phone_2() const { return ___phone_2; } inline String_t** get_address_of_phone_2() { return &___phone_2; } inline void set_phone_2(String_t* value) { ___phone_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___phone_2), (void*)value); } inline static int32_t get_offset_of_callback_3() { return static_cast(offsetof(U3CSendPhoneValidateCodeU3Ed__0_t7C1E4C5AF66CCCAD9A58992933A5C16AD4519C8D, ___callback_3)); } inline Action_1_t41459F578D5FCF151500CBC8CF9276BDC6C984FE * get_callback_3() const { return ___callback_3; } inline Action_1_t41459F578D5FCF151500CBC8CF9276BDC6C984FE ** get_address_of_callback_3() { return &___callback_3; } inline void set_callback_3(Action_1_t41459F578D5FCF151500CBC8CF9276BDC6C984FE * value) { ___callback_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___callback_3), (void*)value); } inline static int32_t get_offset_of_U3CrequestU3E5__2_4() { return static_cast(offsetof(U3CSendPhoneValidateCodeU3Ed__0_t7C1E4C5AF66CCCAD9A58992933A5C16AD4519C8D, ___U3CrequestU3E5__2_4)); } inline UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * get_U3CrequestU3E5__2_4() const { return ___U3CrequestU3E5__2_4; } inline UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E ** get_address_of_U3CrequestU3E5__2_4() { return &___U3CrequestU3E5__2_4; } inline void set_U3CrequestU3E5__2_4(UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * value) { ___U3CrequestU3E5__2_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CrequestU3E5__2_4), (void*)value); } }; // PhoneValidateController/d__1 struct U3CValidatePhoneU3Ed__1_tBDF5E824FED560BB85676093E3AD634B57756DEE : public RuntimeObject { public: // System.Int32 PhoneValidateController/d__1::<>1__state int32_t ___U3CU3E1__state_0; // System.Object PhoneValidateController/d__1::<>2__current RuntimeObject * ___U3CU3E2__current_1; // System.String PhoneValidateController/d__1::phone String_t* ___phone_2; // System.String PhoneValidateController/d__1::code String_t* ___code_3; // System.Action`1 PhoneValidateController/d__1::callback Action_1_t41459F578D5FCF151500CBC8CF9276BDC6C984FE * ___callback_4; // UnityEngine.Networking.UnityWebRequest PhoneValidateController/d__1::5__2 UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * ___U3CrequestU3E5__2_5; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast(offsetof(U3CValidatePhoneU3Ed__1_tBDF5E824FED560BB85676093E3AD634B57756DEE, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast(offsetof(U3CValidatePhoneU3Ed__1_tBDF5E824FED560BB85676093E3AD634B57756DEE, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_phone_2() { return static_cast(offsetof(U3CValidatePhoneU3Ed__1_tBDF5E824FED560BB85676093E3AD634B57756DEE, ___phone_2)); } inline String_t* get_phone_2() const { return ___phone_2; } inline String_t** get_address_of_phone_2() { return &___phone_2; } inline void set_phone_2(String_t* value) { ___phone_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___phone_2), (void*)value); } inline static int32_t get_offset_of_code_3() { return static_cast(offsetof(U3CValidatePhoneU3Ed__1_tBDF5E824FED560BB85676093E3AD634B57756DEE, ___code_3)); } inline String_t* get_code_3() const { return ___code_3; } inline String_t** get_address_of_code_3() { return &___code_3; } inline void set_code_3(String_t* value) { ___code_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___code_3), (void*)value); } inline static int32_t get_offset_of_callback_4() { return static_cast(offsetof(U3CValidatePhoneU3Ed__1_tBDF5E824FED560BB85676093E3AD634B57756DEE, ___callback_4)); } inline Action_1_t41459F578D5FCF151500CBC8CF9276BDC6C984FE * get_callback_4() const { return ___callback_4; } inline Action_1_t41459F578D5FCF151500CBC8CF9276BDC6C984FE ** get_address_of_callback_4() { return &___callback_4; } inline void set_callback_4(Action_1_t41459F578D5FCF151500CBC8CF9276BDC6C984FE * value) { ___callback_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___callback_4), (void*)value); } inline static int32_t get_offset_of_U3CrequestU3E5__2_5() { return static_cast(offsetof(U3CValidatePhoneU3Ed__1_tBDF5E824FED560BB85676093E3AD634B57756DEE, ___U3CrequestU3E5__2_5)); } inline UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * get_U3CrequestU3E5__2_5() const { return ___U3CrequestU3E5__2_5; } inline UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E ** get_address_of_U3CrequestU3E5__2_5() { return &___U3CrequestU3E5__2_5; } inline void set_U3CrequestU3E5__2_5(UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * value) { ___U3CrequestU3E5__2_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CrequestU3E5__2_5), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs.Pkcs12Store/CertId struct CertId_t7E95DE6D107D879D5D6408D4CE8AF103660ED6D9 : public RuntimeObject { public: // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs.Pkcs12Store/CertId::id ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___id_0; public: inline static int32_t get_offset_of_id_0() { return static_cast(offsetof(CertId_t7E95DE6D107D879D5D6408D4CE8AF103660ED6D9, ___id_0)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_id_0() const { return ___id_0; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_id_0() { return &___id_0; } inline void set_id_0(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___id_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___id_0), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs.Pkcs12Store/IgnoresCaseHashtable struct IgnoresCaseHashtable_t1FE3ECBA3A977156B90D9257F58CF048D28B2CEE : public RuntimeObject { public: // System.Collections.IDictionary BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs.Pkcs12Store/IgnoresCaseHashtable::orig RuntimeObject* ___orig_0; // System.Collections.IDictionary BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs.Pkcs12Store/IgnoresCaseHashtable::keys RuntimeObject* ___keys_1; public: inline static int32_t get_offset_of_orig_0() { return static_cast(offsetof(IgnoresCaseHashtable_t1FE3ECBA3A977156B90D9257F58CF048D28B2CEE, ___orig_0)); } inline RuntimeObject* get_orig_0() const { return ___orig_0; } inline RuntimeObject** get_address_of_orig_0() { return &___orig_0; } inline void set_orig_0(RuntimeObject* value) { ___orig_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___orig_0), (void*)value); } inline static int32_t get_offset_of_keys_1() { return static_cast(offsetof(IgnoresCaseHashtable_t1FE3ECBA3A977156B90D9257F58CF048D28B2CEE, ___keys_1)); } inline RuntimeObject* get_keys_1() const { return ___keys_1; } inline RuntimeObject** get_address_of_keys_1() { return &___keys_1; } inline void set_keys_1(RuntimeObject* value) { ___keys_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_1), (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); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Object struct Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs.AsymmetricKeyEntry struct AsymmetricKeyEntry_t3CBF289F816398AE0AB9B8E7E8E31AECE8BD69AF : public Pkcs12Entry_tEFAF0FAB8C5FCE175C5A80614CBAA6C70D7D39D6 { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs.AsymmetricKeyEntry::key AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * ___key_1; public: inline static int32_t get_offset_of_key_1() { return static_cast(offsetof(AsymmetricKeyEntry_t3CBF289F816398AE0AB9B8E7E8E31AECE8BD69AF, ___key_1)); } inline AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * get_key_1() const { return ___key_1; } inline AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A ** get_address_of_key_1() { return &___key_1; } inline void set_key_1(AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * value) { ___key_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_1), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.AuthenticatedSafe struct AuthenticatedSafe_t05262AA3FF2545528CE2F83A5DFAC25ECB03715E : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.ContentInfo[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.AuthenticatedSafe::info ContentInfoU5BU5D_tB242C6E38BA3C72A5125CA177D6042A541D63873* ___info_2; public: inline static int32_t get_offset_of_info_2() { return static_cast(offsetof(AuthenticatedSafe_t05262AA3FF2545528CE2F83A5DFAC25ECB03715E, ___info_2)); } inline ContentInfoU5BU5D_tB242C6E38BA3C72A5125CA177D6042A541D63873* get_info_2() const { return ___info_2; } inline ContentInfoU5BU5D_tB242C6E38BA3C72A5125CA177D6042A541D63873** get_address_of_info_2() { return &___info_2; } inline void set_info_2(ContentInfoU5BU5D_tB242C6E38BA3C72A5125CA177D6042A541D63873* value) { ___info_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___info_2), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AuthorityKeyIdentifier struct AuthorityKeyIdentifier_t7B2B4140751EC0CA5D50488C12732095FDDAFC92 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AuthorityKeyIdentifier::keyidentifier Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * ___keyidentifier_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.GeneralNames BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AuthorityKeyIdentifier::certissuer GeneralNames_tFF74584199F5CAD145B6DA73D7552D4B4FD101E5 * ___certissuer_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AuthorityKeyIdentifier::certserno DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * ___certserno_4; public: inline static int32_t get_offset_of_keyidentifier_2() { return static_cast(offsetof(AuthorityKeyIdentifier_t7B2B4140751EC0CA5D50488C12732095FDDAFC92, ___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_certissuer_3() { return static_cast(offsetof(AuthorityKeyIdentifier_t7B2B4140751EC0CA5D50488C12732095FDDAFC92, ___certissuer_3)); } inline GeneralNames_tFF74584199F5CAD145B6DA73D7552D4B4FD101E5 * get_certissuer_3() const { return ___certissuer_3; } inline GeneralNames_tFF74584199F5CAD145B6DA73D7552D4B4FD101E5 ** get_address_of_certissuer_3() { return &___certissuer_3; } inline void set_certissuer_3(GeneralNames_tFF74584199F5CAD145B6DA73D7552D4B4FD101E5 * value) { ___certissuer_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___certissuer_3), (void*)value); } inline static int32_t get_offset_of_certserno_4() { return static_cast(offsetof(AuthorityKeyIdentifier_t7B2B4140751EC0CA5D50488C12732095FDDAFC92, ___certserno_4)); } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * get_certserno_4() const { return ___certserno_4; } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 ** get_address_of_certserno_4() { return &___certserno_4; } inline void set_certserno_4(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * value) { ___certserno_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___certserno_4), (void*)value); } }; // UnityEngine.EventSystems.BaseEventData struct BaseEventData_t722C48843CF21B50E06CC0E2E679415E38A7444E : public AbstractEventData_tA0B5065DE3430C0031ADE061668E1C7073D718DF { public: // UnityEngine.EventSystems.EventSystem UnityEngine.EventSystems.BaseEventData::m_EventSystem EventSystem_t5DC458FCD0355A74CDCCE79287B38B9C4278E39C * ___m_EventSystem_1; public: inline static int32_t get_offset_of_m_EventSystem_1() { return static_cast(offsetof(BaseEventData_t722C48843CF21B50E06CC0E2E679415E38A7444E, ___m_EventSystem_1)); } inline EventSystem_t5DC458FCD0355A74CDCCE79287B38B9C4278E39C * get_m_EventSystem_1() const { return ___m_EventSystem_1; } inline EventSystem_t5DC458FCD0355A74CDCCE79287B38B9C4278E39C ** get_address_of_m_EventSystem_1() { return &___m_EventSystem_1; } inline void set_m_EventSystem_1(EventSystem_t5DC458FCD0355A74CDCCE79287B38B9C4278E39C * value) { ___m_EventSystem_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_EventSystem_1), (void*)value); } }; // System.Boolean struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37 { public: // System.Boolean System.Boolean::m_value bool ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(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.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.CertBag struct CertBag_tC3C2856E87424F3FF2F47F056DDE728F1F6C48AE : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.CertBag::certID DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___certID_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Object BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.CertBag::certValue Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * ___certValue_3; public: inline static int32_t get_offset_of_certID_2() { return static_cast(offsetof(CertBag_tC3C2856E87424F3FF2F47F056DDE728F1F6C48AE, ___certID_2)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_certID_2() const { return ___certID_2; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_certID_2() { return &___certID_2; } inline void set_certID_2(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___certID_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___certID_2), (void*)value); } inline static int32_t get_offset_of_certValue_3() { return static_cast(offsetof(CertBag_tC3C2856E87424F3FF2F47F056DDE728F1F6C48AE, ___certValue_3)); } inline Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * get_certValue_3() const { return ___certValue_3; } inline Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC ** get_address_of_certValue_3() { return &___certValue_3; } inline void set_certValue_3(Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * value) { ___certValue_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___certValue_3), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.CertificationRequest struct CertificationRequest_tF7C5762BE0EFC9D9F716ECC527DE8C9CF152DFCB : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.CertificationRequestInfo BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.CertificationRequest::reqInfo CertificationRequestInfo_t3041B37C5C290BADC8C0362E9283EA64455F0A2C * ___reqInfo_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.CertificationRequest::sigAlgId AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___sigAlgId_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.CertificationRequest::sigBits DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * ___sigBits_4; public: inline static int32_t get_offset_of_reqInfo_2() { return static_cast(offsetof(CertificationRequest_tF7C5762BE0EFC9D9F716ECC527DE8C9CF152DFCB, ___reqInfo_2)); } inline CertificationRequestInfo_t3041B37C5C290BADC8C0362E9283EA64455F0A2C * get_reqInfo_2() const { return ___reqInfo_2; } inline CertificationRequestInfo_t3041B37C5C290BADC8C0362E9283EA64455F0A2C ** get_address_of_reqInfo_2() { return &___reqInfo_2; } inline void set_reqInfo_2(CertificationRequestInfo_t3041B37C5C290BADC8C0362E9283EA64455F0A2C * value) { ___reqInfo_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___reqInfo_2), (void*)value); } inline static int32_t get_offset_of_sigAlgId_3() { return static_cast(offsetof(CertificationRequest_tF7C5762BE0EFC9D9F716ECC527DE8C9CF152DFCB, ___sigAlgId_3)); } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * get_sigAlgId_3() const { return ___sigAlgId_3; } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 ** get_address_of_sigAlgId_3() { return &___sigAlgId_3; } inline void set_sigAlgId_3(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * value) { ___sigAlgId_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___sigAlgId_3), (void*)value); } inline static int32_t get_offset_of_sigBits_4() { return static_cast(offsetof(CertificationRequest_tF7C5762BE0EFC9D9F716ECC527DE8C9CF152DFCB, ___sigBits_4)); } inline DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * get_sigBits_4() const { return ___sigBits_4; } inline DerBitString_t305465793A47445626D3541AB8CEDE347D874524 ** get_address_of_sigBits_4() { return &___sigBits_4; } inline void set_sigBits_4(DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * value) { ___sigBits_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___sigBits_4), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.CertificationRequestInfo struct CertificationRequestInfo_t3041B37C5C290BADC8C0362E9283EA64455F0A2C : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.CertificationRequestInfo::version DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * ___version_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.CertificationRequestInfo::subject X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * ___subject_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.CertificationRequestInfo::subjectPKInfo SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB * ___subjectPKInfo_4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Set BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.CertificationRequestInfo::attributes Asn1Set_t9EBB628AB5FBF1FCC866DC7AEA45C59A72698F49 * ___attributes_5; public: inline static int32_t get_offset_of_version_2() { return static_cast(offsetof(CertificationRequestInfo_t3041B37C5C290BADC8C0362E9283EA64455F0A2C, ___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_subject_3() { return static_cast(offsetof(CertificationRequestInfo_t3041B37C5C290BADC8C0362E9283EA64455F0A2C, ___subject_3)); } inline X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * get_subject_3() const { return ___subject_3; } inline X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 ** get_address_of_subject_3() { return &___subject_3; } inline void set_subject_3(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * value) { ___subject_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___subject_3), (void*)value); } inline static int32_t get_offset_of_subjectPKInfo_4() { return static_cast(offsetof(CertificationRequestInfo_t3041B37C5C290BADC8C0362E9283EA64455F0A2C, ___subjectPKInfo_4)); } inline SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB * get_subjectPKInfo_4() const { return ___subjectPKInfo_4; } inline SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB ** get_address_of_subjectPKInfo_4() { return &___subjectPKInfo_4; } inline void set_subjectPKInfo_4(SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB * value) { ___subjectPKInfo_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___subjectPKInfo_4), (void*)value); } inline static int32_t get_offset_of_attributes_5() { return static_cast(offsetof(CertificationRequestInfo_t3041B37C5C290BADC8C0362E9283EA64455F0A2C, ___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); } }; // 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); } }; // UnityEngine.Color struct Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 { public: // System.Single UnityEngine.Color::r float ___r_0; // System.Single UnityEngine.Color::g float ___g_1; // System.Single UnityEngine.Color::b float ___b_2; // System.Single UnityEngine.Color::a float ___a_3; public: inline static int32_t get_offset_of_r_0() { return static_cast(offsetof(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659, ___r_0)); } inline float get_r_0() const { return ___r_0; } inline float* get_address_of_r_0() { return &___r_0; } inline void set_r_0(float value) { ___r_0 = value; } inline static int32_t get_offset_of_g_1() { return static_cast(offsetof(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659, ___g_1)); } inline float get_g_1() const { return ___g_1; } inline float* get_address_of_g_1() { return &___g_1; } inline void set_g_1(float value) { ___g_1 = value; } inline static int32_t get_offset_of_b_2() { return static_cast(offsetof(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659, ___b_2)); } inline float get_b_2() const { return ___b_2; } inline float* get_address_of_b_2() { return &___b_2; } inline void set_b_2(float value) { ___b_2 = value; } inline static int32_t get_offset_of_a_3() { return static_cast(offsetof(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659, ___a_3)); } inline float get_a_3() const { return ___a_3; } inline float* get_address_of_a_3() { return &___a_3; } inline void set_a_3(float value) { ___a_3 = value; } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.ContentInfo struct ContentInfo_tDB28674AE75D44B150F20D9A0D92CDB45F03675B : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.ContentInfo::contentType DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___contentType_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.ContentInfo::content Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * ___content_3; public: inline static int32_t get_offset_of_contentType_2() { return static_cast(offsetof(ContentInfo_tDB28674AE75D44B150F20D9A0D92CDB45F03675B, ___contentType_2)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_contentType_2() const { return ___contentType_2; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_contentType_2() { return &___contentType_2; } inline void set_contentType_2(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___contentType_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___contentType_2), (void*)value); } inline static int32_t get_offset_of_content_3() { return static_cast(offsetof(ContentInfo_tDB28674AE75D44B150F20D9A0D92CDB45F03675B, ___content_3)); } inline Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * get_content_3() const { return ___content_3; } inline Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC ** get_address_of_content_3() { return &___content_3; } inline void set_content_3(Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * value) { ___content_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___content_3), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.ContentInfo struct ContentInfo_tAA34B324F30DA6F788492750D8D7DC53CAB168E0 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.ContentInfo::contentType DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___contentType_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.ContentInfo::content Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * ___content_3; public: inline static int32_t get_offset_of_contentType_2() { return static_cast(offsetof(ContentInfo_tAA34B324F30DA6F788492750D8D7DC53CAB168E0, ___contentType_2)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_contentType_2() const { return ___contentType_2; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_contentType_2() { return &___contentType_2; } inline void set_contentType_2(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___contentType_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___contentType_2), (void*)value); } inline static int32_t get_offset_of_content_3() { return static_cast(offsetof(ContentInfo_tAA34B324F30DA6F788492750D8D7DC53CAB168E0, ___content_3)); } inline Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * get_content_3() const { return ___content_3; } inline Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC ** get_address_of_content_3() { return &___content_3; } inline void set_content_3(Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * value) { ___content_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___content_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.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; }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.DigestInfo struct DigestInfo_t939FF0DD1AE65995C2A92E52B6C76176C87A80FE : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.DigestInfo::digest ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___digest_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.DigestInfo::algID AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___algID_3; public: inline static int32_t get_offset_of_digest_2() { return static_cast(offsetof(DigestInfo_t939FF0DD1AE65995C2A92E52B6C76176C87A80FE, ___digest_2)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_digest_2() const { return ___digest_2; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_digest_2() { return &___digest_2; } inline void set_digest_2(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___digest_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___digest_2), (void*)value); } inline static int32_t get_offset_of_algID_3() { return static_cast(offsetof(DigestInfo_t939FF0DD1AE65995C2A92E52B6C76176C87A80FE, ___algID_3)); } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * get_algID_3() const { return ___algID_3; } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 ** get_address_of_algID_3() { return &___algID_3; } inline void set_algID_3(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * value) { ___algID_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___algID_3), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X500.DirectoryString struct DirectoryString_tA030C0623BF9F46B387E4EA911636428CACB9F0F : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerStringBase BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X500.DirectoryString::str DerStringBase_t6A042D217F7D84704C0AFFD73317FB834F9A2FB5 * ___str_2; public: inline static int32_t get_offset_of_str_2() { return static_cast(offsetof(DirectoryString_tA030C0623BF9F46B387E4EA911636428CACB9F0F, ___str_2)); } inline DerStringBase_t6A042D217F7D84704C0AFFD73317FB834F9A2FB5 * get_str_2() const { return ___str_2; } inline DerStringBase_t6A042D217F7D84704C0AFFD73317FB834F9A2FB5 ** get_address_of_str_2() { return &___str_2; } inline void set_str_2(DerStringBase_t6A042D217F7D84704C0AFFD73317FB834F9A2FB5 * value) { ___str_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___str_2), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.DsaKeyParameters struct DsaKeyParameters_tE89A1BA6A75F13F2650AB850C554D72740E99A81 : public AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.DsaParameters BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.DsaKeyParameters::parameters DsaParameters_t47EC24036618CF52C5EF89B4929A5611E1F90245 * ___parameters_1; public: inline static int32_t get_offset_of_parameters_1() { return static_cast(offsetof(DsaKeyParameters_tE89A1BA6A75F13F2650AB850C554D72740E99A81, ___parameters_1)); } inline DsaParameters_t47EC24036618CF52C5EF89B4929A5611E1F90245 * get_parameters_1() const { return ___parameters_1; } inline DsaParameters_t47EC24036618CF52C5EF89B4929A5611E1F90245 ** get_address_of_parameters_1() { return &___parameters_1; } inline void set_parameters_1(DsaParameters_t47EC24036618CF52C5EF89B4929A5611E1F90245 * value) { ___parameters_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___parameters_1), (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); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Sec.ECPrivateKeyStructure struct ECPrivateKeyStructure_tE5B1C3407130141881B203E1431D28C8FBC0848E : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Sec.ECPrivateKeyStructure::seq Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * ___seq_2; public: inline static int32_t get_offset_of_seq_2() { return static_cast(offsetof(ECPrivateKeyStructure_tE5B1C3407130141881B203E1431D28C8FBC0848E, ___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); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.EncryptedData struct EncryptedData_t723978F9CCFCFBC5C581B8075958D1CB6AA28604 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.EncryptedData::data Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * ___data_2; public: inline static int32_t get_offset_of_data_2() { return static_cast(offsetof(EncryptedData_t723978F9CCFCFBC5C581B8075958D1CB6AA28604, ___data_2)); } inline Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * get_data_2() const { return ___data_2; } inline Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 ** get_address_of_data_2() { return &___data_2; } inline void set_data_2(Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * value) { ___data_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___data_2), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.EncryptedPrivateKeyInfo struct EncryptedPrivateKeyInfo_t71DA33AAC6A7D5DCFF48BE911C32F82B2FCF5F60 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.EncryptedPrivateKeyInfo::algId AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___algId_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.EncryptedPrivateKeyInfo::data Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * ___data_3; public: inline static int32_t get_offset_of_algId_2() { return static_cast(offsetof(EncryptedPrivateKeyInfo_t71DA33AAC6A7D5DCFF48BE911C32F82B2FCF5F60, ___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_data_3() { return static_cast(offsetof(EncryptedPrivateKeyInfo_t71DA33AAC6A7D5DCFF48BE911C32F82B2FCF5F60, ___data_3)); } inline Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * get_data_3() const { return ___data_3; } inline Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 ** get_address_of_data_3() { return &___data_3; } inline void set_data_3(Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * value) { ___data_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___data_3), (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 { }; // 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; } }; // UnityEngine.LayerMask struct LayerMask_t5FA647D8C300EA0621360CA4424717C3C73190A8 { public: // System.Int32 UnityEngine.LayerMask::m_Mask int32_t ___m_Mask_0; public: inline static int32_t get_offset_of_m_Mask_0() { return static_cast(offsetof(LayerMask_t5FA647D8C300EA0621360CA4424717C3C73190A8, ___m_Mask_0)); } inline int32_t get_m_Mask_0() const { return ___m_Mask_0; } inline int32_t* get_address_of_m_Mask_0() { return &___m_Mask_0; } inline void set_m_Mask_0(int32_t value) { ___m_Mask_0 = value; } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.MD5Digest struct MD5Digest_t928D0A068D9E4C50824CD21F75ED29809466123B : public GeneralDigest_t87A61506D31B11798E0404E71466E4D5B8B9B4B8 { public: // System.UInt32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.MD5Digest::H1 uint32_t ___H1_5; // System.UInt32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.MD5Digest::H2 uint32_t ___H2_6; // System.UInt32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.MD5Digest::H3 uint32_t ___H3_7; // System.UInt32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.MD5Digest::H4 uint32_t ___H4_8; // System.UInt32[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.MD5Digest::X UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* ___X_9; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.MD5Digest::xOff int32_t ___xOff_10; public: inline static int32_t get_offset_of_H1_5() { return static_cast(offsetof(MD5Digest_t928D0A068D9E4C50824CD21F75ED29809466123B, ___H1_5)); } inline uint32_t get_H1_5() const { return ___H1_5; } inline uint32_t* get_address_of_H1_5() { return &___H1_5; } inline void set_H1_5(uint32_t value) { ___H1_5 = value; } inline static int32_t get_offset_of_H2_6() { return static_cast(offsetof(MD5Digest_t928D0A068D9E4C50824CD21F75ED29809466123B, ___H2_6)); } inline uint32_t get_H2_6() const { return ___H2_6; } inline uint32_t* get_address_of_H2_6() { return &___H2_6; } inline void set_H2_6(uint32_t value) { ___H2_6 = value; } inline static int32_t get_offset_of_H3_7() { return static_cast(offsetof(MD5Digest_t928D0A068D9E4C50824CD21F75ED29809466123B, ___H3_7)); } inline uint32_t get_H3_7() const { return ___H3_7; } inline uint32_t* get_address_of_H3_7() { return &___H3_7; } inline void set_H3_7(uint32_t value) { ___H3_7 = value; } inline static int32_t get_offset_of_H4_8() { return static_cast(offsetof(MD5Digest_t928D0A068D9E4C50824CD21F75ED29809466123B, ___H4_8)); } inline uint32_t get_H4_8() const { return ___H4_8; } inline uint32_t* get_address_of_H4_8() { return &___H4_8; } inline void set_H4_8(uint32_t value) { ___H4_8 = value; } inline static int32_t get_offset_of_X_9() { return static_cast(offsetof(MD5Digest_t928D0A068D9E4C50824CD21F75ED29809466123B, ___X_9)); } inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* get_X_9() const { return ___X_9; } inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF** get_address_of_X_9() { return &___X_9; } inline void set_X_9(UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* value) { ___X_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___X_9), (void*)value); } inline static int32_t get_offset_of_xOff_10() { return static_cast(offsetof(MD5Digest_t928D0A068D9E4C50824CD21F75ED29809466123B, ___xOff_10)); } inline int32_t get_xOff_10() const { return ___xOff_10; } inline int32_t* get_address_of_xOff_10() { return &___xOff_10; } inline void set_xOff_10(int32_t value) { ___xOff_10 = value; } }; struct MD5Digest_t928D0A068D9E4C50824CD21F75ED29809466123B_StaticFields { public: // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.MD5Digest::S11 int32_t ___S11_11; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.MD5Digest::S12 int32_t ___S12_12; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.MD5Digest::S13 int32_t ___S13_13; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.MD5Digest::S14 int32_t ___S14_14; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.MD5Digest::S21 int32_t ___S21_15; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.MD5Digest::S22 int32_t ___S22_16; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.MD5Digest::S23 int32_t ___S23_17; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.MD5Digest::S24 int32_t ___S24_18; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.MD5Digest::S31 int32_t ___S31_19; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.MD5Digest::S32 int32_t ___S32_20; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.MD5Digest::S33 int32_t ___S33_21; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.MD5Digest::S34 int32_t ___S34_22; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.MD5Digest::S41 int32_t ___S41_23; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.MD5Digest::S42 int32_t ___S42_24; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.MD5Digest::S43 int32_t ___S43_25; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.MD5Digest::S44 int32_t ___S44_26; public: inline static int32_t get_offset_of_S11_11() { return static_cast(offsetof(MD5Digest_t928D0A068D9E4C50824CD21F75ED29809466123B_StaticFields, ___S11_11)); } inline int32_t get_S11_11() const { return ___S11_11; } inline int32_t* get_address_of_S11_11() { return &___S11_11; } inline void set_S11_11(int32_t value) { ___S11_11 = value; } inline static int32_t get_offset_of_S12_12() { return static_cast(offsetof(MD5Digest_t928D0A068D9E4C50824CD21F75ED29809466123B_StaticFields, ___S12_12)); } inline int32_t get_S12_12() const { return ___S12_12; } inline int32_t* get_address_of_S12_12() { return &___S12_12; } inline void set_S12_12(int32_t value) { ___S12_12 = value; } inline static int32_t get_offset_of_S13_13() { return static_cast(offsetof(MD5Digest_t928D0A068D9E4C50824CD21F75ED29809466123B_StaticFields, ___S13_13)); } inline int32_t get_S13_13() const { return ___S13_13; } inline int32_t* get_address_of_S13_13() { return &___S13_13; } inline void set_S13_13(int32_t value) { ___S13_13 = value; } inline static int32_t get_offset_of_S14_14() { return static_cast(offsetof(MD5Digest_t928D0A068D9E4C50824CD21F75ED29809466123B_StaticFields, ___S14_14)); } inline int32_t get_S14_14() const { return ___S14_14; } inline int32_t* get_address_of_S14_14() { return &___S14_14; } inline void set_S14_14(int32_t value) { ___S14_14 = value; } inline static int32_t get_offset_of_S21_15() { return static_cast(offsetof(MD5Digest_t928D0A068D9E4C50824CD21F75ED29809466123B_StaticFields, ___S21_15)); } inline int32_t get_S21_15() const { return ___S21_15; } inline int32_t* get_address_of_S21_15() { return &___S21_15; } inline void set_S21_15(int32_t value) { ___S21_15 = value; } inline static int32_t get_offset_of_S22_16() { return static_cast(offsetof(MD5Digest_t928D0A068D9E4C50824CD21F75ED29809466123B_StaticFields, ___S22_16)); } inline int32_t get_S22_16() const { return ___S22_16; } inline int32_t* get_address_of_S22_16() { return &___S22_16; } inline void set_S22_16(int32_t value) { ___S22_16 = value; } inline static int32_t get_offset_of_S23_17() { return static_cast(offsetof(MD5Digest_t928D0A068D9E4C50824CD21F75ED29809466123B_StaticFields, ___S23_17)); } inline int32_t get_S23_17() const { return ___S23_17; } inline int32_t* get_address_of_S23_17() { return &___S23_17; } inline void set_S23_17(int32_t value) { ___S23_17 = value; } inline static int32_t get_offset_of_S24_18() { return static_cast(offsetof(MD5Digest_t928D0A068D9E4C50824CD21F75ED29809466123B_StaticFields, ___S24_18)); } inline int32_t get_S24_18() const { return ___S24_18; } inline int32_t* get_address_of_S24_18() { return &___S24_18; } inline void set_S24_18(int32_t value) { ___S24_18 = value; } inline static int32_t get_offset_of_S31_19() { return static_cast(offsetof(MD5Digest_t928D0A068D9E4C50824CD21F75ED29809466123B_StaticFields, ___S31_19)); } inline int32_t get_S31_19() const { return ___S31_19; } inline int32_t* get_address_of_S31_19() { return &___S31_19; } inline void set_S31_19(int32_t value) { ___S31_19 = value; } inline static int32_t get_offset_of_S32_20() { return static_cast(offsetof(MD5Digest_t928D0A068D9E4C50824CD21F75ED29809466123B_StaticFields, ___S32_20)); } inline int32_t get_S32_20() const { return ___S32_20; } inline int32_t* get_address_of_S32_20() { return &___S32_20; } inline void set_S32_20(int32_t value) { ___S32_20 = value; } inline static int32_t get_offset_of_S33_21() { return static_cast(offsetof(MD5Digest_t928D0A068D9E4C50824CD21F75ED29809466123B_StaticFields, ___S33_21)); } inline int32_t get_S33_21() const { return ___S33_21; } inline int32_t* get_address_of_S33_21() { return &___S33_21; } inline void set_S33_21(int32_t value) { ___S33_21 = value; } inline static int32_t get_offset_of_S34_22() { return static_cast(offsetof(MD5Digest_t928D0A068D9E4C50824CD21F75ED29809466123B_StaticFields, ___S34_22)); } inline int32_t get_S34_22() const { return ___S34_22; } inline int32_t* get_address_of_S34_22() { return &___S34_22; } inline void set_S34_22(int32_t value) { ___S34_22 = value; } inline static int32_t get_offset_of_S41_23() { return static_cast(offsetof(MD5Digest_t928D0A068D9E4C50824CD21F75ED29809466123B_StaticFields, ___S41_23)); } inline int32_t get_S41_23() const { return ___S41_23; } inline int32_t* get_address_of_S41_23() { return &___S41_23; } inline void set_S41_23(int32_t value) { ___S41_23 = value; } inline static int32_t get_offset_of_S42_24() { return static_cast(offsetof(MD5Digest_t928D0A068D9E4C50824CD21F75ED29809466123B_StaticFields, ___S42_24)); } inline int32_t get_S42_24() const { return ___S42_24; } inline int32_t* get_address_of_S42_24() { return &___S42_24; } inline void set_S42_24(int32_t value) { ___S42_24 = value; } inline static int32_t get_offset_of_S43_25() { return static_cast(offsetof(MD5Digest_t928D0A068D9E4C50824CD21F75ED29809466123B_StaticFields, ___S43_25)); } inline int32_t get_S43_25() const { return ___S43_25; } inline int32_t* get_address_of_S43_25() { return &___S43_25; } inline void set_S43_25(int32_t value) { ___S43_25 = value; } inline static int32_t get_offset_of_S44_26() { return static_cast(offsetof(MD5Digest_t928D0A068D9E4C50824CD21F75ED29809466123B_StaticFields, ___S44_26)); } inline int32_t get_S44_26() const { return ___S44_26; } inline int32_t* get_address_of_S44_26() { return &___S44_26; } inline void set_S44_26(int32_t value) { ___S44_26 = value; } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.MacData struct MacData_tE23C59E80FD08E069EB579A0C3952D4E715C8C95 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.DigestInfo BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.MacData::digInfo DigestInfo_t939FF0DD1AE65995C2A92E52B6C76176C87A80FE * ___digInfo_2; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.MacData::salt ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___salt_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.MacData::iterationCount BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___iterationCount_4; public: inline static int32_t get_offset_of_digInfo_2() { return static_cast(offsetof(MacData_tE23C59E80FD08E069EB579A0C3952D4E715C8C95, ___digInfo_2)); } inline DigestInfo_t939FF0DD1AE65995C2A92E52B6C76176C87A80FE * get_digInfo_2() const { return ___digInfo_2; } inline DigestInfo_t939FF0DD1AE65995C2A92E52B6C76176C87A80FE ** get_address_of_digInfo_2() { return &___digInfo_2; } inline void set_digInfo_2(DigestInfo_t939FF0DD1AE65995C2A92E52B6C76176C87A80FE * value) { ___digInfo_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___digInfo_2), (void*)value); } inline static int32_t get_offset_of_salt_3() { return static_cast(offsetof(MacData_tE23C59E80FD08E069EB579A0C3952D4E715C8C95, ___salt_3)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_salt_3() const { return ___salt_3; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_salt_3() { return &___salt_3; } inline void set_salt_3(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___salt_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___salt_3), (void*)value); } inline static int32_t get_offset_of_iterationCount_4() { return static_cast(offsetof(MacData_tE23C59E80FD08E069EB579A0C3952D4E715C8C95, ___iterationCount_4)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_iterationCount_4() const { return ___iterationCount_4; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_iterationCount_4() { return &___iterationCount_4; } inline void set_iterationCount_4(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___iterationCount_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___iterationCount_4), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.SigI.NameOrPseudonym struct NameOrPseudonym_tF6044721E0BAB1EB8E314834B6467F3B24BCCCE3 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X500.DirectoryString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.SigI.NameOrPseudonym::pseudonym DirectoryString_tA030C0623BF9F46B387E4EA911636428CACB9F0F * ___pseudonym_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X500.DirectoryString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.SigI.NameOrPseudonym::surname DirectoryString_tA030C0623BF9F46B387E4EA911636428CACB9F0F * ___surname_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.SigI.NameOrPseudonym::givenName Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * ___givenName_4; public: inline static int32_t get_offset_of_pseudonym_2() { return static_cast(offsetof(NameOrPseudonym_tF6044721E0BAB1EB8E314834B6467F3B24BCCCE3, ___pseudonym_2)); } inline DirectoryString_tA030C0623BF9F46B387E4EA911636428CACB9F0F * get_pseudonym_2() const { return ___pseudonym_2; } inline DirectoryString_tA030C0623BF9F46B387E4EA911636428CACB9F0F ** get_address_of_pseudonym_2() { return &___pseudonym_2; } inline void set_pseudonym_2(DirectoryString_tA030C0623BF9F46B387E4EA911636428CACB9F0F * value) { ___pseudonym_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___pseudonym_2), (void*)value); } inline static int32_t get_offset_of_surname_3() { return static_cast(offsetof(NameOrPseudonym_tF6044721E0BAB1EB8E314834B6467F3B24BCCCE3, ___surname_3)); } inline DirectoryString_tA030C0623BF9F46B387E4EA911636428CACB9F0F * get_surname_3() const { return ___surname_3; } inline DirectoryString_tA030C0623BF9F46B387E4EA911636428CACB9F0F ** get_address_of_surname_3() { return &___surname_3; } inline void set_surname_3(DirectoryString_tA030C0623BF9F46B387E4EA911636428CACB9F0F * value) { ___surname_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___surname_3), (void*)value); } inline static int32_t get_offset_of_givenName_4() { return static_cast(offsetof(NameOrPseudonym_tF6044721E0BAB1EB8E314834B6467F3B24BCCCE3, ___givenName_4)); } inline Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * get_givenName_4() const { return ___givenName_4; } inline Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 ** get_address_of_givenName_4() { return &___givenName_4; } inline void set_givenName_4(Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * value) { ___givenName_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___givenName_4), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Generators.OpenSslPbeParametersGenerator struct OpenSslPbeParametersGenerator_tFF5C2D9DDE99EF1102EC81C40F9EAD9462B3FDF3 : public PbeParametersGenerator_tC2462C70A4D8F16F12866BCED5DA847140B3BBE0 { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IDigest BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Generators.OpenSslPbeParametersGenerator::digest RuntimeObject* ___digest_3; public: inline static int32_t get_offset_of_digest_3() { return static_cast(offsetof(OpenSslPbeParametersGenerator_tFF5C2D9DDE99EF1102EC81C40F9EAD9462B3FDF3, ___digest_3)); } inline RuntimeObject* get_digest_3() const { return ___digest_3; } inline RuntimeObject** get_address_of_digest_3() { return &___digest_3; } inline void set_digest_3(RuntimeObject* value) { ___digest_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___digest_3), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.PasswordRecipientInfo struct PasswordRecipientInfo_t022421B5CF631A5AFE34BECCF930C2EAC00B879D : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.PasswordRecipientInfo::version DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * ___version_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.PasswordRecipientInfo::keyDerivationAlgorithm AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___keyDerivationAlgorithm_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.PasswordRecipientInfo::keyEncryptionAlgorithm AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___keyEncryptionAlgorithm_4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.PasswordRecipientInfo::encryptedKey Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * ___encryptedKey_5; public: inline static int32_t get_offset_of_version_2() { return static_cast(offsetof(PasswordRecipientInfo_t022421B5CF631A5AFE34BECCF930C2EAC00B879D, ___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_keyDerivationAlgorithm_3() { return static_cast(offsetof(PasswordRecipientInfo_t022421B5CF631A5AFE34BECCF930C2EAC00B879D, ___keyDerivationAlgorithm_3)); } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * get_keyDerivationAlgorithm_3() const { return ___keyDerivationAlgorithm_3; } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 ** get_address_of_keyDerivationAlgorithm_3() { return &___keyDerivationAlgorithm_3; } inline void set_keyDerivationAlgorithm_3(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * value) { ___keyDerivationAlgorithm_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___keyDerivationAlgorithm_3), (void*)value); } inline static int32_t get_offset_of_keyEncryptionAlgorithm_4() { return static_cast(offsetof(PasswordRecipientInfo_t022421B5CF631A5AFE34BECCF930C2EAC00B879D, ___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(PasswordRecipientInfo_t022421B5CF631A5AFE34BECCF930C2EAC00B879D, ___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.PasswordRecipientInformation struct PasswordRecipientInformation_t2CBDBF4277732A9461135702A275C81047A8A036 : public RecipientInformation_tB02D0534E5C0851FB482467BA26A52FAD2F853AB { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms.PasswordRecipientInfo BestHTTP.SecureProtocol.Org.BouncyCastle.Cms.PasswordRecipientInformation::info PasswordRecipientInfo_t022421B5CF631A5AFE34BECCF930C2EAC00B879D * ___info_4; public: inline static int32_t get_offset_of_info_4() { return static_cast(offsetof(PasswordRecipientInformation_t2CBDBF4277732A9461135702A275C81047A8A036, ___info_4)); } inline PasswordRecipientInfo_t022421B5CF631A5AFE34BECCF930C2EAC00B879D * get_info_4() const { return ___info_4; } inline PasswordRecipientInfo_t022421B5CF631A5AFE34BECCF930C2EAC00B879D ** get_address_of_info_4() { return &___info_4; } inline void set_info_4(PasswordRecipientInfo_t022421B5CF631A5AFE34BECCF930C2EAC00B879D * value) { ___info_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___info_4), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PbeParameter struct PbeParameter_tABB63C3CEA11162B0EE758EBE77623654FD3C07A : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PbeParameter::salt Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * ___salt_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PbeParameter::iterationCount DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * ___iterationCount_3; public: inline static int32_t get_offset_of_salt_2() { return static_cast(offsetof(PbeParameter_tABB63C3CEA11162B0EE758EBE77623654FD3C07A, ___salt_2)); } inline Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * get_salt_2() const { return ___salt_2; } inline Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 ** get_address_of_salt_2() { return &___salt_2; } inline void set_salt_2(Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * value) { ___salt_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___salt_2), (void*)value); } inline static int32_t get_offset_of_iterationCount_3() { return static_cast(offsetof(PbeParameter_tABB63C3CEA11162B0EE758EBE77623654FD3C07A, ___iterationCount_3)); } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * get_iterationCount_3() const { return ___iterationCount_3; } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 ** get_address_of_iterationCount_3() { return &___iterationCount_3; } inline void set_iterationCount_3(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * value) { ___iterationCount_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___iterationCount_3), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PbeS2Parameters struct PbeS2Parameters_tCD6B0E5AF0003903F31D3C8451D774570CDB4050 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.KeyDerivationFunc BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PbeS2Parameters::func KeyDerivationFunc_t77081A2881F6F03B2B805E840C798E3AC7ACA213 * ___func_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.EncryptionScheme BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PbeS2Parameters::scheme EncryptionScheme_tF6D3E1C9A31370065D9A5D693F204C4EA218F757 * ___scheme_3; public: inline static int32_t get_offset_of_func_2() { return static_cast(offsetof(PbeS2Parameters_tCD6B0E5AF0003903F31D3C8451D774570CDB4050, ___func_2)); } inline KeyDerivationFunc_t77081A2881F6F03B2B805E840C798E3AC7ACA213 * get_func_2() const { return ___func_2; } inline KeyDerivationFunc_t77081A2881F6F03B2B805E840C798E3AC7ACA213 ** get_address_of_func_2() { return &___func_2; } inline void set_func_2(KeyDerivationFunc_t77081A2881F6F03B2B805E840C798E3AC7ACA213 * value) { ___func_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___func_2), (void*)value); } inline static int32_t get_offset_of_scheme_3() { return static_cast(offsetof(PbeS2Parameters_tCD6B0E5AF0003903F31D3C8451D774570CDB4050, ___scheme_3)); } inline EncryptionScheme_tF6D3E1C9A31370065D9A5D693F204C4EA218F757 * get_scheme_3() const { return ___scheme_3; } inline EncryptionScheme_tF6D3E1C9A31370065D9A5D693F204C4EA218F757 ** get_address_of_scheme_3() { return &___scheme_3; } inline void set_scheme_3(EncryptionScheme_tF6D3E1C9A31370065D9A5D693F204C4EA218F757 * value) { ___scheme_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___scheme_3), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.Pbkdf2Params struct Pbkdf2Params_tE4A876D2BE1C2BE089A53C10A1FD8447E225D3B7 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.Pbkdf2Params::octStr Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * ___octStr_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.Pbkdf2Params::iterationCount DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * ___iterationCount_4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.Pbkdf2Params::keyLength DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * ___keyLength_5; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.Pbkdf2Params::prf AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___prf_6; public: inline static int32_t get_offset_of_octStr_3() { return static_cast(offsetof(Pbkdf2Params_tE4A876D2BE1C2BE089A53C10A1FD8447E225D3B7, ___octStr_3)); } inline Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * get_octStr_3() const { return ___octStr_3; } inline Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 ** get_address_of_octStr_3() { return &___octStr_3; } inline void set_octStr_3(Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * value) { ___octStr_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___octStr_3), (void*)value); } inline static int32_t get_offset_of_iterationCount_4() { return static_cast(offsetof(Pbkdf2Params_tE4A876D2BE1C2BE089A53C10A1FD8447E225D3B7, ___iterationCount_4)); } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * get_iterationCount_4() const { return ___iterationCount_4; } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 ** get_address_of_iterationCount_4() { return &___iterationCount_4; } inline void set_iterationCount_4(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * value) { ___iterationCount_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___iterationCount_4), (void*)value); } inline static int32_t get_offset_of_keyLength_5() { return static_cast(offsetof(Pbkdf2Params_tE4A876D2BE1C2BE089A53C10A1FD8447E225D3B7, ___keyLength_5)); } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * get_keyLength_5() const { return ___keyLength_5; } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 ** get_address_of_keyLength_5() { return &___keyLength_5; } inline void set_keyLength_5(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * value) { ___keyLength_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___keyLength_5), (void*)value); } inline static int32_t get_offset_of_prf_6() { return static_cast(offsetof(Pbkdf2Params_tE4A876D2BE1C2BE089A53C10A1FD8447E225D3B7, ___prf_6)); } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * get_prf_6() const { return ___prf_6; } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 ** get_address_of_prf_6() { return &___prf_6; } inline void set_prf_6(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * value) { ___prf_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___prf_6), (void*)value); } }; struct Pbkdf2Params_tE4A876D2BE1C2BE089A53C10A1FD8447E225D3B7_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.Pbkdf2Params::algid_hmacWithSHA1 AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___algid_hmacWithSHA1_2; public: inline static int32_t get_offset_of_algid_hmacWithSHA1_2() { return static_cast(offsetof(Pbkdf2Params_tE4A876D2BE1C2BE089A53C10A1FD8447E225D3B7_StaticFields, ___algid_hmacWithSHA1_2)); } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * get_algid_hmacWithSHA1_2() const { return ___algid_hmacWithSHA1_2; } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 ** get_address_of_algid_hmacWithSHA1_2() { return &___algid_hmacWithSHA1_2; } inline void set_algid_hmacWithSHA1_2(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * value) { ___algid_hmacWithSHA1_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___algid_hmacWithSHA1_2), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.PbmParameter struct PbmParameter_t63F1B75258F7F6A89EB4D6EE72D1BA558DDE5D63 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.PbmParameter::salt Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * ___salt_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.PbmParameter::owf AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___owf_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.PbmParameter::iterationCount DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * ___iterationCount_4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp.PbmParameter::mac AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___mac_5; public: inline static int32_t get_offset_of_salt_2() { return static_cast(offsetof(PbmParameter_t63F1B75258F7F6A89EB4D6EE72D1BA558DDE5D63, ___salt_2)); } inline Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * get_salt_2() const { return ___salt_2; } inline Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 ** get_address_of_salt_2() { return &___salt_2; } inline void set_salt_2(Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * value) { ___salt_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___salt_2), (void*)value); } inline static int32_t get_offset_of_owf_3() { return static_cast(offsetof(PbmParameter_t63F1B75258F7F6A89EB4D6EE72D1BA558DDE5D63, ___owf_3)); } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * get_owf_3() const { return ___owf_3; } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 ** get_address_of_owf_3() { return &___owf_3; } inline void set_owf_3(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * value) { ___owf_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___owf_3), (void*)value); } inline static int32_t get_offset_of_iterationCount_4() { return static_cast(offsetof(PbmParameter_t63F1B75258F7F6A89EB4D6EE72D1BA558DDE5D63, ___iterationCount_4)); } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * get_iterationCount_4() const { return ___iterationCount_4; } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 ** get_address_of_iterationCount_4() { return &___iterationCount_4; } inline void set_iterationCount_4(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * value) { ___iterationCount_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___iterationCount_4), (void*)value); } inline static int32_t get_offset_of_mac_5() { return static_cast(offsetof(PbmParameter_t63F1B75258F7F6A89EB4D6EE72D1BA558DDE5D63, ___mac_5)); } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * get_mac_5() const { return ___mac_5; } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 ** get_address_of_mac_5() { return &___mac_5; } inline void set_mac_5(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * value) { ___mac_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___mac_5), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.OpenSsl.PemReader struct PemReader_tF1396906E5390DF2CB7066DAD488B932A0667A02 : public PemReader_t6E2B48BC6FFB51180A2E80A32F41ADD2C3991318 { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.OpenSsl.IPasswordFinder BestHTTP.SecureProtocol.Org.BouncyCastle.OpenSsl.PemReader::pFinder RuntimeObject* ___pFinder_3; public: inline static int32_t get_offset_of_pFinder_3() { return static_cast(offsetof(PemReader_tF1396906E5390DF2CB7066DAD488B932A0667A02, ___pFinder_3)); } inline RuntimeObject* get_pFinder_3() const { return ___pFinder_3; } inline RuntimeObject** get_address_of_pFinder_3() { return &___pFinder_3; } inline void set_pFinder_3(RuntimeObject* value) { ___pFinder_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___pFinder_3), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.OpenSsl.PemWriter struct PemWriter_t3088297EC9FAF01B00865D6297091CB8505C98E2 : public PemWriter_tBD518860EFED3382051637D2372D21CFA33EED8C { public: public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.SigI.PersonalData struct PersonalData_t36F1E4DB734C176E7DA302121AAAEAD723055423 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.SigI.NameOrPseudonym BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.SigI.PersonalData::nameOrPseudonym NameOrPseudonym_tF6044721E0BAB1EB8E314834B6467F3B24BCCCE3 * ___nameOrPseudonym_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.SigI.PersonalData::nameDistinguisher BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___nameDistinguisher_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerGeneralizedTime BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.SigI.PersonalData::dateOfBirth DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 * ___dateOfBirth_4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X500.DirectoryString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.SigI.PersonalData::placeOfBirth DirectoryString_tA030C0623BF9F46B387E4EA911636428CACB9F0F * ___placeOfBirth_5; // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.SigI.PersonalData::gender String_t* ___gender_6; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X500.DirectoryString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.SigI.PersonalData::postalAddress DirectoryString_tA030C0623BF9F46B387E4EA911636428CACB9F0F * ___postalAddress_7; public: inline static int32_t get_offset_of_nameOrPseudonym_2() { return static_cast(offsetof(PersonalData_t36F1E4DB734C176E7DA302121AAAEAD723055423, ___nameOrPseudonym_2)); } inline NameOrPseudonym_tF6044721E0BAB1EB8E314834B6467F3B24BCCCE3 * get_nameOrPseudonym_2() const { return ___nameOrPseudonym_2; } inline NameOrPseudonym_tF6044721E0BAB1EB8E314834B6467F3B24BCCCE3 ** get_address_of_nameOrPseudonym_2() { return &___nameOrPseudonym_2; } inline void set_nameOrPseudonym_2(NameOrPseudonym_tF6044721E0BAB1EB8E314834B6467F3B24BCCCE3 * value) { ___nameOrPseudonym_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___nameOrPseudonym_2), (void*)value); } inline static int32_t get_offset_of_nameDistinguisher_3() { return static_cast(offsetof(PersonalData_t36F1E4DB734C176E7DA302121AAAEAD723055423, ___nameDistinguisher_3)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_nameDistinguisher_3() const { return ___nameDistinguisher_3; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_nameDistinguisher_3() { return &___nameDistinguisher_3; } inline void set_nameDistinguisher_3(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___nameDistinguisher_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___nameDistinguisher_3), (void*)value); } inline static int32_t get_offset_of_dateOfBirth_4() { return static_cast(offsetof(PersonalData_t36F1E4DB734C176E7DA302121AAAEAD723055423, ___dateOfBirth_4)); } inline DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 * get_dateOfBirth_4() const { return ___dateOfBirth_4; } inline DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 ** get_address_of_dateOfBirth_4() { return &___dateOfBirth_4; } inline void set_dateOfBirth_4(DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 * value) { ___dateOfBirth_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___dateOfBirth_4), (void*)value); } inline static int32_t get_offset_of_placeOfBirth_5() { return static_cast(offsetof(PersonalData_t36F1E4DB734C176E7DA302121AAAEAD723055423, ___placeOfBirth_5)); } inline DirectoryString_tA030C0623BF9F46B387E4EA911636428CACB9F0F * get_placeOfBirth_5() const { return ___placeOfBirth_5; } inline DirectoryString_tA030C0623BF9F46B387E4EA911636428CACB9F0F ** get_address_of_placeOfBirth_5() { return &___placeOfBirth_5; } inline void set_placeOfBirth_5(DirectoryString_tA030C0623BF9F46B387E4EA911636428CACB9F0F * value) { ___placeOfBirth_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___placeOfBirth_5), (void*)value); } inline static int32_t get_offset_of_gender_6() { return static_cast(offsetof(PersonalData_t36F1E4DB734C176E7DA302121AAAEAD723055423, ___gender_6)); } inline String_t* get_gender_6() const { return ___gender_6; } inline String_t** get_address_of_gender_6() { return &___gender_6; } inline void set_gender_6(String_t* value) { ___gender_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___gender_6), (void*)value); } inline static int32_t get_offset_of_postalAddress_7() { return static_cast(offsetof(PersonalData_t36F1E4DB734C176E7DA302121AAAEAD723055423, ___postalAddress_7)); } inline DirectoryString_tA030C0623BF9F46B387E4EA911636428CACB9F0F * get_postalAddress_7() const { return ___postalAddress_7; } inline DirectoryString_tA030C0623BF9F46B387E4EA911636428CACB9F0F ** get_address_of_postalAddress_7() { return &___postalAddress_7; } inline void set_postalAddress_7(DirectoryString_tA030C0623BF9F46B387E4EA911636428CACB9F0F * value) { ___postalAddress_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___postalAddress_7), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.Pfx struct Pfx_t3DC0FBC834C816FD9F9DDBB110EC841BAF006FA3 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.ContentInfo BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.Pfx::contentInfo ContentInfo_tAA34B324F30DA6F788492750D8D7DC53CAB168E0 * ___contentInfo_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.MacData BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.Pfx::macData MacData_tE23C59E80FD08E069EB579A0C3952D4E715C8C95 * ___macData_3; public: inline static int32_t get_offset_of_contentInfo_2() { return static_cast(offsetof(Pfx_t3DC0FBC834C816FD9F9DDBB110EC841BAF006FA3, ___contentInfo_2)); } inline ContentInfo_tAA34B324F30DA6F788492750D8D7DC53CAB168E0 * get_contentInfo_2() const { return ___contentInfo_2; } inline ContentInfo_tAA34B324F30DA6F788492750D8D7DC53CAB168E0 ** get_address_of_contentInfo_2() { return &___contentInfo_2; } inline void set_contentInfo_2(ContentInfo_tAA34B324F30DA6F788492750D8D7DC53CAB168E0 * value) { ___contentInfo_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___contentInfo_2), (void*)value); } inline static int32_t get_offset_of_macData_3() { return static_cast(offsetof(Pfx_t3DC0FBC834C816FD9F9DDBB110EC841BAF006FA3, ___macData_3)); } inline MacData_tE23C59E80FD08E069EB579A0C3952D4E715C8C95 * get_macData_3() const { return ___macData_3; } inline MacData_tE23C59E80FD08E069EB579A0C3952D4E715C8C95 ** get_address_of_macData_3() { return &___macData_3; } inline void set_macData_3(MacData_tE23C59E80FD08E069EB579A0C3952D4E715C8C95 * value) { ___macData_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___macData_3), (void*)value); } }; // PhoneValidateController struct PhoneValidateController_tA68BAFB6E7CD7EFAC5B1A61B170F077143050F23 : public Singleton_1_t0719B3A1BB0D5839C1D99BAA5C727447D38C8302 { public: public: }; // BestHTTP.SignalRCore.Messages.PingMessage struct PingMessage_t05D03F8804B9C5668F98CFEB5761D5AE95CD63AA { public: union { struct { }; uint8_t PingMessage_t05D03F8804B9C5668F98CFEB5761D5AE95CD63AA__padding[1]; }; public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Generators.Pkcs12ParametersGenerator struct Pkcs12ParametersGenerator_t3A010D9BA28A4844EC70DEC34E80BD9552F135C4 : public PbeParametersGenerator_tC2462C70A4D8F16F12866BCED5DA847140B3BBE0 { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IDigest BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Generators.Pkcs12ParametersGenerator::digest RuntimeObject* ___digest_6; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Generators.Pkcs12ParametersGenerator::u int32_t ___u_7; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Generators.Pkcs12ParametersGenerator::v int32_t ___v_8; public: inline static int32_t get_offset_of_digest_6() { return static_cast(offsetof(Pkcs12ParametersGenerator_t3A010D9BA28A4844EC70DEC34E80BD9552F135C4, ___digest_6)); } inline RuntimeObject* get_digest_6() const { return ___digest_6; } inline RuntimeObject** get_address_of_digest_6() { return &___digest_6; } inline void set_digest_6(RuntimeObject* value) { ___digest_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___digest_6), (void*)value); } inline static int32_t get_offset_of_u_7() { return static_cast(offsetof(Pkcs12ParametersGenerator_t3A010D9BA28A4844EC70DEC34E80BD9552F135C4, ___u_7)); } inline int32_t get_u_7() const { return ___u_7; } inline int32_t* get_address_of_u_7() { return &___u_7; } inline void set_u_7(int32_t value) { ___u_7 = value; } inline static int32_t get_offset_of_v_8() { return static_cast(offsetof(Pkcs12ParametersGenerator_t3A010D9BA28A4844EC70DEC34E80BD9552F135C4, ___v_8)); } inline int32_t get_v_8() const { return ___v_8; } inline int32_t* get_address_of_v_8() { return &___v_8; } inline void set_v_8(int32_t value) { ___v_8 = value; } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.Pkcs12PbeParams struct Pkcs12PbeParams_t78C4C6FAE45A3B6F55EF88E8458605BB90FB903E : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.Pkcs12PbeParams::iterations DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * ___iterations_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.Pkcs12PbeParams::iv Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * ___iv_3; public: inline static int32_t get_offset_of_iterations_2() { return static_cast(offsetof(Pkcs12PbeParams_t78C4C6FAE45A3B6F55EF88E8458605BB90FB903E, ___iterations_2)); } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * get_iterations_2() const { return ___iterations_2; } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 ** get_address_of_iterations_2() { return &___iterations_2; } inline void set_iterations_2(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * value) { ___iterations_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___iterations_2), (void*)value); } inline static int32_t get_offset_of_iv_3() { return static_cast(offsetof(Pkcs12PbeParams_t78C4C6FAE45A3B6F55EF88E8458605BB90FB903E, ___iv_3)); } inline Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * get_iv_3() const { return ___iv_3; } inline Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 ** get_address_of_iv_3() { return &___iv_3; } inline void set_iv_3(Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * value) { ___iv_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___iv_3), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Generators.Pkcs5S1ParametersGenerator struct Pkcs5S1ParametersGenerator_tEE4FCBDC52A16FE98CBA99A531CC1D218213789B : public PbeParametersGenerator_tC2462C70A4D8F16F12866BCED5DA847140B3BBE0 { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IDigest BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Generators.Pkcs5S1ParametersGenerator::digest RuntimeObject* ___digest_3; public: inline static int32_t get_offset_of_digest_3() { return static_cast(offsetof(Pkcs5S1ParametersGenerator_tEE4FCBDC52A16FE98CBA99A531CC1D218213789B, ___digest_3)); } inline RuntimeObject* get_digest_3() const { return ___digest_3; } inline RuntimeObject** get_address_of_digest_3() { return &___digest_3; } inline void set_digest_3(RuntimeObject* value) { ___digest_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___digest_3), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Generators.Pkcs5S2ParametersGenerator struct Pkcs5S2ParametersGenerator_tB60224E77A62F2C25854CD558CDE82B1C485BC0F : public PbeParametersGenerator_tC2462C70A4D8F16F12866BCED5DA847140B3BBE0 { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IMac BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Generators.Pkcs5S2ParametersGenerator::hMac RuntimeObject* ___hMac_3; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Generators.Pkcs5S2ParametersGenerator::state ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___state_4; public: inline static int32_t get_offset_of_hMac_3() { return static_cast(offsetof(Pkcs5S2ParametersGenerator_tB60224E77A62F2C25854CD558CDE82B1C485BC0F, ___hMac_3)); } inline RuntimeObject* get_hMac_3() const { return ___hMac_3; } inline RuntimeObject** get_address_of_hMac_3() { return &___hMac_3; } inline void set_hMac_3(RuntimeObject* value) { ___hMac_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___hMac_3), (void*)value); } inline static int32_t get_offset_of_state_4() { return static_cast(offsetof(Pkcs5S2ParametersGenerator_tB60224E77A62F2C25854CD558CDE82B1C485BC0F, ___state_4)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_state_4() const { return ___state_4; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_state_4() { return &___state_4; } inline void set_state_4(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___state_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___state_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); } }; // UnityEngine.Quaternion struct Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 { public: // System.Single UnityEngine.Quaternion::x float ___x_0; // System.Single UnityEngine.Quaternion::y float ___y_1; // System.Single UnityEngine.Quaternion::z float ___z_2; // System.Single UnityEngine.Quaternion::w float ___w_3; public: inline static int32_t get_offset_of_x_0() { return static_cast(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4, ___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(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4, ___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; } inline static int32_t get_offset_of_z_2() { return static_cast(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4, ___z_2)); } inline float get_z_2() const { return ___z_2; } inline float* get_address_of_z_2() { return &___z_2; } inline void set_z_2(float value) { ___z_2 = value; } inline static int32_t get_offset_of_w_3() { return static_cast(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4, ___w_3)); } inline float get_w_3() const { return ___w_3; } inline float* get_address_of_w_3() { return &___w_3; } inline void set_w_3(float value) { ___w_3 = value; } }; struct Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4_StaticFields { public: // UnityEngine.Quaternion UnityEngine.Quaternion::identityQuaternion Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___identityQuaternion_4; public: inline static int32_t get_offset_of_identityQuaternion_4() { return static_cast(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4_StaticFields, ___identityQuaternion_4)); } inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_identityQuaternion_4() const { return ___identityQuaternion_4; } inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_identityQuaternion_4() { return &___identityQuaternion_4; } inline void set_identityQuaternion_4(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value) { ___identityQuaternion_4 = value; } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.RC2CbcParameter struct RC2CbcParameter_t1629811CA7C5F4B71FD6CB1A121833EE3B3EE7D4 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.RC2CbcParameter::version DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * ___version_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.RC2CbcParameter::iv Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * ___iv_3; public: inline static int32_t get_offset_of_version_2() { return static_cast(offsetof(RC2CbcParameter_t1629811CA7C5F4B71FD6CB1A121833EE3B3EE7D4, ___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_iv_3() { return static_cast(offsetof(RC2CbcParameter_t1629811CA7C5F4B71FD6CB1A121833EE3B3EE7D4, ___iv_3)); } inline Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * get_iv_3() const { return ___iv_3; } inline Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 ** get_address_of_iv_3() { return &___iv_3; } inline void set_iv_3(Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * value) { ___iv_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___iv_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.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.Crypto.Parameters.RsaKeyParameters struct RsaKeyParameters_t5CEAA6F9B92D2B6F1225DFF7C089B43146012801 : public AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters::modulus BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___modulus_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters::exponent BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___exponent_3; public: inline static int32_t get_offset_of_modulus_2() { return static_cast(offsetof(RsaKeyParameters_t5CEAA6F9B92D2B6F1225DFF7C089B43146012801, ___modulus_2)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_modulus_2() const { return ___modulus_2; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_modulus_2() { return &___modulus_2; } inline void set_modulus_2(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___modulus_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___modulus_2), (void*)value); } inline static int32_t get_offset_of_exponent_3() { return static_cast(offsetof(RsaKeyParameters_t5CEAA6F9B92D2B6F1225DFF7C089B43146012801, ___exponent_3)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_exponent_3() const { return ___exponent_3; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_exponent_3() { return &___exponent_3; } inline void set_exponent_3(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___exponent_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___exponent_3), (void*)value); } }; struct RsaKeyParameters_t5CEAA6F9B92D2B6F1225DFF7C089B43146012801_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters::SmallPrimesProduct BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___SmallPrimesProduct_1; public: inline static int32_t get_offset_of_SmallPrimesProduct_1() { return static_cast(offsetof(RsaKeyParameters_t5CEAA6F9B92D2B6F1225DFF7C089B43146012801_StaticFields, ___SmallPrimesProduct_1)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_SmallPrimesProduct_1() const { return ___SmallPrimesProduct_1; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_SmallPrimesProduct_1() { return &___SmallPrimesProduct_1; } inline void set_SmallPrimesProduct_1(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___SmallPrimesProduct_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___SmallPrimesProduct_1), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.RsaPrivateKeyStructure struct RsaPrivateKeyStructure_tEBAF070C7C3370B960215F537F3B94B693B66D25 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.RsaPrivateKeyStructure::modulus BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___modulus_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.RsaPrivateKeyStructure::publicExponent BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___publicExponent_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.RsaPrivateKeyStructure::privateExponent BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___privateExponent_4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.RsaPrivateKeyStructure::prime1 BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___prime1_5; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.RsaPrivateKeyStructure::prime2 BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___prime2_6; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.RsaPrivateKeyStructure::exponent1 BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___exponent1_7; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.RsaPrivateKeyStructure::exponent2 BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___exponent2_8; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.RsaPrivateKeyStructure::coefficient BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___coefficient_9; public: inline static int32_t get_offset_of_modulus_2() { return static_cast(offsetof(RsaPrivateKeyStructure_tEBAF070C7C3370B960215F537F3B94B693B66D25, ___modulus_2)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_modulus_2() const { return ___modulus_2; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_modulus_2() { return &___modulus_2; } inline void set_modulus_2(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___modulus_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___modulus_2), (void*)value); } inline static int32_t get_offset_of_publicExponent_3() { return static_cast(offsetof(RsaPrivateKeyStructure_tEBAF070C7C3370B960215F537F3B94B693B66D25, ___publicExponent_3)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_publicExponent_3() const { return ___publicExponent_3; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_publicExponent_3() { return &___publicExponent_3; } inline void set_publicExponent_3(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___publicExponent_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___publicExponent_3), (void*)value); } inline static int32_t get_offset_of_privateExponent_4() { return static_cast(offsetof(RsaPrivateKeyStructure_tEBAF070C7C3370B960215F537F3B94B693B66D25, ___privateExponent_4)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_privateExponent_4() const { return ___privateExponent_4; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_privateExponent_4() { return &___privateExponent_4; } inline void set_privateExponent_4(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___privateExponent_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___privateExponent_4), (void*)value); } inline static int32_t get_offset_of_prime1_5() { return static_cast(offsetof(RsaPrivateKeyStructure_tEBAF070C7C3370B960215F537F3B94B693B66D25, ___prime1_5)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_prime1_5() const { return ___prime1_5; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_prime1_5() { return &___prime1_5; } inline void set_prime1_5(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___prime1_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___prime1_5), (void*)value); } inline static int32_t get_offset_of_prime2_6() { return static_cast(offsetof(RsaPrivateKeyStructure_tEBAF070C7C3370B960215F537F3B94B693B66D25, ___prime2_6)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_prime2_6() const { return ___prime2_6; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_prime2_6() { return &___prime2_6; } inline void set_prime2_6(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___prime2_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___prime2_6), (void*)value); } inline static int32_t get_offset_of_exponent1_7() { return static_cast(offsetof(RsaPrivateKeyStructure_tEBAF070C7C3370B960215F537F3B94B693B66D25, ___exponent1_7)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_exponent1_7() const { return ___exponent1_7; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_exponent1_7() { return &___exponent1_7; } inline void set_exponent1_7(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___exponent1_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___exponent1_7), (void*)value); } inline static int32_t get_offset_of_exponent2_8() { return static_cast(offsetof(RsaPrivateKeyStructure_tEBAF070C7C3370B960215F537F3B94B693B66D25, ___exponent2_8)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_exponent2_8() const { return ___exponent2_8; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_exponent2_8() { return &___exponent2_8; } inline void set_exponent2_8(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___exponent2_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___exponent2_8), (void*)value); } inline static int32_t get_offset_of_coefficient_9() { return static_cast(offsetof(RsaPrivateKeyStructure_tEBAF070C7C3370B960215F537F3B94B693B66D25, ___coefficient_9)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_coefficient_9() const { return ___coefficient_9; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_coefficient_9() { return &___coefficient_9; } inline void set_coefficient_9(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___coefficient_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___coefficient_9), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.RsaPublicKeyStructure struct RsaPublicKeyStructure_tF82F198D8A7999775A7A0B03248E971DE1FA8C37 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.RsaPublicKeyStructure::modulus BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___modulus_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.RsaPublicKeyStructure::publicExponent BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___publicExponent_3; public: inline static int32_t get_offset_of_modulus_2() { return static_cast(offsetof(RsaPublicKeyStructure_tF82F198D8A7999775A7A0B03248E971DE1FA8C37, ___modulus_2)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_modulus_2() const { return ___modulus_2; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_modulus_2() { return &___modulus_2; } inline void set_modulus_2(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___modulus_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___modulus_2), (void*)value); } inline static int32_t get_offset_of_publicExponent_3() { return static_cast(offsetof(RsaPublicKeyStructure_tF82F198D8A7999775A7A0B03248E971DE1FA8C37, ___publicExponent_3)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_publicExponent_3() const { return ___publicExponent_3; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_publicExponent_3() { return &___publicExponent_3; } inline void set_publicExponent_3(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___publicExponent_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___publicExponent_3), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters struct RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters::hashAlgorithm AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___hashAlgorithm_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters::maskGenAlgorithm AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___maskGenAlgorithm_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters::saltLength DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * ___saltLength_4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters::trailerField DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * ___trailerField_5; public: inline static int32_t get_offset_of_hashAlgorithm_2() { return static_cast(offsetof(RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69, ___hashAlgorithm_2)); } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * get_hashAlgorithm_2() const { return ___hashAlgorithm_2; } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 ** get_address_of_hashAlgorithm_2() { return &___hashAlgorithm_2; } inline void set_hashAlgorithm_2(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * value) { ___hashAlgorithm_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___hashAlgorithm_2), (void*)value); } inline static int32_t get_offset_of_maskGenAlgorithm_3() { return static_cast(offsetof(RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69, ___maskGenAlgorithm_3)); } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * get_maskGenAlgorithm_3() const { return ___maskGenAlgorithm_3; } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 ** get_address_of_maskGenAlgorithm_3() { return &___maskGenAlgorithm_3; } inline void set_maskGenAlgorithm_3(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * value) { ___maskGenAlgorithm_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___maskGenAlgorithm_3), (void*)value); } inline static int32_t get_offset_of_saltLength_4() { return static_cast(offsetof(RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69, ___saltLength_4)); } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * get_saltLength_4() const { return ___saltLength_4; } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 ** get_address_of_saltLength_4() { return &___saltLength_4; } inline void set_saltLength_4(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * value) { ___saltLength_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___saltLength_4), (void*)value); } inline static int32_t get_offset_of_trailerField_5() { return static_cast(offsetof(RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69, ___trailerField_5)); } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * get_trailerField_5() const { return ___trailerField_5; } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 ** get_address_of_trailerField_5() { return &___trailerField_5; } inline void set_trailerField_5(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * value) { ___trailerField_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___trailerField_5), (void*)value); } }; struct RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters::DefaultHashAlgorithm AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___DefaultHashAlgorithm_6; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters::DefaultMaskGenFunction AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___DefaultMaskGenFunction_7; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters::DefaultSaltLength DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * ___DefaultSaltLength_8; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters::DefaultTrailerField DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * ___DefaultTrailerField_9; public: inline static int32_t get_offset_of_DefaultHashAlgorithm_6() { return static_cast(offsetof(RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69_StaticFields, ___DefaultHashAlgorithm_6)); } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * get_DefaultHashAlgorithm_6() const { return ___DefaultHashAlgorithm_6; } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 ** get_address_of_DefaultHashAlgorithm_6() { return &___DefaultHashAlgorithm_6; } inline void set_DefaultHashAlgorithm_6(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * value) { ___DefaultHashAlgorithm_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___DefaultHashAlgorithm_6), (void*)value); } inline static int32_t get_offset_of_DefaultMaskGenFunction_7() { return static_cast(offsetof(RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69_StaticFields, ___DefaultMaskGenFunction_7)); } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * get_DefaultMaskGenFunction_7() const { return ___DefaultMaskGenFunction_7; } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 ** get_address_of_DefaultMaskGenFunction_7() { return &___DefaultMaskGenFunction_7; } inline void set_DefaultMaskGenFunction_7(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * value) { ___DefaultMaskGenFunction_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___DefaultMaskGenFunction_7), (void*)value); } inline static int32_t get_offset_of_DefaultSaltLength_8() { return static_cast(offsetof(RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69_StaticFields, ___DefaultSaltLength_8)); } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * get_DefaultSaltLength_8() const { return ___DefaultSaltLength_8; } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 ** get_address_of_DefaultSaltLength_8() { return &___DefaultSaltLength_8; } inline void set_DefaultSaltLength_8(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * value) { ___DefaultSaltLength_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___DefaultSaltLength_8), (void*)value); } inline static int32_t get_offset_of_DefaultTrailerField_9() { return static_cast(offsetof(RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69_StaticFields, ___DefaultTrailerField_9)); } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * get_DefaultTrailerField_9() const { return ___DefaultTrailerField_9; } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 ** get_address_of_DefaultTrailerField_9() { return &___DefaultTrailerField_9; } inline void set_DefaultTrailerField_9(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * value) { ___DefaultTrailerField_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___DefaultTrailerField_9), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.SafeBag struct SafeBag_t1B137820B5E15C8BEC267B2B14BDBDF4ECF77534 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.SafeBag::bagID DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___bagID_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Object BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.SafeBag::bagValue Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * ___bagValue_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Set BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.SafeBag::bagAttributes Asn1Set_t9EBB628AB5FBF1FCC866DC7AEA45C59A72698F49 * ___bagAttributes_4; public: inline static int32_t get_offset_of_bagID_2() { return static_cast(offsetof(SafeBag_t1B137820B5E15C8BEC267B2B14BDBDF4ECF77534, ___bagID_2)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_bagID_2() const { return ___bagID_2; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_bagID_2() { return &___bagID_2; } inline void set_bagID_2(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___bagID_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___bagID_2), (void*)value); } inline static int32_t get_offset_of_bagValue_3() { return static_cast(offsetof(SafeBag_t1B137820B5E15C8BEC267B2B14BDBDF4ECF77534, ___bagValue_3)); } inline Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * get_bagValue_3() const { return ___bagValue_3; } inline Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC ** get_address_of_bagValue_3() { return &___bagValue_3; } inline void set_bagValue_3(Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * value) { ___bagValue_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___bagValue_3), (void*)value); } inline static int32_t get_offset_of_bagAttributes_4() { return static_cast(offsetof(SafeBag_t1B137820B5E15C8BEC267B2B14BDBDF4ECF77534, ___bagAttributes_4)); } inline Asn1Set_t9EBB628AB5FBF1FCC866DC7AEA45C59A72698F49 * get_bagAttributes_4() const { return ___bagAttributes_4; } inline Asn1Set_t9EBB628AB5FBF1FCC866DC7AEA45C59A72698F49 ** get_address_of_bagAttributes_4() { return &___bagAttributes_4; } inline void set_bagAttributes_4(Asn1Set_t9EBB628AB5FBF1FCC866DC7AEA45C59A72698F49 * value) { ___bagAttributes_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___bagAttributes_4), (void*)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; } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.Sha1Digest struct Sha1Digest_t9ABD0D9950F85C2952992508FA19FCBD0CF82459 : public GeneralDigest_t87A61506D31B11798E0404E71466E4D5B8B9B4B8 { public: // System.UInt32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.Sha1Digest::H1 uint32_t ___H1_5; // System.UInt32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.Sha1Digest::H2 uint32_t ___H2_6; // System.UInt32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.Sha1Digest::H3 uint32_t ___H3_7; // System.UInt32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.Sha1Digest::H4 uint32_t ___H4_8; // System.UInt32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.Sha1Digest::H5 uint32_t ___H5_9; // System.UInt32[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.Sha1Digest::X UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* ___X_10; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.Sha1Digest::xOff int32_t ___xOff_11; public: inline static int32_t get_offset_of_H1_5() { return static_cast(offsetof(Sha1Digest_t9ABD0D9950F85C2952992508FA19FCBD0CF82459, ___H1_5)); } inline uint32_t get_H1_5() const { return ___H1_5; } inline uint32_t* get_address_of_H1_5() { return &___H1_5; } inline void set_H1_5(uint32_t value) { ___H1_5 = value; } inline static int32_t get_offset_of_H2_6() { return static_cast(offsetof(Sha1Digest_t9ABD0D9950F85C2952992508FA19FCBD0CF82459, ___H2_6)); } inline uint32_t get_H2_6() const { return ___H2_6; } inline uint32_t* get_address_of_H2_6() { return &___H2_6; } inline void set_H2_6(uint32_t value) { ___H2_6 = value; } inline static int32_t get_offset_of_H3_7() { return static_cast(offsetof(Sha1Digest_t9ABD0D9950F85C2952992508FA19FCBD0CF82459, ___H3_7)); } inline uint32_t get_H3_7() const { return ___H3_7; } inline uint32_t* get_address_of_H3_7() { return &___H3_7; } inline void set_H3_7(uint32_t value) { ___H3_7 = value; } inline static int32_t get_offset_of_H4_8() { return static_cast(offsetof(Sha1Digest_t9ABD0D9950F85C2952992508FA19FCBD0CF82459, ___H4_8)); } inline uint32_t get_H4_8() const { return ___H4_8; } inline uint32_t* get_address_of_H4_8() { return &___H4_8; } inline void set_H4_8(uint32_t value) { ___H4_8 = value; } inline static int32_t get_offset_of_H5_9() { return static_cast(offsetof(Sha1Digest_t9ABD0D9950F85C2952992508FA19FCBD0CF82459, ___H5_9)); } inline uint32_t get_H5_9() const { return ___H5_9; } inline uint32_t* get_address_of_H5_9() { return &___H5_9; } inline void set_H5_9(uint32_t value) { ___H5_9 = value; } inline static int32_t get_offset_of_X_10() { return static_cast(offsetof(Sha1Digest_t9ABD0D9950F85C2952992508FA19FCBD0CF82459, ___X_10)); } inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* get_X_10() const { return ___X_10; } inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF** get_address_of_X_10() { return &___X_10; } inline void set_X_10(UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* value) { ___X_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___X_10), (void*)value); } inline static int32_t get_offset_of_xOff_11() { return static_cast(offsetof(Sha1Digest_t9ABD0D9950F85C2952992508FA19FCBD0CF82459, ___xOff_11)); } inline int32_t get_xOff_11() const { return ___xOff_11; } inline int32_t* get_address_of_xOff_11() { return &___xOff_11; } inline void set_xOff_11(int32_t value) { ___xOff_11 = value; } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.Sha256Digest struct Sha256Digest_tCF11D57008BAA24F85355CC0CAA88846A48A6F2D : public GeneralDigest_t87A61506D31B11798E0404E71466E4D5B8B9B4B8 { public: // System.UInt32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.Sha256Digest::H1 uint32_t ___H1_5; // System.UInt32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.Sha256Digest::H2 uint32_t ___H2_6; // System.UInt32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.Sha256Digest::H3 uint32_t ___H3_7; // System.UInt32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.Sha256Digest::H4 uint32_t ___H4_8; // System.UInt32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.Sha256Digest::H5 uint32_t ___H5_9; // System.UInt32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.Sha256Digest::H6 uint32_t ___H6_10; // System.UInt32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.Sha256Digest::H7 uint32_t ___H7_11; // System.UInt32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.Sha256Digest::H8 uint32_t ___H8_12; // System.UInt32[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.Sha256Digest::X UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* ___X_13; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.Sha256Digest::xOff int32_t ___xOff_14; public: inline static int32_t get_offset_of_H1_5() { return static_cast(offsetof(Sha256Digest_tCF11D57008BAA24F85355CC0CAA88846A48A6F2D, ___H1_5)); } inline uint32_t get_H1_5() const { return ___H1_5; } inline uint32_t* get_address_of_H1_5() { return &___H1_5; } inline void set_H1_5(uint32_t value) { ___H1_5 = value; } inline static int32_t get_offset_of_H2_6() { return static_cast(offsetof(Sha256Digest_tCF11D57008BAA24F85355CC0CAA88846A48A6F2D, ___H2_6)); } inline uint32_t get_H2_6() const { return ___H2_6; } inline uint32_t* get_address_of_H2_6() { return &___H2_6; } inline void set_H2_6(uint32_t value) { ___H2_6 = value; } inline static int32_t get_offset_of_H3_7() { return static_cast(offsetof(Sha256Digest_tCF11D57008BAA24F85355CC0CAA88846A48A6F2D, ___H3_7)); } inline uint32_t get_H3_7() const { return ___H3_7; } inline uint32_t* get_address_of_H3_7() { return &___H3_7; } inline void set_H3_7(uint32_t value) { ___H3_7 = value; } inline static int32_t get_offset_of_H4_8() { return static_cast(offsetof(Sha256Digest_tCF11D57008BAA24F85355CC0CAA88846A48A6F2D, ___H4_8)); } inline uint32_t get_H4_8() const { return ___H4_8; } inline uint32_t* get_address_of_H4_8() { return &___H4_8; } inline void set_H4_8(uint32_t value) { ___H4_8 = value; } inline static int32_t get_offset_of_H5_9() { return static_cast(offsetof(Sha256Digest_tCF11D57008BAA24F85355CC0CAA88846A48A6F2D, ___H5_9)); } inline uint32_t get_H5_9() const { return ___H5_9; } inline uint32_t* get_address_of_H5_9() { return &___H5_9; } inline void set_H5_9(uint32_t value) { ___H5_9 = value; } inline static int32_t get_offset_of_H6_10() { return static_cast(offsetof(Sha256Digest_tCF11D57008BAA24F85355CC0CAA88846A48A6F2D, ___H6_10)); } inline uint32_t get_H6_10() const { return ___H6_10; } inline uint32_t* get_address_of_H6_10() { return &___H6_10; } inline void set_H6_10(uint32_t value) { ___H6_10 = value; } inline static int32_t get_offset_of_H7_11() { return static_cast(offsetof(Sha256Digest_tCF11D57008BAA24F85355CC0CAA88846A48A6F2D, ___H7_11)); } inline uint32_t get_H7_11() const { return ___H7_11; } inline uint32_t* get_address_of_H7_11() { return &___H7_11; } inline void set_H7_11(uint32_t value) { ___H7_11 = value; } inline static int32_t get_offset_of_H8_12() { return static_cast(offsetof(Sha256Digest_tCF11D57008BAA24F85355CC0CAA88846A48A6F2D, ___H8_12)); } inline uint32_t get_H8_12() const { return ___H8_12; } inline uint32_t* get_address_of_H8_12() { return &___H8_12; } inline void set_H8_12(uint32_t value) { ___H8_12 = value; } inline static int32_t get_offset_of_X_13() { return static_cast(offsetof(Sha256Digest_tCF11D57008BAA24F85355CC0CAA88846A48A6F2D, ___X_13)); } inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* get_X_13() const { return ___X_13; } inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF** get_address_of_X_13() { return &___X_13; } inline void set_X_13(UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* value) { ___X_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___X_13), (void*)value); } inline static int32_t get_offset_of_xOff_14() { return static_cast(offsetof(Sha256Digest_tCF11D57008BAA24F85355CC0CAA88846A48A6F2D, ___xOff_14)); } inline int32_t get_xOff_14() const { return ___xOff_14; } inline int32_t* get_address_of_xOff_14() { return &___xOff_14; } inline void set_xOff_14(int32_t value) { ___xOff_14 = value; } }; struct Sha256Digest_tCF11D57008BAA24F85355CC0CAA88846A48A6F2D_StaticFields { public: // System.UInt32[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests.Sha256Digest::K UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* ___K_15; public: inline static int32_t get_offset_of_K_15() { return static_cast(offsetof(Sha256Digest_tCF11D57008BAA24F85355CC0CAA88846A48A6F2D_StaticFields, ___K_15)); } inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* get_K_15() const { return ___K_15; } inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF** get_address_of_K_15() { return &___K_15; } inline void set_K_15(UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* value) { ___K_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___K_15), (void*)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; } }; // UnityEngine.UI.SpriteState struct SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E { public: // UnityEngine.Sprite UnityEngine.UI.SpriteState::m_HighlightedSprite Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_HighlightedSprite_0; // UnityEngine.Sprite UnityEngine.UI.SpriteState::m_PressedSprite Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_PressedSprite_1; // UnityEngine.Sprite UnityEngine.UI.SpriteState::m_SelectedSprite Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_SelectedSprite_2; // UnityEngine.Sprite UnityEngine.UI.SpriteState::m_DisabledSprite Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_DisabledSprite_3; public: inline static int32_t get_offset_of_m_HighlightedSprite_0() { return static_cast(offsetof(SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E, ___m_HighlightedSprite_0)); } inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * get_m_HighlightedSprite_0() const { return ___m_HighlightedSprite_0; } inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 ** get_address_of_m_HighlightedSprite_0() { return &___m_HighlightedSprite_0; } inline void set_m_HighlightedSprite_0(Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * value) { ___m_HighlightedSprite_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_HighlightedSprite_0), (void*)value); } inline static int32_t get_offset_of_m_PressedSprite_1() { return static_cast(offsetof(SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E, ___m_PressedSprite_1)); } inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * get_m_PressedSprite_1() const { return ___m_PressedSprite_1; } inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 ** get_address_of_m_PressedSprite_1() { return &___m_PressedSprite_1; } inline void set_m_PressedSprite_1(Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * value) { ___m_PressedSprite_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_PressedSprite_1), (void*)value); } inline static int32_t get_offset_of_m_SelectedSprite_2() { return static_cast(offsetof(SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E, ___m_SelectedSprite_2)); } inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * get_m_SelectedSprite_2() const { return ___m_SelectedSprite_2; } inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 ** get_address_of_m_SelectedSprite_2() { return &___m_SelectedSprite_2; } inline void set_m_SelectedSprite_2(Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * value) { ___m_SelectedSprite_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_SelectedSprite_2), (void*)value); } inline static int32_t get_offset_of_m_DisabledSprite_3() { return static_cast(offsetof(SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E, ___m_DisabledSprite_3)); } inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * get_m_DisabledSprite_3() const { return ___m_DisabledSprite_3; } inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 ** get_address_of_m_DisabledSprite_3() { return &___m_DisabledSprite_3; } inline void set_m_DisabledSprite_3(Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * value) { ___m_DisabledSprite_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_DisabledSprite_3), (void*)value); } }; // Native definition for P/Invoke marshalling of UnityEngine.UI.SpriteState struct SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E_marshaled_pinvoke { Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_HighlightedSprite_0; Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_PressedSprite_1; Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_SelectedSprite_2; Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_DisabledSprite_3; }; // Native definition for COM marshalling of UnityEngine.UI.SpriteState struct SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E_marshaled_com { Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_HighlightedSprite_0; Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_PressedSprite_1; Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_SelectedSprite_2; Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_DisabledSprite_3; }; // 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); } }; // 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.UInt32 struct UInt32_tE60352A06233E4E69DD198BCC67142159F686B15 { public: // System.UInt32 System.UInt32::m_value uint32_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(UInt32_tE60352A06233E4E69DD198BCC67142159F686B15, ___m_value_0)); } inline uint32_t get_m_value_0() const { return ___m_value_0; } inline uint32_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint32_t value) { ___m_value_0 = value; } }; // UnityEngine.Events.UnityEvent struct UnityEvent_tA0EA9BC49FD7D5185E7A238EF2E0E6F5D0EE27F4 : public UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB { public: // System.Object[] UnityEngine.Events.UnityEvent::m_InvokeArray ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___m_InvokeArray_3; public: inline static int32_t get_offset_of_m_InvokeArray_3() { return static_cast(offsetof(UnityEvent_tA0EA9BC49FD7D5185E7A238EF2E0E6F5D0EE27F4, ___m_InvokeArray_3)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_m_InvokeArray_3() const { return ___m_InvokeArray_3; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_m_InvokeArray_3() { return &___m_InvokeArray_3; } inline void set_m_InvokeArray_3(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ___m_InvokeArray_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_InvokeArray_3), (void*)value); } }; // UnityEngine.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; } }; // UnityEngine.Vector4 struct Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 { public: // System.Single UnityEngine.Vector4::x float ___x_1; // System.Single UnityEngine.Vector4::y float ___y_2; // System.Single UnityEngine.Vector4::z float ___z_3; // System.Single UnityEngine.Vector4::w float ___w_4; public: inline static int32_t get_offset_of_x_1() { return static_cast(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7, ___x_1)); } inline float get_x_1() const { return ___x_1; } inline float* get_address_of_x_1() { return &___x_1; } inline void set_x_1(float value) { ___x_1 = value; } inline static int32_t get_offset_of_y_2() { return static_cast(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7, ___y_2)); } inline float get_y_2() const { return ___y_2; } inline float* get_address_of_y_2() { return &___y_2; } inline void set_y_2(float value) { ___y_2 = value; } inline static int32_t get_offset_of_z_3() { return static_cast(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7, ___z_3)); } inline float get_z_3() const { return ___z_3; } inline float* get_address_of_z_3() { return &___z_3; } inline void set_z_3(float value) { ___z_3 = value; } inline static int32_t get_offset_of_w_4() { return static_cast(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7, ___w_4)); } inline float get_w_4() const { return ___w_4; } inline float* get_address_of_w_4() { return &___w_4; } inline void set_w_4(float value) { ___w_4 = value; } }; struct Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_StaticFields { public: // UnityEngine.Vector4 UnityEngine.Vector4::zeroVector Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___zeroVector_5; // UnityEngine.Vector4 UnityEngine.Vector4::oneVector Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___oneVector_6; // UnityEngine.Vector4 UnityEngine.Vector4::positiveInfinityVector Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___positiveInfinityVector_7; // UnityEngine.Vector4 UnityEngine.Vector4::negativeInfinityVector Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___negativeInfinityVector_8; public: inline static int32_t get_offset_of_zeroVector_5() { return static_cast(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_StaticFields, ___zeroVector_5)); } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_zeroVector_5() const { return ___zeroVector_5; } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_zeroVector_5() { return &___zeroVector_5; } inline void set_zeroVector_5(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value) { ___zeroVector_5 = value; } inline static int32_t get_offset_of_oneVector_6() { return static_cast(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_StaticFields, ___oneVector_6)); } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_oneVector_6() const { return ___oneVector_6; } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_oneVector_6() { return &___oneVector_6; } inline void set_oneVector_6(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value) { ___oneVector_6 = value; } inline static int32_t get_offset_of_positiveInfinityVector_7() { return static_cast(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_StaticFields, ___positiveInfinityVector_7)); } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_positiveInfinityVector_7() const { return ___positiveInfinityVector_7; } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_positiveInfinityVector_7() { return &___positiveInfinityVector_7; } inline void set_positiveInfinityVector_7(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value) { ___positiveInfinityVector_7 = value; } inline static int32_t get_offset_of_negativeInfinityVector_8() { return static_cast(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_StaticFields, ___negativeInfinityVector_8)); } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_negativeInfinityVector_8() const { return ___negativeInfinityVector_8; } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_negativeInfinityVector_8() { return &___negativeInfinityVector_8; } inline void set_negativeInfinityVector_8(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value) { ___negativeInfinityVector_8 = 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.Pkcs.X509CertificateEntry struct X509CertificateEntry_tB47F6587E5679B9935CD1D830FF74CB1309E76D3 : public Pkcs12Entry_tEFAF0FAB8C5FCE175C5A80614CBAA6C70D7D39D6 { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Certificate BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs.X509CertificateEntry::cert X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06 * ___cert_1; public: inline static int32_t get_offset_of_cert_1() { return static_cast(offsetof(X509CertificateEntry_tB47F6587E5679B9935CD1D830FF74CB1309E76D3, ___cert_1)); } inline X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06 * get_cert_1() const { return ___cert_1; } inline X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06 ** get_address_of_cert_1() { return &___cert_1; } inline void set_cert_1(X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06 * value) { ___cert_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___cert_1), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Crl struct X509Crl_t963C99FFAA5E9B3E8AE0BBB6F74D45D52C7BBB04 : public X509ExtensionBase_t91B691B9E834F516C9CE847F2B900B019A37CCE7 { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.CertificateList BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Crl::c CertificateList_tC023E9119F567E5589711845D4A07A59F9F26B34 * ___c_0; // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Crl::sigAlgName String_t* ___sigAlgName_1; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Crl::sigAlgParams ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___sigAlgParams_2; // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Crl::isIndirect bool ___isIndirect_3; public: inline static int32_t get_offset_of_c_0() { return static_cast(offsetof(X509Crl_t963C99FFAA5E9B3E8AE0BBB6F74D45D52C7BBB04, ___c_0)); } inline CertificateList_tC023E9119F567E5589711845D4A07A59F9F26B34 * get_c_0() const { return ___c_0; } inline CertificateList_tC023E9119F567E5589711845D4A07A59F9F26B34 ** get_address_of_c_0() { return &___c_0; } inline void set_c_0(CertificateList_tC023E9119F567E5589711845D4A07A59F9F26B34 * value) { ___c_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_0), (void*)value); } inline static int32_t get_offset_of_sigAlgName_1() { return static_cast(offsetof(X509Crl_t963C99FFAA5E9B3E8AE0BBB6F74D45D52C7BBB04, ___sigAlgName_1)); } inline String_t* get_sigAlgName_1() const { return ___sigAlgName_1; } inline String_t** get_address_of_sigAlgName_1() { return &___sigAlgName_1; } inline void set_sigAlgName_1(String_t* value) { ___sigAlgName_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___sigAlgName_1), (void*)value); } inline static int32_t get_offset_of_sigAlgParams_2() { return static_cast(offsetof(X509Crl_t963C99FFAA5E9B3E8AE0BBB6F74D45D52C7BBB04, ___sigAlgParams_2)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_sigAlgParams_2() const { return ___sigAlgParams_2; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_sigAlgParams_2() { return &___sigAlgParams_2; } inline void set_sigAlgParams_2(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___sigAlgParams_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___sigAlgParams_2), (void*)value); } inline static int32_t get_offset_of_isIndirect_3() { return static_cast(offsetof(X509Crl_t963C99FFAA5E9B3E8AE0BBB6F74D45D52C7BBB04, ___isIndirect_3)); } inline bool get_isIndirect_3() const { return ___isIndirect_3; } inline bool* get_address_of_isIndirect_3() { return &___isIndirect_3; } inline void set_isIndirect_3(bool value) { ___isIndirect_3 = 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); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParameters struct X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9FieldID BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParameters::fieldID X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8 * ___fieldID_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECCurve BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParameters::curve ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * ___curve_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECPoint BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParameters::g X9ECPoint_t06D47967D73B459616A01610E0E5D88AB08BDF71 * ___g_4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParameters::n BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___n_5; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParameters::h BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___h_6; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParameters::seed ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___seed_7; public: inline static int32_t get_offset_of_fieldID_2() { return static_cast(offsetof(X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639, ___fieldID_2)); } inline X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8 * get_fieldID_2() const { return ___fieldID_2; } inline X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8 ** get_address_of_fieldID_2() { return &___fieldID_2; } inline void set_fieldID_2(X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8 * value) { ___fieldID_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___fieldID_2), (void*)value); } inline static int32_t get_offset_of_curve_3() { return static_cast(offsetof(X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639, ___curve_3)); } inline ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * get_curve_3() const { return ___curve_3; } inline ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 ** get_address_of_curve_3() { return &___curve_3; } inline void set_curve_3(ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * value) { ___curve_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___curve_3), (void*)value); } inline static int32_t get_offset_of_g_4() { return static_cast(offsetof(X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639, ___g_4)); } inline X9ECPoint_t06D47967D73B459616A01610E0E5D88AB08BDF71 * get_g_4() const { return ___g_4; } inline X9ECPoint_t06D47967D73B459616A01610E0E5D88AB08BDF71 ** get_address_of_g_4() { return &___g_4; } inline void set_g_4(X9ECPoint_t06D47967D73B459616A01610E0E5D88AB08BDF71 * value) { ___g_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___g_4), (void*)value); } inline static int32_t get_offset_of_n_5() { return static_cast(offsetof(X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639, ___n_5)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_n_5() const { return ___n_5; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_n_5() { return &___n_5; } inline void set_n_5(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___n_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___n_5), (void*)value); } inline static int32_t get_offset_of_h_6() { return static_cast(offsetof(X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639, ___h_6)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_h_6() const { return ___h_6; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_h_6() { return &___h_6; } inline void set_h_6(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___h_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___h_6), (void*)value); } inline static int32_t get_offset_of_seed_7() { return static_cast(offsetof(X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639, ___seed_7)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_seed_7() const { return ___seed_7; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_seed_7() { return &___seed_7; } inline void set_seed_7(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___seed_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___seed_7), (void*)value); } }; // UnityEngine.EventSystems.EventSystem/UIToolkitOverrideConfig struct UIToolkitOverrideConfig_tB5087C80F45EF6D94B1BF60B8DAE6AE8D78F1051 { public: // UnityEngine.EventSystems.EventSystem UnityEngine.EventSystems.EventSystem/UIToolkitOverrideConfig::activeEventSystem EventSystem_t5DC458FCD0355A74CDCCE79287B38B9C4278E39C * ___activeEventSystem_0; // System.Boolean UnityEngine.EventSystems.EventSystem/UIToolkitOverrideConfig::sendEvents bool ___sendEvents_1; // System.Boolean UnityEngine.EventSystems.EventSystem/UIToolkitOverrideConfig::createPanelGameObjectsOnStart bool ___createPanelGameObjectsOnStart_2; public: inline static int32_t get_offset_of_activeEventSystem_0() { return static_cast(offsetof(UIToolkitOverrideConfig_tB5087C80F45EF6D94B1BF60B8DAE6AE8D78F1051, ___activeEventSystem_0)); } inline EventSystem_t5DC458FCD0355A74CDCCE79287B38B9C4278E39C * get_activeEventSystem_0() const { return ___activeEventSystem_0; } inline EventSystem_t5DC458FCD0355A74CDCCE79287B38B9C4278E39C ** get_address_of_activeEventSystem_0() { return &___activeEventSystem_0; } inline void set_activeEventSystem_0(EventSystem_t5DC458FCD0355A74CDCCE79287B38B9C4278E39C * value) { ___activeEventSystem_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___activeEventSystem_0), (void*)value); } inline static int32_t get_offset_of_sendEvents_1() { return static_cast(offsetof(UIToolkitOverrideConfig_tB5087C80F45EF6D94B1BF60B8DAE6AE8D78F1051, ___sendEvents_1)); } inline bool get_sendEvents_1() const { return ___sendEvents_1; } inline bool* get_address_of_sendEvents_1() { return &___sendEvents_1; } inline void set_sendEvents_1(bool value) { ___sendEvents_1 = value; } inline static int32_t get_offset_of_createPanelGameObjectsOnStart_2() { return static_cast(offsetof(UIToolkitOverrideConfig_tB5087C80F45EF6D94B1BF60B8DAE6AE8D78F1051, ___createPanelGameObjectsOnStart_2)); } inline bool get_createPanelGameObjectsOnStart_2() const { return ___createPanelGameObjectsOnStart_2; } inline bool* get_address_of_createPanelGameObjectsOnStart_2() { return &___createPanelGameObjectsOnStart_2; } inline void set_createPanelGameObjectsOnStart_2(bool value) { ___createPanelGameObjectsOnStart_2 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.EventSystems.EventSystem/UIToolkitOverrideConfig struct UIToolkitOverrideConfig_tB5087C80F45EF6D94B1BF60B8DAE6AE8D78F1051_marshaled_pinvoke { EventSystem_t5DC458FCD0355A74CDCCE79287B38B9C4278E39C * ___activeEventSystem_0; int32_t ___sendEvents_1; int32_t ___createPanelGameObjectsOnStart_2; }; // Native definition for COM marshalling of UnityEngine.EventSystems.EventSystem/UIToolkitOverrideConfig struct UIToolkitOverrideConfig_tB5087C80F45EF6D94B1BF60B8DAE6AE8D78F1051_marshaled_com { EventSystem_t5DC458FCD0355A74CDCCE79287B38B9C4278E39C * ___activeEventSystem_0; int32_t ___sendEvents_1; int32_t ___createPanelGameObjectsOnStart_2; }; // UnityEngine.ParticleSystem/EmissionModule struct EmissionModule_tE778D94F4003A96ECE3D8B670DDEDD2D557DE52D { public: // UnityEngine.ParticleSystem UnityEngine.ParticleSystem/EmissionModule::m_ParticleSystem ParticleSystem_t2F526CCDBD3512879B3FCBE04BCAB20D7B4F391E * ___m_ParticleSystem_0; public: inline static int32_t get_offset_of_m_ParticleSystem_0() { return static_cast(offsetof(EmissionModule_tE778D94F4003A96ECE3D8B670DDEDD2D557DE52D, ___m_ParticleSystem_0)); } inline ParticleSystem_t2F526CCDBD3512879B3FCBE04BCAB20D7B4F391E * get_m_ParticleSystem_0() const { return ___m_ParticleSystem_0; } inline ParticleSystem_t2F526CCDBD3512879B3FCBE04BCAB20D7B4F391E ** get_address_of_m_ParticleSystem_0() { return &___m_ParticleSystem_0; } inline void set_m_ParticleSystem_0(ParticleSystem_t2F526CCDBD3512879B3FCBE04BCAB20D7B4F391E * value) { ___m_ParticleSystem_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ParticleSystem_0), (void*)value); } }; // Native definition for P/Invoke marshalling of UnityEngine.ParticleSystem/EmissionModule struct EmissionModule_tE778D94F4003A96ECE3D8B670DDEDD2D557DE52D_marshaled_pinvoke { ParticleSystem_t2F526CCDBD3512879B3FCBE04BCAB20D7B4F391E * ___m_ParticleSystem_0; }; // Native definition for COM marshalling of UnityEngine.ParticleSystem/EmissionModule struct EmissionModule_tE778D94F4003A96ECE3D8B670DDEDD2D557DE52D_marshaled_com { ParticleSystem_t2F526CCDBD3512879B3FCBE04BCAB20D7B4F391E * ___m_ParticleSystem_0; }; // UnityEngine.ParticleSystem/MainModule struct MainModule_t671F49558CB1A3CFAAD637A7927C076EC2E61F0B { public: // UnityEngine.ParticleSystem UnityEngine.ParticleSystem/MainModule::m_ParticleSystem ParticleSystem_t2F526CCDBD3512879B3FCBE04BCAB20D7B4F391E * ___m_ParticleSystem_0; public: inline static int32_t get_offset_of_m_ParticleSystem_0() { return static_cast(offsetof(MainModule_t671F49558CB1A3CFAAD637A7927C076EC2E61F0B, ___m_ParticleSystem_0)); } inline ParticleSystem_t2F526CCDBD3512879B3FCBE04BCAB20D7B4F391E * get_m_ParticleSystem_0() const { return ___m_ParticleSystem_0; } inline ParticleSystem_t2F526CCDBD3512879B3FCBE04BCAB20D7B4F391E ** get_address_of_m_ParticleSystem_0() { return &___m_ParticleSystem_0; } inline void set_m_ParticleSystem_0(ParticleSystem_t2F526CCDBD3512879B3FCBE04BCAB20D7B4F391E * value) { ___m_ParticleSystem_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ParticleSystem_0), (void*)value); } }; // Native definition for P/Invoke marshalling of UnityEngine.ParticleSystem/MainModule struct MainModule_t671F49558CB1A3CFAAD637A7927C076EC2E61F0B_marshaled_pinvoke { ParticleSystem_t2F526CCDBD3512879B3FCBE04BCAB20D7B4F391E * ___m_ParticleSystem_0; }; // Native definition for COM marshalling of UnityEngine.ParticleSystem/MainModule struct MainModule_t671F49558CB1A3CFAAD637A7927C076EC2E61F0B_marshaled_com { ParticleSystem_t2F526CCDBD3512879B3FCBE04BCAB20D7B4F391E * ___m_ParticleSystem_0; }; // 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.Asn1Set struct Asn1Set_t9EBB628AB5FBF1FCC866DC7AEA45C59A72698F49 : public Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC { public: // System.Collections.IList BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Set::_set RuntimeObject* ____set_2; public: inline static int32_t get_offset_of__set_2() { return static_cast(offsetof(Asn1Set_t9EBB628AB5FBF1FCC866DC7AEA45C59A72698F49, ____set_2)); } inline RuntimeObject* get__set_2() const { return ____set_2; } inline RuntimeObject** get_address_of__set_2() { return &____set_2; } inline void set__set_2(RuntimeObject* value) { ____set_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____set_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; } }; // BestHTTP.Extensions.BufferPoolMemoryStream struct BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B : public Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB { public: // System.Boolean BestHTTP.Extensions.BufferPoolMemoryStream::canWrite bool ___canWrite_5; // System.Boolean BestHTTP.Extensions.BufferPoolMemoryStream::allowGetBuffer bool ___allowGetBuffer_6; // System.Int32 BestHTTP.Extensions.BufferPoolMemoryStream::capacity int32_t ___capacity_7; // System.Int32 BestHTTP.Extensions.BufferPoolMemoryStream::length int32_t ___length_8; // System.Byte[] BestHTTP.Extensions.BufferPoolMemoryStream::internalBuffer ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___internalBuffer_9; // System.Int32 BestHTTP.Extensions.BufferPoolMemoryStream::initialIndex int32_t ___initialIndex_10; // System.Boolean BestHTTP.Extensions.BufferPoolMemoryStream::expandable bool ___expandable_11; // System.Boolean BestHTTP.Extensions.BufferPoolMemoryStream::streamClosed bool ___streamClosed_12; // System.Int32 BestHTTP.Extensions.BufferPoolMemoryStream::position int32_t ___position_13; // System.Int32 BestHTTP.Extensions.BufferPoolMemoryStream::dirty_bytes int32_t ___dirty_bytes_14; public: inline static int32_t get_offset_of_canWrite_5() { return static_cast(offsetof(BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B, ___canWrite_5)); } inline bool get_canWrite_5() const { return ___canWrite_5; } inline bool* get_address_of_canWrite_5() { return &___canWrite_5; } inline void set_canWrite_5(bool value) { ___canWrite_5 = value; } inline static int32_t get_offset_of_allowGetBuffer_6() { return static_cast(offsetof(BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B, ___allowGetBuffer_6)); } inline bool get_allowGetBuffer_6() const { return ___allowGetBuffer_6; } inline bool* get_address_of_allowGetBuffer_6() { return &___allowGetBuffer_6; } inline void set_allowGetBuffer_6(bool value) { ___allowGetBuffer_6 = value; } inline static int32_t get_offset_of_capacity_7() { return static_cast(offsetof(BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B, ___capacity_7)); } inline int32_t get_capacity_7() const { return ___capacity_7; } inline int32_t* get_address_of_capacity_7() { return &___capacity_7; } inline void set_capacity_7(int32_t value) { ___capacity_7 = value; } inline static int32_t get_offset_of_length_8() { return static_cast(offsetof(BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B, ___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_internalBuffer_9() { return static_cast(offsetof(BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B, ___internalBuffer_9)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_internalBuffer_9() const { return ___internalBuffer_9; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_internalBuffer_9() { return &___internalBuffer_9; } inline void set_internalBuffer_9(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___internalBuffer_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___internalBuffer_9), (void*)value); } inline static int32_t get_offset_of_initialIndex_10() { return static_cast(offsetof(BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B, ___initialIndex_10)); } inline int32_t get_initialIndex_10() const { return ___initialIndex_10; } inline int32_t* get_address_of_initialIndex_10() { return &___initialIndex_10; } inline void set_initialIndex_10(int32_t value) { ___initialIndex_10 = value; } inline static int32_t get_offset_of_expandable_11() { return static_cast(offsetof(BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B, ___expandable_11)); } inline bool get_expandable_11() const { return ___expandable_11; } inline bool* get_address_of_expandable_11() { return &___expandable_11; } inline void set_expandable_11(bool value) { ___expandable_11 = value; } inline static int32_t get_offset_of_streamClosed_12() { return static_cast(offsetof(BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B, ___streamClosed_12)); } inline bool get_streamClosed_12() const { return ___streamClosed_12; } inline bool* get_address_of_streamClosed_12() { return &___streamClosed_12; } inline void set_streamClosed_12(bool value) { ___streamClosed_12 = value; } inline static int32_t get_offset_of_position_13() { return static_cast(offsetof(BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B, ___position_13)); } inline int32_t get_position_13() const { return ___position_13; } inline int32_t* get_address_of_position_13() { return &___position_13; } inline void set_position_13(int32_t value) { ___position_13 = value; } inline static int32_t get_offset_of_dirty_bytes_14() { return static_cast(offsetof(BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B, ___dirty_bytes_14)); } inline int32_t get_dirty_bytes_14() const { return ___dirty_bytes_14; } inline int32_t* get_address_of_dirty_bytes_14() { return &___dirty_bytes_14; } inline void set_dirty_bytes_14(int32_t value) { ___dirty_bytes_14 = value; } }; // UnityEngine.UI.ColorBlock struct ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 { public: // UnityEngine.Color UnityEngine.UI.ColorBlock::m_NormalColor Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___m_NormalColor_0; // UnityEngine.Color UnityEngine.UI.ColorBlock::m_HighlightedColor Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___m_HighlightedColor_1; // UnityEngine.Color UnityEngine.UI.ColorBlock::m_PressedColor Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___m_PressedColor_2; // UnityEngine.Color UnityEngine.UI.ColorBlock::m_SelectedColor Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___m_SelectedColor_3; // UnityEngine.Color UnityEngine.UI.ColorBlock::m_DisabledColor Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___m_DisabledColor_4; // System.Single UnityEngine.UI.ColorBlock::m_ColorMultiplier float ___m_ColorMultiplier_5; // System.Single UnityEngine.UI.ColorBlock::m_FadeDuration float ___m_FadeDuration_6; public: inline static int32_t get_offset_of_m_NormalColor_0() { return static_cast(offsetof(ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955, ___m_NormalColor_0)); } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_m_NormalColor_0() const { return ___m_NormalColor_0; } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_m_NormalColor_0() { return &___m_NormalColor_0; } inline void set_m_NormalColor_0(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value) { ___m_NormalColor_0 = value; } inline static int32_t get_offset_of_m_HighlightedColor_1() { return static_cast(offsetof(ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955, ___m_HighlightedColor_1)); } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_m_HighlightedColor_1() const { return ___m_HighlightedColor_1; } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_m_HighlightedColor_1() { return &___m_HighlightedColor_1; } inline void set_m_HighlightedColor_1(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value) { ___m_HighlightedColor_1 = value; } inline static int32_t get_offset_of_m_PressedColor_2() { return static_cast(offsetof(ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955, ___m_PressedColor_2)); } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_m_PressedColor_2() const { return ___m_PressedColor_2; } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_m_PressedColor_2() { return &___m_PressedColor_2; } inline void set_m_PressedColor_2(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value) { ___m_PressedColor_2 = value; } inline static int32_t get_offset_of_m_SelectedColor_3() { return static_cast(offsetof(ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955, ___m_SelectedColor_3)); } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_m_SelectedColor_3() const { return ___m_SelectedColor_3; } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_m_SelectedColor_3() { return &___m_SelectedColor_3; } inline void set_m_SelectedColor_3(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value) { ___m_SelectedColor_3 = value; } inline static int32_t get_offset_of_m_DisabledColor_4() { return static_cast(offsetof(ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955, ___m_DisabledColor_4)); } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_m_DisabledColor_4() const { return ___m_DisabledColor_4; } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_m_DisabledColor_4() { return &___m_DisabledColor_4; } inline void set_m_DisabledColor_4(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value) { ___m_DisabledColor_4 = value; } inline static int32_t get_offset_of_m_ColorMultiplier_5() { return static_cast(offsetof(ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955, ___m_ColorMultiplier_5)); } inline float get_m_ColorMultiplier_5() const { return ___m_ColorMultiplier_5; } inline float* get_address_of_m_ColorMultiplier_5() { return &___m_ColorMultiplier_5; } inline void set_m_ColorMultiplier_5(float value) { ___m_ColorMultiplier_5 = value; } inline static int32_t get_offset_of_m_FadeDuration_6() { return static_cast(offsetof(ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955, ___m_FadeDuration_6)); } inline float get_m_FadeDuration_6() const { return ___m_FadeDuration_6; } inline float* get_address_of_m_FadeDuration_6() { return &___m_FadeDuration_6; } inline void set_m_FadeDuration_6(float value) { ___m_FadeDuration_6 = value; } }; struct ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955_StaticFields { public: // UnityEngine.UI.ColorBlock UnityEngine.UI.ColorBlock::defaultColorBlock ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 ___defaultColorBlock_7; public: inline static int32_t get_offset_of_defaultColorBlock_7() { return static_cast(offsetof(ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955_StaticFields, ___defaultColorBlock_7)); } inline ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 get_defaultColorBlock_7() const { return ___defaultColorBlock_7; } inline ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 * get_address_of_defaultColorBlock_7() { return &___defaultColorBlock_7; } inline void set_defaultColorBlock_7(ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 value) { ___defaultColorBlock_7 = value; } }; // BestHTTP.Decompression.Zlib.CompressionLevel struct CompressionLevel_tACCC65ECBF70584F2B1C3F4ED9BC5E40268B5C17 { public: // System.Int32 BestHTTP.Decompression.Zlib.CompressionLevel::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(CompressionLevel_tACCC65ECBF70584F2B1C3F4ED9BC5E40268B5C17, ___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.Decompression.Zlib.CompressionMode struct CompressionMode_t982857C119B22F79EE435ECE70694AB0BF32B3CA { public: // System.Int32 BestHTTP.Decompression.Zlib.CompressionMode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(CompressionMode_t982857C119B22F79EE435ECE70694AB0BF32B3CA, ___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.Decompression.Zlib.DeflateStream struct DeflateStream_t6D255105218D9D7440C9121FC55176D0C8D96B3B : public Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB { public: // BestHTTP.Decompression.Zlib.ZlibBaseStream BestHTTP.Decompression.Zlib.DeflateStream::_baseStream ZlibBaseStream_t84173E4AB4AB9AD1558AE40ED9D301D847C30188 * ____baseStream_5; // System.IO.Stream BestHTTP.Decompression.Zlib.DeflateStream::_innerStream Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ____innerStream_6; // System.Boolean BestHTTP.Decompression.Zlib.DeflateStream::_disposed bool ____disposed_7; public: inline static int32_t get_offset_of__baseStream_5() { return static_cast(offsetof(DeflateStream_t6D255105218D9D7440C9121FC55176D0C8D96B3B, ____baseStream_5)); } inline ZlibBaseStream_t84173E4AB4AB9AD1558AE40ED9D301D847C30188 * get__baseStream_5() const { return ____baseStream_5; } inline ZlibBaseStream_t84173E4AB4AB9AD1558AE40ED9D301D847C30188 ** get_address_of__baseStream_5() { return &____baseStream_5; } inline void set__baseStream_5(ZlibBaseStream_t84173E4AB4AB9AD1558AE40ED9D301D847C30188 * value) { ____baseStream_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____baseStream_5), (void*)value); } inline static int32_t get_offset_of__innerStream_6() { return static_cast(offsetof(DeflateStream_t6D255105218D9D7440C9121FC55176D0C8D96B3B, ____innerStream_6)); } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get__innerStream_6() const { return ____innerStream_6; } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of__innerStream_6() { return &____innerStream_6; } inline void set__innerStream_6(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value) { ____innerStream_6 = value; Il2CppCodeGenWriteBarrier((void**)(&____innerStream_6), (void*)value); } inline static int32_t get_offset_of__disposed_7() { return static_cast(offsetof(DeflateStream_t6D255105218D9D7440C9121FC55176D0C8D96B3B, ____disposed_7)); } inline bool get__disposed_7() const { return ____disposed_7; } inline bool* get_address_of__disposed_7() { return &____disposed_7; } inline void set__disposed_7(bool value) { ____disposed_7 = 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.DsaPrivateKeyParameters struct DsaPrivateKeyParameters_tA17C08FE231F8805F46FD353E879F63AB5BFAC98 : public DsaKeyParameters_tE89A1BA6A75F13F2650AB850C554D72740E99A81 { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.DsaPrivateKeyParameters::x BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___x_2; public: inline static int32_t get_offset_of_x_2() { return static_cast(offsetof(DsaPrivateKeyParameters_tA17C08FE231F8805F46FD353E879F63AB5BFAC98, ___x_2)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_x_2() const { return ___x_2; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_x_2() { return &___x_2; } inline void set_x_2(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___x_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___x_2), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.DsaPublicKeyParameters struct DsaPublicKeyParameters_t2C9F1F39FCA3C0439000593CFF3F9AC89B9C3BA9 : public DsaKeyParameters_tE89A1BA6A75F13F2650AB850C554D72740E99A81 { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.DsaPublicKeyParameters::y BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___y_2; public: inline static int32_t get_offset_of_y_2() { return static_cast(offsetof(DsaPublicKeyParameters_t2C9F1F39FCA3C0439000593CFF3F9AC89B9C3BA9, ___y_2)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_y_2() const { return ___y_2; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_y_2() { return &___y_2; } inline void set_y_2(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___y_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___y_2), (void*)value); } }; // 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); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.EncryptionScheme struct EncryptionScheme_tF6D3E1C9A31370065D9A5D693F204C4EA218F757 : public AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 { public: public: }; // 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.SecureProtocol.Org.BouncyCastle.Utilities.IO.FilterStream struct FilterStream_tC8A502163572BCE3126054009FCA819DBBBD511A : public Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB { public: // System.IO.Stream BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.IO.FilterStream::s Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___s_5; public: inline static int32_t get_offset_of_s_5() { return static_cast(offsetof(FilterStream_tC8A502163572BCE3126054009FCA819DBBBD511A, ___s_5)); } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_s_5() const { return ___s_5; } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_s_5() { return &___s_5; } inline void set_s_5(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value) { ___s_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_5), (void*)value); } }; // BestHTTP.Decompression.Zlib.FlushType struct FlushType_t3B2A005B97431886F7418469BB8AAD3D6C6D9B45 { public: // System.Int32 BestHTTP.Decompression.Zlib.FlushType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(FlushType_t3B2A005B97431886F7418469BB8AAD3D6C6D9B45, ___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.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; } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.KeyDerivationFunc struct KeyDerivationFunc_t77081A2881F6F03B2B805E840C798E3AC7ACA213 : public AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 { public: public: }; // 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; } }; // 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; }; // 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; } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs.Pkcs10CertificationRequest struct Pkcs10CertificationRequest_t83CC34C032AFF4D41FCB58DBCC277BBE7980A996 : public CertificationRequest_tF7C5762BE0EFC9D9F716ECC527DE8C9CF152DFCB { public: public: }; struct Pkcs10CertificationRequest_t83CC34C032AFF4D41FCB58DBCC277BBE7980A996_StaticFields { public: // System.Collections.IDictionary BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs.Pkcs10CertificationRequest::algorithms RuntimeObject* ___algorithms_5; // System.Collections.IDictionary BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs.Pkcs10CertificationRequest::exParams RuntimeObject* ___exParams_6; // System.Collections.IDictionary BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs.Pkcs10CertificationRequest::keyAlgorithms RuntimeObject* ___keyAlgorithms_7; // System.Collections.IDictionary BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs.Pkcs10CertificationRequest::oids RuntimeObject* ___oids_8; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections.ISet BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs.Pkcs10CertificationRequest::noParams RuntimeObject* ___noParams_9; public: inline static int32_t get_offset_of_algorithms_5() { return static_cast(offsetof(Pkcs10CertificationRequest_t83CC34C032AFF4D41FCB58DBCC277BBE7980A996_StaticFields, ___algorithms_5)); } inline RuntimeObject* get_algorithms_5() const { return ___algorithms_5; } inline RuntimeObject** get_address_of_algorithms_5() { return &___algorithms_5; } inline void set_algorithms_5(RuntimeObject* value) { ___algorithms_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___algorithms_5), (void*)value); } inline static int32_t get_offset_of_exParams_6() { return static_cast(offsetof(Pkcs10CertificationRequest_t83CC34C032AFF4D41FCB58DBCC277BBE7980A996_StaticFields, ___exParams_6)); } inline RuntimeObject* get_exParams_6() const { return ___exParams_6; } inline RuntimeObject** get_address_of_exParams_6() { return &___exParams_6; } inline void set_exParams_6(RuntimeObject* value) { ___exParams_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___exParams_6), (void*)value); } inline static int32_t get_offset_of_keyAlgorithms_7() { return static_cast(offsetof(Pkcs10CertificationRequest_t83CC34C032AFF4D41FCB58DBCC277BBE7980A996_StaticFields, ___keyAlgorithms_7)); } inline RuntimeObject* get_keyAlgorithms_7() const { return ___keyAlgorithms_7; } inline RuntimeObject** get_address_of_keyAlgorithms_7() { return &___keyAlgorithms_7; } inline void set_keyAlgorithms_7(RuntimeObject* value) { ___keyAlgorithms_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keyAlgorithms_7), (void*)value); } inline static int32_t get_offset_of_oids_8() { return static_cast(offsetof(Pkcs10CertificationRequest_t83CC34C032AFF4D41FCB58DBCC277BBE7980A996_StaticFields, ___oids_8)); } inline RuntimeObject* get_oids_8() const { return ___oids_8; } inline RuntimeObject** get_address_of_oids_8() { return &___oids_8; } inline void set_oids_8(RuntimeObject* value) { ___oids_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___oids_8), (void*)value); } inline static int32_t get_offset_of_noParams_9() { return static_cast(offsetof(Pkcs10CertificationRequest_t83CC34C032AFF4D41FCB58DBCC277BBE7980A996_StaticFields, ___noParams_9)); } inline RuntimeObject* get_noParams_9() const { return ___noParams_9; } inline RuntimeObject** get_address_of_noParams_9() { return &___noParams_9; } inline void set_noParams_9(RuntimeObject* value) { ___noParams_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___noParams_9), (void*)value); } }; // UnityEngine.Ray struct Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6 { public: // UnityEngine.Vector3 UnityEngine.Ray::m_Origin Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_Origin_0; // UnityEngine.Vector3 UnityEngine.Ray::m_Direction Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_Direction_1; public: inline static int32_t get_offset_of_m_Origin_0() { return static_cast(offsetof(Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6, ___m_Origin_0)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_Origin_0() const { return ___m_Origin_0; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_Origin_0() { return &___m_Origin_0; } inline void set_m_Origin_0(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___m_Origin_0 = value; } inline static int32_t get_offset_of_m_Direction_1() { return static_cast(offsetof(Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6, ___m_Direction_1)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_Direction_1() const { return ___m_Direction_1; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_Direction_1() { return &___m_Direction_1; } inline void set_m_Direction_1(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___m_Direction_1 = value; } }; // UnityEngine.RaycastHit struct RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89 { public: // UnityEngine.Vector3 UnityEngine.RaycastHit::m_Point Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_Point_0; // UnityEngine.Vector3 UnityEngine.RaycastHit::m_Normal Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_Normal_1; // System.UInt32 UnityEngine.RaycastHit::m_FaceID uint32_t ___m_FaceID_2; // System.Single UnityEngine.RaycastHit::m_Distance float ___m_Distance_3; // UnityEngine.Vector2 UnityEngine.RaycastHit::m_UV Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_UV_4; // System.Int32 UnityEngine.RaycastHit::m_Collider int32_t ___m_Collider_5; public: inline static int32_t get_offset_of_m_Point_0() { return static_cast(offsetof(RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89, ___m_Point_0)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_Point_0() const { return ___m_Point_0; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_Point_0() { return &___m_Point_0; } inline void set_m_Point_0(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___m_Point_0 = value; } inline static int32_t get_offset_of_m_Normal_1() { return static_cast(offsetof(RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89, ___m_Normal_1)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_Normal_1() const { return ___m_Normal_1; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_Normal_1() { return &___m_Normal_1; } inline void set_m_Normal_1(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___m_Normal_1 = value; } inline static int32_t get_offset_of_m_FaceID_2() { return static_cast(offsetof(RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89, ___m_FaceID_2)); } inline uint32_t get_m_FaceID_2() const { return ___m_FaceID_2; } inline uint32_t* get_address_of_m_FaceID_2() { return &___m_FaceID_2; } inline void set_m_FaceID_2(uint32_t value) { ___m_FaceID_2 = value; } inline static int32_t get_offset_of_m_Distance_3() { return static_cast(offsetof(RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89, ___m_Distance_3)); } inline float get_m_Distance_3() const { return ___m_Distance_3; } inline float* get_address_of_m_Distance_3() { return &___m_Distance_3; } inline void set_m_Distance_3(float value) { ___m_Distance_3 = value; } inline static int32_t get_offset_of_m_UV_4() { return static_cast(offsetof(RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89, ___m_UV_4)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_m_UV_4() const { return ___m_UV_4; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_m_UV_4() { return &___m_UV_4; } inline void set_m_UV_4(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___m_UV_4 = value; } inline static int32_t get_offset_of_m_Collider_5() { return static_cast(offsetof(RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89, ___m_Collider_5)); } inline int32_t get_m_Collider_5() const { return ___m_Collider_5; } inline int32_t* get_address_of_m_Collider_5() { return &___m_Collider_5; } inline void set_m_Collider_5(int32_t value) { ___m_Collider_5 = value; } }; // UnityEngine.EventSystems.RaycastResult struct RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE { public: // UnityEngine.GameObject UnityEngine.EventSystems.RaycastResult::m_GameObject GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___m_GameObject_0; // UnityEngine.EventSystems.BaseRaycaster UnityEngine.EventSystems.RaycastResult::module BaseRaycaster_tBC0FB2CBE6D3D40991EC20F689C43F76AD82A876 * ___module_1; // System.Single UnityEngine.EventSystems.RaycastResult::distance float ___distance_2; // System.Single UnityEngine.EventSystems.RaycastResult::index float ___index_3; // System.Int32 UnityEngine.EventSystems.RaycastResult::depth int32_t ___depth_4; // System.Int32 UnityEngine.EventSystems.RaycastResult::sortingLayer int32_t ___sortingLayer_5; // System.Int32 UnityEngine.EventSystems.RaycastResult::sortingOrder int32_t ___sortingOrder_6; // UnityEngine.Vector3 UnityEngine.EventSystems.RaycastResult::worldPosition Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___worldPosition_7; // UnityEngine.Vector3 UnityEngine.EventSystems.RaycastResult::worldNormal Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___worldNormal_8; // UnityEngine.Vector2 UnityEngine.EventSystems.RaycastResult::screenPosition Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___screenPosition_9; // System.Int32 UnityEngine.EventSystems.RaycastResult::displayIndex int32_t ___displayIndex_10; public: inline static int32_t get_offset_of_m_GameObject_0() { return static_cast(offsetof(RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE, ___m_GameObject_0)); } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_m_GameObject_0() const { return ___m_GameObject_0; } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_m_GameObject_0() { return &___m_GameObject_0; } inline void set_m_GameObject_0(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value) { ___m_GameObject_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_GameObject_0), (void*)value); } inline static int32_t get_offset_of_module_1() { return static_cast(offsetof(RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE, ___module_1)); } inline BaseRaycaster_tBC0FB2CBE6D3D40991EC20F689C43F76AD82A876 * get_module_1() const { return ___module_1; } inline BaseRaycaster_tBC0FB2CBE6D3D40991EC20F689C43F76AD82A876 ** get_address_of_module_1() { return &___module_1; } inline void set_module_1(BaseRaycaster_tBC0FB2CBE6D3D40991EC20F689C43F76AD82A876 * value) { ___module_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___module_1), (void*)value); } inline static int32_t get_offset_of_distance_2() { return static_cast(offsetof(RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE, ___distance_2)); } inline float get_distance_2() const { return ___distance_2; } inline float* get_address_of_distance_2() { return &___distance_2; } inline void set_distance_2(float value) { ___distance_2 = value; } inline static int32_t get_offset_of_index_3() { return static_cast(offsetof(RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE, ___index_3)); } inline float get_index_3() const { return ___index_3; } inline float* get_address_of_index_3() { return &___index_3; } inline void set_index_3(float value) { ___index_3 = value; } inline static int32_t get_offset_of_depth_4() { return static_cast(offsetof(RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE, ___depth_4)); } inline int32_t get_depth_4() const { return ___depth_4; } inline int32_t* get_address_of_depth_4() { return &___depth_4; } inline void set_depth_4(int32_t value) { ___depth_4 = value; } inline static int32_t get_offset_of_sortingLayer_5() { return static_cast(offsetof(RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE, ___sortingLayer_5)); } inline int32_t get_sortingLayer_5() const { return ___sortingLayer_5; } inline int32_t* get_address_of_sortingLayer_5() { return &___sortingLayer_5; } inline void set_sortingLayer_5(int32_t value) { ___sortingLayer_5 = value; } inline static int32_t get_offset_of_sortingOrder_6() { return static_cast(offsetof(RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE, ___sortingOrder_6)); } inline int32_t get_sortingOrder_6() const { return ___sortingOrder_6; } inline int32_t* get_address_of_sortingOrder_6() { return &___sortingOrder_6; } inline void set_sortingOrder_6(int32_t value) { ___sortingOrder_6 = value; } inline static int32_t get_offset_of_worldPosition_7() { return static_cast(offsetof(RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE, ___worldPosition_7)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_worldPosition_7() const { return ___worldPosition_7; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_worldPosition_7() { return &___worldPosition_7; } inline void set_worldPosition_7(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___worldPosition_7 = value; } inline static int32_t get_offset_of_worldNormal_8() { return static_cast(offsetof(RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE, ___worldNormal_8)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_worldNormal_8() const { return ___worldNormal_8; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_worldNormal_8() { return &___worldNormal_8; } inline void set_worldNormal_8(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___worldNormal_8 = value; } inline static int32_t get_offset_of_screenPosition_9() { return static_cast(offsetof(RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE, ___screenPosition_9)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_screenPosition_9() const { return ___screenPosition_9; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_screenPosition_9() { return &___screenPosition_9; } inline void set_screenPosition_9(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___screenPosition_9 = value; } inline static int32_t get_offset_of_displayIndex_10() { return static_cast(offsetof(RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE, ___displayIndex_10)); } inline int32_t get_displayIndex_10() const { return ___displayIndex_10; } inline int32_t* get_address_of_displayIndex_10() { return &___displayIndex_10; } inline void set_displayIndex_10(int32_t value) { ___displayIndex_10 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.EventSystems.RaycastResult struct RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE_marshaled_pinvoke { GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___m_GameObject_0; BaseRaycaster_tBC0FB2CBE6D3D40991EC20F689C43F76AD82A876 * ___module_1; float ___distance_2; float ___index_3; int32_t ___depth_4; int32_t ___sortingLayer_5; int32_t ___sortingOrder_6; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___worldPosition_7; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___worldNormal_8; Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___screenPosition_9; int32_t ___displayIndex_10; }; // Native definition for COM marshalling of UnityEngine.EventSystems.RaycastResult struct RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE_marshaled_com { GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___m_GameObject_0; BaseRaycaster_tBC0FB2CBE6D3D40991EC20F689C43F76AD82A876 * ___module_1; float ___distance_2; float ___index_3; int32_t ___depth_4; int32_t ___sortingLayer_5; int32_t ___sortingOrder_6; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___worldPosition_7; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___worldNormal_8; Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___screenPosition_9; int32_t ___displayIndex_10; }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.RsaPrivateCrtKeyParameters struct RsaPrivateCrtKeyParameters_tA9185E010DB8134822436B7526FAAEA7708FFCA6 : public RsaKeyParameters_t5CEAA6F9B92D2B6F1225DFF7C089B43146012801 { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.RsaPrivateCrtKeyParameters::e BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___e_4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.RsaPrivateCrtKeyParameters::p BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___p_5; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.RsaPrivateCrtKeyParameters::q BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___q_6; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.RsaPrivateCrtKeyParameters::dP BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___dP_7; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.RsaPrivateCrtKeyParameters::dQ BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___dQ_8; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.RsaPrivateCrtKeyParameters::qInv BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___qInv_9; public: inline static int32_t get_offset_of_e_4() { return static_cast(offsetof(RsaPrivateCrtKeyParameters_tA9185E010DB8134822436B7526FAAEA7708FFCA6, ___e_4)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_e_4() const { return ___e_4; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_e_4() { return &___e_4; } inline void set_e_4(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___e_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___e_4), (void*)value); } inline static int32_t get_offset_of_p_5() { return static_cast(offsetof(RsaPrivateCrtKeyParameters_tA9185E010DB8134822436B7526FAAEA7708FFCA6, ___p_5)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_p_5() const { return ___p_5; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_p_5() { return &___p_5; } inline void set_p_5(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___p_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___p_5), (void*)value); } inline static int32_t get_offset_of_q_6() { return static_cast(offsetof(RsaPrivateCrtKeyParameters_tA9185E010DB8134822436B7526FAAEA7708FFCA6, ___q_6)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_q_6() const { return ___q_6; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_q_6() { return &___q_6; } inline void set_q_6(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___q_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___q_6), (void*)value); } inline static int32_t get_offset_of_dP_7() { return static_cast(offsetof(RsaPrivateCrtKeyParameters_tA9185E010DB8134822436B7526FAAEA7708FFCA6, ___dP_7)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_dP_7() const { return ___dP_7; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_dP_7() { return &___dP_7; } inline void set_dP_7(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___dP_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___dP_7), (void*)value); } inline static int32_t get_offset_of_dQ_8() { return static_cast(offsetof(RsaPrivateCrtKeyParameters_tA9185E010DB8134822436B7526FAAEA7708FFCA6, ___dQ_8)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_dQ_8() const { return ___dQ_8; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_dQ_8() { return &___dQ_8; } inline void set_dQ_8(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___dQ_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___dQ_8), (void*)value); } inline static int32_t get_offset_of_qInv_9() { return static_cast(offsetof(RsaPrivateCrtKeyParameters_tA9185E010DB8134822436B7526FAAEA7708FFCA6, ___qInv_9)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_qInv_9() const { return ___qInv_9; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_qInv_9() { return &___qInv_9; } inline void set_qInv_9(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___qInv_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___qInv_9), (void*)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.StringComparison struct StringComparison_tCC9F72B9B1E2C3C6D2566DD0D3A61E1621048998 { public: // System.Int32 System.StringComparison::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(StringComparison_tCC9F72B9B1E2C3C6D2566DD0D3A61E1621048998, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // 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.WebSocket.Frames.WebSocketFrameTypes struct WebSocketFrameTypes_t5E155EE97383991A3D431DB778551B504FAEDDA7 { public: // System.Byte BestHTTP.WebSocket.Frames.WebSocketFrameTypes::value__ uint8_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(WebSocketFrameTypes_t5E155EE97383991A3D431DB778551B504FAEDDA7, ___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.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate struct X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3 : public X509ExtensionBase_t91B691B9E834F516C9CE847F2B900B019A37CCE7 { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeCertificate BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate::cert AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 * ___cert_0; // System.DateTime BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate::notBefore DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___notBefore_1; // System.DateTime BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate::notAfter DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___notAfter_2; public: inline static int32_t get_offset_of_cert_0() { return static_cast(offsetof(X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3, ___cert_0)); } inline AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 * get_cert_0() const { return ___cert_0; } inline AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 ** get_address_of_cert_0() { return &___cert_0; } inline void set_cert_0(AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 * value) { ___cert_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___cert_0), (void*)value); } inline static int32_t get_offset_of_notBefore_1() { return static_cast(offsetof(X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3, ___notBefore_1)); } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_notBefore_1() const { return ___notBefore_1; } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_notBefore_1() { return &___notBefore_1; } inline void set_notBefore_1(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value) { ___notBefore_1 = value; } inline static int32_t get_offset_of_notAfter_2() { return static_cast(offsetof(X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3, ___notAfter_2)); } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_notAfter_2() const { return ___notAfter_2; } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_notAfter_2() { return &___notAfter_2; } inline void set_notAfter_2(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value) { ___notAfter_2 = value; } }; // UnityStandardAssets.Cameras.AbstractTargetFollower/UpdateType struct UpdateType_t2F5DA5F97CCB40A26CFF5A22A048F3411C046016 { public: // System.Int32 UnityStandardAssets.Cameras.AbstractTargetFollower/UpdateType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(UpdateType_t2F5DA5F97CCB40A26CFF5A22A048F3411C046016, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.UI.Button/ButtonClickedEvent struct ButtonClickedEvent_tE6D6D94ED8100451CF00D2BED1FB2253F37BB14F : public UnityEvent_tA0EA9BC49FD7D5185E7A238EF2E0E6F5D0EE27F4 { public: public: }; // UnityEngine.UI.GraphicRaycaster/BlockingObjects struct BlockingObjects_t3E2C52C921D1DE2C3EDB3FBC0685E319727BE810 { public: // System.Int32 UnityEngine.UI.GraphicRaycaster/BlockingObjects::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(BlockingObjects_t3E2C52C921D1DE2C3EDB3FBC0685E319727BE810, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.UI.Navigation/Mode struct Mode_t3113FDF05158BBA1DFC78D7F69E4C1D25135CB0F { public: // System.Int32 UnityEngine.UI.Navigation/Mode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Mode_t3113FDF05158BBA1DFC78D7F69E4C1D25135CB0F, ___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.SceneUtils.ParticleSceneControls/AlignMode struct AlignMode_tF0D113E79436A0DC5CF24C6BABE7EEEE0F25CF2F { public: // System.Int32 UnityStandardAssets.SceneUtils.ParticleSceneControls/AlignMode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(AlignMode_tF0D113E79436A0DC5CF24C6BABE7EEEE0F25CF2F, ___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.SceneUtils.ParticleSceneControls/Mode struct Mode_tD50EE54888EE10F71F5224B8057142A70BB88532 { public: // System.Int32 UnityStandardAssets.SceneUtils.ParticleSceneControls/Mode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Mode_tD50EE54888EE10F71F5224B8057142A70BB88532, ___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.OpenSsl.PemUtilities/PemBaseAlg struct PemBaseAlg_tD6B3B3A5B862C18C4257FEED63257A3171CCB41B { public: // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.OpenSsl.PemUtilities/PemBaseAlg::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(PemBaseAlg_tD6B3B3A5B862C18C4257FEED63257A3171CCB41B, ___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.OpenSsl.PemUtilities/PemMode struct PemMode_t18614713AE3372E7FD770296933FFE78FEB758EA { public: // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.OpenSsl.PemUtilities/PemMode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(PemMode_t18614713AE3372E7FD770296933FFE78FEB758EA, ___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.EventSystems.PointerEventData/InputButton struct InputButton_tA5409FE587ADC841D2BF80835D04074A89C59A9D { public: // System.Int32 UnityEngine.EventSystems.PointerEventData/InputButton::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(InputButton_tA5409FE587ADC841D2BF80835D04074A89C59A9D, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.UI.Selectable/Transition struct Transition_t1FC449676815A798E758D32E8BE6DC0A2511DF14 { public: // System.Int32 UnityEngine.UI.Selectable/Transition::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Transition_t1FC449676815A798E758D32E8BE6DC0A2511DF14, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.UI.Toggle/ToggleTransition struct ToggleTransition_t4D1AA30F2BA24242EB9D1DD2E3DF839F0BAC5167 { public: // System.Int32 UnityEngine.UI.Toggle/ToggleTransition::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(ToggleTransition_t4D1AA30F2BA24242EB9D1DD2E3DF839F0BAC5167, ___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.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: }; // 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.DerBmpString struct DerBmpString_tB0F02E1EFC0ACDBA2871E3A5E054DFA0D08A1444 : public DerStringBase_t6A042D217F7D84704C0AFFD73317FB834F9A2FB5 { public: // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBmpString::str String_t* ___str_2; public: inline static int32_t get_offset_of_str_2() { return static_cast(offsetof(DerBmpString_tB0F02E1EFC0ACDBA2871E3A5E054DFA0D08A1444, ___str_2)); } inline String_t* get_str_2() const { return ___str_2; } inline String_t** get_address_of_str_2() { return &___str_2; } inline void set_str_2(String_t* value) { ___str_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___str_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.DerOutputStream struct DerOutputStream_tCED4ABFA88DC5F83FB2CF5879416013FC726C305 : public FilterStream_tC8A502163572BCE3126054009FCA819DBBBD511A { public: public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerPrintableString struct DerPrintableString_t9CB2F58B355139C935A860E004FA76FD3E381205 : public DerStringBase_t6A042D217F7D84704C0AFFD73317FB834F9A2FB5 { public: // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerPrintableString::str String_t* ___str_2; public: inline static int32_t get_offset_of_str_2() { return static_cast(offsetof(DerPrintableString_t9CB2F58B355139C935A860E004FA76FD3E381205, ___str_2)); } inline String_t* get_str_2() const { return ___str_2; } inline String_t** get_address_of_str_2() { return &___str_2; } inline void set_str_2(String_t* value) { ___str_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___str_2), (void*)value); } }; // 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.DerSet struct DerSet_tD36B7728620B3A88D0C4F3AC574F77B00AD49FAA : public Asn1Set_t9EBB628AB5FBF1FCC866DC7AEA45C59A72698F49 { public: public: }; struct DerSet_tD36B7728620B3A88D0C4F3AC574F77B00AD49FAA_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerSet BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerSet::Empty DerSet_tD36B7728620B3A88D0C4F3AC574F77B00AD49FAA * ___Empty_3; public: inline static int32_t get_offset_of_Empty_3() { return static_cast(offsetof(DerSet_tD36B7728620B3A88D0C4F3AC574F77B00AD49FAA_StaticFields, ___Empty_3)); } inline DerSet_tD36B7728620B3A88D0C4F3AC574F77B00AD49FAA * get_Empty_3() const { return ___Empty_3; } inline DerSet_tD36B7728620B3A88D0C4F3AC574F77B00AD49FAA ** get_address_of_Empty_3() { return &___Empty_3; } inline void set_Empty_3(DerSet_tD36B7728620B3A88D0C4F3AC574F77B00AD49FAA * 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.GameObject struct GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A { public: public: }; // 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; } }; // 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; }; // UnityEngine.UI.Navigation struct Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A { public: // UnityEngine.UI.Navigation/Mode UnityEngine.UI.Navigation::m_Mode int32_t ___m_Mode_0; // System.Boolean UnityEngine.UI.Navigation::m_WrapAround bool ___m_WrapAround_1; // UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnUp Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnUp_2; // UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnDown Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnDown_3; // UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnLeft Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnLeft_4; // UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnRight Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnRight_5; public: inline static int32_t get_offset_of_m_Mode_0() { return static_cast(offsetof(Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A, ___m_Mode_0)); } inline int32_t get_m_Mode_0() const { return ___m_Mode_0; } inline int32_t* get_address_of_m_Mode_0() { return &___m_Mode_0; } inline void set_m_Mode_0(int32_t value) { ___m_Mode_0 = value; } inline static int32_t get_offset_of_m_WrapAround_1() { return static_cast(offsetof(Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A, ___m_WrapAround_1)); } inline bool get_m_WrapAround_1() const { return ___m_WrapAround_1; } inline bool* get_address_of_m_WrapAround_1() { return &___m_WrapAround_1; } inline void set_m_WrapAround_1(bool value) { ___m_WrapAround_1 = value; } inline static int32_t get_offset_of_m_SelectOnUp_2() { return static_cast(offsetof(Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A, ___m_SelectOnUp_2)); } inline Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * get_m_SelectOnUp_2() const { return ___m_SelectOnUp_2; } inline Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD ** get_address_of_m_SelectOnUp_2() { return &___m_SelectOnUp_2; } inline void set_m_SelectOnUp_2(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * value) { ___m_SelectOnUp_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_SelectOnUp_2), (void*)value); } inline static int32_t get_offset_of_m_SelectOnDown_3() { return static_cast(offsetof(Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A, ___m_SelectOnDown_3)); } inline Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * get_m_SelectOnDown_3() const { return ___m_SelectOnDown_3; } inline Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD ** get_address_of_m_SelectOnDown_3() { return &___m_SelectOnDown_3; } inline void set_m_SelectOnDown_3(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * value) { ___m_SelectOnDown_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_SelectOnDown_3), (void*)value); } inline static int32_t get_offset_of_m_SelectOnLeft_4() { return static_cast(offsetof(Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A, ___m_SelectOnLeft_4)); } inline Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * get_m_SelectOnLeft_4() const { return ___m_SelectOnLeft_4; } inline Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD ** get_address_of_m_SelectOnLeft_4() { return &___m_SelectOnLeft_4; } inline void set_m_SelectOnLeft_4(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * value) { ___m_SelectOnLeft_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_SelectOnLeft_4), (void*)value); } inline static int32_t get_offset_of_m_SelectOnRight_5() { return static_cast(offsetof(Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A, ___m_SelectOnRight_5)); } inline Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * get_m_SelectOnRight_5() const { return ___m_SelectOnRight_5; } inline Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD ** get_address_of_m_SelectOnRight_5() { return &___m_SelectOnRight_5; } inline void set_m_SelectOnRight_5(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * value) { ___m_SelectOnRight_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_SelectOnRight_5), (void*)value); } }; // Native definition for P/Invoke marshalling of UnityEngine.UI.Navigation struct Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A_marshaled_pinvoke { int32_t ___m_Mode_0; int32_t ___m_WrapAround_1; Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnUp_2; Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnDown_3; Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnLeft_4; Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnRight_5; }; // Native definition for COM marshalling of UnityEngine.UI.Navigation struct Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A_marshaled_com { int32_t ___m_Mode_0; int32_t ___m_WrapAround_1; Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnUp_2; Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnDown_3; Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnLeft_4; Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnRight_5; }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.IO.Pem.PemGenerationException struct PemGenerationException_t6F4706635F256B918B6C8DAF001BA8091F7113B7 : public Exception_t { public: public: }; // BestHTTP.WebSocket.Extensions.PerMessageCompression struct PerMessageCompression_tA416CBC39B57DD1A3C7CCA49B96534A62C20E31C : public RuntimeObject { public: // System.Boolean BestHTTP.WebSocket.Extensions.PerMessageCompression::k__BackingField bool ___U3CClientNoContextTakeoverU3Ek__BackingField_2; // System.Boolean BestHTTP.WebSocket.Extensions.PerMessageCompression::k__BackingField bool ___U3CServerNoContextTakeoverU3Ek__BackingField_3; // System.Int32 BestHTTP.WebSocket.Extensions.PerMessageCompression::k__BackingField int32_t ___U3CClientMaxWindowBitsU3Ek__BackingField_4; // System.Int32 BestHTTP.WebSocket.Extensions.PerMessageCompression::k__BackingField int32_t ___U3CServerMaxWindowBitsU3Ek__BackingField_5; // BestHTTP.Decompression.Zlib.CompressionLevel BestHTTP.WebSocket.Extensions.PerMessageCompression::k__BackingField int32_t ___U3CLevelU3Ek__BackingField_6; // System.Int32 BestHTTP.WebSocket.Extensions.PerMessageCompression::k__BackingField int32_t ___U3CMinimumDataLegthToCompressU3Ek__BackingField_7; // BestHTTP.Extensions.BufferPoolMemoryStream BestHTTP.WebSocket.Extensions.PerMessageCompression::compressorOutputStream BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B * ___compressorOutputStream_8; // BestHTTP.Decompression.Zlib.DeflateStream BestHTTP.WebSocket.Extensions.PerMessageCompression::compressorDeflateStream DeflateStream_t6D255105218D9D7440C9121FC55176D0C8D96B3B * ___compressorDeflateStream_9; // BestHTTP.Extensions.BufferPoolMemoryStream BestHTTP.WebSocket.Extensions.PerMessageCompression::decompressorInputStream BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B * ___decompressorInputStream_10; // BestHTTP.Extensions.BufferPoolMemoryStream BestHTTP.WebSocket.Extensions.PerMessageCompression::decompressorOutputStream BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B * ___decompressorOutputStream_11; // BestHTTP.Decompression.Zlib.DeflateStream BestHTTP.WebSocket.Extensions.PerMessageCompression::decompressorDeflateStream DeflateStream_t6D255105218D9D7440C9121FC55176D0C8D96B3B * ___decompressorDeflateStream_12; public: inline static int32_t get_offset_of_U3CClientNoContextTakeoverU3Ek__BackingField_2() { return static_cast(offsetof(PerMessageCompression_tA416CBC39B57DD1A3C7CCA49B96534A62C20E31C, ___U3CClientNoContextTakeoverU3Ek__BackingField_2)); } inline bool get_U3CClientNoContextTakeoverU3Ek__BackingField_2() const { return ___U3CClientNoContextTakeoverU3Ek__BackingField_2; } inline bool* get_address_of_U3CClientNoContextTakeoverU3Ek__BackingField_2() { return &___U3CClientNoContextTakeoverU3Ek__BackingField_2; } inline void set_U3CClientNoContextTakeoverU3Ek__BackingField_2(bool value) { ___U3CClientNoContextTakeoverU3Ek__BackingField_2 = value; } inline static int32_t get_offset_of_U3CServerNoContextTakeoverU3Ek__BackingField_3() { return static_cast(offsetof(PerMessageCompression_tA416CBC39B57DD1A3C7CCA49B96534A62C20E31C, ___U3CServerNoContextTakeoverU3Ek__BackingField_3)); } inline bool get_U3CServerNoContextTakeoverU3Ek__BackingField_3() const { return ___U3CServerNoContextTakeoverU3Ek__BackingField_3; } inline bool* get_address_of_U3CServerNoContextTakeoverU3Ek__BackingField_3() { return &___U3CServerNoContextTakeoverU3Ek__BackingField_3; } inline void set_U3CServerNoContextTakeoverU3Ek__BackingField_3(bool value) { ___U3CServerNoContextTakeoverU3Ek__BackingField_3 = value; } inline static int32_t get_offset_of_U3CClientMaxWindowBitsU3Ek__BackingField_4() { return static_cast(offsetof(PerMessageCompression_tA416CBC39B57DD1A3C7CCA49B96534A62C20E31C, ___U3CClientMaxWindowBitsU3Ek__BackingField_4)); } inline int32_t get_U3CClientMaxWindowBitsU3Ek__BackingField_4() const { return ___U3CClientMaxWindowBitsU3Ek__BackingField_4; } inline int32_t* get_address_of_U3CClientMaxWindowBitsU3Ek__BackingField_4() { return &___U3CClientMaxWindowBitsU3Ek__BackingField_4; } inline void set_U3CClientMaxWindowBitsU3Ek__BackingField_4(int32_t value) { ___U3CClientMaxWindowBitsU3Ek__BackingField_4 = value; } inline static int32_t get_offset_of_U3CServerMaxWindowBitsU3Ek__BackingField_5() { return static_cast(offsetof(PerMessageCompression_tA416CBC39B57DD1A3C7CCA49B96534A62C20E31C, ___U3CServerMaxWindowBitsU3Ek__BackingField_5)); } inline int32_t get_U3CServerMaxWindowBitsU3Ek__BackingField_5() const { return ___U3CServerMaxWindowBitsU3Ek__BackingField_5; } inline int32_t* get_address_of_U3CServerMaxWindowBitsU3Ek__BackingField_5() { return &___U3CServerMaxWindowBitsU3Ek__BackingField_5; } inline void set_U3CServerMaxWindowBitsU3Ek__BackingField_5(int32_t value) { ___U3CServerMaxWindowBitsU3Ek__BackingField_5 = value; } inline static int32_t get_offset_of_U3CLevelU3Ek__BackingField_6() { return static_cast(offsetof(PerMessageCompression_tA416CBC39B57DD1A3C7CCA49B96534A62C20E31C, ___U3CLevelU3Ek__BackingField_6)); } inline int32_t get_U3CLevelU3Ek__BackingField_6() const { return ___U3CLevelU3Ek__BackingField_6; } inline int32_t* get_address_of_U3CLevelU3Ek__BackingField_6() { return &___U3CLevelU3Ek__BackingField_6; } inline void set_U3CLevelU3Ek__BackingField_6(int32_t value) { ___U3CLevelU3Ek__BackingField_6 = value; } inline static int32_t get_offset_of_U3CMinimumDataLegthToCompressU3Ek__BackingField_7() { return static_cast(offsetof(PerMessageCompression_tA416CBC39B57DD1A3C7CCA49B96534A62C20E31C, ___U3CMinimumDataLegthToCompressU3Ek__BackingField_7)); } inline int32_t get_U3CMinimumDataLegthToCompressU3Ek__BackingField_7() const { return ___U3CMinimumDataLegthToCompressU3Ek__BackingField_7; } inline int32_t* get_address_of_U3CMinimumDataLegthToCompressU3Ek__BackingField_7() { return &___U3CMinimumDataLegthToCompressU3Ek__BackingField_7; } inline void set_U3CMinimumDataLegthToCompressU3Ek__BackingField_7(int32_t value) { ___U3CMinimumDataLegthToCompressU3Ek__BackingField_7 = value; } inline static int32_t get_offset_of_compressorOutputStream_8() { return static_cast(offsetof(PerMessageCompression_tA416CBC39B57DD1A3C7CCA49B96534A62C20E31C, ___compressorOutputStream_8)); } inline BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B * get_compressorOutputStream_8() const { return ___compressorOutputStream_8; } inline BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B ** get_address_of_compressorOutputStream_8() { return &___compressorOutputStream_8; } inline void set_compressorOutputStream_8(BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B * value) { ___compressorOutputStream_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___compressorOutputStream_8), (void*)value); } inline static int32_t get_offset_of_compressorDeflateStream_9() { return static_cast(offsetof(PerMessageCompression_tA416CBC39B57DD1A3C7CCA49B96534A62C20E31C, ___compressorDeflateStream_9)); } inline DeflateStream_t6D255105218D9D7440C9121FC55176D0C8D96B3B * get_compressorDeflateStream_9() const { return ___compressorDeflateStream_9; } inline DeflateStream_t6D255105218D9D7440C9121FC55176D0C8D96B3B ** get_address_of_compressorDeflateStream_9() { return &___compressorDeflateStream_9; } inline void set_compressorDeflateStream_9(DeflateStream_t6D255105218D9D7440C9121FC55176D0C8D96B3B * value) { ___compressorDeflateStream_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___compressorDeflateStream_9), (void*)value); } inline static int32_t get_offset_of_decompressorInputStream_10() { return static_cast(offsetof(PerMessageCompression_tA416CBC39B57DD1A3C7CCA49B96534A62C20E31C, ___decompressorInputStream_10)); } inline BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B * get_decompressorInputStream_10() const { return ___decompressorInputStream_10; } inline BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B ** get_address_of_decompressorInputStream_10() { return &___decompressorInputStream_10; } inline void set_decompressorInputStream_10(BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B * value) { ___decompressorInputStream_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___decompressorInputStream_10), (void*)value); } inline static int32_t get_offset_of_decompressorOutputStream_11() { return static_cast(offsetof(PerMessageCompression_tA416CBC39B57DD1A3C7CCA49B96534A62C20E31C, ___decompressorOutputStream_11)); } inline BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B * get_decompressorOutputStream_11() const { return ___decompressorOutputStream_11; } inline BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B ** get_address_of_decompressorOutputStream_11() { return &___decompressorOutputStream_11; } inline void set_decompressorOutputStream_11(BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B * value) { ___decompressorOutputStream_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___decompressorOutputStream_11), (void*)value); } inline static int32_t get_offset_of_decompressorDeflateStream_12() { return static_cast(offsetof(PerMessageCompression_tA416CBC39B57DD1A3C7CCA49B96534A62C20E31C, ___decompressorDeflateStream_12)); } inline DeflateStream_t6D255105218D9D7440C9121FC55176D0C8D96B3B * get_decompressorDeflateStream_12() const { return ___decompressorDeflateStream_12; } inline DeflateStream_t6D255105218D9D7440C9121FC55176D0C8D96B3B ** get_address_of_decompressorDeflateStream_12() { return &___decompressorDeflateStream_12; } inline void set_decompressorDeflateStream_12(DeflateStream_t6D255105218D9D7440C9121FC55176D0C8D96B3B * value) { ___decompressorDeflateStream_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___decompressorDeflateStream_12), (void*)value); } }; struct PerMessageCompression_tA416CBC39B57DD1A3C7CCA49B96534A62C20E31C_StaticFields { public: // System.Byte[] BestHTTP.WebSocket.Extensions.PerMessageCompression::Trailer ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___Trailer_1; public: inline static int32_t get_offset_of_Trailer_1() { return static_cast(offsetof(PerMessageCompression_tA416CBC39B57DD1A3C7CCA49B96534A62C20E31C_StaticFields, ___Trailer_1)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_Trailer_1() const { return ___Trailer_1; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_Trailer_1() { return &___Trailer_1; } inline void set_Trailer_1(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___Trailer_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Trailer_1), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs.Pkcs10CertificationRequestDelaySigned struct Pkcs10CertificationRequestDelaySigned_t5F9444F02D719EB7DAACFA5B5386BAFAD73E6161 : public Pkcs10CertificationRequest_t83CC34C032AFF4D41FCB58DBCC277BBE7980A996 { public: public: }; // UnityEngine.EventSystems.PointerEventData struct PointerEventData_tC6C1BEE9D4C8755A31DA7FC0C9A1F28A36456954 : public BaseEventData_t722C48843CF21B50E06CC0E2E679415E38A7444E { public: // UnityEngine.GameObject UnityEngine.EventSystems.PointerEventData::k__BackingField GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___U3CpointerEnterU3Ek__BackingField_2; // UnityEngine.GameObject UnityEngine.EventSystems.PointerEventData::m_PointerPress GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___m_PointerPress_3; // UnityEngine.GameObject UnityEngine.EventSystems.PointerEventData::k__BackingField GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___U3ClastPressU3Ek__BackingField_4; // UnityEngine.GameObject UnityEngine.EventSystems.PointerEventData::k__BackingField GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___U3CrawPointerPressU3Ek__BackingField_5; // UnityEngine.GameObject UnityEngine.EventSystems.PointerEventData::k__BackingField GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___U3CpointerDragU3Ek__BackingField_6; // UnityEngine.GameObject UnityEngine.EventSystems.PointerEventData::k__BackingField GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___U3CpointerClickU3Ek__BackingField_7; // UnityEngine.EventSystems.RaycastResult UnityEngine.EventSystems.PointerEventData::k__BackingField RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE ___U3CpointerCurrentRaycastU3Ek__BackingField_8; // UnityEngine.EventSystems.RaycastResult UnityEngine.EventSystems.PointerEventData::k__BackingField RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE ___U3CpointerPressRaycastU3Ek__BackingField_9; // System.Collections.Generic.List`1 UnityEngine.EventSystems.PointerEventData::hovered List_1_t6D0A10F47F3440798295D2FFFC6D016477AF38E5 * ___hovered_10; // System.Boolean UnityEngine.EventSystems.PointerEventData::k__BackingField bool ___U3CeligibleForClickU3Ek__BackingField_11; // System.Int32 UnityEngine.EventSystems.PointerEventData::k__BackingField int32_t ___U3CpointerIdU3Ek__BackingField_12; // UnityEngine.Vector2 UnityEngine.EventSystems.PointerEventData::k__BackingField Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___U3CpositionU3Ek__BackingField_13; // UnityEngine.Vector2 UnityEngine.EventSystems.PointerEventData::k__BackingField Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___U3CdeltaU3Ek__BackingField_14; // UnityEngine.Vector2 UnityEngine.EventSystems.PointerEventData::k__BackingField Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___U3CpressPositionU3Ek__BackingField_15; // UnityEngine.Vector3 UnityEngine.EventSystems.PointerEventData::k__BackingField Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___U3CworldPositionU3Ek__BackingField_16; // UnityEngine.Vector3 UnityEngine.EventSystems.PointerEventData::k__BackingField Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___U3CworldNormalU3Ek__BackingField_17; // System.Single UnityEngine.EventSystems.PointerEventData::k__BackingField float ___U3CclickTimeU3Ek__BackingField_18; // System.Int32 UnityEngine.EventSystems.PointerEventData::k__BackingField int32_t ___U3CclickCountU3Ek__BackingField_19; // UnityEngine.Vector2 UnityEngine.EventSystems.PointerEventData::k__BackingField Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___U3CscrollDeltaU3Ek__BackingField_20; // System.Boolean UnityEngine.EventSystems.PointerEventData::k__BackingField bool ___U3CuseDragThresholdU3Ek__BackingField_21; // System.Boolean UnityEngine.EventSystems.PointerEventData::k__BackingField bool ___U3CdraggingU3Ek__BackingField_22; // UnityEngine.EventSystems.PointerEventData/InputButton UnityEngine.EventSystems.PointerEventData::