Skip to content

Instantly share code, notes, and snippets.

@H0neyBadger
Last active January 9, 2022 11:42
Show Gist options
  • Save H0neyBadger/27bf03a808a0e078f01133a01583c0ed to your computer and use it in GitHub Desktop.
Save H0neyBadger/27bf03a808a0e078f01133a01583c0ed to your computer and use it in GitHub Desktop.
Dumps symbols from cpp header
clang_prototype

Dumps symbols from cpp header

./clang_prototype proto.h -x c++ \
	-I../Splash/include/ \
	-I/usr/lib/gcc/x86_64-redhat-linux/11/include/
#include <string>
#include <iostream>
// https://stackoverflow.com/questions/45430971/how-to-get-function-definition-signature-as-a-string-in-clang
#include <clang-c/CXString.h>
#include <clang-c/Index.h>
std::string Convert(const CXString& s)
{
std::string result = clang_getCString(s);
clang_disposeString(s);
return result;
}
void print_function_prototype(CXCursor cursor)
{
std::string result = Convert(clang_Cursor_getMangling(cursor));
std::cout << result << " = {Address} - {PatchStartOffset}; /* ";
auto type = clang_getCursorType(cursor);
auto function_name = Convert(clang_getCursorSpelling(cursor));
auto return_type = Convert(clang_getTypeSpelling(clang_getResultType(type)));
int num_args = clang_Cursor_getNumArguments(cursor);
std::cout << return_type << " " << function_name << "(";
for (int i = 0; i < num_args; ++i)
{
if(i > 0)
std::cout << ", ";
auto arg_cursor = clang_Cursor_getArgument(cursor, i);
auto arg_name = Convert(clang_getCursorSpelling(arg_cursor));
if (arg_name.empty())
{
arg_name = "no name!";
}
auto arg_data_type = Convert(clang_getTypeSpelling(clang_getArgType(type, i)));
std::cout << arg_data_type << " " << arg_name;
}
std::cout << ") */" << std::endl;
}
CXChildVisitResult functionVisitor(CXCursor cursor, CXCursor /* parent */, CXClientData /* clientData */)
{
if (clang_Location_isFromMainFile(clang_getCursorLocation(cursor)) == 0)
return CXChildVisit_Continue;
CXCursorKind kind = clang_getCursorKind(cursor);
if ((kind == CXCursorKind::CXCursor_FunctionDecl || kind == CXCursorKind::CXCursor_CXXMethod || kind == CXCursorKind::CXCursor_FunctionTemplate || \
kind == CXCursorKind::CXCursor_Constructor))
{
print_function_prototype(cursor);
}
return CXChildVisit_Continue;
}
int main(int argc, char * argv[]){
CXIndex index = clang_createIndex( 0, 1 );
unsigned int flags = CXTranslationUnit_DetailedPreprocessingRecord |
clang_defaultEditingTranslationUnitOptions();
CXTranslationUnit tu = clang_parseTranslationUnit(index, argv[1], &argv[2], argc-2, nullptr, 0, flags);
CXCursor cursor = clang_getTranslationUnitCursor(tu);
unsigned int treeLevel = 0;
clang_visitChildren( cursor, functionVisitor, &treeLevel );
clang_disposeTranslationUnit( tu );
clang_disposeIndex( index );
return 0;
};
printf "#include <stddef.h>\n#include <stdint.h>\n#include \"il2cpp.h\"\n" > .proto.h
jq ".ScriptMethod" ../Splash/patches/111/0100000011D90000/main.json | grep '"Signature":' | sed 's/\s*"Signature": "\(.*\)",*/\1/g' >> .proto.h
# sed -i 's/const \(MethodInfo_[A-F0-9][A-F0-9][A-F0-9][A-F0-9][A-F0-9][A-F0-9][A-F0-9]\)\*/const struct \1*/g' .proto.h
sed -i 's/const MethodInfo_\([A-F0-9][A-F0-9][A-F0-9][A-F0-9][A-F0-9][A-F0-9][A-F0-9]\)\* method/const MethodInfo_\1* method_\1/g' .proto.h
sed -i 's/MethodInfo\* method/MethodInfo*/g' .proto.h
grep -Ev '^((\w+)\*? )?(System|UnityEngine)_(\w)+ \(' .proto.h > proto.h
# grep -Ev 'System_(Collections|Array)_[a-zA-Z0-9_]+__Vector4__(o|_o|array)' .proto.h > proto.h
.PHONY: all clean
all: clang_prototype
clang_prototype: clang_prototype.cpp
# requires clang-devel
g++ -l clang clang_prototype.cpp -o clang_prototype
clean:
@rm clang_prototype
This file has been truncated, but you can view the full file.
#include <stddef.h>
#include <stdint.h>
#include "il2cpp.h"
System_String_o* Locale__GetText (System_String_o* msg, const MethodInfo*);
System_String_o* Locale__GetText (System_String_o* fmt, System_Object_array* args, const MethodInfo*);
System_String_o* SR__Format (System_String_o* resourceFormat, Il2CppObject* p1, const MethodInfo*);
System_String_o* SR__Format (System_String_o* resourceFormat, Il2CppObject* p1, Il2CppObject* p2, const MethodInfo*);
void Mono_Runtime__mono_runtime_install_handlers (const MethodInfo*);
void Mono_Runtime__InstallSignalHandlers (const MethodInfo*);
void Mono_Runtime__mono_runtime_cleanup_handlers (const MethodInfo*);
void Mono_Runtime__RemoveSignalHandlers (const MethodInfo*);
System_String_o* Mono_Runtime__GetDisplayName (const MethodInfo*);
System_String_o* Mono_Runtime__GetNativeStackTrace (System_Exception_o* exception, const MethodInfo*);
bool Mono_Runtime__SetGCAllowSynchronousMajor (bool flag, const MethodInfo*);
void Mono_RuntimeClassHandle___ctor (Mono_RuntimeClassHandle_o __this, Mono_RuntimeStructs_MonoClass_o* value, const MethodInfo*);
void Mono_RuntimeClassHandle___ctor (Mono_RuntimeClassHandle_o __this, intptr_t ptr, const MethodInfo*);
Mono_RuntimeStructs_MonoClass_o* Mono_RuntimeClassHandle__get_Value (Mono_RuntimeClassHandle_o __this, const MethodInfo*);
bool Mono_RuntimeClassHandle__Equals (Mono_RuntimeClassHandle_o __this, Il2CppObject* obj, const MethodInfo*);
int32_t Mono_RuntimeClassHandle__GetHashCode (Mono_RuntimeClassHandle_o __this, const MethodInfo*);
intptr_t Mono_RuntimeClassHandle__GetTypeFromClass (Mono_RuntimeStructs_MonoClass_o* _klass, const MethodInfo*);
System_RuntimeTypeHandle_o Mono_RuntimeClassHandle__GetTypeHandle (Mono_RuntimeClassHandle_o __this, const MethodInfo*);
Mono_RuntimeClassHandle_o Mono_RuntimeRemoteClassHandle__get_ProxyClass (Mono_RuntimeRemoteClassHandle_o __this, const MethodInfo*);
void Mono_RuntimeGenericParamInfoHandle___ctor (Mono_RuntimeGenericParamInfoHandle_o __this, intptr_t ptr, const MethodInfo*);
System_Type_array* Mono_RuntimeGenericParamInfoHandle__get_Constraints (Mono_RuntimeGenericParamInfoHandle_o __this, const MethodInfo*);
int32_t Mono_RuntimeGenericParamInfoHandle__get_Attributes (Mono_RuntimeGenericParamInfoHandle_o __this, const MethodInfo*);
System_Type_array* Mono_RuntimeGenericParamInfoHandle__GetConstraints (Mono_RuntimeGenericParamInfoHandle_o __this, const MethodInfo*);
int32_t Mono_RuntimeGenericParamInfoHandle__GetConstraintsCount (Mono_RuntimeGenericParamInfoHandle_o __this, const MethodInfo*);
void Mono_RuntimeEventHandle___ctor (Mono_RuntimeEventHandle_o __this, intptr_t v, const MethodInfo*);
intptr_t Mono_RuntimeEventHandle__get_Value (Mono_RuntimeEventHandle_o __this, const MethodInfo*);
bool Mono_RuntimeEventHandle__Equals (Mono_RuntimeEventHandle_o __this, Il2CppObject* obj, const MethodInfo*);
int32_t Mono_RuntimeEventHandle__GetHashCode (Mono_RuntimeEventHandle_o __this, const MethodInfo*);
void Mono_RuntimePropertyHandle___ctor (Mono_RuntimePropertyHandle_o __this, intptr_t v, const MethodInfo*);
intptr_t Mono_RuntimePropertyHandle__get_Value (Mono_RuntimePropertyHandle_o __this, const MethodInfo*);
bool Mono_RuntimePropertyHandle__Equals (Mono_RuntimePropertyHandle_o __this, Il2CppObject* obj, const MethodInfo*);
int32_t Mono_RuntimePropertyHandle__GetHashCode (Mono_RuntimePropertyHandle_o __this, const MethodInfo*);
void Mono_RuntimeGPtrArrayHandle___ctor (Mono_RuntimeGPtrArrayHandle_o __this, intptr_t ptr, const MethodInfo*);
int32_t Mono_RuntimeGPtrArrayHandle__get_Length (Mono_RuntimeGPtrArrayHandle_o __this, const MethodInfo*);
intptr_t Mono_RuntimeGPtrArrayHandle__get_Item (Mono_RuntimeGPtrArrayHandle_o __this, int32_t i, const MethodInfo*);
intptr_t Mono_RuntimeGPtrArrayHandle__Lookup (Mono_RuntimeGPtrArrayHandle_o __this, int32_t i, const MethodInfo*);
void Mono_RuntimeGPtrArrayHandle__GPtrArrayFree (Mono_RuntimeStructs_GPtrArray_o* value, const MethodInfo*);
void Mono_RuntimeGPtrArrayHandle__DestroyAndFree (Mono_RuntimeGPtrArrayHandle_o* h, const MethodInfo*);
System_String_o* Mono_RuntimeMarshal__PtrToUtf8String (intptr_t ptr, const MethodInfo*);
Mono_SafeStringMarshal_o Mono_RuntimeMarshal__MarshalString (System_String_o* str, const MethodInfo*);
int32_t Mono_RuntimeMarshal__DecodeBlobSize (intptr_t in_ptr, intptr_t* out_ptr, const MethodInfo*);
System_Byte_array* Mono_RuntimeMarshal__DecodeBlobArray (intptr_t ptr, const MethodInfo*);
int32_t Mono_RuntimeMarshal__AsciHexDigitValue (int32_t c, const MethodInfo*);
void Mono_RuntimeMarshal__FreeAssemblyName (Mono_MonoAssemblyName_o* name, bool freeStruct, const MethodInfo*);
void Mono_SafeGPtrArrayHandle___ctor (Mono_SafeGPtrArrayHandle_o __this, intptr_t ptr, const MethodInfo*);
void Mono_SafeGPtrArrayHandle__Dispose (Mono_SafeGPtrArrayHandle_o __this, const MethodInfo*);
int32_t Mono_SafeGPtrArrayHandle__get_Length (Mono_SafeGPtrArrayHandle_o __this, const MethodInfo*);
intptr_t Mono_SafeGPtrArrayHandle__get_Item (Mono_SafeGPtrArrayHandle_o __this, int32_t i, const MethodInfo*);
intptr_t Mono_SafeStringMarshal__StringToUtf8 (System_String_o* str, const MethodInfo*);
void Mono_SafeStringMarshal__GFree (intptr_t ptr, const MethodInfo*);
void Mono_SafeStringMarshal___ctor (Mono_SafeStringMarshal_o __this, System_String_o* str, const MethodInfo*);
intptr_t Mono_SafeStringMarshal__get_Value (Mono_SafeStringMarshal_o __this, const MethodInfo*);
void Mono_SafeStringMarshal__Dispose (Mono_SafeStringMarshal_o __this, const MethodInfo*);
void Mono_Xml_SecurityParser___ctor (Mono_Xml_SecurityParser_o* __this, const MethodInfo*);
void Mono_Xml_SecurityParser__LoadXml (Mono_Xml_SecurityParser_o* __this, System_String_o* xml, const MethodInfo*);
System_Security_SecurityElement_o* Mono_Xml_SecurityParser__ToXml (Mono_Xml_SecurityParser_o* __this, const MethodInfo*);
void Mono_Xml_SecurityParser__OnStartParsing (Mono_Xml_SecurityParser_o* __this, Mono_Xml_SmallXmlParser_o* parser, const MethodInfo*);
void Mono_Xml_SecurityParser__OnProcessingInstruction (Mono_Xml_SecurityParser_o* __this, System_String_o* name, System_String_o* text, const MethodInfo*);
void Mono_Xml_SecurityParser__OnIgnorableWhitespace (Mono_Xml_SecurityParser_o* __this, System_String_o* s, const MethodInfo*);
void Mono_Xml_SecurityParser__OnStartElement (Mono_Xml_SecurityParser_o* __this, System_String_o* name, Mono_Xml_SmallXmlParser_IAttrList_o* attrs, const MethodInfo*);
void Mono_Xml_SecurityParser__OnEndElement (Mono_Xml_SecurityParser_o* __this, System_String_o* name, const MethodInfo*);
void Mono_Xml_SecurityParser__OnChars (Mono_Xml_SecurityParser_o* __this, System_String_o* ch, const MethodInfo*);
void Mono_Xml_SecurityParser__OnEndParsing (Mono_Xml_SecurityParser_o* __this, Mono_Xml_SmallXmlParser_o* parser, const MethodInfo*);
void Mono_Xml_SmallXmlParser___ctor (Mono_Xml_SmallXmlParser_o* __this, const MethodInfo*);
System_Exception_o* Mono_Xml_SmallXmlParser__Error (Mono_Xml_SmallXmlParser_o* __this, System_String_o* msg, const MethodInfo*);
System_Exception_o* Mono_Xml_SmallXmlParser__UnexpectedEndError (Mono_Xml_SmallXmlParser_o* __this, const MethodInfo*);
bool Mono_Xml_SmallXmlParser__IsNameChar (Mono_Xml_SmallXmlParser_o* __this, uint16_t c, bool start, const MethodInfo*);
bool Mono_Xml_SmallXmlParser__IsWhitespace (Mono_Xml_SmallXmlParser_o* __this, int32_t c, const MethodInfo*);
void Mono_Xml_SmallXmlParser__SkipWhitespaces (Mono_Xml_SmallXmlParser_o* __this, const MethodInfo*);
void Mono_Xml_SmallXmlParser__HandleWhitespaces (Mono_Xml_SmallXmlParser_o* __this, const MethodInfo*);
void Mono_Xml_SmallXmlParser__SkipWhitespaces (Mono_Xml_SmallXmlParser_o* __this, bool expected, const MethodInfo*);
int32_t Mono_Xml_SmallXmlParser__Peek (Mono_Xml_SmallXmlParser_o* __this, const MethodInfo*);
int32_t Mono_Xml_SmallXmlParser__Read (Mono_Xml_SmallXmlParser_o* __this, const MethodInfo*);
void Mono_Xml_SmallXmlParser__Expect (Mono_Xml_SmallXmlParser_o* __this, int32_t c, const MethodInfo*);
System_String_o* Mono_Xml_SmallXmlParser__ReadUntil (Mono_Xml_SmallXmlParser_o* __this, uint16_t until, bool handleReferences, const MethodInfo*);
System_String_o* Mono_Xml_SmallXmlParser__ReadName (Mono_Xml_SmallXmlParser_o* __this, const MethodInfo*);
void Mono_Xml_SmallXmlParser__Parse (Mono_Xml_SmallXmlParser_o* __this, System_IO_TextReader_o* input, Mono_Xml_SmallXmlParser_IContentHandler_o* handler, const MethodInfo*);
void Mono_Xml_SmallXmlParser__Cleanup (Mono_Xml_SmallXmlParser_o* __this, const MethodInfo*);
void Mono_Xml_SmallXmlParser__ReadContent (Mono_Xml_SmallXmlParser_o* __this, const MethodInfo*);
void Mono_Xml_SmallXmlParser__HandleBufferedContent (Mono_Xml_SmallXmlParser_o* __this, const MethodInfo*);
void Mono_Xml_SmallXmlParser__ReadCharacters (Mono_Xml_SmallXmlParser_o* __this, const MethodInfo*);
void Mono_Xml_SmallXmlParser__ReadReference (Mono_Xml_SmallXmlParser_o* __this, const MethodInfo*);
int32_t Mono_Xml_SmallXmlParser__ReadCharacterReference (Mono_Xml_SmallXmlParser_o* __this, const MethodInfo*);
void Mono_Xml_SmallXmlParser__ReadAttribute (Mono_Xml_SmallXmlParser_o* __this, Mono_Xml_SmallXmlParser_AttrListImpl_o* a, const MethodInfo*);
void Mono_Xml_SmallXmlParser__ReadCDATASection (Mono_Xml_SmallXmlParser_o* __this, const MethodInfo*);
void Mono_Xml_SmallXmlParser__ReadComment (Mono_Xml_SmallXmlParser_o* __this, const MethodInfo*);
int32_t Mono_Xml_SmallXmlParser_AttrListImpl__get_Length (Mono_Xml_SmallXmlParser_AttrListImpl_o* __this, const MethodInfo*);
System_String_o* Mono_Xml_SmallXmlParser_AttrListImpl__GetName (Mono_Xml_SmallXmlParser_AttrListImpl_o* __this, int32_t i, const MethodInfo*);
System_String_o* Mono_Xml_SmallXmlParser_AttrListImpl__GetValue (Mono_Xml_SmallXmlParser_AttrListImpl_o* __this, int32_t i, const MethodInfo*);
System_String_o* Mono_Xml_SmallXmlParser_AttrListImpl__GetValue (Mono_Xml_SmallXmlParser_AttrListImpl_o* __this, System_String_o* name, const MethodInfo*);
System_String_array* Mono_Xml_SmallXmlParser_AttrListImpl__get_Names (Mono_Xml_SmallXmlParser_AttrListImpl_o* __this, const MethodInfo*);
System_String_array* Mono_Xml_SmallXmlParser_AttrListImpl__get_Values (Mono_Xml_SmallXmlParser_AttrListImpl_o* __this, const MethodInfo*);
void Mono_Xml_SmallXmlParser_AttrListImpl__Clear (Mono_Xml_SmallXmlParser_AttrListImpl_o* __this, const MethodInfo*);
void Mono_Xml_SmallXmlParser_AttrListImpl__Add (Mono_Xml_SmallXmlParser_AttrListImpl_o* __this, System_String_o* name, System_String_o* value, const MethodInfo*);
void Mono_Xml_SmallXmlParser_AttrListImpl___ctor (Mono_Xml_SmallXmlParser_AttrListImpl_o* __this, const MethodInfo*);
void Mono_Xml_SmallXmlParserException___ctor (Mono_Xml_SmallXmlParserException_o* __this, System_String_o* msg, int32_t line, int32_t column, const MethodInfo*);
void Mono_Globalization_Unicode_CodePointIndexer___ctor (Mono_Globalization_Unicode_CodePointIndexer_o* __this, System_Int32_array* starts, System_Int32_array* ends, int32_t defaultIndex, int32_t defaultCP, const MethodInfo*);
int32_t Mono_Globalization_Unicode_CodePointIndexer__ToIndex (Mono_Globalization_Unicode_CodePointIndexer_o* __this, int32_t cp, const MethodInfo*);
void Mono_Globalization_Unicode_CodePointIndexer_TableRange___ctor (Mono_Globalization_Unicode_CodePointIndexer_TableRange_o __this, int32_t start, int32_t end, int32_t indexStart, const MethodInfo*);
void Mono_Globalization_Unicode_TailoringInfo___ctor (Mono_Globalization_Unicode_TailoringInfo_o* __this, int32_t lcid, int32_t tailoringIndex, int32_t tailoringCount, bool frenchSort, const MethodInfo*);
void Mono_Globalization_Unicode_Contraction___ctor (Mono_Globalization_Unicode_Contraction_o* __this, int32_t index, System_Char_array* source, System_String_o* replacement, System_Byte_array* sortkey, const MethodInfo*);
int32_t Mono_Globalization_Unicode_ContractionComparer__Compare (Mono_Globalization_Unicode_ContractionComparer_o* __this, Mono_Globalization_Unicode_Contraction_o* c1, Mono_Globalization_Unicode_Contraction_o* c2, const MethodInfo*);
void Mono_Globalization_Unicode_ContractionComparer___ctor (Mono_Globalization_Unicode_ContractionComparer_o* __this, const MethodInfo*);
void Mono_Globalization_Unicode_ContractionComparer___cctor (const MethodInfo*);
void Mono_Globalization_Unicode_Level2Map___ctor (Mono_Globalization_Unicode_Level2Map_o* __this, uint8_t source, uint8_t replace, const MethodInfo*);
Mono_Globalization_Unicode_TailoringInfo_o* Mono_Globalization_Unicode_MSCompatUnicodeTable__GetTailoringInfo (int32_t lcid, const MethodInfo*);
void Mono_Globalization_Unicode_MSCompatUnicodeTable__BuildTailoringTables (System_Globalization_CultureInfo_o* culture, Mono_Globalization_Unicode_TailoringInfo_o* t, Mono_Globalization_Unicode_Contraction_array** contractions, Mono_Globalization_Unicode_Level2Map_array** diacriticals, const MethodInfo*);
void Mono_Globalization_Unicode_MSCompatUnicodeTable__SetCJKReferences (System_String_o* name, Mono_Globalization_Unicode_CodePointIndexer_o** cjkIndexer, uint8_t** catTable, uint8_t** lv1Table, Mono_Globalization_Unicode_CodePointIndexer_o** lv2Indexer, uint8_t** lv2Table, const MethodInfo*);
uint8_t Mono_Globalization_Unicode_MSCompatUnicodeTable__Category (int32_t cp, const MethodInfo*);
uint8_t Mono_Globalization_Unicode_MSCompatUnicodeTable__Level1 (int32_t cp, const MethodInfo*);
uint8_t Mono_Globalization_Unicode_MSCompatUnicodeTable__Level2 (int32_t cp, const MethodInfo*);
uint8_t Mono_Globalization_Unicode_MSCompatUnicodeTable__Level3 (int32_t cp, const MethodInfo*);
bool Mono_Globalization_Unicode_MSCompatUnicodeTable__IsIgnorable (int32_t cp, uint8_t flag, const MethodInfo*);
bool Mono_Globalization_Unicode_MSCompatUnicodeTable__IsIgnorableNonSpacing (int32_t cp, const MethodInfo*);
int32_t Mono_Globalization_Unicode_MSCompatUnicodeTable__ToKanaTypeInsensitive (int32_t i, const MethodInfo*);
int32_t Mono_Globalization_Unicode_MSCompatUnicodeTable__ToWidthCompat (int32_t i, const MethodInfo*);
bool Mono_Globalization_Unicode_MSCompatUnicodeTable__HasSpecialWeight (uint16_t c, const MethodInfo*);
bool Mono_Globalization_Unicode_MSCompatUnicodeTable__IsHalfWidthKana (uint16_t c, const MethodInfo*);
bool Mono_Globalization_Unicode_MSCompatUnicodeTable__IsHiragana (uint16_t c, const MethodInfo*);
bool Mono_Globalization_Unicode_MSCompatUnicodeTable__IsJapaneseSmallLetter (uint16_t c, const MethodInfo*);
bool Mono_Globalization_Unicode_MSCompatUnicodeTable__get_IsReady (const MethodInfo*);
intptr_t Mono_Globalization_Unicode_MSCompatUnicodeTable__GetResource (System_String_o* name, const MethodInfo*);
uint32_t Mono_Globalization_Unicode_MSCompatUnicodeTable__UInt32FromBytePtr (uint8_t* raw, uint32_t idx, const MethodInfo*);
void Mono_Globalization_Unicode_MSCompatUnicodeTable___cctor (const MethodInfo*);
void Mono_Globalization_Unicode_MSCompatUnicodeTable__FillCJK (System_String_o* culture, Mono_Globalization_Unicode_CodePointIndexer_o** cjkIndexer, uint8_t** catTable, uint8_t** lv1Table, Mono_Globalization_Unicode_CodePointIndexer_o** lv2Indexer, uint8_t** lv2Table, const MethodInfo*);
void Mono_Globalization_Unicode_MSCompatUnicodeTable__FillCJKCore (System_String_o* culture, Mono_Globalization_Unicode_CodePointIndexer_o** cjkIndexer, uint8_t** catTable, uint8_t** lv1Table, Mono_Globalization_Unicode_CodePointIndexer_o** cjkLv2Indexer, uint8_t** lv2Table, const MethodInfo*);
void Mono_Globalization_Unicode_MSCompatUnicodeTable___c___cctor (const MethodInfo*);
void Mono_Globalization_Unicode_MSCompatUnicodeTable___c___ctor (Mono_Globalization_Unicode_MSCompatUnicodeTable___c_o* __this, const MethodInfo*);
int32_t Mono_Globalization_Unicode_MSCompatUnicodeTable___c___BuildTailoringTables_b__17_0 (Mono_Globalization_Unicode_MSCompatUnicodeTable___c_o* __this, Mono_Globalization_Unicode_Level2Map_o* a, Mono_Globalization_Unicode_Level2Map_o* b, const MethodInfo*);
void Mono_Globalization_Unicode_MSCompatUnicodeTableUtil___cctor (const MethodInfo*);
void Mono_Globalization_Unicode_NormalizationTableUtil___cctor (const MethodInfo*);
int32_t Mono_Globalization_Unicode_NormalizationTableUtil__PropIdx (int32_t cp, const MethodInfo*);
int32_t Mono_Globalization_Unicode_NormalizationTableUtil__MapIdx (int32_t cp, const MethodInfo*);
void Mono_Globalization_Unicode_SimpleCollator___ctor (Mono_Globalization_Unicode_SimpleCollator_o* __this, System_Globalization_CultureInfo_o* culture, const MethodInfo*);
void Mono_Globalization_Unicode_SimpleCollator__SetCJKTable (Mono_Globalization_Unicode_SimpleCollator_o* __this, System_Globalization_CultureInfo_o* culture, Mono_Globalization_Unicode_CodePointIndexer_o** cjkIndexer, uint8_t** catTable, uint8_t** lv1Table, Mono_Globalization_Unicode_CodePointIndexer_o** lv2Indexer, uint8_t** lv2Table, const MethodInfo*);
System_Globalization_CultureInfo_o* Mono_Globalization_Unicode_SimpleCollator__GetNeutralCulture (System_Globalization_CultureInfo_o* info, const MethodInfo*);
uint8_t Mono_Globalization_Unicode_SimpleCollator__Category (Mono_Globalization_Unicode_SimpleCollator_o* __this, int32_t cp, const MethodInfo*);
uint8_t Mono_Globalization_Unicode_SimpleCollator__Level1 (Mono_Globalization_Unicode_SimpleCollator_o* __this, int32_t cp, const MethodInfo*);
uint8_t Mono_Globalization_Unicode_SimpleCollator__Level2 (Mono_Globalization_Unicode_SimpleCollator_o* __this, int32_t cp, int32_t ext, const MethodInfo*);
bool Mono_Globalization_Unicode_SimpleCollator__IsHalfKana (int32_t cp, int32_t opt, const MethodInfo*);
Mono_Globalization_Unicode_Contraction_o* Mono_Globalization_Unicode_SimpleCollator__GetContraction (Mono_Globalization_Unicode_SimpleCollator_o* __this, System_String_o* s, int32_t start, int32_t end, const MethodInfo*);
Mono_Globalization_Unicode_Contraction_o* Mono_Globalization_Unicode_SimpleCollator__GetContraction (Mono_Globalization_Unicode_SimpleCollator_o* __this, System_String_o* s, int32_t start, int32_t end, Mono_Globalization_Unicode_Contraction_array* clist, const MethodInfo*);
Mono_Globalization_Unicode_Contraction_o* Mono_Globalization_Unicode_SimpleCollator__GetTailContraction (Mono_Globalization_Unicode_SimpleCollator_o* __this, System_String_o* s, int32_t start, int32_t end, const MethodInfo*);
Mono_Globalization_Unicode_Contraction_o* Mono_Globalization_Unicode_SimpleCollator__GetTailContraction (Mono_Globalization_Unicode_SimpleCollator_o* __this, System_String_o* s, int32_t start, int32_t end, Mono_Globalization_Unicode_Contraction_array* clist, const MethodInfo*);
int32_t Mono_Globalization_Unicode_SimpleCollator__FilterOptions (Mono_Globalization_Unicode_SimpleCollator_o* __this, int32_t i, int32_t opt, const MethodInfo*);
int32_t Mono_Globalization_Unicode_SimpleCollator__GetExtenderType (Mono_Globalization_Unicode_SimpleCollator_o* __this, int32_t i, const MethodInfo*);
uint8_t Mono_Globalization_Unicode_SimpleCollator__ToDashTypeValue (int32_t ext, int32_t opt, const MethodInfo*);
int32_t Mono_Globalization_Unicode_SimpleCollator__FilterExtender (Mono_Globalization_Unicode_SimpleCollator_o* __this, int32_t i, int32_t ext, int32_t opt, const MethodInfo*);
bool Mono_Globalization_Unicode_SimpleCollator__IsIgnorable (int32_t i, int32_t opt, const MethodInfo*);
bool Mono_Globalization_Unicode_SimpleCollator__IsSafe (Mono_Globalization_Unicode_SimpleCollator_o* __this, int32_t i, const MethodInfo*);
System_Globalization_SortKey_o* Mono_Globalization_Unicode_SimpleCollator__GetSortKey (Mono_Globalization_Unicode_SimpleCollator_o* __this, System_String_o* s, int32_t options, const MethodInfo*);
System_Globalization_SortKey_o* Mono_Globalization_Unicode_SimpleCollator__GetSortKey (Mono_Globalization_Unicode_SimpleCollator_o* __this, System_String_o* s, int32_t start, int32_t length, int32_t options, const MethodInfo*);
void Mono_Globalization_Unicode_SimpleCollator__GetSortKey (Mono_Globalization_Unicode_SimpleCollator_o* __this, System_String_o* s, int32_t start, int32_t end, Mono_Globalization_Unicode_SortKeyBuffer_o* buf, int32_t opt, const MethodInfo*);
void Mono_Globalization_Unicode_SimpleCollator__FillSortKeyRaw (Mono_Globalization_Unicode_SimpleCollator_o* __this, int32_t i, int32_t ext, Mono_Globalization_Unicode_SortKeyBuffer_o* buf, int32_t opt, const MethodInfo*);
void Mono_Globalization_Unicode_SimpleCollator__FillSurrogateSortKeyRaw (Mono_Globalization_Unicode_SimpleCollator_o* __this, int32_t i, Mono_Globalization_Unicode_SortKeyBuffer_o* buf, const MethodInfo*);
int32_t Mono_Globalization_Unicode_SimpleCollator__Compare (Mono_Globalization_Unicode_SimpleCollator_o* __this, System_String_o* s1, int32_t idx1, int32_t len1, System_String_o* s2, int32_t idx2, int32_t len2, int32_t options, const MethodInfo*);
void Mono_Globalization_Unicode_SimpleCollator__ClearBuffer (Mono_Globalization_Unicode_SimpleCollator_o* __this, uint8_t* buffer, int32_t size, const MethodInfo*);
int32_t Mono_Globalization_Unicode_SimpleCollator__CompareInternal (Mono_Globalization_Unicode_SimpleCollator_o* __this, System_String_o* s1, int32_t idx1, int32_t len1, System_String_o* s2, int32_t idx2, int32_t len2, bool* targetConsumed, bool* sourceConsumed, bool skipHeadingExtenders, bool immediateBreakup, Mono_Globalization_Unicode_SimpleCollator_Context_o* ctx, const MethodInfo*);
int32_t Mono_Globalization_Unicode_SimpleCollator__CompareFlagPair (Mono_Globalization_Unicode_SimpleCollator_o* __this, bool b1, bool b2, const MethodInfo*);
bool Mono_Globalization_Unicode_SimpleCollator__IsPrefix (Mono_Globalization_Unicode_SimpleCollator_o* __this, System_String_o* src, System_String_o* target, int32_t opt, const MethodInfo*);
bool Mono_Globalization_Unicode_SimpleCollator__IsPrefix (Mono_Globalization_Unicode_SimpleCollator_o* __this, System_String_o* s, System_String_o* target, int32_t start, int32_t length, int32_t opt, const MethodInfo*);
bool Mono_Globalization_Unicode_SimpleCollator__IsPrefix (Mono_Globalization_Unicode_SimpleCollator_o* __this, System_String_o* s, System_String_o* target, int32_t start, int32_t length, bool skipHeadingExtenders, Mono_Globalization_Unicode_SimpleCollator_Context_o* ctx, const MethodInfo*);
bool Mono_Globalization_Unicode_SimpleCollator__IsSuffix (Mono_Globalization_Unicode_SimpleCollator_o* __this, System_String_o* src, System_String_o* target, int32_t opt, const MethodInfo*);
bool Mono_Globalization_Unicode_SimpleCollator__IsSuffix (Mono_Globalization_Unicode_SimpleCollator_o* __this, System_String_o* s, System_String_o* target, int32_t start, int32_t length, int32_t opt, const MethodInfo*);
int32_t Mono_Globalization_Unicode_SimpleCollator__QuickIndexOf (Mono_Globalization_Unicode_SimpleCollator_o* __this, System_String_o* s, System_String_o* target, int32_t start, int32_t length, bool* testWasUnable, const MethodInfo*);
int32_t Mono_Globalization_Unicode_SimpleCollator__IndexOf (Mono_Globalization_Unicode_SimpleCollator_o* __this, System_String_o* s, System_String_o* target, int32_t start, int32_t length, int32_t opt, const MethodInfo*);
int32_t Mono_Globalization_Unicode_SimpleCollator__IndexOfOrdinal (Mono_Globalization_Unicode_SimpleCollator_o* __this, System_String_o* s, System_String_o* target, int32_t start, int32_t length, const MethodInfo*);
int32_t Mono_Globalization_Unicode_SimpleCollator__IndexOfOrdinal (Mono_Globalization_Unicode_SimpleCollator_o* __this, System_String_o* s, uint16_t target, int32_t start, int32_t length, const MethodInfo*);
int32_t Mono_Globalization_Unicode_SimpleCollator__IndexOfSortKey (Mono_Globalization_Unicode_SimpleCollator_o* __this, System_String_o* s, int32_t start, int32_t length, uint8_t* sortkey, uint16_t target, int32_t ti, bool noLv4, Mono_Globalization_Unicode_SimpleCollator_Context_o* ctx, const MethodInfo*);
int32_t Mono_Globalization_Unicode_SimpleCollator__IndexOf (Mono_Globalization_Unicode_SimpleCollator_o* __this, System_String_o* s, System_String_o* target, int32_t start, int32_t length, uint8_t* targetSortKey, Mono_Globalization_Unicode_SimpleCollator_Context_o* ctx, const MethodInfo*);
int32_t Mono_Globalization_Unicode_SimpleCollator__LastIndexOf (Mono_Globalization_Unicode_SimpleCollator_o* __this, System_String_o* s, System_String_o* target, int32_t start, int32_t length, int32_t opt, const MethodInfo*);
int32_t Mono_Globalization_Unicode_SimpleCollator__LastIndexOfOrdinal (Mono_Globalization_Unicode_SimpleCollator_o* __this, System_String_o* s, System_String_o* target, int32_t start, int32_t length, const MethodInfo*);
int32_t Mono_Globalization_Unicode_SimpleCollator__LastIndexOfSortKey (Mono_Globalization_Unicode_SimpleCollator_o* __this, System_String_o* s, int32_t start, int32_t orgStart, int32_t length, uint8_t* sortkey, int32_t ti, bool noLv4, Mono_Globalization_Unicode_SimpleCollator_Context_o* ctx, const MethodInfo*);
int32_t Mono_Globalization_Unicode_SimpleCollator__LastIndexOf (Mono_Globalization_Unicode_SimpleCollator_o* __this, System_String_o* s, System_String_o* target, int32_t start, int32_t length, uint8_t* targetSortKey, Mono_Globalization_Unicode_SimpleCollator_Context_o* ctx, const MethodInfo*);
bool Mono_Globalization_Unicode_SimpleCollator__MatchesForward (Mono_Globalization_Unicode_SimpleCollator_o* __this, System_String_o* s, int32_t* idx, int32_t end, int32_t ti, uint8_t* sortkey, bool noLv4, Mono_Globalization_Unicode_SimpleCollator_Context_o* ctx, const MethodInfo*);
bool Mono_Globalization_Unicode_SimpleCollator__MatchesForwardCore (Mono_Globalization_Unicode_SimpleCollator_o* __this, System_String_o* s, int32_t* idx, int32_t end, int32_t ti, uint8_t* sortkey, bool noLv4, int32_t ext, Mono_Globalization_Unicode_Contraction_o** ct, Mono_Globalization_Unicode_SimpleCollator_Context_o* ctx, const MethodInfo*);
bool Mono_Globalization_Unicode_SimpleCollator__MatchesPrimitive (Mono_Globalization_Unicode_SimpleCollator_o* __this, int32_t opt, uint8_t* source, int32_t si, int32_t ext, uint8_t* target, int32_t ti, bool noLv4, const MethodInfo*);
bool Mono_Globalization_Unicode_SimpleCollator__MatchesBackward (Mono_Globalization_Unicode_SimpleCollator_o* __this, System_String_o* s, int32_t* idx, int32_t end, int32_t orgStart, int32_t ti, uint8_t* sortkey, bool noLv4, Mono_Globalization_Unicode_SimpleCollator_Context_o* ctx, const MethodInfo*);
bool Mono_Globalization_Unicode_SimpleCollator__MatchesBackwardCore (Mono_Globalization_Unicode_SimpleCollator_o* __this, System_String_o* s, int32_t* idx, int32_t end, int32_t orgStart, int32_t ti, uint8_t* sortkey, bool noLv4, int32_t ext, Mono_Globalization_Unicode_Contraction_o** ct, Mono_Globalization_Unicode_SimpleCollator_Context_o* ctx, const MethodInfo*);
void Mono_Globalization_Unicode_SimpleCollator___cctor (const MethodInfo*);
void Mono_Globalization_Unicode_SimpleCollator_Context___ctor (Mono_Globalization_Unicode_SimpleCollator_Context_o __this, int32_t opt, uint8_t* alwaysMatchFlags, uint8_t* neverMatchFlags, uint8_t* buffer1, uint8_t* buffer2, uint8_t* prev1, const MethodInfo*);
void Mono_Globalization_Unicode_SimpleCollator_PreviousInfo___ctor (Mono_Globalization_Unicode_SimpleCollator_PreviousInfo_o __this, bool dummy, const MethodInfo*);
void Mono_Globalization_Unicode_SortKeyBuffer___ctor (Mono_Globalization_Unicode_SortKeyBuffer_o* __this, int32_t lcid, const MethodInfo*);
void Mono_Globalization_Unicode_SortKeyBuffer__Reset (Mono_Globalization_Unicode_SortKeyBuffer_o* __this, const MethodInfo*);
void Mono_Globalization_Unicode_SortKeyBuffer__Initialize (Mono_Globalization_Unicode_SortKeyBuffer_o* __this, int32_t options, int32_t lcid, System_String_o* s, bool frenchSort, const MethodInfo*);
void Mono_Globalization_Unicode_SortKeyBuffer__AppendCJKExtension (Mono_Globalization_Unicode_SortKeyBuffer_o* __this, uint8_t lv1msb, uint8_t lv1lsb, const MethodInfo*);
void Mono_Globalization_Unicode_SortKeyBuffer__AppendKana (Mono_Globalization_Unicode_SortKeyBuffer_o* __this, uint8_t category, uint8_t lv1, uint8_t lv2, uint8_t lv3, bool isSmallKana, uint8_t markType, bool isKatakana, bool isHalfWidth, const MethodInfo*);
void Mono_Globalization_Unicode_SortKeyBuffer__AppendNormal (Mono_Globalization_Unicode_SortKeyBuffer_o* __this, uint8_t category, uint8_t lv1, uint8_t lv2, uint8_t lv3, const MethodInfo*);
void Mono_Globalization_Unicode_SortKeyBuffer__AppendLevel5 (Mono_Globalization_Unicode_SortKeyBuffer_o* __this, uint8_t category, uint8_t lv1, const MethodInfo*);
void Mono_Globalization_Unicode_SortKeyBuffer__AppendBufferPrimitive (Mono_Globalization_Unicode_SortKeyBuffer_o* __this, uint8_t value, System_Byte_array** buf, int32_t* bidx, const MethodInfo*);
System_Globalization_SortKey_o* Mono_Globalization_Unicode_SortKeyBuffer__GetResultAndReset (Mono_Globalization_Unicode_SortKeyBuffer_o* __this, const MethodInfo*);
int32_t Mono_Globalization_Unicode_SortKeyBuffer__GetOptimizedLength (Mono_Globalization_Unicode_SortKeyBuffer_o* __this, System_Byte_array* data, int32_t len, uint8_t defaultValue, const MethodInfo*);
System_Globalization_SortKey_o* Mono_Globalization_Unicode_SortKeyBuffer__GetResult (Mono_Globalization_Unicode_SortKeyBuffer_o* __this, const MethodInfo*);
System_Byte_array* Mono_Security_BitConverterLE__GetUIntBytes (uint8_t* bytes, const MethodInfo*);
System_Byte_array* Mono_Security_BitConverterLE__GetULongBytes (uint8_t* bytes, const MethodInfo*);
System_Byte_array* Mono_Security_BitConverterLE__GetBytes (float value, const MethodInfo*);
System_Byte_array* Mono_Security_BitConverterLE__GetBytes (double value, const MethodInfo*);
void Mono_Security_BitConverterLE__UIntFromBytes (uint8_t* dst, System_Byte_array* src, int32_t startIndex, const MethodInfo*);
void Mono_Security_BitConverterLE__ULongFromBytes (uint8_t* dst, System_Byte_array* src, int32_t startIndex, const MethodInfo*);
float Mono_Security_BitConverterLE__ToSingle (System_Byte_array* value, int32_t startIndex, const MethodInfo*);
double Mono_Security_BitConverterLE__ToDouble (System_Byte_array* value, int32_t startIndex, const MethodInfo*);
System_Security_Cryptography_RandomNumberGenerator_o* Mono_Security_Cryptography_KeyBuilder__get_Rng (const MethodInfo*);
System_Byte_array* Mono_Security_Cryptography_KeyBuilder__Key (int32_t size, const MethodInfo*);
System_Byte_array* Mono_Security_Cryptography_KeyBuilder__IV (int32_t size, const MethodInfo*);
void Mono_Security_Cryptography_SymmetricTransform___ctor (Mono_Security_Cryptography_SymmetricTransform_o* __this, System_Security_Cryptography_SymmetricAlgorithm_o* symmAlgo, bool encryption, System_Byte_array* rgbIV, const MethodInfo*);
void Mono_Security_Cryptography_SymmetricTransform__Finalize (Mono_Security_Cryptography_SymmetricTransform_o* __this, const MethodInfo*);
void Mono_Security_Cryptography_SymmetricTransform__System_IDisposable_Dispose (Mono_Security_Cryptography_SymmetricTransform_o* __this, const MethodInfo*);
void Mono_Security_Cryptography_SymmetricTransform__Dispose (Mono_Security_Cryptography_SymmetricTransform_o* __this, bool disposing, const MethodInfo*);
void Mono_Security_Cryptography_SymmetricTransform__Transform (Mono_Security_Cryptography_SymmetricTransform_o* __this, System_Byte_array* input, System_Byte_array* output, const MethodInfo*);
void Mono_Security_Cryptography_SymmetricTransform__CBC (Mono_Security_Cryptography_SymmetricTransform_o* __this, System_Byte_array* input, System_Byte_array* output, const MethodInfo*);
void Mono_Security_Cryptography_SymmetricTransform__CFB (Mono_Security_Cryptography_SymmetricTransform_o* __this, System_Byte_array* input, System_Byte_array* output, const MethodInfo*);
void Mono_Security_Cryptography_SymmetricTransform__OFB (Mono_Security_Cryptography_SymmetricTransform_o* __this, System_Byte_array* input, System_Byte_array* output, const MethodInfo*);
void Mono_Security_Cryptography_SymmetricTransform__CTS (Mono_Security_Cryptography_SymmetricTransform_o* __this, System_Byte_array* input, System_Byte_array* output, const MethodInfo*);
void Mono_Security_Cryptography_SymmetricTransform__CheckInput (Mono_Security_Cryptography_SymmetricTransform_o* __this, System_Byte_array* inputBuffer, int32_t inputOffset, int32_t inputCount, const MethodInfo*);
bool Mono_Security_Cryptography_SymmetricTransform__get_KeepLastBlock (Mono_Security_Cryptography_SymmetricTransform_o* __this, const MethodInfo*);
int32_t Mono_Security_Cryptography_SymmetricTransform__InternalTransformBlock (Mono_Security_Cryptography_SymmetricTransform_o* __this, System_Byte_array* inputBuffer, int32_t inputOffset, int32_t inputCount, System_Byte_array* outputBuffer, int32_t outputOffset, const MethodInfo*);
void Mono_Security_Cryptography_SymmetricTransform__Random (Mono_Security_Cryptography_SymmetricTransform_o* __this, System_Byte_array* buffer, int32_t start, int32_t length, const MethodInfo*);
void Mono_Security_Cryptography_SymmetricTransform__ThrowBadPaddingException (Mono_Security_Cryptography_SymmetricTransform_o* __this, int32_t padding, int32_t length, int32_t position, const MethodInfo*);
System_Byte_array* Mono_Security_Cryptography_SymmetricTransform__FinalEncrypt (Mono_Security_Cryptography_SymmetricTransform_o* __this, System_Byte_array* inputBuffer, int32_t inputOffset, int32_t inputCount, const MethodInfo*);
System_Byte_array* Mono_Security_Cryptography_SymmetricTransform__FinalDecrypt (Mono_Security_Cryptography_SymmetricTransform_o* __this, System_Byte_array* inputBuffer, int32_t inputOffset, int32_t inputCount, const MethodInfo*);
System_Byte_array* Mono_Security_Cryptography_SymmetricTransform__TransformFinalBlock (Mono_Security_Cryptography_SymmetricTransform_o* __this, System_Byte_array* inputBuffer, int32_t inputOffset, int32_t inputCount, const MethodInfo*);
void Microsoft_Win32_Registry___cctor (const MethodInfo*);
void Microsoft_Win32_RegistryKey___cctor (const MethodInfo*);
void Microsoft_Win32_RegistryKey___ctor (Microsoft_Win32_RegistryKey_o* __this, int32_t hiveId, const MethodInfo*);
void Microsoft_Win32_RegistryKey___ctor (Microsoft_Win32_RegistryKey_o* __this, int32_t hiveId, intptr_t keyHandle, bool remoteRoot, const MethodInfo*);
void Microsoft_Win32_RegistryKey___ctor (Microsoft_Win32_RegistryKey_o* __this, Il2CppObject* data, System_String_o* keyName, bool writable, const MethodInfo*);
bool Microsoft_Win32_RegistryKey__IsEquals (Microsoft_Win32_RegistryKey_o* a, Microsoft_Win32_RegistryKey_o* b, const MethodInfo*);
void Microsoft_Win32_RegistryKey__Dispose (Microsoft_Win32_RegistryKey_o* __this, const MethodInfo*);
System_String_o* Microsoft_Win32_RegistryKey__get_Name (Microsoft_Win32_RegistryKey_o* __this, const MethodInfo*);
void Microsoft_Win32_RegistryKey__Flush (Microsoft_Win32_RegistryKey_o* __this, const MethodInfo*);
void Microsoft_Win32_RegistryKey__Close (Microsoft_Win32_RegistryKey_o* __this, const MethodInfo*);
Microsoft_Win32_SafeHandles_SafeRegistryHandle_o* Microsoft_Win32_RegistryKey__get_Handle (Microsoft_Win32_RegistryKey_o* __this, const MethodInfo*);
Microsoft_Win32_RegistryKey_o* Microsoft_Win32_RegistryKey__OpenSubKey (Microsoft_Win32_RegistryKey_o* __this, System_String_o* name, const MethodInfo*);
Microsoft_Win32_RegistryKey_o* Microsoft_Win32_RegistryKey__OpenSubKey (Microsoft_Win32_RegistryKey_o* __this, System_String_o* name, bool writable, const MethodInfo*);
Il2CppObject* Microsoft_Win32_RegistryKey__GetValue (Microsoft_Win32_RegistryKey_o* __this, System_String_o* name, const MethodInfo*);
Il2CppObject* Microsoft_Win32_RegistryKey__GetValue (Microsoft_Win32_RegistryKey_o* __this, System_String_o* name, Il2CppObject* defaultValue, const MethodInfo*);
System_String_array* Microsoft_Win32_RegistryKey__GetSubKeyNames (Microsoft_Win32_RegistryKey_o* __this, const MethodInfo*);
System_String_o* Microsoft_Win32_RegistryKey__ToString (Microsoft_Win32_RegistryKey_o* __this, const MethodInfo*);
bool Microsoft_Win32_RegistryKey__get_IsRoot (Microsoft_Win32_RegistryKey_o* __this, const MethodInfo*);
int32_t Microsoft_Win32_RegistryKey__get_Hive (Microsoft_Win32_RegistryKey_o* __this, const MethodInfo*);
Il2CppObject* Microsoft_Win32_RegistryKey__get_InternalHandle (Microsoft_Win32_RegistryKey_o* __this, const MethodInfo*);
void Microsoft_Win32_RegistryKey__AssertKeyStillValid (Microsoft_Win32_RegistryKey_o* __this, const MethodInfo*);
void Microsoft_Win32_RegistryKey__AssertKeyNameLength (Microsoft_Win32_RegistryKey_o* __this, System_String_o* name, const MethodInfo*);
System_String_o* Microsoft_Win32_RegistryKey__DecodeString (System_Byte_array* data, const MethodInfo*);
System_IO_IOException_o* Microsoft_Win32_RegistryKey__CreateMarkedForDeletionException (const MethodInfo*);
System_String_o* Microsoft_Win32_RegistryKey__GetHiveName (int32_t hive, const MethodInfo*);
void Microsoft_Win32_ExpandString___ctor (Microsoft_Win32_ExpandString_o* __this, System_String_o* s, const MethodInfo*);
System_String_o* Microsoft_Win32_ExpandString__ToString (Microsoft_Win32_ExpandString_o* __this, const MethodInfo*);
System_String_o* Microsoft_Win32_ExpandString__Expand (Microsoft_Win32_ExpandString_o* __this, const MethodInfo*);
bool Microsoft_Win32_RegistryKeyComparer__Equals (Microsoft_Win32_RegistryKeyComparer_o* __this, Il2CppObject* x, Il2CppObject* y, const MethodInfo*);
int32_t Microsoft_Win32_RegistryKeyComparer__GetHashCode (Microsoft_Win32_RegistryKeyComparer_o* __this, Il2CppObject* obj, const MethodInfo*);
void Microsoft_Win32_RegistryKeyComparer___ctor (Microsoft_Win32_RegistryKeyComparer_o* __this, const MethodInfo*);
void Microsoft_Win32_KeyHandler___cctor (const MethodInfo*);
void Microsoft_Win32_KeyHandler___ctor (Microsoft_Win32_KeyHandler_o* __this, Microsoft_Win32_RegistryKey_o* rkey, System_String_o* basedir, const MethodInfo*);
void Microsoft_Win32_KeyHandler___ctor (Microsoft_Win32_KeyHandler_o* __this, Microsoft_Win32_RegistryKey_o* rkey, System_String_o* basedir, bool is_volatile, const MethodInfo*);
void Microsoft_Win32_KeyHandler__Load (Microsoft_Win32_KeyHandler_o* __this, const MethodInfo*);
void Microsoft_Win32_KeyHandler__LoadKey (Microsoft_Win32_KeyHandler_o* __this, System_Security_SecurityElement_o* se, const MethodInfo*);
Microsoft_Win32_RegistryKey_o* Microsoft_Win32_KeyHandler__Ensure (Microsoft_Win32_KeyHandler_o* __this, Microsoft_Win32_RegistryKey_o* rkey, System_String_o* extra, bool writable, bool is_volatile, const MethodInfo*);
Microsoft_Win32_RegistryKey_o* Microsoft_Win32_KeyHandler__Probe (Microsoft_Win32_KeyHandler_o* __this, Microsoft_Win32_RegistryKey_o* rkey, System_String_o* extra, bool writable, const MethodInfo*);
System_String_o* Microsoft_Win32_KeyHandler__CombineName (Microsoft_Win32_RegistryKey_o* rkey, System_String_o* extra, const MethodInfo*);
int64_t Microsoft_Win32_KeyHandler__GetSystemBootTime (const MethodInfo*);
int64_t Microsoft_Win32_KeyHandler__GetRegisteredBootTime (System_String_o* path, const MethodInfo*);
void Microsoft_Win32_KeyHandler__SaveRegisteredBootTime (System_String_o* path, int64_t btime, const MethodInfo*);
void Microsoft_Win32_KeyHandler__CleanVolatileKeys (const MethodInfo*);
bool Microsoft_Win32_KeyHandler__VolatileKeyExists (System_String_o* dir, const MethodInfo*);
System_String_o* Microsoft_Win32_KeyHandler__GetVolatileDir (System_String_o* dir, const MethodInfo*);
Microsoft_Win32_KeyHandler_o* Microsoft_Win32_KeyHandler__Lookup (Microsoft_Win32_RegistryKey_o* rkey, bool createNonExisting, const MethodInfo*);
System_String_o* Microsoft_Win32_KeyHandler__GetRootFromDir (System_String_o* dir, const MethodInfo*);
void Microsoft_Win32_KeyHandler__Drop (Microsoft_Win32_RegistryKey_o* rkey, const MethodInfo*);
Il2CppObject* Microsoft_Win32_KeyHandler__GetValue (Microsoft_Win32_KeyHandler_o* __this, System_String_o* name, int32_t options, const MethodInfo*);
System_String_array* Microsoft_Win32_KeyHandler__GetSubKeyNames (Microsoft_Win32_KeyHandler_o* __this, const MethodInfo*);
void Microsoft_Win32_KeyHandler__Flush (Microsoft_Win32_KeyHandler_o* __this, const MethodInfo*);
bool Microsoft_Win32_KeyHandler__ValueExists (Microsoft_Win32_KeyHandler_o* __this, System_String_o* name, const MethodInfo*);
bool Microsoft_Win32_KeyHandler__get_IsMarkedForDeletion (Microsoft_Win32_KeyHandler_o* __this, const MethodInfo*);
void Microsoft_Win32_KeyHandler__Finalize (Microsoft_Win32_KeyHandler_o* __this, const MethodInfo*);
void Microsoft_Win32_KeyHandler__Save (Microsoft_Win32_KeyHandler_o* __this, const MethodInfo*);
System_String_o* Microsoft_Win32_KeyHandler__get_UserStore (const MethodInfo*);
System_String_o* Microsoft_Win32_KeyHandler__get_MachineStore (const MethodInfo*);
System_String_o* Microsoft_Win32_UnixRegistryApi__ToUnix (System_String_o* keyname, const MethodInfo*);
bool Microsoft_Win32_UnixRegistryApi__IsWellKnownKey (System_String_o* parentKeyName, System_String_o* keyname, const MethodInfo*);
Microsoft_Win32_RegistryKey_o* Microsoft_Win32_UnixRegistryApi__OpenSubKey (Microsoft_Win32_UnixRegistryApi_o* __this, Microsoft_Win32_RegistryKey_o* rkey, System_String_o* keyname, bool writable, const MethodInfo*);
void Microsoft_Win32_UnixRegistryApi__Flush (Microsoft_Win32_UnixRegistryApi_o* __this, Microsoft_Win32_RegistryKey_o* rkey, const MethodInfo*);
void Microsoft_Win32_UnixRegistryApi__Close (Microsoft_Win32_UnixRegistryApi_o* __this, Microsoft_Win32_RegistryKey_o* rkey, const MethodInfo*);
Il2CppObject* Microsoft_Win32_UnixRegistryApi__GetValue (Microsoft_Win32_UnixRegistryApi_o* __this, Microsoft_Win32_RegistryKey_o* rkey, System_String_o* name, Il2CppObject* default_value, int32_t options, const MethodInfo*);
System_String_array* Microsoft_Win32_UnixRegistryApi__GetSubKeyNames (Microsoft_Win32_UnixRegistryApi_o* __this, Microsoft_Win32_RegistryKey_o* rkey, const MethodInfo*);
System_String_o* Microsoft_Win32_UnixRegistryApi__ToString (Microsoft_Win32_UnixRegistryApi_o* __this, Microsoft_Win32_RegistryKey_o* rkey, const MethodInfo*);
Microsoft_Win32_RegistryKey_o* Microsoft_Win32_UnixRegistryApi__CreateSubKey (Microsoft_Win32_UnixRegistryApi_o* __this, Microsoft_Win32_RegistryKey_o* rkey, System_String_o* keyname, bool writable, const MethodInfo*);
Microsoft_Win32_RegistryKey_o* Microsoft_Win32_UnixRegistryApi__CreateSubKey (Microsoft_Win32_UnixRegistryApi_o* __this, Microsoft_Win32_RegistryKey_o* rkey, System_String_o* keyname, bool writable, bool is_volatile, const MethodInfo*);
intptr_t Microsoft_Win32_UnixRegistryApi__GetHandle (Microsoft_Win32_UnixRegistryApi_o* __this, Microsoft_Win32_RegistryKey_o* key, const MethodInfo*);
void Microsoft_Win32_UnixRegistryApi___ctor (Microsoft_Win32_UnixRegistryApi_o* __this, const MethodInfo*);
int32_t Microsoft_Win32_Win32RegistryApi__RegCloseKey (intptr_t keyHandle, const MethodInfo*);
int32_t Microsoft_Win32_Win32RegistryApi__RegFlushKey (intptr_t keyHandle, const MethodInfo*);
int32_t Microsoft_Win32_Win32RegistryApi__RegOpenKeyEx (intptr_t keyBase, System_String_o* keyName, intptr_t reserved, int32_t access, intptr_t* keyHandle, const MethodInfo*);
int32_t Microsoft_Win32_Win32RegistryApi__RegEnumKeyEx (intptr_t keyHandle, int32_t dwIndex, uint16_t* lpName, int32_t* lpcbName, System_Int32_array* lpReserved, System_Text_StringBuilder_o* lpClass, System_Int32_array* lpcbClass, System_Int64_array* lpftLastWriteTime, const MethodInfo*);
int32_t Microsoft_Win32_Win32RegistryApi__RegQueryValueEx (intptr_t keyBase, System_String_o* valueName, intptr_t reserved, int32_t* type, intptr_t zero, int32_t* dataSize, const MethodInfo*);
int32_t Microsoft_Win32_Win32RegistryApi__RegQueryValueEx (intptr_t keyBase, System_String_o* valueName, intptr_t reserved, int32_t* type, System_Byte_array* data, int32_t* dataSize, const MethodInfo*);
int32_t Microsoft_Win32_Win32RegistryApi__RegQueryValueEx (intptr_t keyBase, System_String_o* valueName, intptr_t reserved, int32_t* type, int32_t* data, int32_t* dataSize, const MethodInfo*);
int32_t Microsoft_Win32_Win32RegistryApi__RegQueryValueEx (intptr_t keyBase, System_String_o* valueName, intptr_t reserved, int32_t* type, int64_t* data, int32_t* dataSize, const MethodInfo*);
int32_t Microsoft_Win32_Win32RegistryApi__RegQueryInfoKey (intptr_t hKey, System_Text_StringBuilder_o* lpClass, System_Int32_array* lpcbClass, intptr_t lpReserved_MustBeZero, int32_t* lpcSubKeys, System_Int32_array* lpcbMaxSubKeyLen, System_Int32_array* lpcbMaxClassLen, int32_t* lpcValues, System_Int32_array* lpcbMaxValueNameLen, System_Int32_array* lpcbMaxValueLen, System_Int32_array* lpcbSecurityDescriptor, System_Int32_array* lpftLastWriteTime, const MethodInfo*);
intptr_t Microsoft_Win32_Win32RegistryApi__GetHandle (Microsoft_Win32_Win32RegistryApi_o* __this, Microsoft_Win32_RegistryKey_o* key, const MethodInfo*);
bool Microsoft_Win32_Win32RegistryApi__IsHandleValid (Microsoft_Win32_RegistryKey_o* key, const MethodInfo*);
Il2CppObject* Microsoft_Win32_Win32RegistryApi__GetValue (Microsoft_Win32_Win32RegistryApi_o* __this, Microsoft_Win32_RegistryKey_o* rkey, System_String_o* name, Il2CppObject* defaultValue, int32_t options, const MethodInfo*);
int32_t Microsoft_Win32_Win32RegistryApi__GetBinaryValue (Microsoft_Win32_Win32RegistryApi_o* __this, Microsoft_Win32_RegistryKey_o* rkey, System_String_o* name, int32_t type, System_Byte_array** data, int32_t size, const MethodInfo*);
int32_t Microsoft_Win32_Win32RegistryApi__SubKeyCount (Microsoft_Win32_Win32RegistryApi_o* __this, Microsoft_Win32_RegistryKey_o* rkey, const MethodInfo*);
Microsoft_Win32_RegistryKey_o* Microsoft_Win32_Win32RegistryApi__OpenSubKey (Microsoft_Win32_Win32RegistryApi_o* __this, Microsoft_Win32_RegistryKey_o* rkey, System_String_o* keyName, bool writable, const MethodInfo*);
void Microsoft_Win32_Win32RegistryApi__Flush (Microsoft_Win32_Win32RegistryApi_o* __this, Microsoft_Win32_RegistryKey_o* rkey, const MethodInfo*);
void Microsoft_Win32_Win32RegistryApi__Close (Microsoft_Win32_Win32RegistryApi_o* __this, Microsoft_Win32_RegistryKey_o* rkey, const MethodInfo*);
System_String_array* Microsoft_Win32_Win32RegistryApi__GetSubKeyNames (Microsoft_Win32_Win32RegistryApi_o* __this, Microsoft_Win32_RegistryKey_o* rkey, const MethodInfo*);
void Microsoft_Win32_Win32RegistryApi__GenerateException (Microsoft_Win32_Win32RegistryApi_o* __this, int32_t errorCode, const MethodInfo*);
System_String_o* Microsoft_Win32_Win32RegistryApi__ToString (Microsoft_Win32_Win32RegistryApi_o* __this, Microsoft_Win32_RegistryKey_o* rkey, const MethodInfo*);
System_String_o* Microsoft_Win32_Win32RegistryApi__CombineName (Microsoft_Win32_RegistryKey_o* rkey, System_String_o* localName, const MethodInfo*);
void Microsoft_Win32_Win32RegistryApi___ctor (Microsoft_Win32_Win32RegistryApi_o* __this, const MethodInfo*);
System_String_o* Microsoft_Win32_Win32Native__GetMessage (int32_t hr, const MethodInfo*);
int32_t Microsoft_Win32_Win32Native__MakeHRFromErrorCode (int32_t errorCode, const MethodInfo*);
void Microsoft_Win32_Win32Native_WIN32_FIND_DATA___ctor (Microsoft_Win32_Win32Native_WIN32_FIND_DATA_o* __this, const MethodInfo*);
void Microsoft_Win32_SafeHandles_SafeFileHandle___ctor (Microsoft_Win32_SafeHandles_SafeFileHandle_o* __this, intptr_t preexistingHandle, bool ownsHandle, const MethodInfo*);
bool Microsoft_Win32_SafeHandles_SafeFileHandle__ReleaseHandle (Microsoft_Win32_SafeHandles_SafeFileHandle_o* __this, const MethodInfo*);
void Microsoft_Win32_SafeHandles_SafeFindHandle___ctor (Microsoft_Win32_SafeHandles_SafeFindHandle_o* __this, intptr_t preexistingHandle, const MethodInfo*);
bool Microsoft_Win32_SafeHandles_SafeFindHandle__ReleaseHandle (Microsoft_Win32_SafeHandles_SafeFindHandle_o* __this, const MethodInfo*);
void Microsoft_Win32_SafeHandles_SafeRegistryHandle___ctor (Microsoft_Win32_SafeHandles_SafeRegistryHandle_o* __this, intptr_t preexistingHandle, bool ownsHandle, const MethodInfo*);
bool Microsoft_Win32_SafeHandles_SafeRegistryHandle__ReleaseHandle (Microsoft_Win32_SafeHandles_SafeRegistryHandle_o* __this, const MethodInfo*);
void Microsoft_Win32_SafeHandles_SafeWaitHandle___ctor (Microsoft_Win32_SafeHandles_SafeWaitHandle_o* __this, intptr_t existingHandle, bool ownsHandle, const MethodInfo*);
bool Microsoft_Win32_SafeHandles_SafeWaitHandle__ReleaseHandle (Microsoft_Win32_SafeHandles_SafeWaitHandle_o* __this, const MethodInfo*);
void Microsoft_Win32_SafeHandles_SafeHandleZeroOrMinusOneIsInvalid___ctor (Microsoft_Win32_SafeHandles_SafeHandleZeroOrMinusOneIsInvalid_o* __this, bool ownsHandle, const MethodInfo*);
bool Microsoft_Win32_SafeHandles_SafeHandleZeroOrMinusOneIsInvalid__get_IsInvalid (Microsoft_Win32_SafeHandles_SafeHandleZeroOrMinusOneIsInvalid_o* __this, const MethodInfo*);
uint32_t _PrivateImplementationDetails___ComputeStringHash (System_String_o* s, const MethodInfo*);
void Unity_ThrowStub__ThrowNotSupportedException (const MethodInfo*);
void Unity_ThrowStub__ThrowNotSupportedException (const MethodInfo*);
void Mono_Security_ASN1___ctor (Mono_Security_ASN1_o* __this, uint8_t tag, const MethodInfo*);
void Mono_Security_ASN1___ctor (Mono_Security_ASN1_o* __this, uint8_t tag, System_Byte_array* data, const MethodInfo*);
void Mono_Security_ASN1___ctor (Mono_Security_ASN1_o* __this, System_Byte_array* data, const MethodInfo*);
int32_t Mono_Security_ASN1__get_Count (Mono_Security_ASN1_o* __this, const MethodInfo*);
uint8_t Mono_Security_ASN1__get_Tag (Mono_Security_ASN1_o* __this, const MethodInfo*);
System_Byte_array* Mono_Security_ASN1__get_Value (Mono_Security_ASN1_o* __this, const MethodInfo*);
void Mono_Security_ASN1__set_Value (Mono_Security_ASN1_o* __this, System_Byte_array* value, const MethodInfo*);
Mono_Security_ASN1_o* Mono_Security_ASN1__Add (Mono_Security_ASN1_o* __this, Mono_Security_ASN1_o* asn1, const MethodInfo*);
System_Byte_array* Mono_Security_ASN1__GetBytes (Mono_Security_ASN1_o* __this, const MethodInfo*);
void Mono_Security_ASN1__Decode (Mono_Security_ASN1_o* __this, System_Byte_array* asn1, int32_t* anPos, int32_t anLength, const MethodInfo*);
void Mono_Security_ASN1__DecodeTLV (Mono_Security_ASN1_o* __this, System_Byte_array* asn1, int32_t* pos, uint8_t* tag, int32_t* length, System_Byte_array** content, const MethodInfo*);
Mono_Security_ASN1_o* Mono_Security_ASN1__get_Item (Mono_Security_ASN1_o* __this, int32_t index, const MethodInfo*);
System_String_o* Mono_Security_ASN1__ToString (Mono_Security_ASN1_o* __this, const MethodInfo*);
Mono_Security_ASN1_o* Mono_Security_ASN1Convert__FromInt32 (int32_t value, const MethodInfo*);
int32_t Mono_Security_ASN1Convert__ToInt32 (Mono_Security_ASN1_o* asn1, const MethodInfo*);
System_String_o* Mono_Security_ASN1Convert__ToOid (Mono_Security_ASN1_o* asn1, const MethodInfo*);
System_Byte_array* Mono_Security_BitConverterLE__GetUIntBytes (uint8_t* bytes, const MethodInfo*);
System_Byte_array* Mono_Security_BitConverterLE__GetBytes (int32_t value, const MethodInfo*);
System_String_o* Mono_Security_Cryptography_CryptoConvert__ToHex (System_Byte_array* input, const MethodInfo*);
System_String_o* SR__GetString (System_String_o* name, System_Object_array* args, const MethodInfo*);
System_String_o* SR__GetString (System_Globalization_CultureInfo_o* culture, System_String_o* name, System_Object_array* args, const MethodInfo*);
System_String_o* SR__GetString (System_String_o* name, const MethodInfo*);
uint32_t _PrivateImplementationDetails___ComputeStringHash (System_String_o* s, const MethodInfo*);
void Unity_ThrowStub__ThrowNotSupportedException (const MethodInfo*);
void AOT_MonoPInvokeCallbackAttribute___ctor (AOT_MonoPInvokeCallbackAttribute_o* __this, System_Type_o* type, const MethodInfo*);
void UnityEngineInternal_MathfInternal___cctor (const MethodInfo*);
void UnityEngineInternal_TypeInferenceRuleAttribute___ctor (UnityEngineInternal_TypeInferenceRuleAttribute_o* __this, int32_t rule, const MethodInfo*);
void UnityEngineInternal_TypeInferenceRuleAttribute___ctor (UnityEngineInternal_TypeInferenceRuleAttribute_o* __this, System_String_o* rule, const MethodInfo*);
System_String_o* UnityEngineInternal_TypeInferenceRuleAttribute__ToString (UnityEngineInternal_TypeInferenceRuleAttribute_o* __this, const MethodInfo*);
void UnityEngineInternal_GenericStack___ctor (UnityEngineInternal_GenericStack_o* __this, const MethodInfo*);
void Unity_Profiling_ProfilerMarker___ctor (Unity_Profiling_ProfilerMarker_o __this, System_String_o* name, const MethodInfo*);
Unity_Profiling_ProfilerMarker_AutoScope_o Unity_Profiling_ProfilerMarker__Auto (Unity_Profiling_ProfilerMarker_o __this, const MethodInfo*);
intptr_t Unity_Profiling_ProfilerMarker__Internal_Create (System_String_o* name, uint16_t flags, const MethodInfo*);
void Unity_Profiling_ProfilerMarker__Internal_Begin (intptr_t markerPtr, const MethodInfo*);
void Unity_Profiling_ProfilerMarker__Internal_End (intptr_t markerPtr, const MethodInfo*);
void Unity_Profiling_ProfilerMarker_AutoScope___ctor (Unity_Profiling_ProfilerMarker_AutoScope_o __this, intptr_t markerPtr, const MethodInfo*);
void Unity_Profiling_ProfilerMarker_AutoScope__Dispose (Unity_Profiling_ProfilerMarker_AutoScope_o __this, const MethodInfo*);
void Unity_Jobs_JobHandle__ScheduleBatchedJobs (const MethodInfo*);
void Unity_Collections_NativeLeakDetection__Initialize (const MethodInfo*);
int32_t Unity_Collections_NativeArray_byte___get_Length (Unity_Collections_NativeArray_byte__o __this, const MethodInfo_287BC00* method_287BC00);
int32_t Unity_Collections_NativeArray_int___get_Length (Unity_Collections_NativeArray_int__o __this, const MethodInfo_287C0D0* method_287C0D0);
int32_t Unity_Collections_NativeArray_LightDataGI___get_Length (Unity_Collections_NativeArray_LightDataGI__o __this, const MethodInfo_287C5A0* method_287C5A0);
int32_t Unity_Collections_NativeArray_Matrix4x4___get_Length (Unity_Collections_NativeArray_Matrix4x4__o __this, const MethodInfo_287CB40* method_287CB40);
int32_t Unity_Collections_NativeArray_Plane___get_Length (Unity_Collections_NativeArray_Plane__o __this, const MethodInfo_287D090* method_287D090);
int32_t Unity_Collections_NativeArray_BatchVisibility___get_Length (Unity_Collections_NativeArray_BatchVisibility__o __this, const MethodInfo_287D580* method_287D580);
uint8_t Unity_Collections_NativeArray_byte___get_Item (Unity_Collections_NativeArray_byte__o __this, int32_t index, const MethodInfo_287BC10* method_287BC10);
int32_t Unity_Collections_NativeArray_int___get_Item (Unity_Collections_NativeArray_int__o __this, int32_t index, const MethodInfo_287C0E0* method_287C0E0);
UnityEngine_Experimental_GlobalIllumination_LightDataGI_o Unity_Collections_NativeArray_LightDataGI___get_Item (Unity_Collections_NativeArray_LightDataGI__o __this, int32_t index, const MethodInfo_287C5B0* method_287C5B0);
UnityEngine_Matrix4x4_o Unity_Collections_NativeArray_Matrix4x4___get_Item (Unity_Collections_NativeArray_Matrix4x4__o __this, int32_t index, const MethodInfo_287CB50* method_287CB50);
UnityEngine_Plane_o Unity_Collections_NativeArray_Plane___get_Item (Unity_Collections_NativeArray_Plane__o __this, int32_t index, const MethodInfo_287D0A0* method_287D0A0);
UnityEngine_Rendering_BatchVisibility_o Unity_Collections_NativeArray_BatchVisibility___get_Item (Unity_Collections_NativeArray_BatchVisibility__o __this, int32_t index, const MethodInfo_287D590* method_287D590);
void Unity_Collections_NativeArray_byte___set_Item (Unity_Collections_NativeArray_byte__o __this, int32_t index, uint8_t value, const MethodInfo_287BCA0* method_287BCA0);
void Unity_Collections_NativeArray_int___set_Item (Unity_Collections_NativeArray_int__o __this, int32_t index, int32_t value, const MethodInfo_287C170* method_287C170);
void Unity_Collections_NativeArray_LightDataGI___set_Item (Unity_Collections_NativeArray_LightDataGI__o __this, int32_t index, UnityEngine_Experimental_GlobalIllumination_LightDataGI_o value, const MethodInfo_287C6C0* method_287C6C0);
void Unity_Collections_NativeArray_Matrix4x4___set_Item (Unity_Collections_NativeArray_Matrix4x4__o __this, int32_t index, UnityEngine_Matrix4x4_o value, const MethodInfo_287CC30* method_287CC30);
void Unity_Collections_NativeArray_Plane___set_Item (Unity_Collections_NativeArray_Plane__o __this, int32_t index, UnityEngine_Plane_o value, const MethodInfo_287D130* method_287D130);
void Unity_Collections_NativeArray_BatchVisibility___set_Item (Unity_Collections_NativeArray_BatchVisibility__o __this, int32_t index, UnityEngine_Rendering_BatchVisibility_o value, const MethodInfo_287D620* method_287D620);
void Unity_Collections_NativeArray_byte___Deallocate (Unity_Collections_NativeArray_byte__o __this, const MethodInfo_287BD40* method_287BD40);
void Unity_Collections_NativeArray_int___Deallocate (Unity_Collections_NativeArray_int__o __this, const MethodInfo_287C210* method_287C210);
void Unity_Collections_NativeArray_LightDataGI___Deallocate (Unity_Collections_NativeArray_LightDataGI__o __this, const MethodInfo_287C7B0* method_287C7B0);
void Unity_Collections_NativeArray_Matrix4x4___Deallocate (Unity_Collections_NativeArray_Matrix4x4__o __this, const MethodInfo_287CD00* method_287CD00);
void Unity_Collections_NativeArray_Plane___Deallocate (Unity_Collections_NativeArray_Plane__o __this, const MethodInfo_287D1F0* method_287D1F0);
void Unity_Collections_NativeArray_BatchVisibility___Deallocate (Unity_Collections_NativeArray_BatchVisibility__o __this, const MethodInfo_287D6C0* method_287D6C0);
void Unity_Collections_NativeArray_byte___Dispose (Unity_Collections_NativeArray_byte__o __this, const MethodInfo_287BD80* method_287BD80);
void Unity_Collections_NativeArray_int___Dispose (Unity_Collections_NativeArray_int__o __this, const MethodInfo_287C250* method_287C250);
void Unity_Collections_NativeArray_LightDataGI___Dispose (Unity_Collections_NativeArray_LightDataGI__o __this, const MethodInfo_287C7F0* method_287C7F0);
void Unity_Collections_NativeArray_Matrix4x4___Dispose (Unity_Collections_NativeArray_Matrix4x4__o __this, const MethodInfo_287CD40* method_287CD40);
void Unity_Collections_NativeArray_Plane___Dispose (Unity_Collections_NativeArray_Plane__o __this, const MethodInfo_287D230* method_287D230);
void Unity_Collections_NativeArray_BatchVisibility___Dispose (Unity_Collections_NativeArray_BatchVisibility__o __this, const MethodInfo_287D700* method_287D700);
Unity_Collections_NativeArray_Enumerator_T__o Unity_Collections_NativeArray_byte___GetEnumerator (Unity_Collections_NativeArray_byte__o __this, const MethodInfo_287BDD0* method_287BDD0);
Unity_Collections_NativeArray_Enumerator_T__o Unity_Collections_NativeArray_int___GetEnumerator (Unity_Collections_NativeArray_int__o __this, const MethodInfo_287C2A0* method_287C2A0);
Unity_Collections_NativeArray_Enumerator_T__o Unity_Collections_NativeArray_LightDataGI___GetEnumerator (Unity_Collections_NativeArray_LightDataGI__o __this, const MethodInfo_287C840* method_287C840);
Unity_Collections_NativeArray_Enumerator_T__o Unity_Collections_NativeArray_Matrix4x4___GetEnumerator (Unity_Collections_NativeArray_Matrix4x4__o __this, const MethodInfo_287CD90* method_287CD90);
Unity_Collections_NativeArray_Enumerator_T__o Unity_Collections_NativeArray_Plane___GetEnumerator (Unity_Collections_NativeArray_Plane__o __this, const MethodInfo_287D280* method_287D280);
Unity_Collections_NativeArray_Enumerator_T__o Unity_Collections_NativeArray_BatchVisibility___GetEnumerator (Unity_Collections_NativeArray_BatchVisibility__o __this, const MethodInfo_287D750* method_287D750);
System_Collections_Generic_IEnumerator_T__o* Unity_Collections_NativeArray_byte___System_Collections_Generic_IEnumerable_T__GetEnumerator (Unity_Collections_NativeArray_byte__o __this, const MethodInfo_287BE10* method_287BE10);
System_Collections_Generic_IEnumerator_T__o* Unity_Collections_NativeArray_int___System_Collections_Generic_IEnumerable_T__GetEnumerator (Unity_Collections_NativeArray_int__o __this, const MethodInfo_287C2E0* method_287C2E0);
System_Collections_Generic_IEnumerator_T__o* Unity_Collections_NativeArray_LightDataGI___System_Collections_Generic_IEnumerable_T__GetEnumerator (Unity_Collections_NativeArray_LightDataGI__o __this, const MethodInfo_287C880* method_287C880);
System_Collections_Generic_IEnumerator_T__o* Unity_Collections_NativeArray_Matrix4x4___System_Collections_Generic_IEnumerable_T__GetEnumerator (Unity_Collections_NativeArray_Matrix4x4__o __this, const MethodInfo_287CDD0* method_287CDD0);
System_Collections_Generic_IEnumerator_T__o* Unity_Collections_NativeArray_Plane___System_Collections_Generic_IEnumerable_T__GetEnumerator (Unity_Collections_NativeArray_Plane__o __this, const MethodInfo_287D2C0* method_287D2C0);
System_Collections_Generic_IEnumerator_T__o* Unity_Collections_NativeArray_BatchVisibility___System_Collections_Generic_IEnumerable_T__GetEnumerator (Unity_Collections_NativeArray_BatchVisibility__o __this, const MethodInfo_287D790* method_287D790);
System_Collections_IEnumerator_o* Unity_Collections_NativeArray_byte___System_Collections_IEnumerable_GetEnumerator (Unity_Collections_NativeArray_byte__o __this, const MethodInfo_287BEA0* method_287BEA0);
System_Collections_IEnumerator_o* Unity_Collections_NativeArray_int___System_Collections_IEnumerable_GetEnumerator (Unity_Collections_NativeArray_int__o __this, const MethodInfo_287C370* method_287C370);
System_Collections_IEnumerator_o* Unity_Collections_NativeArray_LightDataGI___System_Collections_IEnumerable_GetEnumerator (Unity_Collections_NativeArray_LightDataGI__o __this, const MethodInfo_287C910* method_287C910);
System_Collections_IEnumerator_o* Unity_Collections_NativeArray_Matrix4x4___System_Collections_IEnumerable_GetEnumerator (Unity_Collections_NativeArray_Matrix4x4__o __this, const MethodInfo_287CE60* method_287CE60);
System_Collections_IEnumerator_o* Unity_Collections_NativeArray_Plane___System_Collections_IEnumerable_GetEnumerator (Unity_Collections_NativeArray_Plane__o __this, const MethodInfo_287D350* method_287D350);
System_Collections_IEnumerator_o* Unity_Collections_NativeArray_BatchVisibility___System_Collections_IEnumerable_GetEnumerator (Unity_Collections_NativeArray_BatchVisibility__o __this, const MethodInfo_287D820* method_287D820);
bool Unity_Collections_NativeArray_byte___Equals (Unity_Collections_NativeArray_byte__o __this, Unity_Collections_NativeArray_T__o other, const MethodInfo_287BF50* method_287BF50);
bool Unity_Collections_NativeArray_int___Equals (Unity_Collections_NativeArray_int__o __this, Unity_Collections_NativeArray_T__o other, const MethodInfo_287C420* method_287C420);
bool Unity_Collections_NativeArray_LightDataGI___Equals (Unity_Collections_NativeArray_LightDataGI__o __this, Unity_Collections_NativeArray_T__o other, const MethodInfo_287C9C0* method_287C9C0);
bool Unity_Collections_NativeArray_Matrix4x4___Equals (Unity_Collections_NativeArray_Matrix4x4__o __this, Unity_Collections_NativeArray_T__o other, const MethodInfo_287CF10* method_287CF10);
bool Unity_Collections_NativeArray_Plane___Equals (Unity_Collections_NativeArray_Plane__o __this, Unity_Collections_NativeArray_T__o other, const MethodInfo_287D400* method_287D400);
bool Unity_Collections_NativeArray_BatchVisibility___Equals (Unity_Collections_NativeArray_BatchVisibility__o __this, Unity_Collections_NativeArray_T__o other, const MethodInfo_287D8D0* method_287D8D0);
bool Unity_Collections_NativeArray_byte___Equals (Unity_Collections_NativeArray_byte__o __this, Il2CppObject* obj, const MethodInfo_287BF80* method_287BF80);
bool Unity_Collections_NativeArray_int___Equals (Unity_Collections_NativeArray_int__o __this, Il2CppObject* obj, const MethodInfo_287C450* method_287C450);
bool Unity_Collections_NativeArray_LightDataGI___Equals (Unity_Collections_NativeArray_LightDataGI__o __this, Il2CppObject* obj, const MethodInfo_287C9F0* method_287C9F0);
bool Unity_Collections_NativeArray_Matrix4x4___Equals (Unity_Collections_NativeArray_Matrix4x4__o __this, Il2CppObject* obj, const MethodInfo_287CF40* method_287CF40);
bool Unity_Collections_NativeArray_Plane___Equals (Unity_Collections_NativeArray_Plane__o __this, Il2CppObject* obj, const MethodInfo_287D430* method_287D430);
bool Unity_Collections_NativeArray_BatchVisibility___Equals (Unity_Collections_NativeArray_BatchVisibility__o __this, Il2CppObject* obj, const MethodInfo_287D900* method_287D900);
int32_t Unity_Collections_NativeArray_byte___GetHashCode (Unity_Collections_NativeArray_byte__o __this, const MethodInfo_287C0B0* method_287C0B0);
int32_t Unity_Collections_NativeArray_int___GetHashCode (Unity_Collections_NativeArray_int__o __this, const MethodInfo_287C580* method_287C580);
int32_t Unity_Collections_NativeArray_LightDataGI___GetHashCode (Unity_Collections_NativeArray_LightDataGI__o __this, const MethodInfo_287CB20* method_287CB20);
int32_t Unity_Collections_NativeArray_Matrix4x4___GetHashCode (Unity_Collections_NativeArray_Matrix4x4__o __this, const MethodInfo_287D070* method_287D070);
int32_t Unity_Collections_NativeArray_Plane___GetHashCode (Unity_Collections_NativeArray_Plane__o __this, const MethodInfo_287D560* method_287D560);
int32_t Unity_Collections_NativeArray_BatchVisibility___GetHashCode (Unity_Collections_NativeArray_BatchVisibility__o __this, const MethodInfo_287DA30* method_287DA30);
void Unity_Collections_NativeArray_Enumerator_byte____ctor (Unity_Collections_NativeArray_Enumerator_byte__o __this, Unity_Collections_NativeArray_T__o* array, const MethodInfo_287B540* method_287B540);
void Unity_Collections_NativeArray_Enumerator_int____ctor (Unity_Collections_NativeArray_Enumerator_int__o __this, Unity_Collections_NativeArray_T__o* array, const MethodInfo_287B640* method_287B640);
void Unity_Collections_NativeArray_Enumerator_LightDataGI____ctor (Unity_Collections_NativeArray_Enumerator_LightDataGI__o __this, Unity_Collections_NativeArray_T__o* array, const MethodInfo_287B740* method_287B740);
void Unity_Collections_NativeArray_Enumerator_Matrix4x4____ctor (Unity_Collections_NativeArray_Enumerator_Matrix4x4__o __this, Unity_Collections_NativeArray_T__o* array, const MethodInfo_287B890* method_287B890);
void Unity_Collections_NativeArray_Enumerator_Plane____ctor (Unity_Collections_NativeArray_Enumerator_Plane__o __this, Unity_Collections_NativeArray_T__o* array, const MethodInfo_287B9C0* method_287B9C0);
void Unity_Collections_NativeArray_Enumerator_BatchVisibility____ctor (Unity_Collections_NativeArray_Enumerator_BatchVisibility__o __this, Unity_Collections_NativeArray_T__o* array, const MethodInfo_287BAE0* method_287BAE0);
void Unity_Collections_NativeArray_Enumerator_byte___Dispose (Unity_Collections_NativeArray_Enumerator_byte__o __this, const MethodInfo_287B560* method_287B560);
void Unity_Collections_NativeArray_Enumerator_int___Dispose (Unity_Collections_NativeArray_Enumerator_int__o __this, const MethodInfo_287B660* method_287B660);
void Unity_Collections_NativeArray_Enumerator_LightDataGI___Dispose (Unity_Collections_NativeArray_Enumerator_LightDataGI__o __this, const MethodInfo_287B760* method_287B760);
void Unity_Collections_NativeArray_Enumerator_Matrix4x4___Dispose (Unity_Collections_NativeArray_Enumerator_Matrix4x4__o __this, const MethodInfo_287B8B0* method_287B8B0);
void Unity_Collections_NativeArray_Enumerator_Plane___Dispose (Unity_Collections_NativeArray_Enumerator_Plane__o __this, const MethodInfo_287B9E0* method_287B9E0);
void Unity_Collections_NativeArray_Enumerator_BatchVisibility___Dispose (Unity_Collections_NativeArray_Enumerator_BatchVisibility__o __this, const MethodInfo_287BB00* method_287BB00);
bool Unity_Collections_NativeArray_Enumerator_byte___MoveNext (Unity_Collections_NativeArray_Enumerator_byte__o __this, const MethodInfo_287B570* method_287B570);
bool Unity_Collections_NativeArray_Enumerator_int___MoveNext (Unity_Collections_NativeArray_Enumerator_int__o __this, const MethodInfo_287B670* method_287B670);
bool Unity_Collections_NativeArray_Enumerator_LightDataGI___MoveNext (Unity_Collections_NativeArray_Enumerator_LightDataGI__o __this, const MethodInfo_287B770* method_287B770);
bool Unity_Collections_NativeArray_Enumerator_Matrix4x4___MoveNext (Unity_Collections_NativeArray_Enumerator_Matrix4x4__o __this, const MethodInfo_287B8C0* method_287B8C0);
bool Unity_Collections_NativeArray_Enumerator_Plane___MoveNext (Unity_Collections_NativeArray_Enumerator_Plane__o __this, const MethodInfo_287B9F0* method_287B9F0);
bool Unity_Collections_NativeArray_Enumerator_BatchVisibility___MoveNext (Unity_Collections_NativeArray_Enumerator_BatchVisibility__o __this, const MethodInfo_287BB10* method_287BB10);
void Unity_Collections_NativeArray_Enumerator_byte___Reset (Unity_Collections_NativeArray_Enumerator_byte__o __this, const MethodInfo_287B590* method_287B590);
void Unity_Collections_NativeArray_Enumerator_int___Reset (Unity_Collections_NativeArray_Enumerator_int__o __this, const MethodInfo_287B690* method_287B690);
void Unity_Collections_NativeArray_Enumerator_LightDataGI___Reset (Unity_Collections_NativeArray_Enumerator_LightDataGI__o __this, const MethodInfo_287B790* method_287B790);
void Unity_Collections_NativeArray_Enumerator_Matrix4x4___Reset (Unity_Collections_NativeArray_Enumerator_Matrix4x4__o __this, const MethodInfo_287B8E0* method_287B8E0);
void Unity_Collections_NativeArray_Enumerator_Plane___Reset (Unity_Collections_NativeArray_Enumerator_Plane__o __this, const MethodInfo_287BA10* method_287BA10);
void Unity_Collections_NativeArray_Enumerator_BatchVisibility___Reset (Unity_Collections_NativeArray_Enumerator_BatchVisibility__o __this, const MethodInfo_287BB30* method_287BB30);
uint8_t Unity_Collections_NativeArray_Enumerator_byte___get_Current (Unity_Collections_NativeArray_Enumerator_byte__o __this, const MethodInfo_287B5A0* method_287B5A0);
int32_t Unity_Collections_NativeArray_Enumerator_int___get_Current (Unity_Collections_NativeArray_Enumerator_int__o __this, const MethodInfo_287B6A0* method_287B6A0);
UnityEngine_Experimental_GlobalIllumination_LightDataGI_o Unity_Collections_NativeArray_Enumerator_LightDataGI___get_Current (Unity_Collections_NativeArray_Enumerator_LightDataGI__o __this, const MethodInfo_287B7A0* method_287B7A0);
UnityEngine_Matrix4x4_o Unity_Collections_NativeArray_Enumerator_Matrix4x4___get_Current (Unity_Collections_NativeArray_Enumerator_Matrix4x4__o __this, const MethodInfo_287B8F0* method_287B8F0);
UnityEngine_Plane_o Unity_Collections_NativeArray_Enumerator_Plane___get_Current (Unity_Collections_NativeArray_Enumerator_Plane__o __this, const MethodInfo_287BA20* method_287BA20);
UnityEngine_Rendering_BatchVisibility_o Unity_Collections_NativeArray_Enumerator_BatchVisibility___get_Current (Unity_Collections_NativeArray_Enumerator_BatchVisibility__o __this, const MethodInfo_287BB40* method_287BB40);
Il2CppObject* Unity_Collections_NativeArray_Enumerator_byte___System_Collections_IEnumerator_get_Current (Unity_Collections_NativeArray_Enumerator_byte__o __this, const MethodInfo_287B5B0* method_287B5B0);
Il2CppObject* Unity_Collections_NativeArray_Enumerator_int___System_Collections_IEnumerator_get_Current (Unity_Collections_NativeArray_Enumerator_int__o __this, const MethodInfo_287B6B0* method_287B6B0);
Il2CppObject* Unity_Collections_NativeArray_Enumerator_LightDataGI___System_Collections_IEnumerator_get_Current (Unity_Collections_NativeArray_Enumerator_LightDataGI__o __this, const MethodInfo_287B7F0* method_287B7F0);
Il2CppObject* Unity_Collections_NativeArray_Enumerator_Matrix4x4___System_Collections_IEnumerator_get_Current (Unity_Collections_NativeArray_Enumerator_Matrix4x4__o __this, const MethodInfo_287B920* method_287B920);
Il2CppObject* Unity_Collections_NativeArray_Enumerator_Plane___System_Collections_IEnumerator_get_Current (Unity_Collections_NativeArray_Enumerator_Plane__o __this, const MethodInfo_287BA40* method_287BA40);
Il2CppObject* Unity_Collections_NativeArray_Enumerator_BatchVisibility___System_Collections_IEnumerator_get_Current (Unity_Collections_NativeArray_Enumerator_BatchVisibility__o __this, const MethodInfo_287BB60* method_287BB60);
void Unity_Collections_LowLevel_Unsafe_NativeContainerAttribute___ctor (Unity_Collections_LowLevel_Unsafe_NativeContainerAttribute_o* __this, const MethodInfo*);
void Unity_Collections_LowLevel_Unsafe_NativeContainerSupportsMinMaxWriteRestrictionAttribute___ctor (Unity_Collections_LowLevel_Unsafe_NativeContainerSupportsMinMaxWriteRestrictionAttribute_o* __this, const MethodInfo*);
void Unity_Collections_LowLevel_Unsafe_NativeContainerSupportsDeallocateOnJobCompletionAttribute___ctor (Unity_Collections_LowLevel_Unsafe_NativeContainerSupportsDeallocateOnJobCompletionAttribute_o* __this, const MethodInfo*);
void Unity_Collections_LowLevel_Unsafe_NativeContainerSupportsDeferredConvertListToArray___ctor (Unity_Collections_LowLevel_Unsafe_NativeContainerSupportsDeferredConvertListToArray_o* __this, const MethodInfo*);
void Unity_Collections_LowLevel_Unsafe_WriteAccessRequiredAttribute___ctor (Unity_Collections_LowLevel_Unsafe_WriteAccessRequiredAttribute_o* __this, const MethodInfo*);
void Unity_Collections_LowLevel_Unsafe_NativeDisableUnsafePtrRestrictionAttribute___ctor (Unity_Collections_LowLevel_Unsafe_NativeDisableUnsafePtrRestrictionAttribute_o* __this, const MethodInfo*);
Unity_Collections_NativeArray_T__o Unity_Collections_LowLevel_Unsafe_NativeArrayUnsafeUtility__ConvertExistingDataToNativeArray_byte_ (void* dataPointer, int32_t length, int32_t allocator, const MethodInfo_2C8D770* method_2C8D770);
Unity_Collections_NativeArray_T__o Unity_Collections_LowLevel_Unsafe_NativeArrayUnsafeUtility__ConvertExistingDataToNativeArray_int_ (void* dataPointer, int32_t length, int32_t allocator, const MethodInfo_2C8D780* method_2C8D780);
Unity_Collections_NativeArray_T__o Unity_Collections_LowLevel_Unsafe_NativeArrayUnsafeUtility__ConvertExistingDataToNativeArray_LightDataGI_ (void* dataPointer, int32_t length, int32_t allocator, const MethodInfo_2C8D790* method_2C8D790);
Unity_Collections_NativeArray_T__o Unity_Collections_LowLevel_Unsafe_NativeArrayUnsafeUtility__ConvertExistingDataToNativeArray_Matrix4x4_ (void* dataPointer, int32_t length, int32_t allocator, const MethodInfo_2C8D7A0* method_2C8D7A0);
Unity_Collections_NativeArray_T__o Unity_Collections_LowLevel_Unsafe_NativeArrayUnsafeUtility__ConvertExistingDataToNativeArray_Plane_ (void* dataPointer, int32_t length, int32_t allocator, const MethodInfo_2C8D7B0* method_2C8D7B0);
Unity_Collections_NativeArray_T__o Unity_Collections_LowLevel_Unsafe_NativeArrayUnsafeUtility__ConvertExistingDataToNativeArray_BatchVisibility_ (void* dataPointer, int32_t length, int32_t allocator, const MethodInfo_2C8D7C0* method_2C8D7C0);
void* Unity_Collections_LowLevel_Unsafe_UnsafeUtility__Malloc (int64_t size, int32_t alignment, int32_t allocator, const MethodInfo*);
void Unity_Collections_LowLevel_Unsafe_UnsafeUtility__Free (void* memory, int32_t allocator, const MethodInfo*);
void Unity_Collections_LowLevel_Unsafe_UnsafeUtility__MemCpy (void* destination, void* source, int64_t size, const MethodInfo*);
void Unity_Collections_LowLevel_Unsafe_UnsafeUtility__MemSet (void* destination, uint8_t value, int64_t size, const MethodInfo*);
void Unity_Collections_LowLevel_Unsafe_UnsafeUtility__MemClear (void* destination, int64_t size, const MethodInfo*);
int32_t Unity_Collections_LowLevel_Unsafe_UnsafeUtility__MemCmp (void* ptr1, void* ptr2, int64_t size, const MethodInfo*);
uint8_t Unity_Collections_LowLevel_Unsafe_UnsafeUtility__ReadArrayElement_byte_ (void* source, int32_t index, const MethodInfo_1FD0600* method_1FD0600);
int32_t Unity_Collections_LowLevel_Unsafe_UnsafeUtility__ReadArrayElement_int_ (void* source, int32_t index, const MethodInfo_1FD0610* method_1FD0610);
Il2CppObject* Unity_Collections_LowLevel_Unsafe_UnsafeUtility__ReadArrayElement_object_ (void* source, int32_t index, const MethodInfo_1FD0620* method_1FD0620);
UnityEngine_Experimental_GlobalIllumination_LightDataGI_o Unity_Collections_LowLevel_Unsafe_UnsafeUtility__ReadArrayElement_LightDataGI_ (void* source, int32_t index, const MethodInfo_1FD0630* method_1FD0630);
UnityEngine_Matrix4x4_o Unity_Collections_LowLevel_Unsafe_UnsafeUtility__ReadArrayElement_Matrix4x4_ (void* source, int32_t index, const MethodInfo_1FD0650* method_1FD0650);
UnityEngine_Plane_o Unity_Collections_LowLevel_Unsafe_UnsafeUtility__ReadArrayElement_Plane_ (void* source, int32_t index, const MethodInfo_1FD0680* method_1FD0680);
UnityEngine_Rendering_BatchVisibility_o Unity_Collections_LowLevel_Unsafe_UnsafeUtility__ReadArrayElement_BatchVisibility_ (void* source, int32_t index, const MethodInfo_1FD0690* method_1FD0690);
void Unity_Collections_LowLevel_Unsafe_UnsafeUtility__WriteArrayElement_byte_ (void* destination, int32_t index, uint8_t value, const MethodInfo_1D63630* method_1D63630);
void Unity_Collections_LowLevel_Unsafe_UnsafeUtility__WriteArrayElement_int_ (void* destination, int32_t index, int32_t value, const MethodInfo_1D63640* method_1D63640);
void Unity_Collections_LowLevel_Unsafe_UnsafeUtility__WriteArrayElement_object_ (void* destination, int32_t index, Il2CppObject* value, const MethodInfo_1D63650* method_1D63650);
void Unity_Collections_LowLevel_Unsafe_UnsafeUtility__WriteArrayElement_LightDataGI_ (void* destination, int32_t index, UnityEngine_Experimental_GlobalIllumination_LightDataGI_o value, const MethodInfo_1D63660* method_1D63660);
void Unity_Collections_LowLevel_Unsafe_UnsafeUtility__WriteArrayElement_Matrix4x4_ (void* destination, int32_t index, UnityEngine_Matrix4x4_o value, const MethodInfo_1D63690* method_1D63690);
void Unity_Collections_LowLevel_Unsafe_UnsafeUtility__WriteArrayElement_Plane_ (void* destination, int32_t index, UnityEngine_Plane_o value, const MethodInfo_1D636C0* method_1D636C0);
void Unity_Collections_LowLevel_Unsafe_UnsafeUtility__WriteArrayElement_BatchVisibility_ (void* destination, int32_t index, UnityEngine_Rendering_BatchVisibility_o value, const MethodInfo_1D636E0* method_1D636E0);
int32_t Unity_Collections_LowLevel_Unsafe_UnsafeUtility__EnumToInt_Int32Enum_ (int32_t enumValue, const MethodInfo_1F996D0* method_1F996D0);
void Unity_Collections_LowLevel_Unsafe_UnsafeUtility__InternalEnumToInt_Int32Enum_ (int32_t* enumValue, int32_t* intValue, const MethodInfo_1D63610* method_1D63610);
void Unity_Collections_LowLevel_Unsafe_UnsafeUtility__InternalEnumToInt_object_ (Il2CppObject** enumValue, int32_t* intValue, const MethodInfo_1D63620* method_1D63620);
void UnityEngineInternal_Input_NativeUpdateCallback___ctor (UnityEngineInternal_Input_NativeUpdateCallback_o* __this, Il2CppObject* object, intptr_t method, const MethodInfo*);
void UnityEngineInternal_Input_NativeUpdateCallback__Invoke (UnityEngineInternal_Input_NativeUpdateCallback_o* __this, int32_t updateType, UnityEngineInternal_Input_NativeInputEventBuffer_o* buffer, const MethodInfo*);
System_IAsyncResult_o* UnityEngineInternal_Input_NativeUpdateCallback__BeginInvoke (UnityEngineInternal_Input_NativeUpdateCallback_o* __this, int32_t updateType, UnityEngineInternal_Input_NativeInputEventBuffer_o* buffer, System_AsyncCallback_o* callback, Il2CppObject* object, const MethodInfo*);
void UnityEngineInternal_Input_NativeUpdateCallback__EndInvoke (UnityEngineInternal_Input_NativeUpdateCallback_o* __this, System_IAsyncResult_o* result, const MethodInfo*);
void UnityEngineInternal_Input_NativeInputSystem___cctor (const MethodInfo*);
void UnityEngineInternal_Input_NativeInputSystem__NotifyBeforeUpdate (int32_t updateType, const MethodInfo*);
void UnityEngineInternal_Input_NativeInputSystem__NotifyUpdate (int32_t updateType, intptr_t eventBuffer, const MethodInfo*);
void UnityEngineInternal_Input_NativeInputSystem__NotifyDeviceDiscovered (int32_t deviceId, System_String_o* deviceDescriptor, const MethodInfo*);
void UnityEngineInternal_Input_NativeInputSystem__ShouldRunUpdate (int32_t updateType, bool* retval, const MethodInfo*);
void UnityEngineInternal_Input_NativeInputSystem__set_hasDeviceDiscoveredCallback (bool value, const MethodInfo*);
System_String_o* UnityEngineInternal_WebRequestUtils__RedirectTo (System_String_o* baseUri, System_String_o* redirectUri, const MethodInfo*);
System_String_o* UnityEngineInternal_WebRequestUtils__MakeInitialUrl (System_String_o* targetUrl, System_String_o* localUrl, const MethodInfo*);
System_String_o* UnityEngineInternal_WebRequestUtils__MakeUriString (System_Uri_o* targetUri, System_String_o* targetUrl, bool prependProtocol, const MethodInfo*);
System_String_o* UnityEngineInternal_WebRequestUtils__URLDecode (System_String_o* encoded, const MethodInfo*);
void UnityEngineInternal_WebRequestUtils___cctor (const MethodInfo*);
void DG_Tweening_Color2___ctor (DG_Tweening_Color2_o __this, UnityEngine_Color_o ca, UnityEngine_Color_o cb, const MethodInfo*);
DG_Tweening_Color2_o DG_Tweening_Color2__op_Addition (DG_Tweening_Color2_o c1, DG_Tweening_Color2_o c2, const MethodInfo*);
DG_Tweening_Color2_o DG_Tweening_Color2__op_Subtraction (DG_Tweening_Color2_o c1, DG_Tweening_Color2_o c2, const MethodInfo*);
DG_Tweening_Color2_o DG_Tweening_Color2__op_Multiply (DG_Tweening_Color2_o c1, float f, const MethodInfo*);
void DG_Tweening_TweenCallback___ctor (DG_Tweening_TweenCallback_o* __this, Il2CppObject* object, intptr_t method, const MethodInfo*);
void DG_Tweening_TweenCallback__Invoke (DG_Tweening_TweenCallback_o* __this, const MethodInfo*);
System_IAsyncResult_o* DG_Tweening_TweenCallback__BeginInvoke (DG_Tweening_TweenCallback_o* __this, System_AsyncCallback_o* callback, Il2CppObject* object, const MethodInfo*);
void DG_Tweening_TweenCallback__EndInvoke (DG_Tweening_TweenCallback_o* __this, System_IAsyncResult_o* result, const MethodInfo*);
void DG_Tweening_TweenCallback_int____ctor (DG_Tweening_TweenCallback_int__o* __this, Il2CppObject* object, intptr_t method, const MethodInfo_2249AB0* method_2249AB0);
void DG_Tweening_TweenCallback_object____ctor (DG_Tweening_TweenCallback_object__o* __this, Il2CppObject* object, intptr_t method, const MethodInfo_2249E00* method_2249E00);
void DG_Tweening_TweenCallback_float____ctor (DG_Tweening_TweenCallback_float__o* __this, Il2CppObject* object, intptr_t method, const MethodInfo_224A210* method_224A210);
void DG_Tweening_TweenCallback_int___Invoke (DG_Tweening_TweenCallback_int__o* __this, int32_t value, const MethodInfo_2249AD0* method_2249AD0);
void DG_Tweening_TweenCallback_object___Invoke (DG_Tweening_TweenCallback_object__o* __this, Il2CppObject* value, const MethodInfo_2249E20* method_2249E20);
void DG_Tweening_TweenCallback_float___Invoke (DG_Tweening_TweenCallback_float__o* __this, float value, const MethodInfo_224A230* method_224A230);
System_IAsyncResult_o* DG_Tweening_TweenCallback_int___BeginInvoke (DG_Tweening_TweenCallback_int__o* __this, int32_t value, System_AsyncCallback_o* callback, Il2CppObject* object, const MethodInfo_2249D60* method_2249D60);
System_IAsyncResult_o* DG_Tweening_TweenCallback_object___BeginInvoke (DG_Tweening_TweenCallback_object__o* __this, Il2CppObject* value, System_AsyncCallback_o* callback, Il2CppObject* object, const MethodInfo_224A1D0* method_224A1D0);
System_IAsyncResult_o* DG_Tweening_TweenCallback_float___BeginInvoke (DG_Tweening_TweenCallback_float__o* __this, float value, System_AsyncCallback_o* callback, Il2CppObject* object, const MethodInfo_224A4B0* method_224A4B0);
void DG_Tweening_TweenCallback_int___EndInvoke (DG_Tweening_TweenCallback_int__o* __this, System_IAsyncResult_o* result, const MethodInfo_2249DF0* method_2249DF0);
void DG_Tweening_TweenCallback_object___EndInvoke (DG_Tweening_TweenCallback_object__o* __this, System_IAsyncResult_o* result, const MethodInfo_224A200* method_224A200);
void DG_Tweening_TweenCallback_float___EndInvoke (DG_Tweening_TweenCallback_float__o* __this, System_IAsyncResult_o* result, const MethodInfo_224A540* method_224A540);
void DG_Tweening_EaseFunction___ctor (DG_Tweening_EaseFunction_o* __this, Il2CppObject* object, intptr_t method, const MethodInfo*);
float DG_Tweening_EaseFunction__Invoke (DG_Tweening_EaseFunction_o* __this, float time, float duration, float overshootOrAmplitude, float period, const MethodInfo*);
System_IAsyncResult_o* DG_Tweening_EaseFunction__BeginInvoke (DG_Tweening_EaseFunction_o* __this, float time, float duration, float overshootOrAmplitude, float period, System_AsyncCallback_o* callback, Il2CppObject* object, const MethodInfo*);
float DG_Tweening_EaseFunction__EndInvoke (DG_Tweening_EaseFunction_o* __this, System_IAsyncResult_o* result, const MethodInfo*);
int32_t DG_Tweening_DOTween__get_logBehaviour (const MethodInfo*);
void DG_Tweening_DOTween__set_logBehaviour (int32_t value, const MethodInfo*);
bool DG_Tweening_DOTween__get_debugStoreTargetId (const MethodInfo*);
void DG_Tweening_DOTween__set_debugStoreTargetId (bool value, const MethodInfo*);
DG_Tweening_IDOTweenInit_o* DG_Tweening_DOTween__Init (System_Nullable_bool__o recycleAllByDefault, System_Nullable_bool__o useSafeMode, System_Nullable_LogBehaviour__o logBehaviour, const MethodInfo*);
void DG_Tweening_DOTween__AutoInit (const MethodInfo*);
DG_Tweening_IDOTweenInit_o* DG_Tweening_DOTween__Init (DG_Tweening_Core_DOTweenSettings_o* settings, System_Nullable_bool__o recycleAllByDefault, System_Nullable_bool__o useSafeMode, System_Nullable_LogBehaviour__o logBehaviour, const MethodInfo*);
void DG_Tweening_DOTween__SetTweensCapacity (int32_t tweenersCapacity, int32_t sequencesCapacity, const MethodInfo*);
void DG_Tweening_DOTween__Clear (bool destroy, const MethodInfo*);
void DG_Tweening_DOTween__ClearCachedTweens (const MethodInfo*);
int32_t DG_Tweening_DOTween__Validate (const MethodInfo*);
void DG_Tweening_DOTween__ManualUpdate (float deltaTime, float unscaledDeltaTime, const MethodInfo*);
DG_Tweening_Core_TweenerCore_float__float__FloatOptions__o* DG_Tweening_DOTween__To (DG_Tweening_Core_DOGetter_float__o* getter, DG_Tweening_Core_DOSetter_float__o* setter, float endValue, float duration, const MethodInfo*);
DG_Tweening_Core_TweenerCore_double__double__NoOptions__o* DG_Tweening_DOTween__To (DG_Tweening_Core_DOGetter_double__o* getter, DG_Tweening_Core_DOSetter_double__o* setter, double endValue, float duration, const MethodInfo*);
DG_Tweening_Core_TweenerCore_int__int__NoOptions__o* DG_Tweening_DOTween__To (DG_Tweening_Core_DOGetter_int__o* getter, DG_Tweening_Core_DOSetter_int__o* setter, int32_t endValue, float duration, const MethodInfo*);
DG_Tweening_Core_TweenerCore_uint__uint__UintOptions__o* DG_Tweening_DOTween__To (DG_Tweening_Core_DOGetter_uint__o* getter, DG_Tweening_Core_DOSetter_uint__o* setter, uint32_t endValue, float duration, const MethodInfo*);
DG_Tweening_Core_TweenerCore_long__long__NoOptions__o* DG_Tweening_DOTween__To (DG_Tweening_Core_DOGetter_long__o* getter, DG_Tweening_Core_DOSetter_long__o* setter, int64_t endValue, float duration, const MethodInfo*);
DG_Tweening_Core_TweenerCore_ulong__ulong__NoOptions__o* DG_Tweening_DOTween__To (DG_Tweening_Core_DOGetter_ulong__o* getter, DG_Tweening_Core_DOSetter_ulong__o* setter, uint64_t endValue, float duration, const MethodInfo*);
DG_Tweening_Core_TweenerCore_string__string__StringOptions__o* DG_Tweening_DOTween__To (DG_Tweening_Core_DOGetter_string__o* getter, DG_Tweening_Core_DOSetter_string__o* setter, System_String_o* endValue, float duration, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions__o* DG_Tweening_DOTween__To (DG_Tweening_Core_DOGetter_Vector2__o* getter, DG_Tweening_Core_DOSetter_Vector2__o* setter, UnityEngine_Vector2_o endValue, float duration, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* DG_Tweening_DOTween__To (DG_Tweening_Core_DOGetter_Vector3__o* getter, DG_Tweening_Core_DOSetter_Vector3__o* setter, UnityEngine_Vector3_o endValue, float duration, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Vector4__Vector4__VectorOptions__o* DG_Tweening_DOTween__To (DG_Tweening_Core_DOGetter_Vector4__o* getter, DG_Tweening_Core_DOSetter_Vector4__o* setter, UnityEngine_Vector4_o endValue, float duration, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions__o* DG_Tweening_DOTween__To (DG_Tweening_Core_DOGetter_Quaternion__o* getter, DG_Tweening_Core_DOSetter_Quaternion__o* setter, UnityEngine_Vector3_o endValue, float duration, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions__o* DG_Tweening_DOTween__To (DG_Tweening_Core_DOGetter_Color__o* getter, DG_Tweening_Core_DOSetter_Color__o* setter, UnityEngine_Color_o endValue, float duration, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Rect__Rect__RectOptions__o* DG_Tweening_DOTween__To (DG_Tweening_Core_DOGetter_Rect__o* getter, DG_Tweening_Core_DOSetter_Rect__o* setter, UnityEngine_Rect_o endValue, float duration, const MethodInfo*);
DG_Tweening_Tweener_o* DG_Tweening_DOTween__To (DG_Tweening_Core_DOGetter_RectOffset__o* getter, DG_Tweening_Core_DOSetter_RectOffset__o* setter, UnityEngine_RectOffset_o* endValue, float duration, const MethodInfo*);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_DOTween__To_Vector3__Vector3__SpiralOptions_ (DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* plugin, DG_Tweening_Core_DOGetter_T1__o* getter, DG_Tweening_Core_DOSetter_T1__o* setter, UnityEngine_Vector3_o endValue, float duration, const MethodInfo_298E820* method_298E820);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_DOTween__To_Quaternion__Quaternion__NoOptions_ (DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* plugin, DG_Tweening_Core_DOGetter_T1__o* getter, DG_Tweening_Core_DOSetter_T1__o* setter, UnityEngine_Quaternion_o endValue, float duration, const MethodInfo_298E690* method_298E690);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_DOTween__To_Vector3__Path__PathOptions_ (DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* plugin, DG_Tweening_Core_DOGetter_T1__o* getter, DG_Tweening_Core_DOSetter_T1__o* setter, DG_Tweening_Plugins_Core_PathCore_Path_o* endValue, float duration, const MethodInfo_298E770* method_298E770);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_DOTween__To_Vector3__object__PathOptions_ (DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* plugin, DG_Tweening_Core_DOGetter_T1__o* getter, DG_Tweening_Core_DOSetter_T1__o* setter, Il2CppObject* endValue, float duration, const MethodInfo_298E770* method_298E770);
DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* DG_Tweening_DOTween__ToAxis (DG_Tweening_Core_DOGetter_Vector3__o* getter, DG_Tweening_Core_DOSetter_Vector3__o* setter, float endValue, float duration, int32_t axisConstraint, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions__o* DG_Tweening_DOTween__ToAlpha (DG_Tweening_Core_DOGetter_Color__o* getter, DG_Tweening_Core_DOSetter_Color__o* setter, float endValue, float duration, const MethodInfo*);
DG_Tweening_Tweener_o* DG_Tweening_DOTween__To (DG_Tweening_Core_DOSetter_float__o* setter, float startValue, float endValue, float duration, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Vector3__Vector3____Vector3ArrayOptions__o* DG_Tweening_DOTween__Punch (DG_Tweening_Core_DOGetter_Vector3__o* getter, DG_Tweening_Core_DOSetter_Vector3__o* setter, UnityEngine_Vector3_o direction, float duration, int32_t vibrato, float elasticity, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Vector3__Vector3____Vector3ArrayOptions__o* DG_Tweening_DOTween__Shake (DG_Tweening_Core_DOGetter_Vector3__o* getter, DG_Tweening_Core_DOSetter_Vector3__o* setter, float duration, float strength, int32_t vibrato, float randomness, bool ignoreZAxis, bool fadeOut, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Vector3__Vector3____Vector3ArrayOptions__o* DG_Tweening_DOTween__Shake (DG_Tweening_Core_DOGetter_Vector3__o* getter, DG_Tweening_Core_DOSetter_Vector3__o* setter, float duration, UnityEngine_Vector3_o strength, int32_t vibrato, float randomness, bool fadeOut, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Vector3__Vector3____Vector3ArrayOptions__o* DG_Tweening_DOTween__Shake (DG_Tweening_Core_DOGetter_Vector3__o* getter, DG_Tweening_Core_DOSetter_Vector3__o* setter, float duration, UnityEngine_Vector3_o strength, int32_t vibrato, float randomness, bool ignoreZAxis, bool vectorBased, bool fadeOut, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Vector3__Vector3____Vector3ArrayOptions__o* DG_Tweening_DOTween__ToArray (DG_Tweening_Core_DOGetter_Vector3__o* getter, DG_Tweening_Core_DOSetter_Vector3__o* setter, UnityEngine_Vector3_array* endValues, System_Single_array* durations, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Color2__Color2__ColorOptions__o* DG_Tweening_DOTween__To (DG_Tweening_Core_DOGetter_Color2__o* getter, DG_Tweening_Core_DOSetter_Color2__o* setter, DG_Tweening_Color2_o endValue, float duration, const MethodInfo*);
DG_Tweening_Sequence_o* DG_Tweening_DOTween__Sequence (const MethodInfo*);
int32_t DG_Tweening_DOTween__CompleteAll (bool withCallbacks, const MethodInfo*);
int32_t DG_Tweening_DOTween__Complete (Il2CppObject* targetOrId, bool withCallbacks, const MethodInfo*);
int32_t DG_Tweening_DOTween__CompleteAndReturnKilledTot (const MethodInfo*);
int32_t DG_Tweening_DOTween__CompleteAndReturnKilledTot (Il2CppObject* targetOrId, const MethodInfo*);
int32_t DG_Tweening_DOTween__CompleteAndReturnKilledTotExceptFor (System_Object_array* excludeTargetsOrIds, const MethodInfo*);
int32_t DG_Tweening_DOTween__FlipAll (const MethodInfo*);
int32_t DG_Tweening_DOTween__Flip (Il2CppObject* targetOrId, const MethodInfo*);
int32_t DG_Tweening_DOTween__GotoAll (float to, bool andPlay, const MethodInfo*);
int32_t DG_Tweening_DOTween__Goto (Il2CppObject* targetOrId, float to, bool andPlay, const MethodInfo*);
int32_t DG_Tweening_DOTween__KillAll (bool complete, const MethodInfo*);
int32_t DG_Tweening_DOTween__KillAll (bool complete, System_Object_array* idsOrTargetsToExclude, const MethodInfo*);
int32_t DG_Tweening_DOTween__Kill (Il2CppObject* targetOrId, bool complete, const MethodInfo*);
int32_t DG_Tweening_DOTween__PauseAll (const MethodInfo*);
int32_t DG_Tweening_DOTween__Pause (Il2CppObject* targetOrId, const MethodInfo*);
int32_t DG_Tweening_DOTween__PlayAll (const MethodInfo*);
int32_t DG_Tweening_DOTween__Play (Il2CppObject* targetOrId, const MethodInfo*);
int32_t DG_Tweening_DOTween__Play (Il2CppObject* target, Il2CppObject* id, const MethodInfo*);
int32_t DG_Tweening_DOTween__PlayBackwardsAll (const MethodInfo*);
int32_t DG_Tweening_DOTween__PlayBackwards (Il2CppObject* targetOrId, const MethodInfo*);
int32_t DG_Tweening_DOTween__PlayBackwards (Il2CppObject* target, Il2CppObject* id, const MethodInfo*);
int32_t DG_Tweening_DOTween__PlayForwardAll (const MethodInfo*);
int32_t DG_Tweening_DOTween__PlayForward (Il2CppObject* targetOrId, const MethodInfo*);
int32_t DG_Tweening_DOTween__PlayForward (Il2CppObject* target, Il2CppObject* id, const MethodInfo*);
int32_t DG_Tweening_DOTween__RestartAll (bool includeDelay, const MethodInfo*);
int32_t DG_Tweening_DOTween__Restart (Il2CppObject* targetOrId, bool includeDelay, float changeDelayTo, const MethodInfo*);
int32_t DG_Tweening_DOTween__Restart (Il2CppObject* target, Il2CppObject* id, bool includeDelay, float changeDelayTo, const MethodInfo*);
int32_t DG_Tweening_DOTween__RewindAll (bool includeDelay, const MethodInfo*);
int32_t DG_Tweening_DOTween__Rewind (Il2CppObject* targetOrId, bool includeDelay, const MethodInfo*);
int32_t DG_Tweening_DOTween__SmoothRewindAll (const MethodInfo*);
int32_t DG_Tweening_DOTween__SmoothRewind (Il2CppObject* targetOrId, const MethodInfo*);
int32_t DG_Tweening_DOTween__TogglePauseAll (const MethodInfo*);
int32_t DG_Tweening_DOTween__TogglePause (Il2CppObject* targetOrId, const MethodInfo*);
bool DG_Tweening_DOTween__IsTweening (Il2CppObject* targetOrId, bool alsoCheckIfIsPlaying, const MethodInfo*);
int32_t DG_Tweening_DOTween__TotalPlayingTweens (const MethodInfo*);
System_Collections_Generic_List_Tween__o* DG_Tweening_DOTween__PlayingTweens (System_Collections_Generic_List_Tween__o* fillableList, const MethodInfo*);
System_Collections_Generic_List_Tween__o* DG_Tweening_DOTween__PausedTweens (System_Collections_Generic_List_Tween__o* fillableList, const MethodInfo*);
System_Collections_Generic_List_Tween__o* DG_Tweening_DOTween__TweensById (Il2CppObject* id, bool playingOnly, System_Collections_Generic_List_Tween__o* fillableList, const MethodInfo*);
System_Collections_Generic_List_Tween__o* DG_Tweening_DOTween__TweensByTarget (Il2CppObject* target, bool playingOnly, System_Collections_Generic_List_Tween__o* fillableList, const MethodInfo*);
void DG_Tweening_DOTween__InitCheck (const MethodInfo*);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_DOTween__ApplyTo_Color2__Color2__ColorOptions_ (DG_Tweening_Core_DOGetter_T1__o* getter, DG_Tweening_Core_DOSetter_T1__o* setter, DG_Tweening_Color2_o endValue, float duration, DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* plugin, const MethodInfo_298CF40* method_298CF40);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_DOTween__ApplyTo_double__double__NoOptions_ (DG_Tweening_Core_DOGetter_T1__o* getter, DG_Tweening_Core_DOSetter_T1__o* setter, double endValue, float duration, DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* plugin, const MethodInfo_298D0A0* method_298D0A0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_DOTween__ApplyTo_int__int__NoOptions_ (DG_Tweening_Core_DOGetter_T1__o* getter, DG_Tweening_Core_DOSetter_T1__o* setter, int32_t endValue, float duration, DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* plugin, const MethodInfo_298D1C0* method_298D1C0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_DOTween__ApplyTo_long__long__NoOptions_ (DG_Tweening_Core_DOGetter_T1__o* getter, DG_Tweening_Core_DOSetter_T1__o* setter, int64_t endValue, float duration, DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* plugin, const MethodInfo_298D2F0* method_298D2F0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_DOTween__ApplyTo_object__object__NoOptions_ (DG_Tweening_Core_DOGetter_T1__o* getter, DG_Tweening_Core_DOSetter_T1__o* setter, Il2CppObject* endValue, float duration, DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* plugin, const MethodInfo_298D420* method_298D420);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_DOTween__ApplyTo_object__object__StringOptions_ (DG_Tweening_Core_DOGetter_T1__o* getter, DG_Tweening_Core_DOSetter_T1__o* setter, Il2CppObject* endValue, float duration, DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* plugin, const MethodInfo_298D550* method_298D550);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_DOTween__ApplyTo_float__float__FloatOptions_ (DG_Tweening_Core_DOGetter_T1__o* getter, DG_Tweening_Core_DOSetter_T1__o* setter, float endValue, float duration, DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* plugin, const MethodInfo_298D680* method_298D680);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_DOTween__ApplyTo_string__string__StringOptions_ (DG_Tweening_Core_DOGetter_T1__o* getter, DG_Tweening_Core_DOSetter_T1__o* setter, System_String_o* endValue, float duration, DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* plugin, const MethodInfo_298D550* method_298D550);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_DOTween__ApplyTo_uint__uint__UintOptions_ (DG_Tweening_Core_DOGetter_T1__o* getter, DG_Tweening_Core_DOSetter_T1__o* setter, uint32_t endValue, float duration, DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* plugin, const MethodInfo_298D7A0* method_298D7A0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_DOTween__ApplyTo_ulong__ulong__NoOptions_ (DG_Tweening_Core_DOGetter_T1__o* getter, DG_Tweening_Core_DOSetter_T1__o* setter, uint64_t endValue, float duration, DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* plugin, const MethodInfo_298D8D0* method_298D8D0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_DOTween__ApplyTo_Color__Color__ColorOptions_ (DG_Tweening_Core_DOGetter_T1__o* getter, DG_Tweening_Core_DOSetter_T1__o* setter, UnityEngine_Color_o endValue, float duration, DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* plugin, const MethodInfo_298DA00* method_298DA00);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_DOTween__ApplyTo_Quaternion__Quaternion__NoOptions_ (DG_Tweening_Core_DOGetter_T1__o* getter, DG_Tweening_Core_DOSetter_T1__o* setter, UnityEngine_Quaternion_o endValue, float duration, DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* plugin, const MethodInfo_298DB50* method_298DB50);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_DOTween__ApplyTo_Quaternion__Vector3__QuaternionOptions_ (DG_Tweening_Core_DOGetter_T1__o* getter, DG_Tweening_Core_DOSetter_T1__o* setter, UnityEngine_Vector3_o endValue, float duration, DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* plugin, const MethodInfo_298DCA0* method_298DCA0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_DOTween__ApplyTo_Rect__Rect__RectOptions_ (DG_Tweening_Core_DOGetter_T1__o* getter, DG_Tweening_Core_DOSetter_T1__o* setter, UnityEngine_Rect_o endValue, float duration, DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* plugin, const MethodInfo_298DDE0* method_298DDE0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_DOTween__ApplyTo_RectOffset__RectOffset__NoOptions_ (DG_Tweening_Core_DOGetter_T1__o* getter, DG_Tweening_Core_DOSetter_T1__o* setter, UnityEngine_RectOffset_o* endValue, float duration, DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* plugin, const MethodInfo_298D420* method_298D420);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_DOTween__ApplyTo_Vector2__Vector2__VectorOptions_ (DG_Tweening_Core_DOGetter_T1__o* getter, DG_Tweening_Core_DOSetter_T1__o* setter, UnityEngine_Vector2_o endValue, float duration, DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* plugin, const MethodInfo_298DF30* method_298DF30);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_DOTween__ApplyTo_Vector3__object__PathOptions_ (DG_Tweening_Core_DOGetter_T1__o* getter, DG_Tweening_Core_DOSetter_T1__o* setter, Il2CppObject* endValue, float duration, DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* plugin, const MethodInfo_298E060* method_298E060);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_DOTween__ApplyTo_Vector3__object__Vector3ArrayOptions_ (DG_Tweening_Core_DOGetter_T1__o* getter, DG_Tweening_Core_DOSetter_T1__o* setter, Il2CppObject* endValue, float duration, DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* plugin, const MethodInfo_298E190* method_298E190);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_DOTween__ApplyTo_Vector3__Vector3__VectorOptions_ (DG_Tweening_Core_DOGetter_T1__o* getter, DG_Tweening_Core_DOSetter_T1__o* setter, UnityEngine_Vector3_o endValue, float duration, DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* plugin, const MethodInfo_298E2C0* method_298E2C0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_DOTween__ApplyTo_Vector3__Vector3__SpiralOptions_ (DG_Tweening_Core_DOGetter_T1__o* getter, DG_Tweening_Core_DOSetter_T1__o* setter, UnityEngine_Vector3_o endValue, float duration, DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* plugin, const MethodInfo_298E400* method_298E400);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_DOTween__ApplyTo_Vector3__Vector3____Vector3ArrayOptions_ (DG_Tweening_Core_DOGetter_T1__o* getter, DG_Tweening_Core_DOSetter_T1__o* setter, UnityEngine_Vector3_array* endValue, float duration, DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* plugin, const MethodInfo_298E190* method_298E190);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_DOTween__ApplyTo_Vector4__Vector4__VectorOptions_ (DG_Tweening_Core_DOGetter_T1__o* getter, DG_Tweening_Core_DOSetter_T1__o* setter, UnityEngine_Vector4_o endValue, float duration, DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* plugin, const MethodInfo_298E540* method_298E540);
void DG_Tweening_DOTween___ctor (DG_Tweening_DOTween_o* __this, const MethodInfo*);
void DG_Tweening_DOTween___cctor (const MethodInfo*);
void DG_Tweening_DOTween___c__DisplayClass60_0___ctor (DG_Tweening_DOTween___c__DisplayClass60_0_o* __this, const MethodInfo*);
float DG_Tweening_DOTween___c__DisplayClass60_0___To_b__0 (DG_Tweening_DOTween___c__DisplayClass60_0_o* __this, const MethodInfo*);
void DG_Tweening_DOTween___c__DisplayClass60_0___To_b__1 (DG_Tweening_DOTween___c__DisplayClass60_0_o* __this, float x, const MethodInfo*);
DG_Tweening_Tweener_o* DG_Tweening_DOVirtual__Float (float from, float to, float duration, DG_Tweening_TweenCallback_float__o* onVirtualUpdate, const MethodInfo*);
float DG_Tweening_DOVirtual__EasedValue (float from, float to, float lifetimePercentage, int32_t easeType, const MethodInfo*);
float DG_Tweening_DOVirtual__EasedValue (float from, float to, float lifetimePercentage, int32_t easeType, float overshoot, const MethodInfo*);
float DG_Tweening_DOVirtual__EasedValue (float from, float to, float lifetimePercentage, int32_t easeType, float amplitude, float period, const MethodInfo*);
float DG_Tweening_DOVirtual__EasedValue (float from, float to, float lifetimePercentage, UnityEngine_AnimationCurve_o* easeCurve, const MethodInfo*);
DG_Tweening_Tween_o* DG_Tweening_DOVirtual__DelayedCall (float delay, DG_Tweening_TweenCallback_o* callback, bool ignoreTimeScale, const MethodInfo*);
void DG_Tweening_DOVirtual___c__DisplayClass0_0___ctor (DG_Tweening_DOVirtual___c__DisplayClass0_0_o* __this, const MethodInfo*);
float DG_Tweening_DOVirtual___c__DisplayClass0_0___Float_b__0 (DG_Tweening_DOVirtual___c__DisplayClass0_0_o* __this, const MethodInfo*);
void DG_Tweening_DOVirtual___c__DisplayClass0_0___Float_b__1 (DG_Tweening_DOVirtual___c__DisplayClass0_0_o* __this, float x, const MethodInfo*);
void DG_Tweening_DOVirtual___c__DisplayClass0_0___Float_b__2 (DG_Tweening_DOVirtual___c__DisplayClass0_0_o* __this, const MethodInfo*);
DG_Tweening_EaseFunction_o* DG_Tweening_EaseFactory__StopMotion (int32_t motionFps, System_Nullable_Ease__o ease, const MethodInfo*);
DG_Tweening_EaseFunction_o* DG_Tweening_EaseFactory__StopMotion (int32_t motionFps, UnityEngine_AnimationCurve_o* animCurve, const MethodInfo*);
DG_Tweening_EaseFunction_o* DG_Tweening_EaseFactory__StopMotion (int32_t motionFps, DG_Tweening_EaseFunction_o* customEase, const MethodInfo*);
void DG_Tweening_EaseFactory___ctor (DG_Tweening_EaseFactory_o* __this, const MethodInfo*);
void DG_Tweening_EaseFactory___c__DisplayClass2_0___ctor (DG_Tweening_EaseFactory___c__DisplayClass2_0_o* __this, const MethodInfo*);
float DG_Tweening_EaseFactory___c__DisplayClass2_0___StopMotion_b__0 (DG_Tweening_EaseFactory___c__DisplayClass2_0_o* __this, float time, float duration, float overshootOrAmplitude, float period, const MethodInfo*);
void DG_Tweening_TweenExtensions__Complete (DG_Tweening_Tween_o* t, const MethodInfo*);
void DG_Tweening_TweenExtensions__Complete (DG_Tweening_Tween_o* t, bool withCallbacks, const MethodInfo*);
void DG_Tweening_TweenExtensions__Flip (DG_Tweening_Tween_o* t, const MethodInfo*);
void DG_Tweening_TweenExtensions__ForceInit (DG_Tweening_Tween_o* t, const MethodInfo*);
void DG_Tweening_TweenExtensions__Goto (DG_Tweening_Tween_o* t, float to, bool andPlay, const MethodInfo*);
void DG_Tweening_TweenExtensions__Kill (DG_Tweening_Tween_o* t, bool complete, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* DG_Tweening_TweenExtensions__Pause_TweenerCore_Vector3__Path__PathOptions__ (DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* t, const MethodInfo_1D68710* method_1D68710);
DG_Tweening_Sequence_o* DG_Tweening_TweenExtensions__Pause_Sequence_ (DG_Tweening_Sequence_o* t, const MethodInfo_1D68710* method_1D68710);
DG_Tweening_Tween_o* DG_Tweening_TweenExtensions__Pause_Tween_ (DG_Tweening_Tween_o* t, const MethodInfo_1D68710* method_1D68710);
Il2CppObject* DG_Tweening_TweenExtensions__Pause_object_ (Il2CppObject* t, const MethodInfo_1D68710* method_1D68710);
DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* DG_Tweening_TweenExtensions__Play_TweenerCore_Vector3__Path__PathOptions__ (DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* t, const MethodInfo_1D688C0* method_1D688C0);
DG_Tweening_Sequence_o* DG_Tweening_TweenExtensions__Play_Sequence_ (DG_Tweening_Sequence_o* t, const MethodInfo_1D688C0* method_1D688C0);
DG_Tweening_Tween_o* DG_Tweening_TweenExtensions__Play_Tween_ (DG_Tweening_Tween_o* t, const MethodInfo_1D688C0* method_1D688C0);
Il2CppObject* DG_Tweening_TweenExtensions__Play_object_ (Il2CppObject* t, const MethodInfo_1D688C0* method_1D688C0);
void DG_Tweening_TweenExtensions__PlayBackwards (DG_Tweening_Tween_o* t, const MethodInfo*);
void DG_Tweening_TweenExtensions__PlayForward (DG_Tweening_Tween_o* t, const MethodInfo*);
void DG_Tweening_TweenExtensions__Restart (DG_Tweening_Tween_o* t, bool includeDelay, float changeDelayTo, const MethodInfo*);
void DG_Tweening_TweenExtensions__Rewind (DG_Tweening_Tween_o* t, bool includeDelay, const MethodInfo*);
void DG_Tweening_TweenExtensions__SmoothRewind (DG_Tweening_Tween_o* t, const MethodInfo*);
void DG_Tweening_TweenExtensions__TogglePause (DG_Tweening_Tween_o* t, const MethodInfo*);
void DG_Tweening_TweenExtensions__GotoWaypoint (DG_Tweening_Tween_o* t, int32_t waypointIndex, bool andPlay, const MethodInfo*);
UnityEngine_YieldInstruction_o* DG_Tweening_TweenExtensions__WaitForCompletion (DG_Tweening_Tween_o* t, const MethodInfo*);
UnityEngine_YieldInstruction_o* DG_Tweening_TweenExtensions__WaitForRewind (DG_Tweening_Tween_o* t, const MethodInfo*);
UnityEngine_YieldInstruction_o* DG_Tweening_TweenExtensions__WaitForKill (DG_Tweening_Tween_o* t, const MethodInfo*);
UnityEngine_YieldInstruction_o* DG_Tweening_TweenExtensions__WaitForElapsedLoops (DG_Tweening_Tween_o* t, int32_t elapsedLoops, const MethodInfo*);
UnityEngine_YieldInstruction_o* DG_Tweening_TweenExtensions__WaitForPosition (DG_Tweening_Tween_o* t, float position, const MethodInfo*);
UnityEngine_Coroutine_o* DG_Tweening_TweenExtensions__WaitForStart (DG_Tweening_Tween_o* t, const MethodInfo*);
int32_t DG_Tweening_TweenExtensions__CompletedLoops (DG_Tweening_Tween_o* t, const MethodInfo*);
float DG_Tweening_TweenExtensions__Delay (DG_Tweening_Tween_o* t, const MethodInfo*);
float DG_Tweening_TweenExtensions__Duration (DG_Tweening_Tween_o* t, bool includeLoops, const MethodInfo*);
float DG_Tweening_TweenExtensions__Elapsed (DG_Tweening_Tween_o* t, bool includeLoops, const MethodInfo*);
float DG_Tweening_TweenExtensions__ElapsedPercentage (DG_Tweening_Tween_o* t, bool includeLoops, const MethodInfo*);
float DG_Tweening_TweenExtensions__ElapsedDirectionalPercentage (DG_Tweening_Tween_o* t, const MethodInfo*);
bool DG_Tweening_TweenExtensions__IsActive (DG_Tweening_Tween_o* t, const MethodInfo*);
bool DG_Tweening_TweenExtensions__IsBackwards (DG_Tweening_Tween_o* t, const MethodInfo*);
bool DG_Tweening_TweenExtensions__IsComplete (DG_Tweening_Tween_o* t, const MethodInfo*);
bool DG_Tweening_TweenExtensions__IsInitialized (DG_Tweening_Tween_o* t, const MethodInfo*);
bool DG_Tweening_TweenExtensions__IsPlaying (DG_Tweening_Tween_o* t, const MethodInfo*);
int32_t DG_Tweening_TweenExtensions__Loops (DG_Tweening_Tween_o* t, const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_TweenExtensions__PathGetPoint (DG_Tweening_Tween_o* t, float pathPercentage, const MethodInfo*);
UnityEngine_Vector3_array* DG_Tweening_TweenExtensions__PathGetDrawPoints (DG_Tweening_Tween_o* t, int32_t subdivisionsXSegment, const MethodInfo*);
float DG_Tweening_TweenExtensions__PathLength (DG_Tweening_Tween_o* t, const MethodInfo*);
void DG_Tweening_Sequence___ctor (DG_Tweening_Sequence_o* __this, const MethodInfo*);
DG_Tweening_Sequence_o* DG_Tweening_Sequence__DoPrepend (DG_Tweening_Sequence_o* inSequence, DG_Tweening_Tween_o* t, const MethodInfo*);
DG_Tweening_Sequence_o* DG_Tweening_Sequence__DoInsert (DG_Tweening_Sequence_o* inSequence, DG_Tweening_Tween_o* t, float atPosition, const MethodInfo*);
DG_Tweening_Sequence_o* DG_Tweening_Sequence__DoAppendInterval (DG_Tweening_Sequence_o* inSequence, float interval, const MethodInfo*);
DG_Tweening_Sequence_o* DG_Tweening_Sequence__DoPrependInterval (DG_Tweening_Sequence_o* inSequence, float interval, const MethodInfo*);
DG_Tweening_Sequence_o* DG_Tweening_Sequence__DoInsertCallback (DG_Tweening_Sequence_o* inSequence, DG_Tweening_TweenCallback_o* callback, float atPosition, const MethodInfo*);
void DG_Tweening_Sequence__Reset (DG_Tweening_Sequence_o* __this, const MethodInfo*);
bool DG_Tweening_Sequence__Validate (DG_Tweening_Sequence_o* __this, const MethodInfo*);
bool DG_Tweening_Sequence__Startup (DG_Tweening_Sequence_o* __this, const MethodInfo*);
bool DG_Tweening_Sequence__ApplyTween (DG_Tweening_Sequence_o* __this, float prevPosition, int32_t prevCompletedLoops, int32_t newCompletedSteps, bool useInversePosition, int32_t updateMode, int32_t updateNotice, const MethodInfo*);
void DG_Tweening_Sequence__Setup (DG_Tweening_Sequence_o* s, const MethodInfo*);
bool DG_Tweening_Sequence__DoStartup (DG_Tweening_Sequence_o* s, const MethodInfo*);
bool DG_Tweening_Sequence__DoApplyTween (DG_Tweening_Sequence_o* s, float prevPosition, int32_t prevCompletedLoops, int32_t newCompletedSteps, bool useInversePosition, int32_t updateMode, const MethodInfo*);
bool DG_Tweening_Sequence__ApplyInternalCycle (DG_Tweening_Sequence_o* s, float fromPos, float toPos, int32_t updateMode, bool useInverse, bool prevPosIsInverse, bool multiCycleStep, const MethodInfo*);
void DG_Tweening_Sequence__StableSortSequencedObjs (System_Collections_Generic_List_ABSSequentiable__o* list, const MethodInfo*);
bool DG_Tweening_Sequence__IsAnyCallbackSet (DG_Tweening_Sequence_o* s, const MethodInfo*);
DG_Tweening_Core_TweenerCore_float__float__FloatOptions__o* DG_Tweening_ShortcutExtensions__DOAspect (UnityEngine_Camera_o* target, float endValue, float duration, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions__o* DG_Tweening_ShortcutExtensions__DOColor (UnityEngine_Camera_o* target, UnityEngine_Color_o endValue, float duration, const MethodInfo*);
DG_Tweening_Core_TweenerCore_float__float__FloatOptions__o* DG_Tweening_ShortcutExtensions__DOFarClipPlane (UnityEngine_Camera_o* target, float endValue, float duration, const MethodInfo*);
DG_Tweening_Core_TweenerCore_float__float__FloatOptions__o* DG_Tweening_ShortcutExtensions__DOFieldOfView (UnityEngine_Camera_o* target, float endValue, float duration, const MethodInfo*);
DG_Tweening_Core_TweenerCore_float__float__FloatOptions__o* DG_Tweening_ShortcutExtensions__DONearClipPlane (UnityEngine_Camera_o* target, float endValue, float duration, const MethodInfo*);
DG_Tweening_Core_TweenerCore_float__float__FloatOptions__o* DG_Tweening_ShortcutExtensions__DOOrthoSize (UnityEngine_Camera_o* target, float endValue, float duration, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Rect__Rect__RectOptions__o* DG_Tweening_ShortcutExtensions__DOPixelRect (UnityEngine_Camera_o* target, UnityEngine_Rect_o endValue, float duration, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Rect__Rect__RectOptions__o* DG_Tweening_ShortcutExtensions__DORect (UnityEngine_Camera_o* target, UnityEngine_Rect_o endValue, float duration, const MethodInfo*);
DG_Tweening_Tweener_o* DG_Tweening_ShortcutExtensions__DOShakePosition (UnityEngine_Camera_o* target, float duration, float strength, int32_t vibrato, float randomness, bool fadeOut, const MethodInfo*);
DG_Tweening_Tweener_o* DG_Tweening_ShortcutExtensions__DOShakePosition (UnityEngine_Camera_o* target, float duration, UnityEngine_Vector3_o strength, int32_t vibrato, float randomness, bool fadeOut, const MethodInfo*);
DG_Tweening_Tweener_o* DG_Tweening_ShortcutExtensions__DOShakeRotation (UnityEngine_Camera_o* target, float duration, float strength, int32_t vibrato, float randomness, bool fadeOut, const MethodInfo*);
DG_Tweening_Tweener_o* DG_Tweening_ShortcutExtensions__DOShakeRotation (UnityEngine_Camera_o* target, float duration, UnityEngine_Vector3_o strength, int32_t vibrato, float randomness, bool fadeOut, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions__o* DG_Tweening_ShortcutExtensions__DOColor (UnityEngine_Light_o* target, UnityEngine_Color_o endValue, float duration, const MethodInfo*);
DG_Tweening_Core_TweenerCore_float__float__FloatOptions__o* DG_Tweening_ShortcutExtensions__DOIntensity (UnityEngine_Light_o* target, float endValue, float duration, const MethodInfo*);
DG_Tweening_Core_TweenerCore_float__float__FloatOptions__o* DG_Tweening_ShortcutExtensions__DOShadowStrength (UnityEngine_Light_o* target, float endValue, float duration, const MethodInfo*);
DG_Tweening_Tweener_o* DG_Tweening_ShortcutExtensions__DOColor (UnityEngine_LineRenderer_o* target, DG_Tweening_Color2_o startValue, DG_Tweening_Color2_o endValue, float duration, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions__o* DG_Tweening_ShortcutExtensions__DOColor (UnityEngine_Material_o* target, UnityEngine_Color_o endValue, float duration, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions__o* DG_Tweening_ShortcutExtensions__DOColor (UnityEngine_Material_o* target, UnityEngine_Color_o endValue, System_String_o* property, float duration, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions__o* DG_Tweening_ShortcutExtensions__DOColor (UnityEngine_Material_o* target, UnityEngine_Color_o endValue, int32_t propertyID, float duration, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions__o* DG_Tweening_ShortcutExtensions__DOFade (UnityEngine_Material_o* target, float endValue, float duration, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions__o* DG_Tweening_ShortcutExtensions__DOFade (UnityEngine_Material_o* target, float endValue, System_String_o* property, float duration, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions__o* DG_Tweening_ShortcutExtensions__DOFade (UnityEngine_Material_o* target, float endValue, int32_t propertyID, float duration, const MethodInfo*);
DG_Tweening_Core_TweenerCore_float__float__FloatOptions__o* DG_Tweening_ShortcutExtensions__DOFloat (UnityEngine_Material_o* target, float endValue, System_String_o* property, float duration, const MethodInfo*);
DG_Tweening_Core_TweenerCore_float__float__FloatOptions__o* DG_Tweening_ShortcutExtensions__DOFloat (UnityEngine_Material_o* target, float endValue, int32_t propertyID, float duration, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions__o* DG_Tweening_ShortcutExtensions__DOOffset (UnityEngine_Material_o* target, UnityEngine_Vector2_o endValue, float duration, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions__o* DG_Tweening_ShortcutExtensions__DOOffset (UnityEngine_Material_o* target, UnityEngine_Vector2_o endValue, System_String_o* property, float duration, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions__o* DG_Tweening_ShortcutExtensions__DOTiling (UnityEngine_Material_o* target, UnityEngine_Vector2_o endValue, float duration, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions__o* DG_Tweening_ShortcutExtensions__DOTiling (UnityEngine_Material_o* target, UnityEngine_Vector2_o endValue, System_String_o* property, float duration, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Vector4__Vector4__VectorOptions__o* DG_Tweening_ShortcutExtensions__DOVector (UnityEngine_Material_o* target, UnityEngine_Vector4_o endValue, System_String_o* property, float duration, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Vector4__Vector4__VectorOptions__o* DG_Tweening_ShortcutExtensions__DOVector (UnityEngine_Material_o* target, UnityEngine_Vector4_o endValue, int32_t propertyID, float duration, const MethodInfo*);
DG_Tweening_Tweener_o* DG_Tweening_ShortcutExtensions__DOResize (UnityEngine_TrailRenderer_o* target, float toStartWidth, float toEndWidth, float duration, const MethodInfo*);
DG_Tweening_Core_TweenerCore_float__float__FloatOptions__o* DG_Tweening_ShortcutExtensions__DOTime (UnityEngine_TrailRenderer_o* target, float endValue, float duration, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* DG_Tweening_ShortcutExtensions__DOMove (UnityEngine_Transform_o* target, UnityEngine_Vector3_o endValue, float duration, bool snapping, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* DG_Tweening_ShortcutExtensions__DOMoveX (UnityEngine_Transform_o* target, float endValue, float duration, bool snapping, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* DG_Tweening_ShortcutExtensions__DOMoveY (UnityEngine_Transform_o* target, float endValue, float duration, bool snapping, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* DG_Tweening_ShortcutExtensions__DOMoveZ (UnityEngine_Transform_o* target, float endValue, float duration, bool snapping, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* DG_Tweening_ShortcutExtensions__DOLocalMove (UnityEngine_Transform_o* target, UnityEngine_Vector3_o endValue, float duration, bool snapping, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* DG_Tweening_ShortcutExtensions__DOLocalMoveX (UnityEngine_Transform_o* target, float endValue, float duration, bool snapping, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* DG_Tweening_ShortcutExtensions__DOLocalMoveY (UnityEngine_Transform_o* target, float endValue, float duration, bool snapping, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* DG_Tweening_ShortcutExtensions__DOLocalMoveZ (UnityEngine_Transform_o* target, float endValue, float duration, bool snapping, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions__o* DG_Tweening_ShortcutExtensions__DORotate (UnityEngine_Transform_o* target, UnityEngine_Vector3_o endValue, float duration, int32_t mode, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Quaternion__Quaternion__NoOptions__o* DG_Tweening_ShortcutExtensions__DORotateQuaternion (UnityEngine_Transform_o* target, UnityEngine_Quaternion_o endValue, float duration, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions__o* DG_Tweening_ShortcutExtensions__DOLocalRotate (UnityEngine_Transform_o* target, UnityEngine_Vector3_o endValue, float duration, int32_t mode, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Quaternion__Quaternion__NoOptions__o* DG_Tweening_ShortcutExtensions__DOLocalRotateQuaternion (UnityEngine_Transform_o* target, UnityEngine_Quaternion_o endValue, float duration, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* DG_Tweening_ShortcutExtensions__DOScale (UnityEngine_Transform_o* target, UnityEngine_Vector3_o endValue, float duration, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* DG_Tweening_ShortcutExtensions__DOScale (UnityEngine_Transform_o* target, float endValue, float duration, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* DG_Tweening_ShortcutExtensions__DOScaleX (UnityEngine_Transform_o* target, float endValue, float duration, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* DG_Tweening_ShortcutExtensions__DOScaleY (UnityEngine_Transform_o* target, float endValue, float duration, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* DG_Tweening_ShortcutExtensions__DOScaleZ (UnityEngine_Transform_o* target, float endValue, float duration, const MethodInfo*);
DG_Tweening_Tweener_o* DG_Tweening_ShortcutExtensions__DOLookAt (UnityEngine_Transform_o* target, UnityEngine_Vector3_o towards, float duration, int32_t axisConstraint, System_Nullable_Vector3__o up, const MethodInfo*);
DG_Tweening_Tweener_o* DG_Tweening_ShortcutExtensions__DOPunchPosition (UnityEngine_Transform_o* target, UnityEngine_Vector3_o punch, float duration, int32_t vibrato, float elasticity, bool snapping, const MethodInfo*);
DG_Tweening_Tweener_o* DG_Tweening_ShortcutExtensions__DOPunchScale (UnityEngine_Transform_o* target, UnityEngine_Vector3_o punch, float duration, int32_t vibrato, float elasticity, const MethodInfo*);
DG_Tweening_Tweener_o* DG_Tweening_ShortcutExtensions__DOPunchRotation (UnityEngine_Transform_o* target, UnityEngine_Vector3_o punch, float duration, int32_t vibrato, float elasticity, const MethodInfo*);
DG_Tweening_Tweener_o* DG_Tweening_ShortcutExtensions__DOShakePosition (UnityEngine_Transform_o* target, float duration, float strength, int32_t vibrato, float randomness, bool snapping, bool fadeOut, const MethodInfo*);
DG_Tweening_Tweener_o* DG_Tweening_ShortcutExtensions__DOShakePosition (UnityEngine_Transform_o* target, float duration, UnityEngine_Vector3_o strength, int32_t vibrato, float randomness, bool snapping, bool fadeOut, const MethodInfo*);
DG_Tweening_Tweener_o* DG_Tweening_ShortcutExtensions__DOShakeRotation (UnityEngine_Transform_o* target, float duration, float strength, int32_t vibrato, float randomness, bool fadeOut, const MethodInfo*);
DG_Tweening_Tweener_o* DG_Tweening_ShortcutExtensions__DOShakeRotation (UnityEngine_Transform_o* target, float duration, UnityEngine_Vector3_o strength, int32_t vibrato, float randomness, bool fadeOut, const MethodInfo*);
DG_Tweening_Tweener_o* DG_Tweening_ShortcutExtensions__DOShakeScale (UnityEngine_Transform_o* target, float duration, float strength, int32_t vibrato, float randomness, bool fadeOut, const MethodInfo*);
DG_Tweening_Tweener_o* DG_Tweening_ShortcutExtensions__DOShakeScale (UnityEngine_Transform_o* target, float duration, UnityEngine_Vector3_o strength, int32_t vibrato, float randomness, bool fadeOut, const MethodInfo*);
DG_Tweening_Sequence_o* DG_Tweening_ShortcutExtensions__DOJump (UnityEngine_Transform_o* target, UnityEngine_Vector3_o endValue, float jumpPower, int32_t numJumps, float duration, bool snapping, const MethodInfo*);
DG_Tweening_Sequence_o* DG_Tweening_ShortcutExtensions__DOLocalJump (UnityEngine_Transform_o* target, UnityEngine_Vector3_o endValue, float jumpPower, int32_t numJumps, float duration, bool snapping, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* DG_Tweening_ShortcutExtensions__DOPath (UnityEngine_Transform_o* target, UnityEngine_Vector3_array* path, float duration, int32_t pathType, int32_t pathMode, int32_t resolution, System_Nullable_Color__o gizmoColor, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* DG_Tweening_ShortcutExtensions__DOLocalPath (UnityEngine_Transform_o* target, UnityEngine_Vector3_array* path, float duration, int32_t pathType, int32_t pathMode, int32_t resolution, System_Nullable_Color__o gizmoColor, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* DG_Tweening_ShortcutExtensions__DOPath (UnityEngine_Transform_o* target, DG_Tweening_Plugins_Core_PathCore_Path_o* path, float duration, int32_t pathMode, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* DG_Tweening_ShortcutExtensions__DOLocalPath (UnityEngine_Transform_o* target, DG_Tweening_Plugins_Core_PathCore_Path_o* path, float duration, int32_t pathMode, const MethodInfo*);
DG_Tweening_Core_TweenerCore_float__float__FloatOptions__o* DG_Tweening_ShortcutExtensions__DOTimeScale (DG_Tweening_Tween_o* target, float endValue, float duration, const MethodInfo*);
DG_Tweening_Tweener_o* DG_Tweening_ShortcutExtensions__DOBlendableColor (UnityEngine_Light_o* target, UnityEngine_Color_o endValue, float duration, const MethodInfo*);
DG_Tweening_Tweener_o* DG_Tweening_ShortcutExtensions__DOBlendableColor (UnityEngine_Material_o* target, UnityEngine_Color_o endValue, float duration, const MethodInfo*);
DG_Tweening_Tweener_o* DG_Tweening_ShortcutExtensions__DOBlendableColor (UnityEngine_Material_o* target, UnityEngine_Color_o endValue, System_String_o* property, float duration, const MethodInfo*);
DG_Tweening_Tweener_o* DG_Tweening_ShortcutExtensions__DOBlendableColor (UnityEngine_Material_o* target, UnityEngine_Color_o endValue, int32_t propertyID, float duration, const MethodInfo*);
DG_Tweening_Tweener_o* DG_Tweening_ShortcutExtensions__DOBlendableMoveBy (UnityEngine_Transform_o* target, UnityEngine_Vector3_o byValue, float duration, bool snapping, const MethodInfo*);
DG_Tweening_Tweener_o* DG_Tweening_ShortcutExtensions__DOBlendableLocalMoveBy (UnityEngine_Transform_o* target, UnityEngine_Vector3_o byValue, float duration, bool snapping, const MethodInfo*);
DG_Tweening_Tweener_o* DG_Tweening_ShortcutExtensions__DOBlendableRotateBy (UnityEngine_Transform_o* target, UnityEngine_Vector3_o byValue, float duration, int32_t mode, const MethodInfo*);
DG_Tweening_Tweener_o* DG_Tweening_ShortcutExtensions__DOBlendableLocalRotateBy (UnityEngine_Transform_o* target, UnityEngine_Vector3_o byValue, float duration, int32_t mode, const MethodInfo*);
DG_Tweening_Tweener_o* DG_Tweening_ShortcutExtensions__DOBlendablePunchRotation (UnityEngine_Transform_o* target, UnityEngine_Vector3_o punch, float duration, int32_t vibrato, float elasticity, const MethodInfo*);
DG_Tweening_Tweener_o* DG_Tweening_ShortcutExtensions__DOBlendableScaleBy (UnityEngine_Transform_o* target, UnityEngine_Vector3_o byValue, float duration, const MethodInfo*);
int32_t DG_Tweening_ShortcutExtensions__DOComplete (UnityEngine_Component_o* target, bool withCallbacks, const MethodInfo*);
int32_t DG_Tweening_ShortcutExtensions__DOComplete (UnityEngine_Material_o* target, bool withCallbacks, const MethodInfo*);
int32_t DG_Tweening_ShortcutExtensions__DOKill (UnityEngine_Component_o* target, bool complete, const MethodInfo*);
int32_t DG_Tweening_ShortcutExtensions__DOKill (UnityEngine_Material_o* target, bool complete, const MethodInfo*);
int32_t DG_Tweening_ShortcutExtensions__DOFlip (UnityEngine_Component_o* target, const MethodInfo*);
int32_t DG_Tweening_ShortcutExtensions__DOFlip (UnityEngine_Material_o* target, const MethodInfo*);
int32_t DG_Tweening_ShortcutExtensions__DOGoto (UnityEngine_Component_o* target, float to, bool andPlay, const MethodInfo*);
int32_t DG_Tweening_ShortcutExtensions__DOGoto (UnityEngine_Material_o* target, float to, bool andPlay, const MethodInfo*);
int32_t DG_Tweening_ShortcutExtensions__DOPause (UnityEngine_Component_o* target, const MethodInfo*);
int32_t DG_Tweening_ShortcutExtensions__DOPause (UnityEngine_Material_o* target, const MethodInfo*);
int32_t DG_Tweening_ShortcutExtensions__DOPlay (UnityEngine_Component_o* target, const MethodInfo*);
int32_t DG_Tweening_ShortcutExtensions__DOPlay (UnityEngine_Material_o* target, const MethodInfo*);
int32_t DG_Tweening_ShortcutExtensions__DOPlayBackwards (UnityEngine_Component_o* target, const MethodInfo*);
int32_t DG_Tweening_ShortcutExtensions__DOPlayBackwards (UnityEngine_Material_o* target, const MethodInfo*);
int32_t DG_Tweening_ShortcutExtensions__DOPlayForward (UnityEngine_Component_o* target, const MethodInfo*);
int32_t DG_Tweening_ShortcutExtensions__DOPlayForward (UnityEngine_Material_o* target, const MethodInfo*);
int32_t DG_Tweening_ShortcutExtensions__DORestart (UnityEngine_Component_o* target, bool includeDelay, const MethodInfo*);
int32_t DG_Tweening_ShortcutExtensions__DORestart (UnityEngine_Material_o* target, bool includeDelay, const MethodInfo*);
int32_t DG_Tweening_ShortcutExtensions__DORewind (UnityEngine_Component_o* target, bool includeDelay, const MethodInfo*);
int32_t DG_Tweening_ShortcutExtensions__DORewind (UnityEngine_Material_o* target, bool includeDelay, const MethodInfo*);
int32_t DG_Tweening_ShortcutExtensions__DOSmoothRewind (UnityEngine_Component_o* target, const MethodInfo*);
int32_t DG_Tweening_ShortcutExtensions__DOSmoothRewind (UnityEngine_Material_o* target, const MethodInfo*);
int32_t DG_Tweening_ShortcutExtensions__DOTogglePause (UnityEngine_Component_o* target, const MethodInfo*);
int32_t DG_Tweening_ShortcutExtensions__DOTogglePause (UnityEngine_Material_o* target, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass0_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass0_0_o* __this, const MethodInfo*);
float DG_Tweening_ShortcutExtensions___c__DisplayClass0_0___DOAspect_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass0_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass0_0___DOAspect_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass0_0_o* __this, float x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass1_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass1_0_o* __this, const MethodInfo*);
UnityEngine_Color_o DG_Tweening_ShortcutExtensions___c__DisplayClass1_0___DOColor_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass1_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass1_0___DOColor_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass1_0_o* __this, UnityEngine_Color_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass2_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass2_0_o* __this, const MethodInfo*);
float DG_Tweening_ShortcutExtensions___c__DisplayClass2_0___DOFarClipPlane_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass2_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass2_0___DOFarClipPlane_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass2_0_o* __this, float x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass3_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass3_0_o* __this, const MethodInfo*);
float DG_Tweening_ShortcutExtensions___c__DisplayClass3_0___DOFieldOfView_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass3_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass3_0___DOFieldOfView_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass3_0_o* __this, float x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass4_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass4_0_o* __this, const MethodInfo*);
float DG_Tweening_ShortcutExtensions___c__DisplayClass4_0___DONearClipPlane_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass4_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass4_0___DONearClipPlane_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass4_0_o* __this, float x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass5_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass5_0_o* __this, const MethodInfo*);
float DG_Tweening_ShortcutExtensions___c__DisplayClass5_0___DOOrthoSize_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass5_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass5_0___DOOrthoSize_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass5_0_o* __this, float x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass6_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass6_0_o* __this, const MethodInfo*);
UnityEngine_Rect_o DG_Tweening_ShortcutExtensions___c__DisplayClass6_0___DOPixelRect_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass6_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass6_0___DOPixelRect_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass6_0_o* __this, UnityEngine_Rect_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass7_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass7_0_o* __this, const MethodInfo*);
UnityEngine_Rect_o DG_Tweening_ShortcutExtensions___c__DisplayClass7_0___DORect_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass7_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass7_0___DORect_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass7_0_o* __this, UnityEngine_Rect_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass8_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass8_0_o* __this, const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_ShortcutExtensions___c__DisplayClass8_0___DOShakePosition_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass8_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass8_0___DOShakePosition_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass8_0_o* __this, UnityEngine_Vector3_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass9_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass9_0_o* __this, const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_ShortcutExtensions___c__DisplayClass9_0___DOShakePosition_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass9_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass9_0___DOShakePosition_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass9_0_o* __this, UnityEngine_Vector3_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass10_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass10_0_o* __this, const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_ShortcutExtensions___c__DisplayClass10_0___DOShakeRotation_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass10_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass10_0___DOShakeRotation_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass10_0_o* __this, UnityEngine_Vector3_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass11_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass11_0_o* __this, const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_ShortcutExtensions___c__DisplayClass11_0___DOShakeRotation_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass11_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass11_0___DOShakeRotation_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass11_0_o* __this, UnityEngine_Vector3_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass12_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass12_0_o* __this, const MethodInfo*);
UnityEngine_Color_o DG_Tweening_ShortcutExtensions___c__DisplayClass12_0___DOColor_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass12_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass12_0___DOColor_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass12_0_o* __this, UnityEngine_Color_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass13_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass13_0_o* __this, const MethodInfo*);
float DG_Tweening_ShortcutExtensions___c__DisplayClass13_0___DOIntensity_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass13_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass13_0___DOIntensity_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass13_0_o* __this, float x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass14_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass14_0_o* __this, const MethodInfo*);
float DG_Tweening_ShortcutExtensions___c__DisplayClass14_0___DOShadowStrength_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass14_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass14_0___DOShadowStrength_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass14_0_o* __this, float x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass15_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass15_0_o* __this, const MethodInfo*);
DG_Tweening_Color2_o DG_Tweening_ShortcutExtensions___c__DisplayClass15_0___DOColor_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass15_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass15_0___DOColor_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass15_0_o* __this, DG_Tweening_Color2_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass16_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass16_0_o* __this, const MethodInfo*);
UnityEngine_Color_o DG_Tweening_ShortcutExtensions___c__DisplayClass16_0___DOColor_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass16_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass16_0___DOColor_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass16_0_o* __this, UnityEngine_Color_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass17_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass17_0_o* __this, const MethodInfo*);
UnityEngine_Color_o DG_Tweening_ShortcutExtensions___c__DisplayClass17_0___DOColor_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass17_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass17_0___DOColor_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass17_0_o* __this, UnityEngine_Color_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass18_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass18_0_o* __this, const MethodInfo*);
UnityEngine_Color_o DG_Tweening_ShortcutExtensions___c__DisplayClass18_0___DOColor_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass18_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass18_0___DOColor_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass18_0_o* __this, UnityEngine_Color_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass19_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass19_0_o* __this, const MethodInfo*);
UnityEngine_Color_o DG_Tweening_ShortcutExtensions___c__DisplayClass19_0___DOFade_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass19_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass19_0___DOFade_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass19_0_o* __this, UnityEngine_Color_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass20_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass20_0_o* __this, const MethodInfo*);
UnityEngine_Color_o DG_Tweening_ShortcutExtensions___c__DisplayClass20_0___DOFade_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass20_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass20_0___DOFade_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass20_0_o* __this, UnityEngine_Color_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass21_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass21_0_o* __this, const MethodInfo*);
UnityEngine_Color_o DG_Tweening_ShortcutExtensions___c__DisplayClass21_0___DOFade_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass21_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass21_0___DOFade_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass21_0_o* __this, UnityEngine_Color_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass22_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass22_0_o* __this, const MethodInfo*);
float DG_Tweening_ShortcutExtensions___c__DisplayClass22_0___DOFloat_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass22_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass22_0___DOFloat_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass22_0_o* __this, float x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass23_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass23_0_o* __this, const MethodInfo*);
float DG_Tweening_ShortcutExtensions___c__DisplayClass23_0___DOFloat_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass23_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass23_0___DOFloat_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass23_0_o* __this, float x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass24_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass24_0_o* __this, const MethodInfo*);
UnityEngine_Vector2_o DG_Tweening_ShortcutExtensions___c__DisplayClass24_0___DOOffset_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass24_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass24_0___DOOffset_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass24_0_o* __this, UnityEngine_Vector2_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass25_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass25_0_o* __this, const MethodInfo*);
UnityEngine_Vector2_o DG_Tweening_ShortcutExtensions___c__DisplayClass25_0___DOOffset_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass25_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass25_0___DOOffset_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass25_0_o* __this, UnityEngine_Vector2_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass26_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass26_0_o* __this, const MethodInfo*);
UnityEngine_Vector2_o DG_Tweening_ShortcutExtensions___c__DisplayClass26_0___DOTiling_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass26_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass26_0___DOTiling_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass26_0_o* __this, UnityEngine_Vector2_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass27_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass27_0_o* __this, const MethodInfo*);
UnityEngine_Vector2_o DG_Tweening_ShortcutExtensions___c__DisplayClass27_0___DOTiling_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass27_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass27_0___DOTiling_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass27_0_o* __this, UnityEngine_Vector2_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass28_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass28_0_o* __this, const MethodInfo*);
UnityEngine_Vector4_o DG_Tweening_ShortcutExtensions___c__DisplayClass28_0___DOVector_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass28_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass28_0___DOVector_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass28_0_o* __this, UnityEngine_Vector4_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass29_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass29_0_o* __this, const MethodInfo*);
UnityEngine_Vector4_o DG_Tweening_ShortcutExtensions___c__DisplayClass29_0___DOVector_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass29_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass29_0___DOVector_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass29_0_o* __this, UnityEngine_Vector4_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass30_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass30_0_o* __this, const MethodInfo*);
UnityEngine_Vector2_o DG_Tweening_ShortcutExtensions___c__DisplayClass30_0___DOResize_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass30_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass30_0___DOResize_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass30_0_o* __this, UnityEngine_Vector2_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass31_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass31_0_o* __this, const MethodInfo*);
float DG_Tweening_ShortcutExtensions___c__DisplayClass31_0___DOTime_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass31_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass31_0___DOTime_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass31_0_o* __this, float x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass32_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass32_0_o* __this, const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_ShortcutExtensions___c__DisplayClass32_0___DOMove_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass32_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass32_0___DOMove_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass32_0_o* __this, UnityEngine_Vector3_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass33_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass33_0_o* __this, const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_ShortcutExtensions___c__DisplayClass33_0___DOMoveX_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass33_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass33_0___DOMoveX_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass33_0_o* __this, UnityEngine_Vector3_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass34_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass34_0_o* __this, const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_ShortcutExtensions___c__DisplayClass34_0___DOMoveY_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass34_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass34_0___DOMoveY_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass34_0_o* __this, UnityEngine_Vector3_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass35_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass35_0_o* __this, const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_ShortcutExtensions___c__DisplayClass35_0___DOMoveZ_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass35_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass35_0___DOMoveZ_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass35_0_o* __this, UnityEngine_Vector3_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass36_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass36_0_o* __this, const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_ShortcutExtensions___c__DisplayClass36_0___DOLocalMove_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass36_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass36_0___DOLocalMove_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass36_0_o* __this, UnityEngine_Vector3_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass37_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass37_0_o* __this, const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_ShortcutExtensions___c__DisplayClass37_0___DOLocalMoveX_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass37_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass37_0___DOLocalMoveX_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass37_0_o* __this, UnityEngine_Vector3_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass38_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass38_0_o* __this, const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_ShortcutExtensions___c__DisplayClass38_0___DOLocalMoveY_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass38_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass38_0___DOLocalMoveY_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass38_0_o* __this, UnityEngine_Vector3_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass39_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass39_0_o* __this, const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_ShortcutExtensions___c__DisplayClass39_0___DOLocalMoveZ_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass39_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass39_0___DOLocalMoveZ_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass39_0_o* __this, UnityEngine_Vector3_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass40_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass40_0_o* __this, const MethodInfo*);
UnityEngine_Quaternion_o DG_Tweening_ShortcutExtensions___c__DisplayClass40_0___DORotate_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass40_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass40_0___DORotate_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass40_0_o* __this, UnityEngine_Quaternion_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass41_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass41_0_o* __this, const MethodInfo*);
UnityEngine_Quaternion_o DG_Tweening_ShortcutExtensions___c__DisplayClass41_0___DORotateQuaternion_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass41_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass41_0___DORotateQuaternion_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass41_0_o* __this, UnityEngine_Quaternion_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass42_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass42_0_o* __this, const MethodInfo*);
UnityEngine_Quaternion_o DG_Tweening_ShortcutExtensions___c__DisplayClass42_0___DOLocalRotate_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass42_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass42_0___DOLocalRotate_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass42_0_o* __this, UnityEngine_Quaternion_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass43_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass43_0_o* __this, const MethodInfo*);
UnityEngine_Quaternion_o DG_Tweening_ShortcutExtensions___c__DisplayClass43_0___DOLocalRotateQuaternion_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass43_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass43_0___DOLocalRotateQuaternion_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass43_0_o* __this, UnityEngine_Quaternion_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass44_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass44_0_o* __this, const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_ShortcutExtensions___c__DisplayClass44_0___DOScale_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass44_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass44_0___DOScale_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass44_0_o* __this, UnityEngine_Vector3_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass45_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass45_0_o* __this, const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_ShortcutExtensions___c__DisplayClass45_0___DOScale_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass45_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass45_0___DOScale_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass45_0_o* __this, UnityEngine_Vector3_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass46_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass46_0_o* __this, const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_ShortcutExtensions___c__DisplayClass46_0___DOScaleX_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass46_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass46_0___DOScaleX_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass46_0_o* __this, UnityEngine_Vector3_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass47_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass47_0_o* __this, const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_ShortcutExtensions___c__DisplayClass47_0___DOScaleY_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass47_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass47_0___DOScaleY_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass47_0_o* __this, UnityEngine_Vector3_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass48_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass48_0_o* __this, const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_ShortcutExtensions___c__DisplayClass48_0___DOScaleZ_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass48_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass48_0___DOScaleZ_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass48_0_o* __this, UnityEngine_Vector3_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass49_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass49_0_o* __this, const MethodInfo*);
UnityEngine_Quaternion_o DG_Tweening_ShortcutExtensions___c__DisplayClass49_0___DOLookAt_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass49_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass49_0___DOLookAt_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass49_0_o* __this, UnityEngine_Quaternion_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass50_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass50_0_o* __this, const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_ShortcutExtensions___c__DisplayClass50_0___DOPunchPosition_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass50_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass50_0___DOPunchPosition_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass50_0_o* __this, UnityEngine_Vector3_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass51_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass51_0_o* __this, const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_ShortcutExtensions___c__DisplayClass51_0___DOPunchScale_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass51_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass51_0___DOPunchScale_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass51_0_o* __this, UnityEngine_Vector3_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass52_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass52_0_o* __this, const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_ShortcutExtensions___c__DisplayClass52_0___DOPunchRotation_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass52_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass52_0___DOPunchRotation_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass52_0_o* __this, UnityEngine_Vector3_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass53_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass53_0_o* __this, const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_ShortcutExtensions___c__DisplayClass53_0___DOShakePosition_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass53_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass53_0___DOShakePosition_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass53_0_o* __this, UnityEngine_Vector3_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass54_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass54_0_o* __this, const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_ShortcutExtensions___c__DisplayClass54_0___DOShakePosition_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass54_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass54_0___DOShakePosition_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass54_0_o* __this, UnityEngine_Vector3_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass55_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass55_0_o* __this, const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_ShortcutExtensions___c__DisplayClass55_0___DOShakeRotation_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass55_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass55_0___DOShakeRotation_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass55_0_o* __this, UnityEngine_Vector3_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass56_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass56_0_o* __this, const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_ShortcutExtensions___c__DisplayClass56_0___DOShakeRotation_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass56_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass56_0___DOShakeRotation_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass56_0_o* __this, UnityEngine_Vector3_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass57_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass57_0_o* __this, const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_ShortcutExtensions___c__DisplayClass57_0___DOShakeScale_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass57_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass57_0___DOShakeScale_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass57_0_o* __this, UnityEngine_Vector3_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass58_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass58_0_o* __this, const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_ShortcutExtensions___c__DisplayClass58_0___DOShakeScale_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass58_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass58_0___DOShakeScale_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass58_0_o* __this, UnityEngine_Vector3_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass59_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass59_0_o* __this, const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_ShortcutExtensions___c__DisplayClass59_0___DOJump_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass59_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass59_0___DOJump_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass59_0_o* __this, UnityEngine_Vector3_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass59_0___DOJump_b__2 (DG_Tweening_ShortcutExtensions___c__DisplayClass59_0_o* __this, const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_ShortcutExtensions___c__DisplayClass59_0___DOJump_b__3 (DG_Tweening_ShortcutExtensions___c__DisplayClass59_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass59_0___DOJump_b__4 (DG_Tweening_ShortcutExtensions___c__DisplayClass59_0_o* __this, UnityEngine_Vector3_o x, const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_ShortcutExtensions___c__DisplayClass59_0___DOJump_b__5 (DG_Tweening_ShortcutExtensions___c__DisplayClass59_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass59_0___DOJump_b__6 (DG_Tweening_ShortcutExtensions___c__DisplayClass59_0_o* __this, UnityEngine_Vector3_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass59_0___DOJump_b__7 (DG_Tweening_ShortcutExtensions___c__DisplayClass59_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass60_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass60_0_o* __this, const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_ShortcutExtensions___c__DisplayClass60_0___DOLocalJump_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass60_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass60_0___DOLocalJump_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass60_0_o* __this, UnityEngine_Vector3_o x, const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_ShortcutExtensions___c__DisplayClass60_0___DOLocalJump_b__2 (DG_Tweening_ShortcutExtensions___c__DisplayClass60_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass60_0___DOLocalJump_b__3 (DG_Tweening_ShortcutExtensions___c__DisplayClass60_0_o* __this, UnityEngine_Vector3_o x, const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_ShortcutExtensions___c__DisplayClass60_0___DOLocalJump_b__4 (DG_Tweening_ShortcutExtensions___c__DisplayClass60_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass60_0___DOLocalJump_b__5 (DG_Tweening_ShortcutExtensions___c__DisplayClass60_0_o* __this, UnityEngine_Vector3_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass60_0___DOLocalJump_b__6 (DG_Tweening_ShortcutExtensions___c__DisplayClass60_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass61_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass61_0_o* __this, const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_ShortcutExtensions___c__DisplayClass61_0___DOPath_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass61_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass61_0___DOPath_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass61_0_o* __this, UnityEngine_Vector3_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass62_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass62_0_o* __this, const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_ShortcutExtensions___c__DisplayClass62_0___DOLocalPath_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass62_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass62_0___DOLocalPath_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass62_0_o* __this, UnityEngine_Vector3_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass63_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass63_0_o* __this, const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_ShortcutExtensions___c__DisplayClass63_0___DOPath_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass63_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass63_0___DOPath_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass63_0_o* __this, UnityEngine_Vector3_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass64_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass64_0_o* __this, const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_ShortcutExtensions___c__DisplayClass64_0___DOLocalPath_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass64_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass64_0___DOLocalPath_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass64_0_o* __this, UnityEngine_Vector3_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass65_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass65_0_o* __this, const MethodInfo*);
float DG_Tweening_ShortcutExtensions___c__DisplayClass65_0___DOTimeScale_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass65_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass65_0___DOTimeScale_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass65_0_o* __this, float x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass66_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass66_0_o* __this, const MethodInfo*);
UnityEngine_Color_o DG_Tweening_ShortcutExtensions___c__DisplayClass66_0___DOBlendableColor_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass66_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass66_0___DOBlendableColor_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass66_0_o* __this, UnityEngine_Color_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass67_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass67_0_o* __this, const MethodInfo*);
UnityEngine_Color_o DG_Tweening_ShortcutExtensions___c__DisplayClass67_0___DOBlendableColor_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass67_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass67_0___DOBlendableColor_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass67_0_o* __this, UnityEngine_Color_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass68_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass68_0_o* __this, const MethodInfo*);
UnityEngine_Color_o DG_Tweening_ShortcutExtensions___c__DisplayClass68_0___DOBlendableColor_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass68_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass68_0___DOBlendableColor_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass68_0_o* __this, UnityEngine_Color_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass69_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass69_0_o* __this, const MethodInfo*);
UnityEngine_Color_o DG_Tweening_ShortcutExtensions___c__DisplayClass69_0___DOBlendableColor_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass69_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass69_0___DOBlendableColor_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass69_0_o* __this, UnityEngine_Color_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass70_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass70_0_o* __this, const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_ShortcutExtensions___c__DisplayClass70_0___DOBlendableMoveBy_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass70_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass70_0___DOBlendableMoveBy_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass70_0_o* __this, UnityEngine_Vector3_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass71_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass71_0_o* __this, const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_ShortcutExtensions___c__DisplayClass71_0___DOBlendableLocalMoveBy_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass71_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass71_0___DOBlendableLocalMoveBy_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass71_0_o* __this, UnityEngine_Vector3_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass72_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass72_0_o* __this, const MethodInfo*);
UnityEngine_Quaternion_o DG_Tweening_ShortcutExtensions___c__DisplayClass72_0___DOBlendableRotateBy_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass72_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass72_0___DOBlendableRotateBy_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass72_0_o* __this, UnityEngine_Quaternion_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass73_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass73_0_o* __this, const MethodInfo*);
UnityEngine_Quaternion_o DG_Tweening_ShortcutExtensions___c__DisplayClass73_0___DOBlendableLocalRotateBy_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass73_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass73_0___DOBlendableLocalRotateBy_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass73_0_o* __this, UnityEngine_Quaternion_o x, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass74_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass74_0_o* __this, const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_ShortcutExtensions___c__DisplayClass74_0___DOBlendablePunchRotation_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass74_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass74_0___DOBlendablePunchRotation_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass74_0_o* __this, UnityEngine_Vector3_o v, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass75_0___ctor (DG_Tweening_ShortcutExtensions___c__DisplayClass75_0_o* __this, const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_ShortcutExtensions___c__DisplayClass75_0___DOBlendableScaleBy_b__0 (DG_Tweening_ShortcutExtensions___c__DisplayClass75_0_o* __this, const MethodInfo*);
void DG_Tweening_ShortcutExtensions___c__DisplayClass75_0___DOBlendableScaleBy_b__1 (DG_Tweening_ShortcutExtensions___c__DisplayClass75_0_o* __this, UnityEngine_Vector3_o x, const MethodInfo*);
void DG_Tweening_TweenParams___ctor (DG_Tweening_TweenParams_o* __this, const MethodInfo*);
DG_Tweening_TweenParams_o* DG_Tweening_TweenParams__Clear (DG_Tweening_TweenParams_o* __this, const MethodInfo*);
DG_Tweening_TweenParams_o* DG_Tweening_TweenParams__SetAutoKill (DG_Tweening_TweenParams_o* __this, bool autoKillOnCompletion, const MethodInfo*);
DG_Tweening_TweenParams_o* DG_Tweening_TweenParams__SetId (DG_Tweening_TweenParams_o* __this, Il2CppObject* id, const MethodInfo*);
DG_Tweening_TweenParams_o* DG_Tweening_TweenParams__SetTarget (DG_Tweening_TweenParams_o* __this, Il2CppObject* target, const MethodInfo*);
DG_Tweening_TweenParams_o* DG_Tweening_TweenParams__SetLoops (DG_Tweening_TweenParams_o* __this, int32_t loops, System_Nullable_LoopType__o loopType, const MethodInfo*);
DG_Tweening_TweenParams_o* DG_Tweening_TweenParams__SetEase (DG_Tweening_TweenParams_o* __this, int32_t ease, System_Nullable_float__o overshootOrAmplitude, System_Nullable_float__o period, const MethodInfo*);
DG_Tweening_TweenParams_o* DG_Tweening_TweenParams__SetEase (DG_Tweening_TweenParams_o* __this, UnityEngine_AnimationCurve_o* animCurve, const MethodInfo*);
DG_Tweening_TweenParams_o* DG_Tweening_TweenParams__SetEase (DG_Tweening_TweenParams_o* __this, DG_Tweening_EaseFunction_o* customEase, const MethodInfo*);
DG_Tweening_TweenParams_o* DG_Tweening_TweenParams__SetRecyclable (DG_Tweening_TweenParams_o* __this, bool recyclable, const MethodInfo*);
DG_Tweening_TweenParams_o* DG_Tweening_TweenParams__SetUpdate (DG_Tweening_TweenParams_o* __this, bool isIndependentUpdate, const MethodInfo*);
DG_Tweening_TweenParams_o* DG_Tweening_TweenParams__SetUpdate (DG_Tweening_TweenParams_o* __this, int32_t updateType, bool isIndependentUpdate, const MethodInfo*);
DG_Tweening_TweenParams_o* DG_Tweening_TweenParams__OnStart (DG_Tweening_TweenParams_o* __this, DG_Tweening_TweenCallback_o* action, const MethodInfo*);
DG_Tweening_TweenParams_o* DG_Tweening_TweenParams__OnPlay (DG_Tweening_TweenParams_o* __this, DG_Tweening_TweenCallback_o* action, const MethodInfo*);
DG_Tweening_TweenParams_o* DG_Tweening_TweenParams__OnRewind (DG_Tweening_TweenParams_o* __this, DG_Tweening_TweenCallback_o* action, const MethodInfo*);
DG_Tweening_TweenParams_o* DG_Tweening_TweenParams__OnUpdate (DG_Tweening_TweenParams_o* __this, DG_Tweening_TweenCallback_o* action, const MethodInfo*);
DG_Tweening_TweenParams_o* DG_Tweening_TweenParams__OnStepComplete (DG_Tweening_TweenParams_o* __this, DG_Tweening_TweenCallback_o* action, const MethodInfo*);
DG_Tweening_TweenParams_o* DG_Tweening_TweenParams__OnComplete (DG_Tweening_TweenParams_o* __this, DG_Tweening_TweenCallback_o* action, const MethodInfo*);
DG_Tweening_TweenParams_o* DG_Tweening_TweenParams__OnKill (DG_Tweening_TweenParams_o* __this, DG_Tweening_TweenCallback_o* action, const MethodInfo*);
DG_Tweening_TweenParams_o* DG_Tweening_TweenParams__OnWaypointChange (DG_Tweening_TweenParams_o* __this, DG_Tweening_TweenCallback_int__o* action, const MethodInfo*);
DG_Tweening_TweenParams_o* DG_Tweening_TweenParams__SetDelay (DG_Tweening_TweenParams_o* __this, float delay, const MethodInfo*);
DG_Tweening_TweenParams_o* DG_Tweening_TweenParams__SetRelative (DG_Tweening_TweenParams_o* __this, bool isRelative, const MethodInfo*);
DG_Tweening_TweenParams_o* DG_Tweening_TweenParams__SetSpeedBased (DG_Tweening_TweenParams_o* __this, bool isSpeedBased, const MethodInfo*);
void DG_Tweening_TweenParams___cctor (const MethodInfo*);
Il2CppObject* DG_Tweening_TweenSettingsExtensions__SetAutoKill_object_ (Il2CppObject* t, const MethodInfo_1D69180* method_1D69180);
DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* DG_Tweening_TweenSettingsExtensions__SetAutoKill_TweenerCore_Vector3__Path__PathOptions__ (DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* t, bool autoKillOnCompletion, const MethodInfo_1D691B0* method_1D691B0);
DG_Tweening_Tween_o* DG_Tweening_TweenSettingsExtensions__SetAutoKill_Tween_ (DG_Tweening_Tween_o* t, bool autoKillOnCompletion, const MethodInfo_1D691B0* method_1D691B0);
DG_Tweening_Sequence_o* DG_Tweening_TweenSettingsExtensions__SetAutoKill_Sequence_ (DG_Tweening_Sequence_o* t, bool autoKillOnCompletion, const MethodInfo_1D691B0* method_1D691B0);
Il2CppObject* DG_Tweening_TweenSettingsExtensions__SetAutoKill_object_ (Il2CppObject* t, bool autoKillOnCompletion, const MethodInfo_1D691B0* method_1D691B0);
Il2CppObject* DG_Tweening_TweenSettingsExtensions__SetId_object_ (Il2CppObject* t, Il2CppObject* objectId, const MethodInfo_1D694F0* method_1D694F0);
DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* DG_Tweening_TweenSettingsExtensions__SetId_TweenerCore_Vector3__Path__PathOptions__ (DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* t, System_String_o* stringId, const MethodInfo_1D69530* method_1D69530);
DG_Tweening_Tween_o* DG_Tweening_TweenSettingsExtensions__SetId_Tween_ (DG_Tweening_Tween_o* t, System_String_o* stringId, const MethodInfo_1D69530* method_1D69530);
Il2CppObject* DG_Tweening_TweenSettingsExtensions__SetId_object_ (Il2CppObject* t, System_String_o* stringId, const MethodInfo_1D69530* method_1D69530);
Il2CppObject* DG_Tweening_TweenSettingsExtensions__SetId_object_ (Il2CppObject* t, int32_t intId, const MethodInfo_1D694D0* method_1D694D0);
DG_Tweening_Core_TweenerCore_float__float__FloatOptions__o* DG_Tweening_TweenSettingsExtensions__SetLink_TweenerCore_float__float__FloatOptions__ (DG_Tweening_Core_TweenerCore_float__float__FloatOptions__o* t, UnityEngine_GameObject_o* gameObject, const MethodInfo_1D69570* method_1D69570);
DG_Tweening_Sequence_o* DG_Tweening_TweenSettingsExtensions__SetLink_Sequence_ (DG_Tweening_Sequence_o* t, UnityEngine_GameObject_o* gameObject, const MethodInfo_1D69570* method_1D69570);
Il2CppObject* DG_Tweening_TweenSettingsExtensions__SetLink_object_ (Il2CppObject* t, UnityEngine_GameObject_o* gameObject, const MethodInfo_1D69570* method_1D69570);
Il2CppObject* DG_Tweening_TweenSettingsExtensions__SetLink_object_ (Il2CppObject* t, UnityEngine_GameObject_o* gameObject, int32_t behaviour, const MethodInfo_1D69660* method_1D69660);
DG_Tweening_Core_TweenerCore_Vector3__Vector3__SpiralOptions__o* DG_Tweening_TweenSettingsExtensions__SetTarget_TweenerCore_Vector3__Vector3__SpiralOptions__ (DG_Tweening_Core_TweenerCore_Vector3__Vector3__SpiralOptions__o* t, Il2CppObject* target, const MethodInfo_1D69910* method_1D69910);
DG_Tweening_Tween_o* DG_Tweening_TweenSettingsExtensions__SetTarget_Tween_ (DG_Tweening_Tween_o* t, Il2CppObject* target, const MethodInfo_1D69910* method_1D69910);
DG_Tweening_Core_TweenerCore_Color2__Color2__ColorOptions__o* DG_Tweening_TweenSettingsExtensions__SetTarget_TweenerCore_Color2__Color2__ColorOptions__ (DG_Tweening_Core_TweenerCore_Color2__Color2__ColorOptions__o* t, Il2CppObject* target, const MethodInfo_1D69910* method_1D69910);
DG_Tweening_Core_TweenerCore_float__float__FloatOptions__o* DG_Tweening_TweenSettingsExtensions__SetTarget_TweenerCore_float__float__FloatOptions__ (DG_Tweening_Core_TweenerCore_float__float__FloatOptions__o* t, Il2CppObject* target, const MethodInfo_1D69910* method_1D69910);
DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions__o* DG_Tweening_TweenSettingsExtensions__SetTarget_TweenerCore_Color__Color__ColorOptions__ (DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions__o* t, Il2CppObject* target, const MethodInfo_1D69910* method_1D69910);
DG_Tweening_Core_TweenerCore_Quaternion__Quaternion__NoOptions__o* DG_Tweening_TweenSettingsExtensions__SetTarget_TweenerCore_Quaternion__Quaternion__NoOptions__ (DG_Tweening_Core_TweenerCore_Quaternion__Quaternion__NoOptions__o* t, Il2CppObject* target, const MethodInfo_1D69910* method_1D69910);
DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions__o* DG_Tweening_TweenSettingsExtensions__SetTarget_TweenerCore_Quaternion__Vector3__QuaternionOptions__ (DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions__o* t, Il2CppObject* target, const MethodInfo_1D69910* method_1D69910);
DG_Tweening_Core_TweenerCore_Rect__Rect__RectOptions__o* DG_Tweening_TweenSettingsExtensions__SetTarget_TweenerCore_Rect__Rect__RectOptions__ (DG_Tweening_Core_TweenerCore_Rect__Rect__RectOptions__o* t, Il2CppObject* target, const MethodInfo_1D69910* method_1D69910);
DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions__o* DG_Tweening_TweenSettingsExtensions__SetTarget_TweenerCore_Vector2__Vector2__VectorOptions__ (DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions__o* t, Il2CppObject* target, const MethodInfo_1D69910* method_1D69910);
DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* DG_Tweening_TweenSettingsExtensions__SetTarget_TweenerCore_Vector3__Path__PathOptions__ (DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* t, Il2CppObject* target, const MethodInfo_1D69910* method_1D69910);
DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* DG_Tweening_TweenSettingsExtensions__SetTarget_TweenerCore_Vector3__Vector3__VectorOptions__ (DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* t, Il2CppObject* target, const MethodInfo_1D69910* method_1D69910);
DG_Tweening_Core_TweenerCore_Vector3__Vector3____Vector3ArrayOptions__o* DG_Tweening_TweenSettingsExtensions__SetTarget_TweenerCore_Vector3__Vector3____Vector3ArrayOptions__ (DG_Tweening_Core_TweenerCore_Vector3__Vector3____Vector3ArrayOptions__o* t, Il2CppObject* target, const MethodInfo_1D69910* method_1D69910);
DG_Tweening_Core_TweenerCore_Vector4__Vector4__VectorOptions__o* DG_Tweening_TweenSettingsExtensions__SetTarget_TweenerCore_Vector4__Vector4__VectorOptions__ (DG_Tweening_Core_TweenerCore_Vector4__Vector4__VectorOptions__o* t, Il2CppObject* target, const MethodInfo_1D69910* method_1D69910);
DG_Tweening_Sequence_o* DG_Tweening_TweenSettingsExtensions__SetTarget_Sequence_ (DG_Tweening_Sequence_o* t, Il2CppObject* target, const MethodInfo_1D69910* method_1D69910);
DG_Tweening_Tweener_o* DG_Tweening_TweenSettingsExtensions__SetTarget_Tweener_ (DG_Tweening_Tweener_o* t, Il2CppObject* target, const MethodInfo_1D69910* method_1D69910);
Il2CppObject* DG_Tweening_TweenSettingsExtensions__SetTarget_object_ (Il2CppObject* t, Il2CppObject* target, const MethodInfo_1D69910* method_1D69910);
DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions__o* DG_Tweening_TweenSettingsExtensions__SetLoops_TweenerCore_Quaternion__Vector3__QuaternionOptions__ (DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions__o* t, int32_t loops, const MethodInfo_1D69750* method_1D69750);
Il2CppObject* DG_Tweening_TweenSettingsExtensions__SetLoops_object_ (Il2CppObject* t, int32_t loops, const MethodInfo_1D69750* method_1D69750);
DG_Tweening_Core_TweenerCore_float__float__FloatOptions__o* DG_Tweening_TweenSettingsExtensions__SetLoops_TweenerCore_float__float__FloatOptions__ (DG_Tweening_Core_TweenerCore_float__float__FloatOptions__o* t, int32_t loops, int32_t loopType, const MethodInfo_1D697B0* method_1D697B0);
DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions__o* DG_Tweening_TweenSettingsExtensions__SetLoops_TweenerCore_Vector2__Vector2__VectorOptions__ (DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions__o* t, int32_t loops, int32_t loopType, const MethodInfo_1D697B0* method_1D697B0);
DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* DG_Tweening_TweenSettingsExtensions__SetLoops_TweenerCore_Vector3__Path__PathOptions__ (DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* t, int32_t loops, int32_t loopType, const MethodInfo_1D697B0* method_1D697B0);
DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* DG_Tweening_TweenSettingsExtensions__SetLoops_TweenerCore_Vector3__Vector3__VectorOptions__ (DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* t, int32_t loops, int32_t loopType, const MethodInfo_1D697B0* method_1D697B0);
DG_Tweening_Sequence_o* DG_Tweening_TweenSettingsExtensions__SetLoops_Sequence_ (DG_Tweening_Sequence_o* t, int32_t loops, int32_t loopType, const MethodInfo_1D697B0* method_1D697B0);
DG_Tweening_Tween_o* DG_Tweening_TweenSettingsExtensions__SetLoops_Tween_ (DG_Tweening_Tween_o* t, int32_t loops, int32_t loopType, const MethodInfo_1D697B0* method_1D697B0);
DG_Tweening_Tweener_o* DG_Tweening_TweenSettingsExtensions__SetLoops_Tweener_ (DG_Tweening_Tweener_o* t, int32_t loops, int32_t loopType, const MethodInfo_1D697B0* method_1D697B0);
Il2CppObject* DG_Tweening_TweenSettingsExtensions__SetLoops_object_ (Il2CppObject* t, int32_t loops, int32_t loopType, const MethodInfo_1D697B0* method_1D697B0);
DG_Tweening_Core_TweenerCore_float__float__FloatOptions__o* DG_Tweening_TweenSettingsExtensions__SetEase_TweenerCore_float__float__FloatOptions__ (DG_Tweening_Core_TweenerCore_float__float__FloatOptions__o* t, int32_t ease, const MethodInfo_1D69290* method_1D69290);
DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions__o* DG_Tweening_TweenSettingsExtensions__SetEase_TweenerCore_Color__Color__ColorOptions__ (DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions__o* t, int32_t ease, const MethodInfo_1D69290* method_1D69290);
DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions__o* DG_Tweening_TweenSettingsExtensions__SetEase_TweenerCore_Quaternion__Vector3__QuaternionOptions__ (DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions__o* t, int32_t ease, const MethodInfo_1D69290* method_1D69290);
DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions__o* DG_Tweening_TweenSettingsExtensions__SetEase_TweenerCore_Vector2__Vector2__VectorOptions__ (DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions__o* t, int32_t ease, const MethodInfo_1D69290* method_1D69290);
DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* DG_Tweening_TweenSettingsExtensions__SetEase_TweenerCore_Vector3__Path__PathOptions__ (DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* t, int32_t ease, const MethodInfo_1D69290* method_1D69290);
DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* DG_Tweening_TweenSettingsExtensions__SetEase_TweenerCore_Vector3__Vector3__VectorOptions__ (DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* t, int32_t ease, const MethodInfo_1D69290* method_1D69290);
DG_Tweening_Tween_o* DG_Tweening_TweenSettingsExtensions__SetEase_Tween_ (DG_Tweening_Tween_o* t, int32_t ease, const MethodInfo_1D69290* method_1D69290);
DG_Tweening_Sequence_o* DG_Tweening_TweenSettingsExtensions__SetEase_Sequence_ (DG_Tweening_Sequence_o* t, int32_t ease, const MethodInfo_1D69290* method_1D69290);
DG_Tweening_Tweener_o* DG_Tweening_TweenSettingsExtensions__SetEase_Tweener_ (DG_Tweening_Tweener_o* t, int32_t ease, const MethodInfo_1D69290* method_1D69290);
Il2CppObject* DG_Tweening_TweenSettingsExtensions__SetEase_object_ (Il2CppObject* t, int32_t ease, const MethodInfo_1D69290* method_1D69290);
Il2CppObject* DG_Tweening_TweenSettingsExtensions__SetEase_object_ (Il2CppObject* t, int32_t ease, float overshoot, const MethodInfo_1D692F0* method_1D692F0);
Il2CppObject* DG_Tweening_TweenSettingsExtensions__SetEase_object_ (Il2CppObject* t, int32_t ease, float amplitude, float period, const MethodInfo_1D69360* method_1D69360);
DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* DG_Tweening_TweenSettingsExtensions__SetEase_TweenerCore_Vector3__Path__PathOptions__ (DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* t, UnityEngine_AnimationCurve_o* animCurve, const MethodInfo_1D69410* method_1D69410);
DG_Tweening_Tween_o* DG_Tweening_TweenSettingsExtensions__SetEase_Tween_ (DG_Tweening_Tween_o* t, UnityEngine_AnimationCurve_o* animCurve, const MethodInfo_1D69410* method_1D69410);
Il2CppObject* DG_Tweening_TweenSettingsExtensions__SetEase_object_ (Il2CppObject* t, UnityEngine_AnimationCurve_o* animCurve, const MethodInfo_1D69410* method_1D69410);
Il2CppObject* DG_Tweening_TweenSettingsExtensions__SetEase_object_ (Il2CppObject* t, DG_Tweening_EaseFunction_o* customEase, const MethodInfo_1D693D0* method_1D693D0);
Il2CppObject* DG_Tweening_TweenSettingsExtensions__SetRecyclable_object_ (Il2CppObject* t, const MethodInfo_1D69810* method_1D69810);
Il2CppObject* DG_Tweening_TweenSettingsExtensions__SetRecyclable_object_ (Il2CppObject* t, bool recyclable, const MethodInfo_1D69830* method_1D69830);
DG_Tweening_Tween_o* DG_Tweening_TweenSettingsExtensions__SetUpdate_Tween_ (DG_Tweening_Tween_o* t, bool isIndependentUpdate, const MethodInfo_1D69B90* method_1D69B90);
Il2CppObject* DG_Tweening_TweenSettingsExtensions__SetUpdate_object_ (Il2CppObject* t, bool isIndependentUpdate, const MethodInfo_1D69B90* method_1D69B90);
DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* DG_Tweening_TweenSettingsExtensions__SetUpdate_TweenerCore_Vector3__Path__PathOptions__ (DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* t, int32_t updateType, const MethodInfo_1D69A30* method_1D69A30);
DG_Tweening_Tween_o* DG_Tweening_TweenSettingsExtensions__SetUpdate_Tween_ (DG_Tweening_Tween_o* t, int32_t updateType, const MethodInfo_1D69A30* method_1D69A30);
Il2CppObject* DG_Tweening_TweenSettingsExtensions__SetUpdate_object_ (Il2CppObject* t, int32_t updateType, const MethodInfo_1D69A30* method_1D69A30);
DG_Tweening_Sequence_o* DG_Tweening_TweenSettingsExtensions__SetUpdate_Sequence_ (DG_Tweening_Sequence_o* t, int32_t updateType, bool isIndependentUpdate, const MethodInfo_1D69AF0* method_1D69AF0);
Il2CppObject* DG_Tweening_TweenSettingsExtensions__SetUpdate_object_ (Il2CppObject* t, int32_t updateType, bool isIndependentUpdate, const MethodInfo_1D69AF0* method_1D69AF0);
DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* DG_Tweening_TweenSettingsExtensions__OnStart_TweenerCore_Vector3__Path__PathOptions__ (DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* t, DG_Tweening_TweenCallback_o* action, const MethodInfo_1D68C90* method_1D68C90);
DG_Tweening_Sequence_o* DG_Tweening_TweenSettingsExtensions__OnStart_Sequence_ (DG_Tweening_Sequence_o* t, DG_Tweening_TweenCallback_o* action, const MethodInfo_1D68C90* method_1D68C90);
DG_Tweening_Tween_o* DG_Tweening_TweenSettingsExtensions__OnStart_Tween_ (DG_Tweening_Tween_o* t, DG_Tweening_TweenCallback_o* action, const MethodInfo_1D68C90* method_1D68C90);
DG_Tweening_Tweener_o* DG_Tweening_TweenSettingsExtensions__OnStart_Tweener_ (DG_Tweening_Tweener_o* t, DG_Tweening_TweenCallback_o* action, const MethodInfo_1D68C90* method_1D68C90);
Il2CppObject* DG_Tweening_TweenSettingsExtensions__OnStart_object_ (Il2CppObject* t, DG_Tweening_TweenCallback_o* action, const MethodInfo_1D68C90* method_1D68C90);
DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* DG_Tweening_TweenSettingsExtensions__OnPlay_TweenerCore_Vector3__Path__PathOptions__ (DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* t, DG_Tweening_TweenCallback_o* action, const MethodInfo_1D68C10* method_1D68C10);
DG_Tweening_Tween_o* DG_Tweening_TweenSettingsExtensions__OnPlay_Tween_ (DG_Tweening_Tween_o* t, DG_Tweening_TweenCallback_o* action, const MethodInfo_1D68C10* method_1D68C10);
Il2CppObject* DG_Tweening_TweenSettingsExtensions__OnPlay_object_ (Il2CppObject* t, DG_Tweening_TweenCallback_o* action, const MethodInfo_1D68C10* method_1D68C10);
Il2CppObject* DG_Tweening_TweenSettingsExtensions__OnPause_object_ (Il2CppObject* t, DG_Tweening_TweenCallback_o* action, const MethodInfo_1D68BD0* method_1D68BD0);
DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* DG_Tweening_TweenSettingsExtensions__OnRewind_TweenerCore_Vector3__Path__PathOptions__ (DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* t, DG_Tweening_TweenCallback_o* action, const MethodInfo_1D68C50* method_1D68C50);
DG_Tweening_Tween_o* DG_Tweening_TweenSettingsExtensions__OnRewind_Tween_ (DG_Tweening_Tween_o* t, DG_Tweening_TweenCallback_o* action, const MethodInfo_1D68C50* method_1D68C50);
Il2CppObject* DG_Tweening_TweenSettingsExtensions__OnRewind_object_ (Il2CppObject* t, DG_Tweening_TweenCallback_o* action, const MethodInfo_1D68C50* method_1D68C50);
DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* DG_Tweening_TweenSettingsExtensions__OnUpdate_TweenerCore_Vector3__Path__PathOptions__ (DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* t, DG_Tweening_TweenCallback_o* action, const MethodInfo_1D68D10* method_1D68D10);
DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* DG_Tweening_TweenSettingsExtensions__OnUpdate_TweenerCore_Vector3__Vector3__VectorOptions__ (DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* t, DG_Tweening_TweenCallback_o* action, const MethodInfo_1D68D10* method_1D68D10);
DG_Tweening_Core_TweenerCore_float__float__FloatOptions__o* DG_Tweening_TweenSettingsExtensions__OnUpdate_TweenerCore_float__float__FloatOptions__ (DG_Tweening_Core_TweenerCore_float__float__FloatOptions__o* t, DG_Tweening_TweenCallback_o* action, const MethodInfo_1D68D10* method_1D68D10);
DG_Tweening_Sequence_o* DG_Tweening_TweenSettingsExtensions__OnUpdate_Sequence_ (DG_Tweening_Sequence_o* t, DG_Tweening_TweenCallback_o* action, const MethodInfo_1D68D10* method_1D68D10);
DG_Tweening_Tween_o* DG_Tweening_TweenSettingsExtensions__OnUpdate_Tween_ (DG_Tweening_Tween_o* t, DG_Tweening_TweenCallback_o* action, const MethodInfo_1D68D10* method_1D68D10);
Il2CppObject* DG_Tweening_TweenSettingsExtensions__OnUpdate_object_ (Il2CppObject* t, DG_Tweening_TweenCallback_o* action, const MethodInfo_1D68D10* method_1D68D10);
DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* DG_Tweening_TweenSettingsExtensions__OnStepComplete_TweenerCore_Vector3__Path__PathOptions__ (DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* t, DG_Tweening_TweenCallback_o* action, const MethodInfo_1D68CD0* method_1D68CD0);
DG_Tweening_Tween_o* DG_Tweening_TweenSettingsExtensions__OnStepComplete_Tween_ (DG_Tweening_Tween_o* t, DG_Tweening_TweenCallback_o* action, const MethodInfo_1D68CD0* method_1D68CD0);
DG_Tweening_Sequence_o* DG_Tweening_TweenSettingsExtensions__OnStepComplete_Sequence_ (DG_Tweening_Sequence_o* t, DG_Tweening_TweenCallback_o* action, const MethodInfo_1D68CD0* method_1D68CD0);
Il2CppObject* DG_Tweening_TweenSettingsExtensions__OnStepComplete_object_ (Il2CppObject* t, DG_Tweening_TweenCallback_o* action, const MethodInfo_1D68CD0* method_1D68CD0);
DG_Tweening_Core_TweenerCore_float__float__FloatOptions__o* DG_Tweening_TweenSettingsExtensions__OnComplete_TweenerCore_float__float__FloatOptions__ (DG_Tweening_Core_TweenerCore_float__float__FloatOptions__o* t, DG_Tweening_TweenCallback_o* action, const MethodInfo_1D68B50* method_1D68B50);
DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions__o* DG_Tweening_TweenSettingsExtensions__OnComplete_TweenerCore_Color__Color__ColorOptions__ (DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions__o* t, DG_Tweening_TweenCallback_o* action, const MethodInfo_1D68B50* method_1D68B50);
DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions__o* DG_Tweening_TweenSettingsExtensions__OnComplete_TweenerCore_Vector2__Vector2__VectorOptions__ (DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions__o* t, DG_Tweening_TweenCallback_o* action, const MethodInfo_1D68B50* method_1D68B50);
DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* DG_Tweening_TweenSettingsExtensions__OnComplete_TweenerCore_Vector3__Path__PathOptions__ (DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* t, DG_Tweening_TweenCallback_o* action, const MethodInfo_1D68B50* method_1D68B50);
DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* DG_Tweening_TweenSettingsExtensions__OnComplete_TweenerCore_Vector3__Vector3__VectorOptions__ (DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* t, DG_Tweening_TweenCallback_o* action, const MethodInfo_1D68B50* method_1D68B50);
DG_Tweening_Sequence_o* DG_Tweening_TweenSettingsExtensions__OnComplete_Sequence_ (DG_Tweening_Sequence_o* t, DG_Tweening_TweenCallback_o* action, const MethodInfo_1D68B50* method_1D68B50);
DG_Tweening_Tween_o* DG_Tweening_TweenSettingsExtensions__OnComplete_Tween_ (DG_Tweening_Tween_o* t, DG_Tweening_TweenCallback_o* action, const MethodInfo_1D68B50* method_1D68B50);
DG_Tweening_Tweener_o* DG_Tweening_TweenSettingsExtensions__OnComplete_Tweener_ (DG_Tweening_Tweener_o* t, DG_Tweening_TweenCallback_o* action, const MethodInfo_1D68B50* method_1D68B50);
Il2CppObject* DG_Tweening_TweenSettingsExtensions__OnComplete_object_ (Il2CppObject* t, DG_Tweening_TweenCallback_o* action, const MethodInfo_1D68B50* method_1D68B50);
DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* DG_Tweening_TweenSettingsExtensions__OnKill_TweenerCore_Vector3__Path__PathOptions__ (DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* t, DG_Tweening_TweenCallback_o* action, const MethodInfo_1D68B90* method_1D68B90);
DG_Tweening_Sequence_o* DG_Tweening_TweenSettingsExtensions__OnKill_Sequence_ (DG_Tweening_Sequence_o* t, DG_Tweening_TweenCallback_o* action, const MethodInfo_1D68B90* method_1D68B90);
DG_Tweening_Tween_o* DG_Tweening_TweenSettingsExtensions__OnKill_Tween_ (DG_Tweening_Tween_o* t, DG_Tweening_TweenCallback_o* action, const MethodInfo_1D68B90* method_1D68B90);
Il2CppObject* DG_Tweening_TweenSettingsExtensions__OnKill_object_ (Il2CppObject* t, DG_Tweening_TweenCallback_o* action, const MethodInfo_1D68B90* method_1D68B90);
Il2CppObject* DG_Tweening_TweenSettingsExtensions__OnWaypointChange_object_ (Il2CppObject* t, DG_Tweening_TweenCallback_int__o* action, const MethodInfo_1D68D50* method_1D68D50);
Il2CppObject* DG_Tweening_TweenSettingsExtensions__SetAs_object_ (Il2CppObject* t, DG_Tweening_Tween_o* asTween, const MethodInfo_1D68D90* method_1D68D90);
Il2CppObject* DG_Tweening_TweenSettingsExtensions__SetAs_object_ (Il2CppObject* t, DG_Tweening_TweenParams_o* tweenParams, const MethodInfo_1D68F70* method_1D68F70);
DG_Tweening_Sequence_o* DG_Tweening_TweenSettingsExtensions__Append (DG_Tweening_Sequence_o* s, DG_Tweening_Tween_o* t, const MethodInfo*);
DG_Tweening_Sequence_o* DG_Tweening_TweenSettingsExtensions__Prepend (DG_Tweening_Sequence_o* s, DG_Tweening_Tween_o* t, const MethodInfo*);
DG_Tweening_Sequence_o* DG_Tweening_TweenSettingsExtensions__Join (DG_Tweening_Sequence_o* s, DG_Tweening_Tween_o* t, const MethodInfo*);
DG_Tweening_Sequence_o* DG_Tweening_TweenSettingsExtensions__Insert (DG_Tweening_Sequence_o* s, float atPosition, DG_Tweening_Tween_o* t, const MethodInfo*);
DG_Tweening_Sequence_o* DG_Tweening_TweenSettingsExtensions__AppendInterval (DG_Tweening_Sequence_o* s, float interval, const MethodInfo*);
DG_Tweening_Sequence_o* DG_Tweening_TweenSettingsExtensions__PrependInterval (DG_Tweening_Sequence_o* s, float interval, const MethodInfo*);
DG_Tweening_Sequence_o* DG_Tweening_TweenSettingsExtensions__AppendCallback (DG_Tweening_Sequence_o* s, DG_Tweening_TweenCallback_o* callback, const MethodInfo*);
DG_Tweening_Sequence_o* DG_Tweening_TweenSettingsExtensions__PrependCallback (DG_Tweening_Sequence_o* s, DG_Tweening_TweenCallback_o* callback, const MethodInfo*);
DG_Tweening_Sequence_o* DG_Tweening_TweenSettingsExtensions__InsertCallback (DG_Tweening_Sequence_o* s, float atPosition, DG_Tweening_TweenCallback_o* callback, const MethodInfo*);
Il2CppObject* DG_Tweening_TweenSettingsExtensions__From_object_ (Il2CppObject* t, const MethodInfo_1D68A70* method_1D68A70);
DG_Tweening_Tweener_o* DG_Tweening_TweenSettingsExtensions__From_Tweener_ (DG_Tweening_Tweener_o* t, bool isRelative, const MethodInfo_1D68AD0* method_1D68AD0);
Il2CppObject* DG_Tweening_TweenSettingsExtensions__From_object_ (Il2CppObject* t, bool isRelative, const MethodInfo_1D68AD0* method_1D68AD0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_TweenSettingsExtensions__From_float__float__FloatOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, float fromValue, bool setImmediately, const MethodInfo_298E8F0* method_298E8F0);
DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions__o* DG_Tweening_TweenSettingsExtensions__From (DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions__o* t, float fromAlphaValue, bool setImmediately, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* DG_Tweening_TweenSettingsExtensions__From (DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* t, float fromValue, bool setImmediately, const MethodInfo*);
DG_Tweening_Core_TweenerCore_float__float__FloatOptions__o* DG_Tweening_TweenSettingsExtensions__SetDelay_TweenerCore_float__float__FloatOptions__ (DG_Tweening_Core_TweenerCore_float__float__FloatOptions__o* t, float delay, const MethodInfo_1D691E0* method_1D691E0);
DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions__o* DG_Tweening_TweenSettingsExtensions__SetDelay_TweenerCore_Color__Color__ColorOptions__ (DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions__o* t, float delay, const MethodInfo_1D691E0* method_1D691E0);
DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions__o* DG_Tweening_TweenSettingsExtensions__SetDelay_TweenerCore_Vector2__Vector2__VectorOptions__ (DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions__o* t, float delay, const MethodInfo_1D691E0* method_1D691E0);
DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* DG_Tweening_TweenSettingsExtensions__SetDelay_TweenerCore_Vector3__Path__PathOptions__ (DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* t, float delay, const MethodInfo_1D691E0* method_1D691E0);
DG_Tweening_Sequence_o* DG_Tweening_TweenSettingsExtensions__SetDelay_Sequence_ (DG_Tweening_Sequence_o* t, float delay, const MethodInfo_1D691E0* method_1D691E0);
DG_Tweening_Tween_o* DG_Tweening_TweenSettingsExtensions__SetDelay_Tween_ (DG_Tweening_Tween_o* t, float delay, const MethodInfo_1D691E0* method_1D691E0);
Il2CppObject* DG_Tweening_TweenSettingsExtensions__SetDelay_object_ (Il2CppObject* t, float delay, const MethodInfo_1D691E0* method_1D691E0);
DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions__o* DG_Tweening_TweenSettingsExtensions__SetRelative_TweenerCore_Vector2__Vector2__VectorOptions__ (DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions__o* t, const MethodInfo_1D69850* method_1D69850);
DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* DG_Tweening_TweenSettingsExtensions__SetRelative_TweenerCore_Vector3__Vector3__VectorOptions__ (DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* t, const MethodInfo_1D69850* method_1D69850);
DG_Tweening_Tweener_o* DG_Tweening_TweenSettingsExtensions__SetRelative_Tweener_ (DG_Tweening_Tweener_o* t, const MethodInfo_1D69850* method_1D69850);
Il2CppObject* DG_Tweening_TweenSettingsExtensions__SetRelative_object_ (Il2CppObject* t, const MethodInfo_1D69850* method_1D69850);
DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions__o* DG_Tweening_TweenSettingsExtensions__SetRelative_TweenerCore_Quaternion__Vector3__QuaternionOptions__ (DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions__o* t, bool isRelative, const MethodInfo_1D69880* method_1D69880);
DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* DG_Tweening_TweenSettingsExtensions__SetRelative_TweenerCore_Vector3__Vector3__VectorOptions__ (DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* t, bool isRelative, const MethodInfo_1D69880* method_1D69880);
DG_Tweening_Tween_o* DG_Tweening_TweenSettingsExtensions__SetRelative_Tween_ (DG_Tweening_Tween_o* t, bool isRelative, const MethodInfo_1D69880* method_1D69880);
Il2CppObject* DG_Tweening_TweenSettingsExtensions__SetRelative_object_ (Il2CppObject* t, bool isRelative, const MethodInfo_1D69880* method_1D69880);
DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* DG_Tweening_TweenSettingsExtensions__SetSpeedBased_TweenerCore_Vector3__Path__PathOptions__ (DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* t, const MethodInfo_1D698B0* method_1D698B0);
DG_Tweening_Tween_o* DG_Tweening_TweenSettingsExtensions__SetSpeedBased_Tween_ (DG_Tweening_Tween_o* t, const MethodInfo_1D698B0* method_1D698B0);
Il2CppObject* DG_Tweening_TweenSettingsExtensions__SetSpeedBased_object_ (Il2CppObject* t, const MethodInfo_1D698B0* method_1D698B0);
Il2CppObject* DG_Tweening_TweenSettingsExtensions__SetSpeedBased_object_ (Il2CppObject* t, bool isSpeedBased, const MethodInfo_1D698E0* method_1D698E0);
DG_Tweening_Tweener_o* DG_Tweening_TweenSettingsExtensions__SetOptions (DG_Tweening_Core_TweenerCore_float__float__FloatOptions__o* t, bool snapping, const MethodInfo*);
DG_Tweening_Tweener_o* DG_Tweening_TweenSettingsExtensions__SetOptions (DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions__o* t, bool snapping, const MethodInfo*);
DG_Tweening_Tweener_o* DG_Tweening_TweenSettingsExtensions__SetOptions (DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions__o* t, int32_t axisConstraint, bool snapping, const MethodInfo*);
DG_Tweening_Tweener_o* DG_Tweening_TweenSettingsExtensions__SetOptions (DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* t, bool snapping, const MethodInfo*);
DG_Tweening_Tweener_o* DG_Tweening_TweenSettingsExtensions__SetOptions (DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* t, int32_t axisConstraint, bool snapping, const MethodInfo*);
DG_Tweening_Tweener_o* DG_Tweening_TweenSettingsExtensions__SetOptions (DG_Tweening_Core_TweenerCore_Vector4__Vector4__VectorOptions__o* t, bool snapping, const MethodInfo*);
DG_Tweening_Tweener_o* DG_Tweening_TweenSettingsExtensions__SetOptions (DG_Tweening_Core_TweenerCore_Vector4__Vector4__VectorOptions__o* t, int32_t axisConstraint, bool snapping, const MethodInfo*);
DG_Tweening_Tweener_o* DG_Tweening_TweenSettingsExtensions__SetOptions (DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions__o* t, bool useShortest360Route, const MethodInfo*);
DG_Tweening_Tweener_o* DG_Tweening_TweenSettingsExtensions__SetOptions (DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions__o* t, bool alphaOnly, const MethodInfo*);
DG_Tweening_Tweener_o* DG_Tweening_TweenSettingsExtensions__SetOptions (DG_Tweening_Core_TweenerCore_Rect__Rect__RectOptions__o* t, bool snapping, const MethodInfo*);
DG_Tweening_Tweener_o* DG_Tweening_TweenSettingsExtensions__SetOptions (DG_Tweening_Core_TweenerCore_string__string__StringOptions__o* t, bool richTextEnabled, int32_t scrambleMode, System_String_o* scrambleChars, const MethodInfo*);
DG_Tweening_Tweener_o* DG_Tweening_TweenSettingsExtensions__SetOptions (DG_Tweening_Core_TweenerCore_Vector3__Vector3____Vector3ArrayOptions__o* t, bool snapping, const MethodInfo*);
DG_Tweening_Tweener_o* DG_Tweening_TweenSettingsExtensions__SetOptions (DG_Tweening_Core_TweenerCore_Vector3__Vector3____Vector3ArrayOptions__o* t, int32_t axisConstraint, bool snapping, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* DG_Tweening_TweenSettingsExtensions__SetOptions (DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* t, int32_t lockPosition, int32_t lockRotation, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* DG_Tweening_TweenSettingsExtensions__SetOptions (DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* t, bool closePath, int32_t lockPosition, int32_t lockRotation, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* DG_Tweening_TweenSettingsExtensions__SetLookAt (DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* t, UnityEngine_Vector3_o lookAtPosition, System_Nullable_Vector3__o forwardDirection, System_Nullable_Vector3__o up, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* DG_Tweening_TweenSettingsExtensions__SetLookAt (DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* t, UnityEngine_Transform_o* lookAtTransform, System_Nullable_Vector3__o forwardDirection, System_Nullable_Vector3__o up, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* DG_Tweening_TweenSettingsExtensions__SetLookAt (DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* t, float lookAhead, System_Nullable_Vector3__o forwardDirection, System_Nullable_Vector3__o up, const MethodInfo*);
void DG_Tweening_TweenSettingsExtensions__SetPathForwardDirection (DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* t, System_Nullable_Vector3__o forwardDirection, System_Nullable_Vector3__o up, const MethodInfo*);
bool DG_Tweening_Tween__get_isRelative (DG_Tweening_Tween_o* __this, const MethodInfo*);
void DG_Tweening_Tween__set_isRelative (DG_Tweening_Tween_o* __this, bool value, const MethodInfo*);
bool DG_Tweening_Tween__get_active (DG_Tweening_Tween_o* __this, const MethodInfo*);
void DG_Tweening_Tween__set_active (DG_Tweening_Tween_o* __this, bool value, const MethodInfo*);
float DG_Tweening_Tween__get_fullPosition (DG_Tweening_Tween_o* __this, const MethodInfo*);
void DG_Tweening_Tween__set_fullPosition (DG_Tweening_Tween_o* __this, float value, const MethodInfo*);
bool DG_Tweening_Tween__get_playedOnce (DG_Tweening_Tween_o* __this, const MethodInfo*);
void DG_Tweening_Tween__set_playedOnce (DG_Tweening_Tween_o* __this, bool value, const MethodInfo*);
float DG_Tweening_Tween__get_position (DG_Tweening_Tween_o* __this, const MethodInfo*);
void DG_Tweening_Tween__set_position (DG_Tweening_Tween_o* __this, float value, const MethodInfo*);
void DG_Tweening_Tween__Reset (DG_Tweening_Tween_o* __this, const MethodInfo*);
float DG_Tweening_Tween__UpdateDelay (DG_Tweening_Tween_o* __this, float elapsed, const MethodInfo*);
bool DG_Tweening_Tween__DoGoto (DG_Tweening_Tween_o* t, float toPosition, int32_t toCompletedLoops, int32_t updateMode, const MethodInfo*);
bool DG_Tweening_Tween__OnTweenCallback (DG_Tweening_TweenCallback_o* callback, DG_Tweening_Tween_o* t, const MethodInfo*);
bool DG_Tweening_Tween__OnTweenCallback_int_ (DG_Tweening_TweenCallback_T__o* callback, DG_Tweening_Tween_o* t, int32_t param, const MethodInfo_244E200* method_244E200);
bool DG_Tweening_Tween__OnTweenCallback_object_ (DG_Tweening_TweenCallback_T__o* callback, DG_Tweening_Tween_o* t, Il2CppObject* param, const MethodInfo_244E3F0* method_244E3F0);
void DG_Tweening_Tween___ctor (DG_Tweening_Tween_o* __this, const MethodInfo*);
void DG_Tweening_Tweener___ctor (DG_Tweening_Tweener_o* __this, const MethodInfo*);
bool DG_Tweening_Tweener__Setup_Color2__Color2__ColorOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, DG_Tweening_Core_DOGetter_T1__o* getter, DG_Tweening_Core_DOSetter_T1__o* setter, DG_Tweening_Color2_o endValue, float duration, DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* plugin, const MethodInfo_24538B0* method_24538B0);
bool DG_Tweening_Tweener__Setup_double__double__NoOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, DG_Tweening_Core_DOGetter_T1__o* getter, DG_Tweening_Core_DOSetter_T1__o* setter, double endValue, float duration, DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* plugin, const MethodInfo_2453A80* method_2453A80);
bool DG_Tweening_Tweener__Setup_int__int__NoOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, DG_Tweening_Core_DOGetter_T1__o* getter, DG_Tweening_Core_DOSetter_T1__o* setter, int32_t endValue, float duration, DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* plugin, const MethodInfo_2453C40* method_2453C40);
bool DG_Tweening_Tweener__Setup_long__long__NoOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, DG_Tweening_Core_DOGetter_T1__o* getter, DG_Tweening_Core_DOSetter_T1__o* setter, int64_t endValue, float duration, DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* plugin, const MethodInfo_2453E00* method_2453E00);
bool DG_Tweening_Tweener__Setup_object__object__NoOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, DG_Tweening_Core_DOGetter_T1__o* getter, DG_Tweening_Core_DOSetter_T1__o* setter, Il2CppObject* endValue, float duration, DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* plugin, const MethodInfo_2453FC0* method_2453FC0);
bool DG_Tweening_Tweener__Setup_object__object__StringOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, DG_Tweening_Core_DOGetter_T1__o* getter, DG_Tweening_Core_DOSetter_T1__o* setter, Il2CppObject* endValue, float duration, DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* plugin, const MethodInfo_2454190* method_2454190);
bool DG_Tweening_Tweener__Setup_float__float__FloatOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, DG_Tweening_Core_DOGetter_T1__o* getter, DG_Tweening_Core_DOSetter_T1__o* setter, float endValue, float duration, DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* plugin, const MethodInfo_2454360* method_2454360);
bool DG_Tweening_Tweener__Setup_uint__uint__UintOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, DG_Tweening_Core_DOGetter_T1__o* getter, DG_Tweening_Core_DOSetter_T1__o* setter, uint32_t endValue, float duration, DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* plugin, const MethodInfo_2454520* method_2454520);
bool DG_Tweening_Tweener__Setup_ulong__ulong__NoOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, DG_Tweening_Core_DOGetter_T1__o* getter, DG_Tweening_Core_DOSetter_T1__o* setter, uint64_t endValue, float duration, DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* plugin, const MethodInfo_24546E0* method_24546E0);
bool DG_Tweening_Tweener__Setup_Color__Color__ColorOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, DG_Tweening_Core_DOGetter_T1__o* getter, DG_Tweening_Core_DOSetter_T1__o* setter, UnityEngine_Color_o endValue, float duration, DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* plugin, const MethodInfo_24548A0* method_24548A0);
bool DG_Tweening_Tweener__Setup_Quaternion__Quaternion__NoOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, DG_Tweening_Core_DOGetter_T1__o* getter, DG_Tweening_Core_DOSetter_T1__o* setter, UnityEngine_Quaternion_o endValue, float duration, DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* plugin, const MethodInfo_2454A80* method_2454A80);
bool DG_Tweening_Tweener__Setup_Quaternion__Vector3__QuaternionOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, DG_Tweening_Core_DOGetter_T1__o* getter, DG_Tweening_Core_DOSetter_T1__o* setter, UnityEngine_Vector3_o endValue, float duration, DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* plugin, const MethodInfo_2454C60* method_2454C60);
bool DG_Tweening_Tweener__Setup_Rect__Rect__RectOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, DG_Tweening_Core_DOGetter_T1__o* getter, DG_Tweening_Core_DOSetter_T1__o* setter, UnityEngine_Rect_o endValue, float duration, DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* plugin, const MethodInfo_2454E30* method_2454E30);
bool DG_Tweening_Tweener__Setup_Vector2__Vector2__VectorOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, DG_Tweening_Core_DOGetter_T1__o* getter, DG_Tweening_Core_DOSetter_T1__o* setter, UnityEngine_Vector2_o endValue, float duration, DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* plugin, const MethodInfo_2455010* method_2455010);
bool DG_Tweening_Tweener__Setup_Vector3__object__PathOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, DG_Tweening_Core_DOGetter_T1__o* getter, DG_Tweening_Core_DOSetter_T1__o* setter, Il2CppObject* endValue, float duration, DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* plugin, const MethodInfo_24551E0* method_24551E0);
bool DG_Tweening_Tweener__Setup_Vector3__object__Vector3ArrayOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, DG_Tweening_Core_DOGetter_T1__o* getter, DG_Tweening_Core_DOSetter_T1__o* setter, Il2CppObject* endValue, float duration, DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* plugin, const MethodInfo_24553B0* method_24553B0);
bool DG_Tweening_Tweener__Setup_Vector3__Vector3__VectorOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, DG_Tweening_Core_DOGetter_T1__o* getter, DG_Tweening_Core_DOSetter_T1__o* setter, UnityEngine_Vector3_o endValue, float duration, DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* plugin, const MethodInfo_2455580* method_2455580);
bool DG_Tweening_Tweener__Setup_Vector3__Vector3__SpiralOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, DG_Tweening_Core_DOGetter_T1__o* getter, DG_Tweening_Core_DOSetter_T1__o* setter, UnityEngine_Vector3_o endValue, float duration, DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* plugin, const MethodInfo_2455750* method_2455750);
bool DG_Tweening_Tweener__Setup_Vector4__Vector4__VectorOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, DG_Tweening_Core_DOGetter_T1__o* getter, DG_Tweening_Core_DOSetter_T1__o* setter, UnityEngine_Vector4_o endValue, float duration, DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* plugin, const MethodInfo_2455920* method_2455920);
float DG_Tweening_Tweener__DoUpdateDelay_Color2__Color2__ColorOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, float elapsed, const MethodInfo_1F9C2B0* method_1F9C2B0);
float DG_Tweening_Tweener__DoUpdateDelay_double__double__NoOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, float elapsed, const MethodInfo_1F9C2E0* method_1F9C2E0);
float DG_Tweening_Tweener__DoUpdateDelay_int__int__NoOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, float elapsed, const MethodInfo_1F9C310* method_1F9C310);
float DG_Tweening_Tweener__DoUpdateDelay_long__long__NoOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, float elapsed, const MethodInfo_1F9C340* method_1F9C340);
float DG_Tweening_Tweener__DoUpdateDelay_object__object__NoOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, float elapsed, const MethodInfo_1F9C370* method_1F9C370);
float DG_Tweening_Tweener__DoUpdateDelay_object__object__StringOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, float elapsed, const MethodInfo_1F9C3A0* method_1F9C3A0);
float DG_Tweening_Tweener__DoUpdateDelay_float__float__FloatOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, float elapsed, const MethodInfo_1F9C3D0* method_1F9C3D0);
float DG_Tweening_Tweener__DoUpdateDelay_uint__uint__UintOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, float elapsed, const MethodInfo_1F9C400* method_1F9C400);
float DG_Tweening_Tweener__DoUpdateDelay_ulong__ulong__NoOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, float elapsed, const MethodInfo_1F9C430* method_1F9C430);
float DG_Tweening_Tweener__DoUpdateDelay_Color__Color__ColorOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, float elapsed, const MethodInfo_1F9C460* method_1F9C460);
float DG_Tweening_Tweener__DoUpdateDelay_Quaternion__Quaternion__NoOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, float elapsed, const MethodInfo_1F9C490* method_1F9C490);
float DG_Tweening_Tweener__DoUpdateDelay_Quaternion__Vector3__QuaternionOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, float elapsed, const MethodInfo_1F9C4C0* method_1F9C4C0);
float DG_Tweening_Tweener__DoUpdateDelay_Rect__Rect__RectOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, float elapsed, const MethodInfo_1F9C4F0* method_1F9C4F0);
float DG_Tweening_Tweener__DoUpdateDelay_Vector2__Vector2__VectorOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, float elapsed, const MethodInfo_1F9C520* method_1F9C520);
float DG_Tweening_Tweener__DoUpdateDelay_Vector3__object__PathOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, float elapsed, const MethodInfo_1F9C550* method_1F9C550);
float DG_Tweening_Tweener__DoUpdateDelay_Vector3__object__Vector3ArrayOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, float elapsed, const MethodInfo_1F9C580* method_1F9C580);
float DG_Tweening_Tweener__DoUpdateDelay_Vector3__Vector3__VectorOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, float elapsed, const MethodInfo_1F9C5B0* method_1F9C5B0);
float DG_Tweening_Tweener__DoUpdateDelay_Vector3__Vector3__SpiralOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, float elapsed, const MethodInfo_1F9C5E0* method_1F9C5E0);
float DG_Tweening_Tweener__DoUpdateDelay_Vector4__Vector4__VectorOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, float elapsed, const MethodInfo_1F9C610* method_1F9C610);
bool DG_Tweening_Tweener__DoStartup_Color2__Color2__ColorOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_24504C0* method_24504C0);
bool DG_Tweening_Tweener__DoStartup_double__double__NoOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_24507F0* method_24507F0);
bool DG_Tweening_Tweener__DoStartup_int__int__NoOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_2450A90* method_2450A90);
bool DG_Tweening_Tweener__DoStartup_long__long__NoOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_2450D40* method_2450D40);
bool DG_Tweening_Tweener__DoStartup_object__object__NoOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_2450FF0* method_2450FF0);
bool DG_Tweening_Tweener__DoStartup_object__object__StringOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_24512C0* method_24512C0);
bool DG_Tweening_Tweener__DoStartup_float__float__FloatOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_2451590* method_2451590);
bool DG_Tweening_Tweener__DoStartup_uint__uint__UintOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_2451830* method_2451830);
bool DG_Tweening_Tweener__DoStartup_ulong__ulong__NoOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_2451AE0* method_2451AE0);
bool DG_Tweening_Tweener__DoStartup_Color__Color__ColorOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_2451D90* method_2451D90);
bool DG_Tweening_Tweener__DoStartup_Quaternion__Quaternion__NoOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_2452040* method_2452040);
bool DG_Tweening_Tweener__DoStartup_Quaternion__Vector3__QuaternionOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_24522F0* method_24522F0);
bool DG_Tweening_Tweener__DoStartup_Rect__Rect__RectOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_24525A0* method_24525A0);
bool DG_Tweening_Tweener__DoStartup_Vector2__Vector2__VectorOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_2452850* method_2452850);
bool DG_Tweening_Tweener__DoStartup_Vector3__object__PathOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_2452B00* method_2452B00);
bool DG_Tweening_Tweener__DoStartup_Vector3__object__Vector3ArrayOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_2452DD0* method_2452DD0);
bool DG_Tweening_Tweener__DoStartup_Vector3__Vector3__VectorOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_24530A0* method_24530A0);
bool DG_Tweening_Tweener__DoStartup_Vector3__Vector3__SpiralOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_2453350* method_2453350);
bool DG_Tweening_Tweener__DoStartup_Vector4__Vector4__VectorOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_2453600* method_2453600);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeStartValue_Color2__Color2__ColorOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, DG_Tweening_Color2_o newStartValue, float newDuration, const MethodInfo_2991930* method_2991930);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeStartValue_double__double__NoOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, double newStartValue, float newDuration, const MethodInfo_2991A00* method_2991A00);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeStartValue_int__int__NoOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, int32_t newStartValue, float newDuration, const MethodInfo_2991AC0* method_2991AC0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeStartValue_long__long__NoOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, int64_t newStartValue, float newDuration, const MethodInfo_2991B80* method_2991B80);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeStartValue_object__object__NoOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, Il2CppObject* newStartValue, float newDuration, const MethodInfo_2991C40* method_2991C40);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeStartValue_object__object__StringOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, Il2CppObject* newStartValue, float newDuration, const MethodInfo_2991D10* method_2991D10);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeStartValue_float__float__FloatOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, float newStartValue, float newDuration, const MethodInfo_2991DE0* method_2991DE0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeStartValue_uint__uint__UintOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, uint32_t newStartValue, float newDuration, const MethodInfo_2991EA0* method_2991EA0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeStartValue_ulong__ulong__NoOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, uint64_t newStartValue, float newDuration, const MethodInfo_2991F60* method_2991F60);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeStartValue_Color__Color__ColorOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, UnityEngine_Color_o newStartValue, float newDuration, const MethodInfo_2992020* method_2992020);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeStartValue_Quaternion__Quaternion__NoOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, UnityEngine_Quaternion_o newStartValue, float newDuration, const MethodInfo_29920F0* method_29920F0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeStartValue_Quaternion__Vector3__QuaternionOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, UnityEngine_Vector3_o newStartValue, float newDuration, const MethodInfo_29921C0* method_29921C0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeStartValue_Rect__Rect__RectOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, UnityEngine_Rect_o newStartValue, float newDuration, const MethodInfo_2992290* method_2992290);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeStartValue_Vector2__Vector2__VectorOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, UnityEngine_Vector2_o newStartValue, float newDuration, const MethodInfo_2992360* method_2992360);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeStartValue_Vector3__object__PathOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, Il2CppObject* newStartValue, float newDuration, const MethodInfo_2992430* method_2992430);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeStartValue_Vector3__object__Vector3ArrayOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, Il2CppObject* newStartValue, float newDuration, const MethodInfo_2992500* method_2992500);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeStartValue_Vector3__Vector3__VectorOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, UnityEngine_Vector3_o newStartValue, float newDuration, const MethodInfo_29925D0* method_29925D0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeStartValue_Vector3__Vector3__SpiralOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, UnityEngine_Vector3_o newStartValue, float newDuration, const MethodInfo_29926A0* method_29926A0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeStartValue_Vector4__Vector4__VectorOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, UnityEngine_Vector4_o newStartValue, float newDuration, const MethodInfo_2992770* method_2992770);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeEndValue_Color2__Color2__ColorOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, DG_Tweening_Color2_o newEndValue, float newDuration, bool snapStartValue, const MethodInfo_298E950* method_298E950);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeEndValue_double__double__NoOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, double newEndValue, float newDuration, bool snapStartValue, const MethodInfo_298EC40* method_298EC40);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeEndValue_int__int__NoOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, int32_t newEndValue, float newDuration, bool snapStartValue, const MethodInfo_298EEA0* method_298EEA0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeEndValue_long__long__NoOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, int64_t newEndValue, float newDuration, bool snapStartValue, const MethodInfo_298F110* method_298F110);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeEndValue_object__object__NoOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, Il2CppObject* newEndValue, float newDuration, bool snapStartValue, const MethodInfo_298F380* method_298F380);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeEndValue_object__object__StringOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, Il2CppObject* newEndValue, float newDuration, bool snapStartValue, const MethodInfo_298F610* method_298F610);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeEndValue_float__float__FloatOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, float newEndValue, float newDuration, bool snapStartValue, const MethodInfo_298F8A0* method_298F8A0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeEndValue_uint__uint__UintOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, uint32_t newEndValue, float newDuration, bool snapStartValue, const MethodInfo_298FB00* method_298FB00);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeEndValue_ulong__ulong__NoOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, uint64_t newEndValue, float newDuration, bool snapStartValue, const MethodInfo_298FD70* method_298FD70);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeEndValue_Color__Color__ColorOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, UnityEngine_Color_o newEndValue, float newDuration, bool snapStartValue, const MethodInfo_298FFE0* method_298FFE0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeEndValue_Quaternion__Quaternion__NoOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, UnityEngine_Quaternion_o newEndValue, float newDuration, bool snapStartValue, const MethodInfo_2990270* method_2990270);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeEndValue_Quaternion__Vector3__QuaternionOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, UnityEngine_Vector3_o newEndValue, float newDuration, bool snapStartValue, const MethodInfo_2990500* method_2990500);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeEndValue_Rect__Rect__RectOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, UnityEngine_Rect_o newEndValue, float newDuration, bool snapStartValue, const MethodInfo_2990780* method_2990780);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeEndValue_Vector2__Vector2__VectorOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, UnityEngine_Vector2_o newEndValue, float newDuration, bool snapStartValue, const MethodInfo_2990A10* method_2990A10);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeEndValue_Vector3__object__PathOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, Il2CppObject* newEndValue, float newDuration, bool snapStartValue, const MethodInfo_2990C80* method_2990C80);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeEndValue_Vector3__object__Vector3ArrayOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, Il2CppObject* newEndValue, float newDuration, bool snapStartValue, const MethodInfo_2990F10* method_2990F10);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeEndValue_Vector3__Vector3__VectorOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, UnityEngine_Vector3_o newEndValue, float newDuration, bool snapStartValue, const MethodInfo_29911A0* method_29911A0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeEndValue_Vector3__Vector3__SpiralOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, UnityEngine_Vector3_o newEndValue, float newDuration, bool snapStartValue, const MethodInfo_2991420* method_2991420);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeEndValue_Vector4__Vector4__VectorOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, UnityEngine_Vector4_o newEndValue, float newDuration, bool snapStartValue, const MethodInfo_29916A0* method_29916A0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeValues_Color2__Color2__ColorOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, DG_Tweening_Color2_o newStartValue, DG_Tweening_Color2_o newEndValue, float newDuration, const MethodInfo_2992840* method_2992840);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeValues_double__double__NoOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, double newStartValue, double newEndValue, float newDuration, const MethodInfo_2992930* method_2992930);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeValues_int__int__NoOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, int32_t newStartValue, int32_t newEndValue, float newDuration, const MethodInfo_2992A00* method_2992A00);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeValues_long__long__NoOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, int64_t newStartValue, int64_t newEndValue, float newDuration, const MethodInfo_2992AD0* method_2992AD0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeValues_object__object__NoOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, Il2CppObject* newStartValue, Il2CppObject* newEndValue, float newDuration, const MethodInfo_2992BA0* method_2992BA0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeValues_object__object__StringOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, Il2CppObject* newStartValue, Il2CppObject* newEndValue, float newDuration, const MethodInfo_2992C90* method_2992C90);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeValues_float__float__FloatOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, float newStartValue, float newEndValue, float newDuration, const MethodInfo_2992D80* method_2992D80);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeValues_uint__uint__UintOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, uint32_t newStartValue, uint32_t newEndValue, float newDuration, const MethodInfo_2992E50* method_2992E50);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeValues_ulong__ulong__NoOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, uint64_t newStartValue, uint64_t newEndValue, float newDuration, const MethodInfo_2992F20* method_2992F20);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeValues_Color__Color__ColorOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, UnityEngine_Color_o newStartValue, UnityEngine_Color_o newEndValue, float newDuration, const MethodInfo_2992FF0* method_2992FF0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeValues_Quaternion__Quaternion__NoOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, UnityEngine_Quaternion_o newStartValue, UnityEngine_Quaternion_o newEndValue, float newDuration, const MethodInfo_29930E0* method_29930E0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeValues_Quaternion__Vector3__QuaternionOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, UnityEngine_Vector3_o newStartValue, UnityEngine_Vector3_o newEndValue, float newDuration, const MethodInfo_29931D0* method_29931D0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeValues_Rect__Rect__RectOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, UnityEngine_Rect_o newStartValue, UnityEngine_Rect_o newEndValue, float newDuration, const MethodInfo_29932B0* method_29932B0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeValues_Vector2__Vector2__VectorOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, UnityEngine_Vector2_o newStartValue, UnityEngine_Vector2_o newEndValue, float newDuration, const MethodInfo_29933A0* method_29933A0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeValues_Vector3__object__PathOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, Il2CppObject* newStartValue, Il2CppObject* newEndValue, float newDuration, const MethodInfo_2993480* method_2993480);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeValues_Vector3__object__Vector3ArrayOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, Il2CppObject* newStartValue, Il2CppObject* newEndValue, float newDuration, const MethodInfo_2993570* method_2993570);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeValues_Vector3__Vector3__VectorOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, UnityEngine_Vector3_o newStartValue, UnityEngine_Vector3_o newEndValue, float newDuration, const MethodInfo_2993660* method_2993660);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeValues_Vector3__Vector3__SpiralOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, UnityEngine_Vector3_o newStartValue, UnityEngine_Vector3_o newEndValue, float newDuration, const MethodInfo_2993740* method_2993740);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Tweener__DoChangeValues_Vector4__Vector4__VectorOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, UnityEngine_Vector4_o newStartValue, UnityEngine_Vector4_o newEndValue, float newDuration, const MethodInfo_2993820* method_2993820);
bool DG_Tweening_Tweener__DOStartupSpecials_Color2__Color2__ColorOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_244E5E0* method_244E5E0);
bool DG_Tweening_Tweener__DOStartupSpecials_double__double__NoOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_244E780* method_244E780);
bool DG_Tweening_Tweener__DOStartupSpecials_int__int__NoOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_244E920* method_244E920);
bool DG_Tweening_Tweener__DOStartupSpecials_long__long__NoOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_244EAC0* method_244EAC0);
bool DG_Tweening_Tweener__DOStartupSpecials_object__object__NoOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_244EC60* method_244EC60);
bool DG_Tweening_Tweener__DOStartupSpecials_object__object__StringOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_244EE00* method_244EE00);
bool DG_Tweening_Tweener__DOStartupSpecials_float__float__FloatOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_244EFA0* method_244EFA0);
bool DG_Tweening_Tweener__DOStartupSpecials_uint__uint__UintOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_244F140* method_244F140);
bool DG_Tweening_Tweener__DOStartupSpecials_ulong__ulong__NoOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_244F2E0* method_244F2E0);
bool DG_Tweening_Tweener__DOStartupSpecials_Color__Color__ColorOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_244F480* method_244F480);
bool DG_Tweening_Tweener__DOStartupSpecials_Quaternion__Quaternion__NoOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_244F620* method_244F620);
bool DG_Tweening_Tweener__DOStartupSpecials_Quaternion__Vector3__QuaternionOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_244F7C0* method_244F7C0);
bool DG_Tweening_Tweener__DOStartupSpecials_Rect__Rect__RectOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_244F960* method_244F960);
bool DG_Tweening_Tweener__DOStartupSpecials_Vector2__Vector2__VectorOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_244FB00* method_244FB00);
bool DG_Tweening_Tweener__DOStartupSpecials_Vector3__object__PathOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_244FCA0* method_244FCA0);
bool DG_Tweening_Tweener__DOStartupSpecials_Vector3__object__Vector3ArrayOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_244FE40* method_244FE40);
bool DG_Tweening_Tweener__DOStartupSpecials_Vector3__Vector3__VectorOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_244FFE0* method_244FFE0);
bool DG_Tweening_Tweener__DOStartupSpecials_Vector3__Vector3__SpiralOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_2450180* method_2450180);
bool DG_Tweening_Tweener__DOStartupSpecials_Vector4__Vector4__VectorOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_2450320* method_2450320);
void DG_Tweening_Tweener__DOStartupDurationBased_Color2__Color2__ColorOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_1F9F770* method_1F9F770);
void DG_Tweening_Tweener__DOStartupDurationBased_double__double__NoOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_1F9F800* method_1F9F800);
void DG_Tweening_Tweener__DOStartupDurationBased_int__int__NoOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_1F9F880* method_1F9F880);
void DG_Tweening_Tweener__DOStartupDurationBased_long__long__NoOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_1F9F900* method_1F9F900);
void DG_Tweening_Tweener__DOStartupDurationBased_object__object__NoOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_1F9F980* method_1F9F980);
void DG_Tweening_Tweener__DOStartupDurationBased_object__object__StringOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_1F9FA00* method_1F9FA00);
void DG_Tweening_Tweener__DOStartupDurationBased_float__float__FloatOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_1B4DA30* method_1B4DA30);
void DG_Tweening_Tweener__DOStartupDurationBased_uint__uint__UintOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_1B4DAB0* method_1B4DAB0);
void DG_Tweening_Tweener__DOStartupDurationBased_ulong__ulong__NoOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_1B4DB30* method_1B4DB30);
void DG_Tweening_Tweener__DOStartupDurationBased_Color__Color__ColorOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_1B4DBB0* method_1B4DBB0);
void DG_Tweening_Tweener__DOStartupDurationBased_Quaternion__Quaternion__NoOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_1B4DC30* method_1B4DC30);
void DG_Tweening_Tweener__DOStartupDurationBased_Quaternion__Vector3__QuaternionOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_1B4DCB0* method_1B4DCB0);
void DG_Tweening_Tweener__DOStartupDurationBased_Rect__Rect__RectOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_1B4DD50* method_1B4DD50);
void DG_Tweening_Tweener__DOStartupDurationBased_Vector2__Vector2__VectorOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_1B4DDD0* method_1B4DDD0);
void DG_Tweening_Tweener__DOStartupDurationBased_Vector3__object__PathOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_1B4DE50* method_1B4DE50);
void DG_Tweening_Tweener__DOStartupDurationBased_Vector3__object__Vector3ArrayOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_1B4DF40* method_1B4DF40);
void DG_Tweening_Tweener__DOStartupDurationBased_Vector3__Vector3__VectorOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_1B4DFC0* method_1B4DFC0);
void DG_Tweening_Tweener__DOStartupDurationBased_Vector3__Vector3__SpiralOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_1B4E040* method_1B4E040);
void DG_Tweening_Tweener__DOStartupDurationBased_Vector4__Vector4__VectorOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_1B4E0F0* method_1B4E0F0);
void DG_Tweening_Plugins_Color2Plugin__Reset (DG_Tweening_Plugins_Color2Plugin_o* __this, DG_Tweening_Core_TweenerCore_Color2__Color2__ColorOptions__o* t, const MethodInfo*);
void DG_Tweening_Plugins_Color2Plugin__SetFrom (DG_Tweening_Plugins_Color2Plugin_o* __this, DG_Tweening_Core_TweenerCore_Color2__Color2__ColorOptions__o* t, bool isRelative, const MethodInfo*);
void DG_Tweening_Plugins_Color2Plugin__SetFrom (DG_Tweening_Plugins_Color2Plugin_o* __this, DG_Tweening_Core_TweenerCore_Color2__Color2__ColorOptions__o* t, DG_Tweening_Color2_o fromValue, bool setImmediately, const MethodInfo*);
DG_Tweening_Color2_o DG_Tweening_Plugins_Color2Plugin__ConvertToStartValue (DG_Tweening_Plugins_Color2Plugin_o* __this, DG_Tweening_Core_TweenerCore_Color2__Color2__ColorOptions__o* t, DG_Tweening_Color2_o value, const MethodInfo*);
void DG_Tweening_Plugins_Color2Plugin__SetRelativeEndValue (DG_Tweening_Plugins_Color2Plugin_o* __this, DG_Tweening_Core_TweenerCore_Color2__Color2__ColorOptions__o* t, const MethodInfo*);
void DG_Tweening_Plugins_Color2Plugin__SetChangeValue (DG_Tweening_Plugins_Color2Plugin_o* __this, DG_Tweening_Core_TweenerCore_Color2__Color2__ColorOptions__o* t, const MethodInfo*);
float DG_Tweening_Plugins_Color2Plugin__GetSpeedBasedDuration (DG_Tweening_Plugins_Color2Plugin_o* __this, DG_Tweening_Plugins_Options_ColorOptions_o options, float unitsXSecond, DG_Tweening_Color2_o changeValue, const MethodInfo*);
void DG_Tweening_Plugins_Color2Plugin__EvaluateAndApply (DG_Tweening_Plugins_Color2Plugin_o* __this, DG_Tweening_Plugins_Options_ColorOptions_o options, DG_Tweening_Tween_o* t, bool isRelative, DG_Tweening_Core_DOGetter_Color2__o* getter, DG_Tweening_Core_DOSetter_Color2__o* setter, float elapsed, DG_Tweening_Color2_o startValue, DG_Tweening_Color2_o changeValue, float duration, bool usingInversePosition, int32_t updateNotice, const MethodInfo*);
void DG_Tweening_Plugins_Color2Plugin___ctor (DG_Tweening_Plugins_Color2Plugin_o* __this, const MethodInfo*);
void DG_Tweening_Plugins_DoublePlugin__Reset (DG_Tweening_Plugins_DoublePlugin_o* __this, DG_Tweening_Core_TweenerCore_double__double__NoOptions__o* t, const MethodInfo*);
void DG_Tweening_Plugins_DoublePlugin__SetFrom (DG_Tweening_Plugins_DoublePlugin_o* __this, DG_Tweening_Core_TweenerCore_double__double__NoOptions__o* t, bool isRelative, const MethodInfo*);
void DG_Tweening_Plugins_DoublePlugin__SetFrom (DG_Tweening_Plugins_DoublePlugin_o* __this, DG_Tweening_Core_TweenerCore_double__double__NoOptions__o* t, double fromValue, bool setImmediately, const MethodInfo*);
double DG_Tweening_Plugins_DoublePlugin__ConvertToStartValue (DG_Tweening_Plugins_DoublePlugin_o* __this, DG_Tweening_Core_TweenerCore_double__double__NoOptions__o* t, double value, const MethodInfo*);
void DG_Tweening_Plugins_DoublePlugin__SetRelativeEndValue (DG_Tweening_Plugins_DoublePlugin_o* __this, DG_Tweening_Core_TweenerCore_double__double__NoOptions__o* t, const MethodInfo*);
void DG_Tweening_Plugins_DoublePlugin__SetChangeValue (DG_Tweening_Plugins_DoublePlugin_o* __this, DG_Tweening_Core_TweenerCore_double__double__NoOptions__o* t, const MethodInfo*);
float DG_Tweening_Plugins_DoublePlugin__GetSpeedBasedDuration (DG_Tweening_Plugins_DoublePlugin_o* __this, DG_Tweening_Plugins_Options_NoOptions_o options, float unitsXSecond, double changeValue, const MethodInfo*);
void DG_Tweening_Plugins_DoublePlugin__EvaluateAndApply (DG_Tweening_Plugins_DoublePlugin_o* __this, DG_Tweening_Plugins_Options_NoOptions_o options, DG_Tweening_Tween_o* t, bool isRelative, DG_Tweening_Core_DOGetter_double__o* getter, DG_Tweening_Core_DOSetter_double__o* setter, float elapsed, double startValue, double changeValue, float duration, bool usingInversePosition, int32_t updateNotice, const MethodInfo*);
void DG_Tweening_Plugins_DoublePlugin___ctor (DG_Tweening_Plugins_DoublePlugin_o* __this, const MethodInfo*);
void DG_Tweening_Plugins_LongPlugin__Reset (DG_Tweening_Plugins_LongPlugin_o* __this, DG_Tweening_Core_TweenerCore_long__long__NoOptions__o* t, const MethodInfo*);
void DG_Tweening_Plugins_LongPlugin__SetFrom (DG_Tweening_Plugins_LongPlugin_o* __this, DG_Tweening_Core_TweenerCore_long__long__NoOptions__o* t, bool isRelative, const MethodInfo*);
void DG_Tweening_Plugins_LongPlugin__SetFrom (DG_Tweening_Plugins_LongPlugin_o* __this, DG_Tweening_Core_TweenerCore_long__long__NoOptions__o* t, int64_t fromValue, bool setImmediately, const MethodInfo*);
int64_t DG_Tweening_Plugins_LongPlugin__ConvertToStartValue (DG_Tweening_Plugins_LongPlugin_o* __this, DG_Tweening_Core_TweenerCore_long__long__NoOptions__o* t, int64_t value, const MethodInfo*);
void DG_Tweening_Plugins_LongPlugin__SetRelativeEndValue (DG_Tweening_Plugins_LongPlugin_o* __this, DG_Tweening_Core_TweenerCore_long__long__NoOptions__o* t, const MethodInfo*);
void DG_Tweening_Plugins_LongPlugin__SetChangeValue (DG_Tweening_Plugins_LongPlugin_o* __this, DG_Tweening_Core_TweenerCore_long__long__NoOptions__o* t, const MethodInfo*);
float DG_Tweening_Plugins_LongPlugin__GetSpeedBasedDuration (DG_Tweening_Plugins_LongPlugin_o* __this, DG_Tweening_Plugins_Options_NoOptions_o options, float unitsXSecond, int64_t changeValue, const MethodInfo*);
void DG_Tweening_Plugins_LongPlugin__EvaluateAndApply (DG_Tweening_Plugins_LongPlugin_o* __this, DG_Tweening_Plugins_Options_NoOptions_o options, DG_Tweening_Tween_o* t, bool isRelative, DG_Tweening_Core_DOGetter_long__o* getter, DG_Tweening_Core_DOSetter_long__o* setter, float elapsed, int64_t startValue, int64_t changeValue, float duration, bool usingInversePosition, int32_t updateNotice, const MethodInfo*);
void DG_Tweening_Plugins_LongPlugin___ctor (DG_Tweening_Plugins_LongPlugin_o* __this, const MethodInfo*);
void DG_Tweening_Plugins_UlongPlugin__Reset (DG_Tweening_Plugins_UlongPlugin_o* __this, DG_Tweening_Core_TweenerCore_ulong__ulong__NoOptions__o* t, const MethodInfo*);
void DG_Tweening_Plugins_UlongPlugin__SetFrom (DG_Tweening_Plugins_UlongPlugin_o* __this, DG_Tweening_Core_TweenerCore_ulong__ulong__NoOptions__o* t, bool isRelative, const MethodInfo*);
void DG_Tweening_Plugins_UlongPlugin__SetFrom (DG_Tweening_Plugins_UlongPlugin_o* __this, DG_Tweening_Core_TweenerCore_ulong__ulong__NoOptions__o* t, uint64_t fromValue, bool setImmediately, const MethodInfo*);
uint64_t DG_Tweening_Plugins_UlongPlugin__ConvertToStartValue (DG_Tweening_Plugins_UlongPlugin_o* __this, DG_Tweening_Core_TweenerCore_ulong__ulong__NoOptions__o* t, uint64_t value, const MethodInfo*);
void DG_Tweening_Plugins_UlongPlugin__SetRelativeEndValue (DG_Tweening_Plugins_UlongPlugin_o* __this, DG_Tweening_Core_TweenerCore_ulong__ulong__NoOptions__o* t, const MethodInfo*);
void DG_Tweening_Plugins_UlongPlugin__SetChangeValue (DG_Tweening_Plugins_UlongPlugin_o* __this, DG_Tweening_Core_TweenerCore_ulong__ulong__NoOptions__o* t, const MethodInfo*);
float DG_Tweening_Plugins_UlongPlugin__GetSpeedBasedDuration (DG_Tweening_Plugins_UlongPlugin_o* __this, DG_Tweening_Plugins_Options_NoOptions_o options, float unitsXSecond, uint64_t changeValue, const MethodInfo*);
void DG_Tweening_Plugins_UlongPlugin__EvaluateAndApply (DG_Tweening_Plugins_UlongPlugin_o* __this, DG_Tweening_Plugins_Options_NoOptions_o options, DG_Tweening_Tween_o* t, bool isRelative, DG_Tweening_Core_DOGetter_ulong__o* getter, DG_Tweening_Core_DOSetter_ulong__o* setter, float elapsed, uint64_t startValue, uint64_t changeValue, float duration, bool usingInversePosition, int32_t updateNotice, const MethodInfo*);
void DG_Tweening_Plugins_UlongPlugin___ctor (DG_Tweening_Plugins_UlongPlugin_o* __this, const MethodInfo*);
void DG_Tweening_Plugins_Vector3ArrayPlugin__Reset (DG_Tweening_Plugins_Vector3ArrayPlugin_o* __this, DG_Tweening_Core_TweenerCore_Vector3__Vector3____Vector3ArrayOptions__o* t, const MethodInfo*);
void DG_Tweening_Plugins_Vector3ArrayPlugin__SetFrom (DG_Tweening_Plugins_Vector3ArrayPlugin_o* __this, DG_Tweening_Core_TweenerCore_Vector3__Vector3____Vector3ArrayOptions__o* t, bool isRelative, const MethodInfo*);
void DG_Tweening_Plugins_Vector3ArrayPlugin__SetFrom (DG_Tweening_Plugins_Vector3ArrayPlugin_o* __this, DG_Tweening_Core_TweenerCore_Vector3__Vector3____Vector3ArrayOptions__o* t, UnityEngine_Vector3_array* fromValue, bool setImmediately, const MethodInfo*);
UnityEngine_Vector3_array* DG_Tweening_Plugins_Vector3ArrayPlugin__ConvertToStartValue (DG_Tweening_Plugins_Vector3ArrayPlugin_o* __this, DG_Tweening_Core_TweenerCore_Vector3__Vector3____Vector3ArrayOptions__o* t, UnityEngine_Vector3_o value, const MethodInfo*);
void DG_Tweening_Plugins_Vector3ArrayPlugin__SetRelativeEndValue (DG_Tweening_Plugins_Vector3ArrayPlugin_o* __this, DG_Tweening_Core_TweenerCore_Vector3__Vector3____Vector3ArrayOptions__o* t, const MethodInfo*);
void DG_Tweening_Plugins_Vector3ArrayPlugin__SetChangeValue (DG_Tweening_Plugins_Vector3ArrayPlugin_o* __this, DG_Tweening_Core_TweenerCore_Vector3__Vector3____Vector3ArrayOptions__o* t, const MethodInfo*);
float DG_Tweening_Plugins_Vector3ArrayPlugin__GetSpeedBasedDuration (DG_Tweening_Plugins_Vector3ArrayPlugin_o* __this, DG_Tweening_Plugins_Options_Vector3ArrayOptions_o options, float unitsXSecond, UnityEngine_Vector3_array* changeValue, const MethodInfo*);
void DG_Tweening_Plugins_Vector3ArrayPlugin__EvaluateAndApply (DG_Tweening_Plugins_Vector3ArrayPlugin_o* __this, DG_Tweening_Plugins_Options_Vector3ArrayOptions_o options, DG_Tweening_Tween_o* t, bool isRelative, DG_Tweening_Core_DOGetter_Vector3__o* getter, DG_Tweening_Core_DOSetter_Vector3__o* setter, float elapsed, UnityEngine_Vector3_array* startValue, UnityEngine_Vector3_array* changeValue, float duration, bool usingInversePosition, int32_t updateNotice, const MethodInfo*);
void DG_Tweening_Plugins_Vector3ArrayPlugin___ctor (DG_Tweening_Plugins_Vector3ArrayPlugin_o* __this, const MethodInfo*);
void DG_Tweening_Plugins_PathPlugin__Reset (DG_Tweening_Plugins_PathPlugin_o* __this, DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* t, const MethodInfo*);
void DG_Tweening_Plugins_PathPlugin__SetFrom (DG_Tweening_Plugins_PathPlugin_o* __this, DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* t, bool isRelative, const MethodInfo*);
void DG_Tweening_Plugins_PathPlugin__SetFrom (DG_Tweening_Plugins_PathPlugin_o* __this, DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* t, DG_Tweening_Plugins_Core_PathCore_Path_o* fromValue, bool setImmediately, const MethodInfo*);
DG_Tweening_Plugins_Core_ABSTweenPlugin_Vector3__Path__PathOptions__o* DG_Tweening_Plugins_PathPlugin__Get (const MethodInfo*);
DG_Tweening_Plugins_Core_PathCore_Path_o* DG_Tweening_Plugins_PathPlugin__ConvertToStartValue (DG_Tweening_Plugins_PathPlugin_o* __this, DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* t, UnityEngine_Vector3_o value, const MethodInfo*);
void DG_Tweening_Plugins_PathPlugin__SetRelativeEndValue (DG_Tweening_Plugins_PathPlugin_o* __this, DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* t, const MethodInfo*);
void DG_Tweening_Plugins_PathPlugin__SetChangeValue (DG_Tweening_Plugins_PathPlugin_o* __this, DG_Tweening_Core_TweenerCore_Vector3__Path__PathOptions__o* t, const MethodInfo*);
float DG_Tweening_Plugins_PathPlugin__GetSpeedBasedDuration (DG_Tweening_Plugins_PathPlugin_o* __this, DG_Tweening_Plugins_Options_PathOptions_o options, float unitsXSecond, DG_Tweening_Plugins_Core_PathCore_Path_o* changeValue, const MethodInfo*);
void DG_Tweening_Plugins_PathPlugin__EvaluateAndApply (DG_Tweening_Plugins_PathPlugin_o* __this, DG_Tweening_Plugins_Options_PathOptions_o options, DG_Tweening_Tween_o* t, bool isRelative, DG_Tweening_Core_DOGetter_Vector3__o* getter, DG_Tweening_Core_DOSetter_Vector3__o* setter, float elapsed, DG_Tweening_Plugins_Core_PathCore_Path_o* startValue, DG_Tweening_Plugins_Core_PathCore_Path_o* changeValue, float duration, bool usingInversePosition, int32_t updateNotice, const MethodInfo*);
void DG_Tweening_Plugins_PathPlugin__SetOrientation (DG_Tweening_Plugins_PathPlugin_o* __this, DG_Tweening_Plugins_Options_PathOptions_o options, DG_Tweening_Tween_o* t, DG_Tweening_Plugins_Core_PathCore_Path_o* path, float pathPerc, UnityEngine_Vector3_o tPos, int32_t updateNotice, const MethodInfo*);
void DG_Tweening_Plugins_PathPlugin___ctor (DG_Tweening_Plugins_PathPlugin_o* __this, const MethodInfo*);
void DG_Tweening_Plugins_ColorPlugin__Reset (DG_Tweening_Plugins_ColorPlugin_o* __this, DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions__o* t, const MethodInfo*);
void DG_Tweening_Plugins_ColorPlugin__SetFrom (DG_Tweening_Plugins_ColorPlugin_o* __this, DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions__o* t, bool isRelative, const MethodInfo*);
void DG_Tweening_Plugins_ColorPlugin__SetFrom (DG_Tweening_Plugins_ColorPlugin_o* __this, DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions__o* t, UnityEngine_Color_o fromValue, bool setImmediately, const MethodInfo*);
UnityEngine_Color_o DG_Tweening_Plugins_ColorPlugin__ConvertToStartValue (DG_Tweening_Plugins_ColorPlugin_o* __this, DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions__o* t, UnityEngine_Color_o value, const MethodInfo*);
void DG_Tweening_Plugins_ColorPlugin__SetRelativeEndValue (DG_Tweening_Plugins_ColorPlugin_o* __this, DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions__o* t, const MethodInfo*);
void DG_Tweening_Plugins_ColorPlugin__SetChangeValue (DG_Tweening_Plugins_ColorPlugin_o* __this, DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions__o* t, const MethodInfo*);
float DG_Tweening_Plugins_ColorPlugin__GetSpeedBasedDuration (DG_Tweening_Plugins_ColorPlugin_o* __this, DG_Tweening_Plugins_Options_ColorOptions_o options, float unitsXSecond, UnityEngine_Color_o changeValue, const MethodInfo*);
void DG_Tweening_Plugins_ColorPlugin__EvaluateAndApply (DG_Tweening_Plugins_ColorPlugin_o* __this, DG_Tweening_Plugins_Options_ColorOptions_o options, DG_Tweening_Tween_o* t, bool isRelative, DG_Tweening_Core_DOGetter_Color__o* getter, DG_Tweening_Core_DOSetter_Color__o* setter, float elapsed, UnityEngine_Color_o startValue, UnityEngine_Color_o changeValue, float duration, bool usingInversePosition, int32_t updateNotice, const MethodInfo*);
void DG_Tweening_Plugins_ColorPlugin___ctor (DG_Tweening_Plugins_ColorPlugin_o* __this, const MethodInfo*);
void DG_Tweening_Plugins_IntPlugin__Reset (DG_Tweening_Plugins_IntPlugin_o* __this, DG_Tweening_Core_TweenerCore_int__int__NoOptions__o* t, const MethodInfo*);
void DG_Tweening_Plugins_IntPlugin__SetFrom (DG_Tweening_Plugins_IntPlugin_o* __this, DG_Tweening_Core_TweenerCore_int__int__NoOptions__o* t, bool isRelative, const MethodInfo*);
void DG_Tweening_Plugins_IntPlugin__SetFrom (DG_Tweening_Plugins_IntPlugin_o* __this, DG_Tweening_Core_TweenerCore_int__int__NoOptions__o* t, int32_t fromValue, bool setImmediately, const MethodInfo*);
int32_t DG_Tweening_Plugins_IntPlugin__ConvertToStartValue (DG_Tweening_Plugins_IntPlugin_o* __this, DG_Tweening_Core_TweenerCore_int__int__NoOptions__o* t, int32_t value, const MethodInfo*);
void DG_Tweening_Plugins_IntPlugin__SetRelativeEndValue (DG_Tweening_Plugins_IntPlugin_o* __this, DG_Tweening_Core_TweenerCore_int__int__NoOptions__o* t, const MethodInfo*);
void DG_Tweening_Plugins_IntPlugin__SetChangeValue (DG_Tweening_Plugins_IntPlugin_o* __this, DG_Tweening_Core_TweenerCore_int__int__NoOptions__o* t, const MethodInfo*);
float DG_Tweening_Plugins_IntPlugin__GetSpeedBasedDuration (DG_Tweening_Plugins_IntPlugin_o* __this, DG_Tweening_Plugins_Options_NoOptions_o options, float unitsXSecond, int32_t changeValue, const MethodInfo*);
void DG_Tweening_Plugins_IntPlugin__EvaluateAndApply (DG_Tweening_Plugins_IntPlugin_o* __this, DG_Tweening_Plugins_Options_NoOptions_o options, DG_Tweening_Tween_o* t, bool isRelative, DG_Tweening_Core_DOGetter_int__o* getter, DG_Tweening_Core_DOSetter_int__o* setter, float elapsed, int32_t startValue, int32_t changeValue, float duration, bool usingInversePosition, int32_t updateNotice, const MethodInfo*);
void DG_Tweening_Plugins_IntPlugin___ctor (DG_Tweening_Plugins_IntPlugin_o* __this, const MethodInfo*);
void DG_Tweening_Plugins_QuaternionPlugin__Reset (DG_Tweening_Plugins_QuaternionPlugin_o* __this, DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions__o* t, const MethodInfo*);
void DG_Tweening_Plugins_QuaternionPlugin__SetFrom (DG_Tweening_Plugins_QuaternionPlugin_o* __this, DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions__o* t, bool isRelative, const MethodInfo*);
void DG_Tweening_Plugins_QuaternionPlugin__SetFrom (DG_Tweening_Plugins_QuaternionPlugin_o* __this, DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions__o* t, UnityEngine_Vector3_o fromValue, bool setImmediately, const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_Plugins_QuaternionPlugin__ConvertToStartValue (DG_Tweening_Plugins_QuaternionPlugin_o* __this, DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions__o* t, UnityEngine_Quaternion_o value, const MethodInfo*);
void DG_Tweening_Plugins_QuaternionPlugin__SetRelativeEndValue (DG_Tweening_Plugins_QuaternionPlugin_o* __this, DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions__o* t, const MethodInfo*);
void DG_Tweening_Plugins_QuaternionPlugin__SetChangeValue (DG_Tweening_Plugins_QuaternionPlugin_o* __this, DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions__o* t, const MethodInfo*);
float DG_Tweening_Plugins_QuaternionPlugin__GetSpeedBasedDuration (DG_Tweening_Plugins_QuaternionPlugin_o* __this, DG_Tweening_Plugins_Options_QuaternionOptions_o options, float unitsXSecond, UnityEngine_Vector3_o changeValue, const MethodInfo*);
void DG_Tweening_Plugins_QuaternionPlugin__EvaluateAndApply (DG_Tweening_Plugins_QuaternionPlugin_o* __this, DG_Tweening_Plugins_Options_QuaternionOptions_o options, DG_Tweening_Tween_o* t, bool isRelative, DG_Tweening_Core_DOGetter_Quaternion__o* getter, DG_Tweening_Core_DOSetter_Quaternion__o* setter, float elapsed, UnityEngine_Vector3_o startValue, UnityEngine_Vector3_o changeValue, float duration, bool usingInversePosition, int32_t updateNotice, const MethodInfo*);
void DG_Tweening_Plugins_QuaternionPlugin___ctor (DG_Tweening_Plugins_QuaternionPlugin_o* __this, const MethodInfo*);
void DG_Tweening_Plugins_RectOffsetPlugin__Reset (DG_Tweening_Plugins_RectOffsetPlugin_o* __this, DG_Tweening_Core_TweenerCore_RectOffset__RectOffset__NoOptions__o* t, const MethodInfo*);
void DG_Tweening_Plugins_RectOffsetPlugin__SetFrom (DG_Tweening_Plugins_RectOffsetPlugin_o* __this, DG_Tweening_Core_TweenerCore_RectOffset__RectOffset__NoOptions__o* t, bool isRelative, const MethodInfo*);
void DG_Tweening_Plugins_RectOffsetPlugin__SetFrom (DG_Tweening_Plugins_RectOffsetPlugin_o* __this, DG_Tweening_Core_TweenerCore_RectOffset__RectOffset__NoOptions__o* t, UnityEngine_RectOffset_o* fromValue, bool setImmediately, const MethodInfo*);
UnityEngine_RectOffset_o* DG_Tweening_Plugins_RectOffsetPlugin__ConvertToStartValue (DG_Tweening_Plugins_RectOffsetPlugin_o* __this, DG_Tweening_Core_TweenerCore_RectOffset__RectOffset__NoOptions__o* t, UnityEngine_RectOffset_o* value, const MethodInfo*);
void DG_Tweening_Plugins_RectOffsetPlugin__SetRelativeEndValue (DG_Tweening_Plugins_RectOffsetPlugin_o* __this, DG_Tweening_Core_TweenerCore_RectOffset__RectOffset__NoOptions__o* t, const MethodInfo*);
void DG_Tweening_Plugins_RectOffsetPlugin__SetChangeValue (DG_Tweening_Plugins_RectOffsetPlugin_o* __this, DG_Tweening_Core_TweenerCore_RectOffset__RectOffset__NoOptions__o* t, const MethodInfo*);
float DG_Tweening_Plugins_RectOffsetPlugin__GetSpeedBasedDuration (DG_Tweening_Plugins_RectOffsetPlugin_o* __this, DG_Tweening_Plugins_Options_NoOptions_o options, float unitsXSecond, UnityEngine_RectOffset_o* changeValue, const MethodInfo*);
void DG_Tweening_Plugins_RectOffsetPlugin__EvaluateAndApply (DG_Tweening_Plugins_RectOffsetPlugin_o* __this, DG_Tweening_Plugins_Options_NoOptions_o options, DG_Tweening_Tween_o* t, bool isRelative, DG_Tweening_Core_DOGetter_RectOffset__o* getter, DG_Tweening_Core_DOSetter_RectOffset__o* setter, float elapsed, UnityEngine_RectOffset_o* startValue, UnityEngine_RectOffset_o* changeValue, float duration, bool usingInversePosition, int32_t updateNotice, const MethodInfo*);
void DG_Tweening_Plugins_RectOffsetPlugin___ctor (DG_Tweening_Plugins_RectOffsetPlugin_o* __this, const MethodInfo*);
void DG_Tweening_Plugins_RectOffsetPlugin___cctor (const MethodInfo*);
void DG_Tweening_Plugins_RectPlugin__Reset (DG_Tweening_Plugins_RectPlugin_o* __this, DG_Tweening_Core_TweenerCore_Rect__Rect__RectOptions__o* t, const MethodInfo*);
void DG_Tweening_Plugins_RectPlugin__SetFrom (DG_Tweening_Plugins_RectPlugin_o* __this, DG_Tweening_Core_TweenerCore_Rect__Rect__RectOptions__o* t, bool isRelative, const MethodInfo*);
void DG_Tweening_Plugins_RectPlugin__SetFrom (DG_Tweening_Plugins_RectPlugin_o* __this, DG_Tweening_Core_TweenerCore_Rect__Rect__RectOptions__o* t, UnityEngine_Rect_o fromValue, bool setImmediately, const MethodInfo*);
UnityEngine_Rect_o DG_Tweening_Plugins_RectPlugin__ConvertToStartValue (DG_Tweening_Plugins_RectPlugin_o* __this, DG_Tweening_Core_TweenerCore_Rect__Rect__RectOptions__o* t, UnityEngine_Rect_o value, const MethodInfo*);
void DG_Tweening_Plugins_RectPlugin__SetRelativeEndValue (DG_Tweening_Plugins_RectPlugin_o* __this, DG_Tweening_Core_TweenerCore_Rect__Rect__RectOptions__o* t, const MethodInfo*);
void DG_Tweening_Plugins_RectPlugin__SetChangeValue (DG_Tweening_Plugins_RectPlugin_o* __this, DG_Tweening_Core_TweenerCore_Rect__Rect__RectOptions__o* t, const MethodInfo*);
float DG_Tweening_Plugins_RectPlugin__GetSpeedBasedDuration (DG_Tweening_Plugins_RectPlugin_o* __this, DG_Tweening_Plugins_Options_RectOptions_o options, float unitsXSecond, UnityEngine_Rect_o changeValue, const MethodInfo*);
void DG_Tweening_Plugins_RectPlugin__EvaluateAndApply (DG_Tweening_Plugins_RectPlugin_o* __this, DG_Tweening_Plugins_Options_RectOptions_o options, DG_Tweening_Tween_o* t, bool isRelative, DG_Tweening_Core_DOGetter_Rect__o* getter, DG_Tweening_Core_DOSetter_Rect__o* setter, float elapsed, UnityEngine_Rect_o startValue, UnityEngine_Rect_o changeValue, float duration, bool usingInversePosition, int32_t updateNotice, const MethodInfo*);
void DG_Tweening_Plugins_RectPlugin___ctor (DG_Tweening_Plugins_RectPlugin_o* __this, const MethodInfo*);
void DG_Tweening_Plugins_UintPlugin__Reset (DG_Tweening_Plugins_UintPlugin_o* __this, DG_Tweening_Core_TweenerCore_uint__uint__UintOptions__o* t, const MethodInfo*);
void DG_Tweening_Plugins_UintPlugin__SetFrom (DG_Tweening_Plugins_UintPlugin_o* __this, DG_Tweening_Core_TweenerCore_uint__uint__UintOptions__o* t, bool isRelative, const MethodInfo*);
void DG_Tweening_Plugins_UintPlugin__SetFrom (DG_Tweening_Plugins_UintPlugin_o* __this, DG_Tweening_Core_TweenerCore_uint__uint__UintOptions__o* t, uint32_t fromValue, bool setImmediately, const MethodInfo*);
uint32_t DG_Tweening_Plugins_UintPlugin__ConvertToStartValue (DG_Tweening_Plugins_UintPlugin_o* __this, DG_Tweening_Core_TweenerCore_uint__uint__UintOptions__o* t, uint32_t value, const MethodInfo*);
void DG_Tweening_Plugins_UintPlugin__SetRelativeEndValue (DG_Tweening_Plugins_UintPlugin_o* __this, DG_Tweening_Core_TweenerCore_uint__uint__UintOptions__o* t, const MethodInfo*);
void DG_Tweening_Plugins_UintPlugin__SetChangeValue (DG_Tweening_Plugins_UintPlugin_o* __this, DG_Tweening_Core_TweenerCore_uint__uint__UintOptions__o* t, const MethodInfo*);
float DG_Tweening_Plugins_UintPlugin__GetSpeedBasedDuration (DG_Tweening_Plugins_UintPlugin_o* __this, DG_Tweening_Plugins_Options_UintOptions_o options, float unitsXSecond, uint32_t changeValue, const MethodInfo*);
void DG_Tweening_Plugins_UintPlugin__EvaluateAndApply (DG_Tweening_Plugins_UintPlugin_o* __this, DG_Tweening_Plugins_Options_UintOptions_o options, DG_Tweening_Tween_o* t, bool isRelative, DG_Tweening_Core_DOGetter_uint__o* getter, DG_Tweening_Core_DOSetter_uint__o* setter, float elapsed, uint32_t startValue, uint32_t changeValue, float duration, bool usingInversePosition, int32_t updateNotice, const MethodInfo*);
void DG_Tweening_Plugins_UintPlugin___ctor (DG_Tweening_Plugins_UintPlugin_o* __this, const MethodInfo*);
void DG_Tweening_Plugins_Vector2Plugin__Reset (DG_Tweening_Plugins_Vector2Plugin_o* __this, DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions__o* t, const MethodInfo*);
void DG_Tweening_Plugins_Vector2Plugin__SetFrom (DG_Tweening_Plugins_Vector2Plugin_o* __this, DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions__o* t, bool isRelative, const MethodInfo*);
void DG_Tweening_Plugins_Vector2Plugin__SetFrom (DG_Tweening_Plugins_Vector2Plugin_o* __this, DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions__o* t, UnityEngine_Vector2_o fromValue, bool setImmediately, const MethodInfo*);
UnityEngine_Vector2_o DG_Tweening_Plugins_Vector2Plugin__ConvertToStartValue (DG_Tweening_Plugins_Vector2Plugin_o* __this, DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions__o* t, UnityEngine_Vector2_o value, const MethodInfo*);
void DG_Tweening_Plugins_Vector2Plugin__SetRelativeEndValue (DG_Tweening_Plugins_Vector2Plugin_o* __this, DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions__o* t, const MethodInfo*);
void DG_Tweening_Plugins_Vector2Plugin__SetChangeValue (DG_Tweening_Plugins_Vector2Plugin_o* __this, DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions__o* t, const MethodInfo*);
float DG_Tweening_Plugins_Vector2Plugin__GetSpeedBasedDuration (DG_Tweening_Plugins_Vector2Plugin_o* __this, DG_Tweening_Plugins_Options_VectorOptions_o options, float unitsXSecond, UnityEngine_Vector2_o changeValue, const MethodInfo*);
void DG_Tweening_Plugins_Vector2Plugin__EvaluateAndApply (DG_Tweening_Plugins_Vector2Plugin_o* __this, DG_Tweening_Plugins_Options_VectorOptions_o options, DG_Tweening_Tween_o* t, bool isRelative, DG_Tweening_Core_DOGetter_Vector2__o* getter, DG_Tweening_Core_DOSetter_Vector2__o* setter, float elapsed, UnityEngine_Vector2_o startValue, UnityEngine_Vector2_o changeValue, float duration, bool usingInversePosition, int32_t updateNotice, const MethodInfo*);
void DG_Tweening_Plugins_Vector2Plugin___ctor (DG_Tweening_Plugins_Vector2Plugin_o* __this, const MethodInfo*);
void DG_Tweening_Plugins_Vector4Plugin__Reset (DG_Tweening_Plugins_Vector4Plugin_o* __this, DG_Tweening_Core_TweenerCore_Vector4__Vector4__VectorOptions__o* t, const MethodInfo*);
void DG_Tweening_Plugins_Vector4Plugin__SetFrom (DG_Tweening_Plugins_Vector4Plugin_o* __this, DG_Tweening_Core_TweenerCore_Vector4__Vector4__VectorOptions__o* t, bool isRelative, const MethodInfo*);
void DG_Tweening_Plugins_Vector4Plugin__SetFrom (DG_Tweening_Plugins_Vector4Plugin_o* __this, DG_Tweening_Core_TweenerCore_Vector4__Vector4__VectorOptions__o* t, UnityEngine_Vector4_o fromValue, bool setImmediately, const MethodInfo*);
UnityEngine_Vector4_o DG_Tweening_Plugins_Vector4Plugin__ConvertToStartValue (DG_Tweening_Plugins_Vector4Plugin_o* __this, DG_Tweening_Core_TweenerCore_Vector4__Vector4__VectorOptions__o* t, UnityEngine_Vector4_o value, const MethodInfo*);
void DG_Tweening_Plugins_Vector4Plugin__SetRelativeEndValue (DG_Tweening_Plugins_Vector4Plugin_o* __this, DG_Tweening_Core_TweenerCore_Vector4__Vector4__VectorOptions__o* t, const MethodInfo*);
void DG_Tweening_Plugins_Vector4Plugin__SetChangeValue (DG_Tweening_Plugins_Vector4Plugin_o* __this, DG_Tweening_Core_TweenerCore_Vector4__Vector4__VectorOptions__o* t, const MethodInfo*);
float DG_Tweening_Plugins_Vector4Plugin__GetSpeedBasedDuration (DG_Tweening_Plugins_Vector4Plugin_o* __this, DG_Tweening_Plugins_Options_VectorOptions_o options, float unitsXSecond, UnityEngine_Vector4_o changeValue, const MethodInfo*);
void DG_Tweening_Plugins_Vector4Plugin__EvaluateAndApply (DG_Tweening_Plugins_Vector4Plugin_o* __this, DG_Tweening_Plugins_Options_VectorOptions_o options, DG_Tweening_Tween_o* t, bool isRelative, DG_Tweening_Core_DOGetter_Vector4__o* getter, DG_Tweening_Core_DOSetter_Vector4__o* setter, float elapsed, UnityEngine_Vector4_o startValue, UnityEngine_Vector4_o changeValue, float duration, bool usingInversePosition, int32_t updateNotice, const MethodInfo*);
void DG_Tweening_Plugins_Vector4Plugin___ctor (DG_Tweening_Plugins_Vector4Plugin_o* __this, const MethodInfo*);
void DG_Tweening_Plugins_StringPlugin__SetFrom (DG_Tweening_Plugins_StringPlugin_o* __this, DG_Tweening_Core_TweenerCore_string__string__StringOptions__o* t, bool isRelative, const MethodInfo*);
void DG_Tweening_Plugins_StringPlugin__SetFrom (DG_Tweening_Plugins_StringPlugin_o* __this, DG_Tweening_Core_TweenerCore_string__string__StringOptions__o* t, System_String_o* fromValue, bool setImmediately, const MethodInfo*);
void DG_Tweening_Plugins_StringPlugin__Reset (DG_Tweening_Plugins_StringPlugin_o* __this, DG_Tweening_Core_TweenerCore_string__string__StringOptions__o* t, const MethodInfo*);
System_String_o* DG_Tweening_Plugins_StringPlugin__ConvertToStartValue (DG_Tweening_Plugins_StringPlugin_o* __this, DG_Tweening_Core_TweenerCore_string__string__StringOptions__o* t, System_String_o* value, const MethodInfo*);
void DG_Tweening_Plugins_StringPlugin__SetRelativeEndValue (DG_Tweening_Plugins_StringPlugin_o* __this, DG_Tweening_Core_TweenerCore_string__string__StringOptions__o* t, const MethodInfo*);
void DG_Tweening_Plugins_StringPlugin__SetChangeValue (DG_Tweening_Plugins_StringPlugin_o* __this, DG_Tweening_Core_TweenerCore_string__string__StringOptions__o* t, const MethodInfo*);
float DG_Tweening_Plugins_StringPlugin__GetSpeedBasedDuration (DG_Tweening_Plugins_StringPlugin_o* __this, DG_Tweening_Plugins_Options_StringOptions_o options, float unitsXSecond, System_String_o* changeValue, const MethodInfo*);
void DG_Tweening_Plugins_StringPlugin__EvaluateAndApply (DG_Tweening_Plugins_StringPlugin_o* __this, DG_Tweening_Plugins_Options_StringOptions_o options, DG_Tweening_Tween_o* t, bool isRelative, DG_Tweening_Core_DOGetter_string__o* getter, DG_Tweening_Core_DOSetter_string__o* setter, float elapsed, System_String_o* startValue, System_String_o* changeValue, float duration, bool usingInversePosition, int32_t updateNotice, const MethodInfo*);
System_Text_StringBuilder_o* DG_Tweening_Plugins_StringPlugin__Append (DG_Tweening_Plugins_StringPlugin_o* __this, System_String_o* value, int32_t startIndex, int32_t length, bool richTextEnabled, const MethodInfo*);
System_Char_array* DG_Tweening_Plugins_StringPlugin__ScrambledCharsToUse (DG_Tweening_Plugins_StringPlugin_o* __this, DG_Tweening_Plugins_Options_StringOptions_o options, const MethodInfo*);
void DG_Tweening_Plugins_StringPlugin___ctor (DG_Tweening_Plugins_StringPlugin_o* __this, const MethodInfo*);
void DG_Tweening_Plugins_StringPlugin___cctor (const MethodInfo*);
void DG_Tweening_Plugins_StringPluginExtensions___cctor (const MethodInfo*);
void DG_Tweening_Plugins_StringPluginExtensions__ScrambleChars (System_Char_array* chars, const MethodInfo*);
System_Text_StringBuilder_o* DG_Tweening_Plugins_StringPluginExtensions__AppendScrambledChars (System_Text_StringBuilder_o* buffer, int32_t length, System_Char_array* chars, const MethodInfo*);
void DG_Tweening_Plugins_FloatPlugin__Reset (DG_Tweening_Plugins_FloatPlugin_o* __this, DG_Tweening_Core_TweenerCore_float__float__FloatOptions__o* t, const MethodInfo*);
void DG_Tweening_Plugins_FloatPlugin__SetFrom (DG_Tweening_Plugins_FloatPlugin_o* __this, DG_Tweening_Core_TweenerCore_float__float__FloatOptions__o* t, bool isRelative, const MethodInfo*);
void DG_Tweening_Plugins_FloatPlugin__SetFrom (DG_Tweening_Plugins_FloatPlugin_o* __this, DG_Tweening_Core_TweenerCore_float__float__FloatOptions__o* t, float fromValue, bool setImmediately, const MethodInfo*);
float DG_Tweening_Plugins_FloatPlugin__ConvertToStartValue (DG_Tweening_Plugins_FloatPlugin_o* __this, DG_Tweening_Core_TweenerCore_float__float__FloatOptions__o* t, float value, const MethodInfo*);
void DG_Tweening_Plugins_FloatPlugin__SetRelativeEndValue (DG_Tweening_Plugins_FloatPlugin_o* __this, DG_Tweening_Core_TweenerCore_float__float__FloatOptions__o* t, const MethodInfo*);
void DG_Tweening_Plugins_FloatPlugin__SetChangeValue (DG_Tweening_Plugins_FloatPlugin_o* __this, DG_Tweening_Core_TweenerCore_float__float__FloatOptions__o* t, const MethodInfo*);
float DG_Tweening_Plugins_FloatPlugin__GetSpeedBasedDuration (DG_Tweening_Plugins_FloatPlugin_o* __this, DG_Tweening_Plugins_Options_FloatOptions_o options, float unitsXSecond, float changeValue, const MethodInfo*);
void DG_Tweening_Plugins_FloatPlugin__EvaluateAndApply (DG_Tweening_Plugins_FloatPlugin_o* __this, DG_Tweening_Plugins_Options_FloatOptions_o options, DG_Tweening_Tween_o* t, bool isRelative, DG_Tweening_Core_DOGetter_float__o* getter, DG_Tweening_Core_DOSetter_float__o* setter, float elapsed, float startValue, float changeValue, float duration, bool usingInversePosition, int32_t updateNotice, const MethodInfo*);
void DG_Tweening_Plugins_FloatPlugin___ctor (DG_Tweening_Plugins_FloatPlugin_o* __this, const MethodInfo*);
void DG_Tweening_Plugins_Vector3Plugin__Reset (DG_Tweening_Plugins_Vector3Plugin_o* __this, DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* t, const MethodInfo*);
void DG_Tweening_Plugins_Vector3Plugin__SetFrom (DG_Tweening_Plugins_Vector3Plugin_o* __this, DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* t, bool isRelative, const MethodInfo*);
void DG_Tweening_Plugins_Vector3Plugin__SetFrom (DG_Tweening_Plugins_Vector3Plugin_o* __this, DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* t, UnityEngine_Vector3_o fromValue, bool setImmediately, const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_Plugins_Vector3Plugin__ConvertToStartValue (DG_Tweening_Plugins_Vector3Plugin_o* __this, DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* t, UnityEngine_Vector3_o value, const MethodInfo*);
void DG_Tweening_Plugins_Vector3Plugin__SetRelativeEndValue (DG_Tweening_Plugins_Vector3Plugin_o* __this, DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* t, const MethodInfo*);
void DG_Tweening_Plugins_Vector3Plugin__SetChangeValue (DG_Tweening_Plugins_Vector3Plugin_o* __this, DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* t, const MethodInfo*);
float DG_Tweening_Plugins_Vector3Plugin__GetSpeedBasedDuration (DG_Tweening_Plugins_Vector3Plugin_o* __this, DG_Tweening_Plugins_Options_VectorOptions_o options, float unitsXSecond, UnityEngine_Vector3_o changeValue, const MethodInfo*);
void DG_Tweening_Plugins_Vector3Plugin__EvaluateAndApply (DG_Tweening_Plugins_Vector3Plugin_o* __this, DG_Tweening_Plugins_Options_VectorOptions_o options, DG_Tweening_Tween_o* t, bool isRelative, DG_Tweening_Core_DOGetter_Vector3__o* getter, DG_Tweening_Core_DOSetter_Vector3__o* setter, float elapsed, UnityEngine_Vector3_o startValue, UnityEngine_Vector3_o changeValue, float duration, bool usingInversePosition, int32_t updateNotice, const MethodInfo*);
void DG_Tweening_Plugins_Vector3Plugin___ctor (DG_Tweening_Plugins_Vector3Plugin_o* __this, const MethodInfo*);
void DG_Tweening_Plugins_Options_PathOptions__Reset (DG_Tweening_Plugins_Options_PathOptions_o __this, const MethodInfo*);
void DG_Tweening_Plugins_Options_QuaternionOptions__Reset (DG_Tweening_Plugins_Options_QuaternionOptions_o __this, const MethodInfo*);
void DG_Tweening_Plugins_Options_UintOptions__Reset (DG_Tweening_Plugins_Options_UintOptions_o __this, const MethodInfo*);
void DG_Tweening_Plugins_Options_Vector3ArrayOptions__Reset (DG_Tweening_Plugins_Options_Vector3ArrayOptions_o __this, const MethodInfo*);
void DG_Tweening_Plugins_Options_NoOptions__Reset (DG_Tweening_Plugins_Options_NoOptions_o __this, const MethodInfo*);
void DG_Tweening_Plugins_Options_ColorOptions__Reset (DG_Tweening_Plugins_Options_ColorOptions_o __this, const MethodInfo*);
void DG_Tweening_Plugins_Options_FloatOptions__Reset (DG_Tweening_Plugins_Options_FloatOptions_o __this, const MethodInfo*);
void DG_Tweening_Plugins_Options_RectOptions__Reset (DG_Tweening_Plugins_Options_RectOptions_o __this, const MethodInfo*);
void DG_Tweening_Plugins_Options_StringOptions__Reset (DG_Tweening_Plugins_Options_StringOptions_o __this, const MethodInfo*);
void DG_Tweening_Plugins_Options_VectorOptions__Reset (DG_Tweening_Plugins_Options_VectorOptions_o __this, const MethodInfo*);
bool DG_Tweening_Plugins_Core_SpecialPluginsUtils__SetLookAt (DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions__o* t, const MethodInfo*);
bool DG_Tweening_Plugins_Core_SpecialPluginsUtils__SetPunch (DG_Tweening_Core_TweenerCore_Vector3__Vector3____Vector3ArrayOptions__o* t, const MethodInfo*);
bool DG_Tweening_Plugins_Core_SpecialPluginsUtils__SetShake (DG_Tweening_Core_TweenerCore_Vector3__Vector3____Vector3ArrayOptions__o* t, const MethodInfo*);
bool DG_Tweening_Plugins_Core_SpecialPluginsUtils__SetCameraShakePosition (DG_Tweening_Core_TweenerCore_Vector3__Vector3____Vector3ArrayOptions__o* t, const MethodInfo*);
void DG_Tweening_Plugins_Core_ABSTweenPlugin_Color2__Color2__ColorOptions____ctor (DG_Tweening_Plugins_Core_ABSTweenPlugin_Color2__Color2__ColorOptions__o* __this, const MethodInfo_2249980* method_2249980);
void DG_Tweening_Plugins_Core_ABSTweenPlugin_double__double__NoOptions____ctor (DG_Tweening_Plugins_Core_ABSTweenPlugin_double__double__NoOptions__o* __this, const MethodInfo_2249990* method_2249990);
void DG_Tweening_Plugins_Core_ABSTweenPlugin_int__int__NoOptions____ctor (DG_Tweening_Plugins_Core_ABSTweenPlugin_int__int__NoOptions__o* __this, const MethodInfo_22499A0* method_22499A0);
void DG_Tweening_Plugins_Core_ABSTweenPlugin_long__long__NoOptions____ctor (DG_Tweening_Plugins_Core_ABSTweenPlugin_long__long__NoOptions__o* __this, const MethodInfo_22499B0* method_22499B0);
void DG_Tweening_Plugins_Core_ABSTweenPlugin_object__object__NoOptions____ctor (DG_Tweening_Plugins_Core_ABSTweenPlugin_object__object__NoOptions__o* __this, const MethodInfo_22499C0* method_22499C0);
void DG_Tweening_Plugins_Core_ABSTweenPlugin_object__object__StringOptions____ctor (DG_Tweening_Plugins_Core_ABSTweenPlugin_object__object__StringOptions__o* __this, const MethodInfo_22499D0* method_22499D0);
void DG_Tweening_Plugins_Core_ABSTweenPlugin_float__float__FloatOptions____ctor (DG_Tweening_Plugins_Core_ABSTweenPlugin_float__float__FloatOptions__o* __this, const MethodInfo_22499E0* method_22499E0);
void DG_Tweening_Plugins_Core_ABSTweenPlugin_string__string__StringOptions____ctor (DG_Tweening_Plugins_Core_ABSTweenPlugin_string__string__StringOptions__o* __this, const MethodInfo_22499D0* method_22499D0);
void DG_Tweening_Plugins_Core_ABSTweenPlugin_uint__uint__UintOptions____ctor (DG_Tweening_Plugins_Core_ABSTweenPlugin_uint__uint__UintOptions__o* __this, const MethodInfo_22499F0* method_22499F0);
void DG_Tweening_Plugins_Core_ABSTweenPlugin_ulong__ulong__NoOptions____ctor (DG_Tweening_Plugins_Core_ABSTweenPlugin_ulong__ulong__NoOptions__o* __this, const MethodInfo_2249A00* method_2249A00);
void DG_Tweening_Plugins_Core_ABSTweenPlugin_Color__Color__ColorOptions____ctor (DG_Tweening_Plugins_Core_ABSTweenPlugin_Color__Color__ColorOptions__o* __this, const MethodInfo_2249A10* method_2249A10);
void DG_Tweening_Plugins_Core_ABSTweenPlugin_Quaternion__Quaternion__NoOptions____ctor (DG_Tweening_Plugins_Core_ABSTweenPlugin_Quaternion__Quaternion__NoOptions__o* __this, const MethodInfo_2249A20* method_2249A20);
void DG_Tweening_Plugins_Core_ABSTweenPlugin_Quaternion__Vector3__QuaternionOptions____ctor (DG_Tweening_Plugins_Core_ABSTweenPlugin_Quaternion__Vector3__QuaternionOptions__o* __this, const MethodInfo_2249A30* method_2249A30);
void DG_Tweening_Plugins_Core_ABSTweenPlugin_Rect__Rect__RectOptions____ctor (DG_Tweening_Plugins_Core_ABSTweenPlugin_Rect__Rect__RectOptions__o* __this, const MethodInfo_2249A40* method_2249A40);
void DG_Tweening_Plugins_Core_ABSTweenPlugin_RectOffset__RectOffset__NoOptions____ctor (DG_Tweening_Plugins_Core_ABSTweenPlugin_RectOffset__RectOffset__NoOptions__o* __this, const MethodInfo_22499C0* method_22499C0);
void DG_Tweening_Plugins_Core_ABSTweenPlugin_Vector2__Vector2__VectorOptions____ctor (DG_Tweening_Plugins_Core_ABSTweenPlugin_Vector2__Vector2__VectorOptions__o* __this, const MethodInfo_2249A50* method_2249A50);
void DG_Tweening_Plugins_Core_ABSTweenPlugin_Vector3__Path__PathOptions____ctor (DG_Tweening_Plugins_Core_ABSTweenPlugin_Vector3__Path__PathOptions__o* __this, const MethodInfo_2249A60* method_2249A60);
void DG_Tweening_Plugins_Core_ABSTweenPlugin_Vector3__object__PathOptions____ctor (DG_Tweening_Plugins_Core_ABSTweenPlugin_Vector3__object__PathOptions__o* __this, const MethodInfo_2249A60* method_2249A60);
void DG_Tweening_Plugins_Core_ABSTweenPlugin_Vector3__object__Vector3ArrayOptions____ctor (DG_Tweening_Plugins_Core_ABSTweenPlugin_Vector3__object__Vector3ArrayOptions__o* __this, const MethodInfo_2249A70* method_2249A70);
void DG_Tweening_Plugins_Core_ABSTweenPlugin_Vector3__Vector3__VectorOptions____ctor (DG_Tweening_Plugins_Core_ABSTweenPlugin_Vector3__Vector3__VectorOptions__o* __this, const MethodInfo_2249A80* method_2249A80);
void DG_Tweening_Plugins_Core_ABSTweenPlugin_Vector3__Vector3__SpiralOptions____ctor (DG_Tweening_Plugins_Core_ABSTweenPlugin_Vector3__Vector3__SpiralOptions__o* __this, const MethodInfo_2249A90* method_2249A90);
void DG_Tweening_Plugins_Core_ABSTweenPlugin_Vector3__Vector3____Vector3ArrayOptions____ctor (DG_Tweening_Plugins_Core_ABSTweenPlugin_Vector3__Vector3____Vector3ArrayOptions__o* __this, const MethodInfo_2249A70* method_2249A70);
void DG_Tweening_Plugins_Core_ABSTweenPlugin_Vector4__Vector4__VectorOptions____ctor (DG_Tweening_Plugins_Core_ABSTweenPlugin_Vector4__Vector4__VectorOptions__o* __this, const MethodInfo_2249AA0* method_2249AA0);
DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* DG_Tweening_Plugins_Core_PluginsManager__GetDefaultPlugin_Color2__Color2__ColorOptions_ (const MethodInfo_2993BD0* method_2993BD0);
DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* DG_Tweening_Plugins_Core_PluginsManager__GetDefaultPlugin_double__double__NoOptions_ (const MethodInfo_2994650* method_2994650);
DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* DG_Tweening_Plugins_Core_PluginsManager__GetDefaultPlugin_int__int__NoOptions_ (const MethodInfo_29950D0* method_29950D0);
DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* DG_Tweening_Plugins_Core_PluginsManager__GetDefaultPlugin_long__long__NoOptions_ (const MethodInfo_2995B50* method_2995B50);
DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* DG_Tweening_Plugins_Core_PluginsManager__GetDefaultPlugin_object__object__NoOptions_ (const MethodInfo_2A39800* method_2A39800);
DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* DG_Tweening_Plugins_Core_PluginsManager__GetDefaultPlugin_object__object__StringOptions_ (const MethodInfo_2A3A280* method_2A3A280);
DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* DG_Tweening_Plugins_Core_PluginsManager__GetDefaultPlugin_float__float__FloatOptions_ (const MethodInfo_2A3AD00* method_2A3AD00);
DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* DG_Tweening_Plugins_Core_PluginsManager__GetDefaultPlugin_uint__uint__UintOptions_ (const MethodInfo_2A3B780* method_2A3B780);
DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* DG_Tweening_Plugins_Core_PluginsManager__GetDefaultPlugin_ulong__ulong__NoOptions_ (const MethodInfo_2A3C200* method_2A3C200);
DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* DG_Tweening_Plugins_Core_PluginsManager__GetDefaultPlugin_Color__Color__ColorOptions_ (const MethodInfo_2A3CC80* method_2A3CC80);
DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* DG_Tweening_Plugins_Core_PluginsManager__GetDefaultPlugin_Quaternion__Quaternion__NoOptions_ (const MethodInfo_2A3D700* method_2A3D700);
DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* DG_Tweening_Plugins_Core_PluginsManager__GetDefaultPlugin_Quaternion__Vector3__QuaternionOptions_ (const MethodInfo_2A3E180* method_2A3E180);
DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* DG_Tweening_Plugins_Core_PluginsManager__GetDefaultPlugin_Rect__Rect__RectOptions_ (const MethodInfo_2A3EC00* method_2A3EC00);
DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* DG_Tweening_Plugins_Core_PluginsManager__GetDefaultPlugin_Vector2__Vector2__VectorOptions_ (const MethodInfo_2A3F680* method_2A3F680);
DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* DG_Tweening_Plugins_Core_PluginsManager__GetDefaultPlugin_Vector3__object__PathOptions_ (const MethodInfo_2A40100* method_2A40100);
DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* DG_Tweening_Plugins_Core_PluginsManager__GetDefaultPlugin_Vector3__object__Vector3ArrayOptions_ (const MethodInfo_2A40B80* method_2A40B80);
DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* DG_Tweening_Plugins_Core_PluginsManager__GetDefaultPlugin_Vector3__Vector3__VectorOptions_ (const MethodInfo_2A41600* method_2A41600);
DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* DG_Tweening_Plugins_Core_PluginsManager__GetDefaultPlugin_Vector3__Vector3__SpiralOptions_ (const MethodInfo_2A42080* method_2A42080);
DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* DG_Tweening_Plugins_Core_PluginsManager__GetDefaultPlugin_Vector4__Vector4__VectorOptions_ (const MethodInfo_2A42B00* method_2A42B00);
DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* DG_Tweening_Plugins_Core_PluginsManager__GetCustomPlugin_SpiralPlugin__Vector3__Vector3__SpiralOptions_ (const MethodInfo_2993A70* method_2993A70);
DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* DG_Tweening_Plugins_Core_PluginsManager__GetCustomPlugin_PathPlugin__Vector3__Path__PathOptions_ (const MethodInfo_2993910* method_2993910);
DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* DG_Tweening_Plugins_Core_PluginsManager__GetCustomPlugin_object__Vector3__object__PathOptions_ (const MethodInfo_2993910* method_2993910);
DG_Tweening_Plugins_Core_ABSTweenPlugin_T1__T2__TPlugOptions__o* DG_Tweening_Plugins_Core_PluginsManager__GetCustomPlugin_object__Vector3__Vector3__SpiralOptions_ (const MethodInfo_2993A70* method_2993A70);
void DG_Tweening_Plugins_Core_PluginsManager__PurgeAll (const MethodInfo*);
void DG_Tweening_Plugins_Core_PathCore_CubicBezierDecoder__FinalizePath (DG_Tweening_Plugins_Core_PathCore_CubicBezierDecoder_o* __this, DG_Tweening_Plugins_Core_PathCore_Path_o* p, UnityEngine_Vector3_array* wps, bool isClosedPath, const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_Plugins_Core_PathCore_CubicBezierDecoder__GetPoint (DG_Tweening_Plugins_Core_PathCore_CubicBezierDecoder_o* __this, float perc, UnityEngine_Vector3_array* wps, DG_Tweening_Plugins_Core_PathCore_Path_o* p, DG_Tweening_Plugins_Core_PathCore_ControlPoint_array* controlPoints, const MethodInfo*);
void DG_Tweening_Plugins_Core_PathCore_CubicBezierDecoder__SetTimeToLengthTables (DG_Tweening_Plugins_Core_PathCore_CubicBezierDecoder_o* __this, DG_Tweening_Plugins_Core_PathCore_Path_o* p, int32_t subdivisions, const MethodInfo*);
void DG_Tweening_Plugins_Core_PathCore_CubicBezierDecoder__SetWaypointsLengths (DG_Tweening_Plugins_Core_PathCore_CubicBezierDecoder_o* __this, DG_Tweening_Plugins_Core_PathCore_Path_o* p, int32_t subdivisions, const MethodInfo*);
void DG_Tweening_Plugins_Core_PathCore_CubicBezierDecoder___ctor (DG_Tweening_Plugins_Core_PathCore_CubicBezierDecoder_o* __this, const MethodInfo*);
void DG_Tweening_Plugins_Core_PathCore_CubicBezierDecoder___cctor (const MethodInfo*);
void DG_Tweening_Plugins_Core_PathCore_ControlPoint___ctor (DG_Tweening_Plugins_Core_PathCore_ControlPoint_o __this, UnityEngine_Vector3_o a, UnityEngine_Vector3_o b, const MethodInfo*);
DG_Tweening_Plugins_Core_PathCore_ControlPoint_o DG_Tweening_Plugins_Core_PathCore_ControlPoint__op_Addition (DG_Tweening_Plugins_Core_PathCore_ControlPoint_o cp, UnityEngine_Vector3_o v, const MethodInfo*);
System_String_o* DG_Tweening_Plugins_Core_PathCore_ControlPoint__ToString (DG_Tweening_Plugins_Core_PathCore_ControlPoint_o __this, const MethodInfo*);
void DG_Tweening_Plugins_Core_PathCore_ABSPathDecoder___ctor (DG_Tweening_Plugins_Core_PathCore_ABSPathDecoder_o* __this, const MethodInfo*);
void DG_Tweening_Plugins_Core_PathCore_CatmullRomDecoder__FinalizePath (DG_Tweening_Plugins_Core_PathCore_CatmullRomDecoder_o* __this, DG_Tweening_Plugins_Core_PathCore_Path_o* p, UnityEngine_Vector3_array* wps, bool isClosedPath, const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_Plugins_Core_PathCore_CatmullRomDecoder__GetPoint (DG_Tweening_Plugins_Core_PathCore_CatmullRomDecoder_o* __this, float perc, UnityEngine_Vector3_array* wps, DG_Tweening_Plugins_Core_PathCore_Path_o* p, DG_Tweening_Plugins_Core_PathCore_ControlPoint_array* controlPoints, const MethodInfo*);
void DG_Tweening_Plugins_Core_PathCore_CatmullRomDecoder__SetTimeToLengthTables (DG_Tweening_Plugins_Core_PathCore_CatmullRomDecoder_o* __this, DG_Tweening_Plugins_Core_PathCore_Path_o* p, int32_t subdivisions, const MethodInfo*);
void DG_Tweening_Plugins_Core_PathCore_CatmullRomDecoder__SetWaypointsLengths (DG_Tweening_Plugins_Core_PathCore_CatmullRomDecoder_o* __this, DG_Tweening_Plugins_Core_PathCore_Path_o* p, int32_t subdivisions, const MethodInfo*);
void DG_Tweening_Plugins_Core_PathCore_CatmullRomDecoder___ctor (DG_Tweening_Plugins_Core_PathCore_CatmullRomDecoder_o* __this, const MethodInfo*);
void DG_Tweening_Plugins_Core_PathCore_CatmullRomDecoder___cctor (const MethodInfo*);
void DG_Tweening_Plugins_Core_PathCore_LinearDecoder__FinalizePath (DG_Tweening_Plugins_Core_PathCore_LinearDecoder_o* __this, DG_Tweening_Plugins_Core_PathCore_Path_o* p, UnityEngine_Vector3_array* wps, bool isClosedPath, const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_Plugins_Core_PathCore_LinearDecoder__GetPoint (DG_Tweening_Plugins_Core_PathCore_LinearDecoder_o* __this, float perc, UnityEngine_Vector3_array* wps, DG_Tweening_Plugins_Core_PathCore_Path_o* p, DG_Tweening_Plugins_Core_PathCore_ControlPoint_array* controlPoints, const MethodInfo*);
void DG_Tweening_Plugins_Core_PathCore_LinearDecoder__SetTimeToLengthTables (DG_Tweening_Plugins_Core_PathCore_LinearDecoder_o* __this, DG_Tweening_Plugins_Core_PathCore_Path_o* p, int32_t subdivisions, const MethodInfo*);
void DG_Tweening_Plugins_Core_PathCore_LinearDecoder__SetWaypointsLengths (DG_Tweening_Plugins_Core_PathCore_LinearDecoder_o* __this, DG_Tweening_Plugins_Core_PathCore_Path_o* p, int32_t subdivisions, const MethodInfo*);
void DG_Tweening_Plugins_Core_PathCore_LinearDecoder___ctor (DG_Tweening_Plugins_Core_PathCore_LinearDecoder_o* __this, const MethodInfo*);
void DG_Tweening_Plugins_Core_PathCore_Path___ctor (DG_Tweening_Plugins_Core_PathCore_Path_o* __this, int32_t type, UnityEngine_Vector3_array* waypoints, int32_t subdivisionsXSegment, System_Nullable_Color__o gizmoColor, const MethodInfo*);
void DG_Tweening_Plugins_Core_PathCore_Path___ctor (DG_Tweening_Plugins_Core_PathCore_Path_o* __this, const MethodInfo*);
void DG_Tweening_Plugins_Core_PathCore_Path__FinalizePath (DG_Tweening_Plugins_Core_PathCore_Path_o* __this, bool isClosedPath, int32_t lockPositionAxes, UnityEngine_Vector3_o currTargetVal, const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_Plugins_Core_PathCore_Path__GetPoint (DG_Tweening_Plugins_Core_PathCore_Path_o* __this, float perc, bool convertToConstantPerc, const MethodInfo*);
float DG_Tweening_Plugins_Core_PathCore_Path__ConvertToConstantPathPerc (DG_Tweening_Plugins_Core_PathCore_Path_o* __this, float perc, const MethodInfo*);
int32_t DG_Tweening_Plugins_Core_PathCore_Path__GetWaypointIndexFromPerc (DG_Tweening_Plugins_Core_PathCore_Path_o* __this, float perc, bool isMovingForward, const MethodInfo*);
UnityEngine_Vector3_array* DG_Tweening_Plugins_Core_PathCore_Path__GetDrawPoints (DG_Tweening_Plugins_Core_PathCore_Path_o* p, int32_t drawSubdivisionsXSegment, const MethodInfo*);
void DG_Tweening_Plugins_Core_PathCore_Path__RefreshNonLinearDrawWps (DG_Tweening_Plugins_Core_PathCore_Path_o* p, const MethodInfo*);
void DG_Tweening_Plugins_Core_PathCore_Path__Destroy (DG_Tweening_Plugins_Core_PathCore_Path_o* __this, const MethodInfo*);
DG_Tweening_Plugins_Core_PathCore_Path_o* DG_Tweening_Plugins_Core_PathCore_Path__CloneIncremental (DG_Tweening_Plugins_Core_PathCore_Path_o* __this, int32_t loopIncrement, const MethodInfo*);
void DG_Tweening_Plugins_Core_PathCore_Path__AssignWaypoints (DG_Tweening_Plugins_Core_PathCore_Path_o* __this, UnityEngine_Vector3_array* newWps, bool cloneWps, const MethodInfo*);
void DG_Tweening_Plugins_Core_PathCore_Path__AssignDecoder (DG_Tweening_Plugins_Core_PathCore_Path_o* __this, int32_t pathType, const MethodInfo*);
void DG_Tweening_Plugins_Core_PathCore_Path__Draw (DG_Tweening_Plugins_Core_PathCore_Path_o* __this, const MethodInfo*);
void DG_Tweening_Plugins_Core_PathCore_Path__Draw (DG_Tweening_Plugins_Core_PathCore_Path_o* p, const MethodInfo*);
DG_Tweening_CustomPlugins_PureQuaternionPlugin_o* DG_Tweening_CustomPlugins_PureQuaternionPlugin__Plug (const MethodInfo*);
void DG_Tweening_CustomPlugins_PureQuaternionPlugin__Reset (DG_Tweening_CustomPlugins_PureQuaternionPlugin_o* __this, DG_Tweening_Core_TweenerCore_Quaternion__Quaternion__NoOptions__o* t, const MethodInfo*);
void DG_Tweening_CustomPlugins_PureQuaternionPlugin__SetFrom (DG_Tweening_CustomPlugins_PureQuaternionPlugin_o* __this, DG_Tweening_Core_TweenerCore_Quaternion__Quaternion__NoOptions__o* t, bool isRelative, const MethodInfo*);
void DG_Tweening_CustomPlugins_PureQuaternionPlugin__SetFrom (DG_Tweening_CustomPlugins_PureQuaternionPlugin_o* __this, DG_Tweening_Core_TweenerCore_Quaternion__Quaternion__NoOptions__o* t, UnityEngine_Quaternion_o fromValue, bool setImmediately, const MethodInfo*);
UnityEngine_Quaternion_o DG_Tweening_CustomPlugins_PureQuaternionPlugin__ConvertToStartValue (DG_Tweening_CustomPlugins_PureQuaternionPlugin_o* __this, DG_Tweening_Core_TweenerCore_Quaternion__Quaternion__NoOptions__o* t, UnityEngine_Quaternion_o value, const MethodInfo*);
void DG_Tweening_CustomPlugins_PureQuaternionPlugin__SetRelativeEndValue (DG_Tweening_CustomPlugins_PureQuaternionPlugin_o* __this, DG_Tweening_Core_TweenerCore_Quaternion__Quaternion__NoOptions__o* t, const MethodInfo*);
void DG_Tweening_CustomPlugins_PureQuaternionPlugin__SetChangeValue (DG_Tweening_CustomPlugins_PureQuaternionPlugin_o* __this, DG_Tweening_Core_TweenerCore_Quaternion__Quaternion__NoOptions__o* t, const MethodInfo*);
float DG_Tweening_CustomPlugins_PureQuaternionPlugin__GetSpeedBasedDuration (DG_Tweening_CustomPlugins_PureQuaternionPlugin_o* __this, DG_Tweening_Plugins_Options_NoOptions_o options, float unitsXSecond, UnityEngine_Quaternion_o changeValue, const MethodInfo*);
void DG_Tweening_CustomPlugins_PureQuaternionPlugin__EvaluateAndApply (DG_Tweening_CustomPlugins_PureQuaternionPlugin_o* __this, DG_Tweening_Plugins_Options_NoOptions_o options, DG_Tweening_Tween_o* t, bool isRelative, DG_Tweening_Core_DOGetter_Quaternion__o* getter, DG_Tweening_Core_DOSetter_Quaternion__o* setter, float elapsed, UnityEngine_Quaternion_o startValue, UnityEngine_Quaternion_o changeValue, float duration, bool usingInversePosition, int32_t updateNotice, const MethodInfo*);
void DG_Tweening_CustomPlugins_PureQuaternionPlugin___ctor (DG_Tweening_CustomPlugins_PureQuaternionPlugin_o* __this, const MethodInfo*);
void DG_Tweening_Core_ABSSequentiable___ctor (DG_Tweening_Core_ABSSequentiable_o* __this, const MethodInfo*);
void DG_Tweening_Core_DOGetter_Color2____ctor (DG_Tweening_Core_DOGetter_Color2__o* __this, Il2CppObject* object, intptr_t method, const MethodInfo_2A760C0* method_2A760C0);
void DG_Tweening_Core_DOGetter_double____ctor (DG_Tweening_Core_DOGetter_double__o* __this, Il2CppObject* object, intptr_t method, const MethodInfo_2A763C0* method_2A763C0);
void DG_Tweening_Core_DOGetter_int____ctor (DG_Tweening_Core_DOGetter_int__o* __this, Il2CppObject* object, intptr_t method, const MethodInfo_2A76680* method_2A76680);
void DG_Tweening_Core_DOGetter_long____ctor (DG_Tweening_Core_DOGetter_long__o* __this, Il2CppObject* object, intptr_t method, const MethodInfo_2A76940* method_2A76940);
void DG_Tweening_Core_DOGetter_object____ctor (DG_Tweening_Core_DOGetter_object__o* __this, Il2CppObject* object, intptr_t method, const MethodInfo_2A76C00* method_2A76C00);
void DG_Tweening_Core_DOGetter_float____ctor (DG_Tweening_Core_DOGetter_float__o* __this, Il2CppObject* object, intptr_t method, const MethodInfo_2A76EA0* method_2A76EA0);
void DG_Tweening_Core_DOGetter_string____ctor (DG_Tweening_Core_DOGetter_string__o* __this, Il2CppObject* object, intptr_t method, const MethodInfo_2A76C00* method_2A76C00);
void DG_Tweening_Core_DOGetter_uint____ctor (DG_Tweening_Core_DOGetter_uint__o* __this, Il2CppObject* object, intptr_t method, const MethodInfo_2A77160* method_2A77160);
void DG_Tweening_Core_DOGetter_ulong____ctor (DG_Tweening_Core_DOGetter_ulong__o* __this, Il2CppObject* object, intptr_t method, const MethodInfo_2A77420* method_2A77420);
void DG_Tweening_Core_DOGetter_Color____ctor (DG_Tweening_Core_DOGetter_Color__o* __this, Il2CppObject* object, intptr_t method, const MethodInfo_2A776E0* method_2A776E0);
void DG_Tweening_Core_DOGetter_Quaternion____ctor (DG_Tweening_Core_DOGetter_Quaternion__o* __this, Il2CppObject* object, intptr_t method, const MethodInfo_2A779A0* method_2A779A0);
void DG_Tweening_Core_DOGetter_Rect____ctor (DG_Tweening_Core_DOGetter_Rect__o* __this, Il2CppObject* object, intptr_t method, const MethodInfo_2A77C60* method_2A77C60);
void DG_Tweening_Core_DOGetter_Vector2____ctor (DG_Tweening_Core_DOGetter_Vector2__o* __this, Il2CppObject* object, intptr_t method, const MethodInfo_2A77F20* method_2A77F20);
void DG_Tweening_Core_DOGetter_Vector3____ctor (DG_Tweening_Core_DOGetter_Vector3__o* __this, Il2CppObject* object, intptr_t method, const MethodInfo_2A781E0* method_2A781E0);
void DG_Tweening_Core_DOGetter_Vector4____ctor (DG_Tweening_Core_DOGetter_Vector4__o* __this, Il2CppObject* object, intptr_t method, const MethodInfo_2A784A0* method_2A784A0);
DG_Tweening_Color2_o DG_Tweening_Core_DOGetter_Color2___Invoke (DG_Tweening_Core_DOGetter_Color2__o* __this, const MethodInfo_2A760E0* method_2A760E0);
double DG_Tweening_Core_DOGetter_double___Invoke (DG_Tweening_Core_DOGetter_double__o* __this, const MethodInfo_2A763E0* method_2A763E0);
int32_t DG_Tweening_Core_DOGetter_int___Invoke (DG_Tweening_Core_DOGetter_int__o* __this, const MethodInfo_2A766A0* method_2A766A0);
int64_t DG_Tweening_Core_DOGetter_long___Invoke (DG_Tweening_Core_DOGetter_long__o* __this, const MethodInfo_2A76960* method_2A76960);
Il2CppObject* DG_Tweening_Core_DOGetter_object___Invoke (DG_Tweening_Core_DOGetter_object__o* __this, const MethodInfo_2A76C20* method_2A76C20);
float DG_Tweening_Core_DOGetter_float___Invoke (DG_Tweening_Core_DOGetter_float__o* __this, const MethodInfo_2A76EC0* method_2A76EC0);
System_String_o* DG_Tweening_Core_DOGetter_string___Invoke (DG_Tweening_Core_DOGetter_string__o* __this, const MethodInfo_2A76C20* method_2A76C20);
uint32_t DG_Tweening_Core_DOGetter_uint___Invoke (DG_Tweening_Core_DOGetter_uint__o* __this, const MethodInfo_2A77180* method_2A77180);
uint64_t DG_Tweening_Core_DOGetter_ulong___Invoke (DG_Tweening_Core_DOGetter_ulong__o* __this, const MethodInfo_2A77440* method_2A77440);
UnityEngine_Color_o DG_Tweening_Core_DOGetter_Color___Invoke (DG_Tweening_Core_DOGetter_Color__o* __this, const MethodInfo_2A77700* method_2A77700);
UnityEngine_Quaternion_o DG_Tweening_Core_DOGetter_Quaternion___Invoke (DG_Tweening_Core_DOGetter_Quaternion__o* __this, const MethodInfo_2A779C0* method_2A779C0);
UnityEngine_Rect_o DG_Tweening_Core_DOGetter_Rect___Invoke (DG_Tweening_Core_DOGetter_Rect__o* __this, const MethodInfo_2A77C80* method_2A77C80);
UnityEngine_RectOffset_o* DG_Tweening_Core_DOGetter_RectOffset___Invoke (DG_Tweening_Core_DOGetter_RectOffset__o* __this, const MethodInfo_2A76C20* method_2A76C20);
UnityEngine_Vector2_o DG_Tweening_Core_DOGetter_Vector2___Invoke (DG_Tweening_Core_DOGetter_Vector2__o* __this, const MethodInfo_2A77F40* method_2A77F40);
UnityEngine_Vector3_o DG_Tweening_Core_DOGetter_Vector3___Invoke (DG_Tweening_Core_DOGetter_Vector3__o* __this, const MethodInfo_2A78200* method_2A78200);
UnityEngine_Vector4_o DG_Tweening_Core_DOGetter_Vector4___Invoke (DG_Tweening_Core_DOGetter_Vector4__o* __this, const MethodInfo_2A784C0* method_2A784C0);
System_IAsyncResult_o* DG_Tweening_Core_DOGetter_Color2___BeginInvoke (DG_Tweening_Core_DOGetter_Color2__o* __this, System_AsyncCallback_o* callback, Il2CppObject* object, const MethodInfo_2A76340* method_2A76340);
System_IAsyncResult_o* DG_Tweening_Core_DOGetter_double___BeginInvoke (DG_Tweening_Core_DOGetter_double__o* __this, System_AsyncCallback_o* callback, Il2CppObject* object, const MethodInfo_2A76620* method_2A76620);
System_IAsyncResult_o* DG_Tweening_Core_DOGetter_int___BeginInvoke (DG_Tweening_Core_DOGetter_int__o* __this, System_AsyncCallback_o* callback, Il2CppObject* object, const MethodInfo_2A768E0* method_2A768E0);
System_IAsyncResult_o* DG_Tweening_Core_DOGetter_long___BeginInvoke (DG_Tweening_Core_DOGetter_long__o* __this, System_AsyncCallback_o* callback, Il2CppObject* object, const MethodInfo_2A76BA0* method_2A76BA0);
System_IAsyncResult_o* DG_Tweening_Core_DOGetter_object___BeginInvoke (DG_Tweening_Core_DOGetter_object__o* __this, System_AsyncCallback_o* callback, Il2CppObject* object, const MethodInfo_2A76E60* method_2A76E60);
System_IAsyncResult_o* DG_Tweening_Core_DOGetter_float___BeginInvoke (DG_Tweening_Core_DOGetter_float__o* __this, System_AsyncCallback_o* callback, Il2CppObject* object, const MethodInfo_2A77100* method_2A77100);
System_IAsyncResult_o* DG_Tweening_Core_DOGetter_uint___BeginInvoke (DG_Tweening_Core_DOGetter_uint__o* __this, System_AsyncCallback_o* callback, Il2CppObject* object, const MethodInfo_2A773C0* method_2A773C0);
System_IAsyncResult_o* DG_Tweening_Core_DOGetter_ulong___BeginInvoke (DG_Tweening_Core_DOGetter_ulong__o* __this, System_AsyncCallback_o* callback, Il2CppObject* object, const MethodInfo_2A77680* method_2A77680);
System_IAsyncResult_o* DG_Tweening_Core_DOGetter_Color___BeginInvoke (DG_Tweening_Core_DOGetter_Color__o* __this, System_AsyncCallback_o* callback, Il2CppObject* object, const MethodInfo_2A77940* method_2A77940);
System_IAsyncResult_o* DG_Tweening_Core_DOGetter_Quaternion___BeginInvoke (DG_Tweening_Core_DOGetter_Quaternion__o* __this, System_AsyncCallback_o* callback, Il2CppObject* object, const MethodInfo_2A77C00* method_2A77C00);
System_IAsyncResult_o* DG_Tweening_Core_DOGetter_Rect___BeginInvoke (DG_Tweening_Core_DOGetter_Rect__o* __this, System_AsyncCallback_o* callback, Il2CppObject* object, const MethodInfo_2A77EC0* method_2A77EC0);
System_IAsyncResult_o* DG_Tweening_Core_DOGetter_Vector2___BeginInvoke (DG_Tweening_Core_DOGetter_Vector2__o* __this, System_AsyncCallback_o* callback, Il2CppObject* object, const MethodInfo_2A78180* method_2A78180);
System_IAsyncResult_o* DG_Tweening_Core_DOGetter_Vector3___BeginInvoke (DG_Tweening_Core_DOGetter_Vector3__o* __this, System_AsyncCallback_o* callback, Il2CppObject* object, const MethodInfo_2A78440* method_2A78440);
System_IAsyncResult_o* DG_Tweening_Core_DOGetter_Vector4___BeginInvoke (DG_Tweening_Core_DOGetter_Vector4__o* __this, System_AsyncCallback_o* callback, Il2CppObject* object, const MethodInfo_2A78700* method_2A78700);
DG_Tweening_Color2_o DG_Tweening_Core_DOGetter_Color2___EndInvoke (DG_Tweening_Core_DOGetter_Color2__o* __this, System_IAsyncResult_o* result, const MethodInfo_2A76370* method_2A76370);
double DG_Tweening_Core_DOGetter_double___EndInvoke (DG_Tweening_Core_DOGetter_double__o* __this, System_IAsyncResult_o* result, const MethodInfo_2A76650* method_2A76650);
int32_t DG_Tweening_Core_DOGetter_int___EndInvoke (DG_Tweening_Core_DOGetter_int__o* __this, System_IAsyncResult_o* result, const MethodInfo_2A76910* method_2A76910);
int64_t DG_Tweening_Core_DOGetter_long___EndInvoke (DG_Tweening_Core_DOGetter_long__o* __this, System_IAsyncResult_o* result, const MethodInfo_2A76BD0* method_2A76BD0);
Il2CppObject* DG_Tweening_Core_DOGetter_object___EndInvoke (DG_Tweening_Core_DOGetter_object__o* __this, System_IAsyncResult_o* result, const MethodInfo_2A76E90* method_2A76E90);
float DG_Tweening_Core_DOGetter_float___EndInvoke (DG_Tweening_Core_DOGetter_float__o* __this, System_IAsyncResult_o* result, const MethodInfo_2A77130* method_2A77130);
uint32_t DG_Tweening_Core_DOGetter_uint___EndInvoke (DG_Tweening_Core_DOGetter_uint__o* __this, System_IAsyncResult_o* result, const MethodInfo_2A773F0* method_2A773F0);
uint64_t DG_Tweening_Core_DOGetter_ulong___EndInvoke (DG_Tweening_Core_DOGetter_ulong__o* __this, System_IAsyncResult_o* result, const MethodInfo_2A776B0* method_2A776B0);
UnityEngine_Color_o DG_Tweening_Core_DOGetter_Color___EndInvoke (DG_Tweening_Core_DOGetter_Color__o* __this, System_IAsyncResult_o* result, const MethodInfo_2A77970* method_2A77970);
UnityEngine_Quaternion_o DG_Tweening_Core_DOGetter_Quaternion___EndInvoke (DG_Tweening_Core_DOGetter_Quaternion__o* __this, System_IAsyncResult_o* result, const MethodInfo_2A77C30* method_2A77C30);
UnityEngine_Rect_o DG_Tweening_Core_DOGetter_Rect___EndInvoke (DG_Tweening_Core_DOGetter_Rect__o* __this, System_IAsyncResult_o* result, const MethodInfo_2A77EF0* method_2A77EF0);
UnityEngine_Vector2_o DG_Tweening_Core_DOGetter_Vector2___EndInvoke (DG_Tweening_Core_DOGetter_Vector2__o* __this, System_IAsyncResult_o* result, const MethodInfo_2A781B0* method_2A781B0);
UnityEngine_Vector3_o DG_Tweening_Core_DOGetter_Vector3___EndInvoke (DG_Tweening_Core_DOGetter_Vector3__o* __this, System_IAsyncResult_o* result, const MethodInfo_2A78470* method_2A78470);
UnityEngine_Vector4_o DG_Tweening_Core_DOGetter_Vector4___EndInvoke (DG_Tweening_Core_DOGetter_Vector4__o* __this, System_IAsyncResult_o* result, const MethodInfo_2A78730* method_2A78730);
void DG_Tweening_Core_DOSetter_Color2____ctor (DG_Tweening_Core_DOSetter_Color2__o* __this, Il2CppObject* object, intptr_t method, const MethodInfo_2A78760* method_2A78760);
void DG_Tweening_Core_DOSetter_double____ctor (DG_Tweening_Core_DOSetter_double__o* __this, Il2CppObject* object, intptr_t method, const MethodInfo_2A78B90* method_2A78B90);
void DG_Tweening_Core_DOSetter_int____ctor (DG_Tweening_Core_DOSetter_int__o* __this, Il2CppObject* object, intptr_t method, const MethodInfo_2A78ED0* method_2A78ED0);
void DG_Tweening_Core_DOSetter_long____ctor (DG_Tweening_Core_DOSetter_long__o* __this, Il2CppObject* object, intptr_t method, const MethodInfo_2A79220* method_2A79220);
void DG_Tweening_Core_DOSetter_object____ctor (DG_Tweening_Core_DOSetter_object__o* __this, Il2CppObject* object, intptr_t method, const MethodInfo_2A79570* method_2A79570);
void DG_Tweening_Core_DOSetter_float____ctor (DG_Tweening_Core_DOSetter_float__o* __this, Il2CppObject* object, intptr_t method, const MethodInfo_2A79980* method_2A79980);
void DG_Tweening_Core_DOSetter_string____ctor (DG_Tweening_Core_DOSetter_string__o* __this, Il2CppObject* object, intptr_t method, const MethodInfo_2A79570* method_2A79570);
void DG_Tweening_Core_DOSetter_uint____ctor (DG_Tweening_Core_DOSetter_uint__o* __this, Il2CppObject* object, intptr_t method, const MethodInfo_2A79CC0* method_2A79CC0);
void DG_Tweening_Core_DOSetter_ulong____ctor (DG_Tweening_Core_DOSetter_ulong__o* __this, Il2CppObject* object, intptr_t method, const MethodInfo_2A7A010* method_2A7A010);
void DG_Tweening_Core_DOSetter_Color____ctor (DG_Tweening_Core_DOSetter_Color__o* __this, Il2CppObject* object, intptr_t method, const MethodInfo_2A7A360* method_2A7A360);
void DG_Tweening_Core_DOSetter_Quaternion____ctor (DG_Tweening_Core_DOSetter_Quaternion__o* __this, Il2CppObject* object, intptr_t method, const MethodInfo_2A7A710* method_2A7A710);
void DG_Tweening_Core_DOSetter_Rect____ctor (DG_Tweening_Core_DOSetter_Rect__o* __this, Il2CppObject* object, intptr_t method, const MethodInfo_2A7AAC0* method_2A7AAC0);
void DG_Tweening_Core_DOSetter_Vector2____ctor (DG_Tweening_Core_DOSetter_Vector2__o* __this, Il2CppObject* object, intptr_t method, const MethodInfo_2A7AE70* method_2A7AE70);
void DG_Tweening_Core_DOSetter_Vector3____ctor (DG_Tweening_Core_DOSetter_Vector3__o* __this, Il2CppObject* object, intptr_t method, const MethodInfo_2A7B1D0* method_2A7B1D0);
void DG_Tweening_Core_DOSetter_Vector4____ctor (DG_Tweening_Core_DOSetter_Vector4__o* __this, Il2CppObject* object, intptr_t method, const MethodInfo_2A7B570* method_2A7B570);
void DG_Tweening_Core_DOSetter_Color2___Invoke (DG_Tweening_Core_DOSetter_Color2__o* __this, DG_Tweening_Color2_o pNewValue, const MethodInfo_2A78780* method_2A78780);
void DG_Tweening_Core_DOSetter_double___Invoke (DG_Tweening_Core_DOSetter_double__o* __this, double pNewValue, const MethodInfo_2A78BB0* method_2A78BB0);
void DG_Tweening_Core_DOSetter_int___Invoke (DG_Tweening_Core_DOSetter_int__o* __this, int32_t pNewValue, const MethodInfo_2A78EF0* method_2A78EF0);
void DG_Tweening_Core_DOSetter_long___Invoke (DG_Tweening_Core_DOSetter_long__o* __this, int64_t pNewValue, const MethodInfo_2A79240* method_2A79240);
void DG_Tweening_Core_DOSetter_object___Invoke (DG_Tweening_Core_DOSetter_object__o* __this, Il2CppObject* pNewValue, const MethodInfo_2A79590* method_2A79590);
void DG_Tweening_Core_DOSetter_float___Invoke (DG_Tweening_Core_DOSetter_float__o* __this, float pNewValue, const MethodInfo_2A799A0* method_2A799A0);
void DG_Tweening_Core_DOSetter_string___Invoke (DG_Tweening_Core_DOSetter_string__o* __this, System_String_o* pNewValue, const MethodInfo_2A79590* method_2A79590);
void DG_Tweening_Core_DOSetter_uint___Invoke (DG_Tweening_Core_DOSetter_uint__o* __this, uint32_t pNewValue, const MethodInfo_2A79CE0* method_2A79CE0);
void DG_Tweening_Core_DOSetter_ulong___Invoke (DG_Tweening_Core_DOSetter_ulong__o* __this, uint64_t pNewValue, const MethodInfo_2A7A030* method_2A7A030);
void DG_Tweening_Core_DOSetter_Color___Invoke (DG_Tweening_Core_DOSetter_Color__o* __this, UnityEngine_Color_o pNewValue, const MethodInfo_2A7A380* method_2A7A380);
void DG_Tweening_Core_DOSetter_Quaternion___Invoke (DG_Tweening_Core_DOSetter_Quaternion__o* __this, UnityEngine_Quaternion_o pNewValue, const MethodInfo_2A7A730* method_2A7A730);
void DG_Tweening_Core_DOSetter_Rect___Invoke (DG_Tweening_Core_DOSetter_Rect__o* __this, UnityEngine_Rect_o pNewValue, const MethodInfo_2A7AAE0* method_2A7AAE0);
void DG_Tweening_Core_DOSetter_RectOffset___Invoke (DG_Tweening_Core_DOSetter_RectOffset__o* __this, UnityEngine_RectOffset_o* pNewValue, const MethodInfo_2A79590* method_2A79590);
void DG_Tweening_Core_DOSetter_Vector2___Invoke (DG_Tweening_Core_DOSetter_Vector2__o* __this, UnityEngine_Vector2_o pNewValue, const MethodInfo_2A7AE90* method_2A7AE90);
void DG_Tweening_Core_DOSetter_Vector3___Invoke (DG_Tweening_Core_DOSetter_Vector3__o* __this, UnityEngine_Vector3_o pNewValue, const MethodInfo_2A7B1F0* method_2A7B1F0);
void DG_Tweening_Core_DOSetter_Vector4___Invoke (DG_Tweening_Core_DOSetter_Vector4__o* __this, UnityEngine_Vector4_o pNewValue, const MethodInfo_2A7B590* method_2A7B590);
System_IAsyncResult_o* DG_Tweening_Core_DOSetter_Color2___BeginInvoke (DG_Tweening_Core_DOSetter_Color2__o* __this, DG_Tweening_Color2_o pNewValue, System_AsyncCallback_o* callback, Il2CppObject* object, const MethodInfo_2A78AE0* method_2A78AE0);
System_IAsyncResult_o* DG_Tweening_Core_DOSetter_double___BeginInvoke (DG_Tweening_Core_DOSetter_double__o* __this, double pNewValue, System_AsyncCallback_o* callback, Il2CppObject* object, const MethodInfo_2A78E30* method_2A78E30);
System_IAsyncResult_o* DG_Tweening_Core_DOSetter_int___BeginInvoke (DG_Tweening_Core_DOSetter_int__o* __this, int32_t pNewValue, System_AsyncCallback_o* callback, Il2CppObject* object, const MethodInfo_2A79180* method_2A79180);
System_IAsyncResult_o* DG_Tweening_Core_DOSetter_long___BeginInvoke (DG_Tweening_Core_DOSetter_long__o* __this, int64_t pNewValue, System_AsyncCallback_o* callback, Il2CppObject* object, const MethodInfo_2A794D0* method_2A794D0);
System_IAsyncResult_o* DG_Tweening_Core_DOSetter_object___BeginInvoke (DG_Tweening_Core_DOSetter_object__o* __this, Il2CppObject* pNewValue, System_AsyncCallback_o* callback, Il2CppObject* object, const MethodInfo_2A79940* method_2A79940);
System_IAsyncResult_o* DG_Tweening_Core_DOSetter_float___BeginInvoke (DG_Tweening_Core_DOSetter_float__o* __this, float pNewValue, System_AsyncCallback_o* callback, Il2CppObject* object, const MethodInfo_2A79C20* method_2A79C20);
System_IAsyncResult_o* DG_Tweening_Core_DOSetter_uint___BeginInvoke (DG_Tweening_Core_DOSetter_uint__o* __this, uint32_t pNewValue, System_AsyncCallback_o* callback, Il2CppObject* object, const MethodInfo_2A79F70* method_2A79F70);
System_IAsyncResult_o* DG_Tweening_Core_DOSetter_ulong___BeginInvoke (DG_Tweening_Core_DOSetter_ulong__o* __this, uint64_t pNewValue, System_AsyncCallback_o* callback, Il2CppObject* object, const MethodInfo_2A7A2C0* method_2A7A2C0);
System_IAsyncResult_o* DG_Tweening_Core_DOSetter_Color___BeginInvoke (DG_Tweening_Core_DOSetter_Color__o* __this, UnityEngine_Color_o pNewValue, System_AsyncCallback_o* callback, Il2CppObject* object, const MethodInfo_2A7A670* method_2A7A670);
System_IAsyncResult_o* DG_Tweening_Core_DOSetter_Quaternion___BeginInvoke (DG_Tweening_Core_DOSetter_Quaternion__o* __this, UnityEngine_Quaternion_o pNewValue, System_AsyncCallback_o* callback, Il2CppObject* object, const MethodInfo_2A7AA20* method_2A7AA20);
System_IAsyncResult_o* DG_Tweening_Core_DOSetter_Rect___BeginInvoke (DG_Tweening_Core_DOSetter_Rect__o* __this, UnityEngine_Rect_o pNewValue, System_AsyncCallback_o* callback, Il2CppObject* object, const MethodInfo_2A7ADD0* method_2A7ADD0);
System_IAsyncResult_o* DG_Tweening_Core_DOSetter_Vector2___BeginInvoke (DG_Tweening_Core_DOSetter_Vector2__o* __this, UnityEngine_Vector2_o pNewValue, System_AsyncCallback_o* callback, Il2CppObject* object, const MethodInfo_2A7B130* method_2A7B130);
System_IAsyncResult_o* DG_Tweening_Core_DOSetter_Vector3___BeginInvoke (DG_Tweening_Core_DOSetter_Vector3__o* __this, UnityEngine_Vector3_o pNewValue, System_AsyncCallback_o* callback, Il2CppObject* object, const MethodInfo_2A7B4D0* method_2A7B4D0);
System_IAsyncResult_o* DG_Tweening_Core_DOSetter_Vector4___BeginInvoke (DG_Tweening_Core_DOSetter_Vector4__o* __this, UnityEngine_Vector4_o pNewValue, System_AsyncCallback_o* callback, Il2CppObject* object, const MethodInfo_2A7B880* method_2A7B880);
void DG_Tweening_Core_DOSetter_Color2___EndInvoke (DG_Tweening_Core_DOSetter_Color2__o* __this, System_IAsyncResult_o* result, const MethodInfo_2A78B80* method_2A78B80);
void DG_Tweening_Core_DOSetter_double___EndInvoke (DG_Tweening_Core_DOSetter_double__o* __this, System_IAsyncResult_o* result, const MethodInfo_2A78EC0* method_2A78EC0);
void DG_Tweening_Core_DOSetter_int___EndInvoke (DG_Tweening_Core_DOSetter_int__o* __this, System_IAsyncResult_o* result, const MethodInfo_2A79210* method_2A79210);
void DG_Tweening_Core_DOSetter_long___EndInvoke (DG_Tweening_Core_DOSetter_long__o* __this, System_IAsyncResult_o* result, const MethodInfo_2A79560* method_2A79560);
void DG_Tweening_Core_DOSetter_object___EndInvoke (DG_Tweening_Core_DOSetter_object__o* __this, System_IAsyncResult_o* result, const MethodInfo_2A79970* method_2A79970);
void DG_Tweening_Core_DOSetter_float___EndInvoke (DG_Tweening_Core_DOSetter_float__o* __this, System_IAsyncResult_o* result, const MethodInfo_2A79CB0* method_2A79CB0);
void DG_Tweening_Core_DOSetter_uint___EndInvoke (DG_Tweening_Core_DOSetter_uint__o* __this, System_IAsyncResult_o* result, const MethodInfo_2A7A000* method_2A7A000);
void DG_Tweening_Core_DOSetter_ulong___EndInvoke (DG_Tweening_Core_DOSetter_ulong__o* __this, System_IAsyncResult_o* result, const MethodInfo_2A7A350* method_2A7A350);
void DG_Tweening_Core_DOSetter_Color___EndInvoke (DG_Tweening_Core_DOSetter_Color__o* __this, System_IAsyncResult_o* result, const MethodInfo_2A7A700* method_2A7A700);
void DG_Tweening_Core_DOSetter_Quaternion___EndInvoke (DG_Tweening_Core_DOSetter_Quaternion__o* __this, System_IAsyncResult_o* result, const MethodInfo_2A7AAB0* method_2A7AAB0);
void DG_Tweening_Core_DOSetter_Rect___EndInvoke (DG_Tweening_Core_DOSetter_Rect__o* __this, System_IAsyncResult_o* result, const MethodInfo_2A7AE60* method_2A7AE60);
void DG_Tweening_Core_DOSetter_Vector2___EndInvoke (DG_Tweening_Core_DOSetter_Vector2__o* __this, System_IAsyncResult_o* result, const MethodInfo_2A7B1C0* method_2A7B1C0);
void DG_Tweening_Core_DOSetter_Vector3___EndInvoke (DG_Tweening_Core_DOSetter_Vector3__o* __this, System_IAsyncResult_o* result, const MethodInfo_2A7B560* method_2A7B560);
void DG_Tweening_Core_DOSetter_Vector4___EndInvoke (DG_Tweening_Core_DOSetter_Vector4__o* __this, System_IAsyncResult_o* result, const MethodInfo_2A7B910* method_2A7B910);
int32_t DG_Tweening_Core_Debugger__get_logPriority (const MethodInfo*);
void DG_Tweening_Core_Debugger__Log (Il2CppObject* message, const MethodInfo*);
void DG_Tweening_Core_Debugger__LogWarning (Il2CppObject* message, DG_Tweening_Tween_o* t, const MethodInfo*);
void DG_Tweening_Core_Debugger__LogError (Il2CppObject* message, const MethodInfo*);
void DG_Tweening_Core_Debugger__LogReport (Il2CppObject* message, const MethodInfo*);
void DG_Tweening_Core_Debugger__LogSafeModeReport (Il2CppObject* message, const MethodInfo*);
void DG_Tweening_Core_Debugger__LogInvalidTween (DG_Tweening_Tween_o* t, const MethodInfo*);
void DG_Tweening_Core_Debugger__LogNestedTween (DG_Tweening_Tween_o* t, const MethodInfo*);
void DG_Tweening_Core_Debugger__LogNullTween (DG_Tweening_Tween_o* t, const MethodInfo*);
void DG_Tweening_Core_Debugger__LogNonPathTween (DG_Tweening_Tween_o* t, const MethodInfo*);
void DG_Tweening_Core_Debugger__LogMissingMaterialProperty (System_String_o* propertyName, const MethodInfo*);
void DG_Tweening_Core_Debugger__LogMissingMaterialProperty (int32_t propertyId, const MethodInfo*);
void DG_Tweening_Core_Debugger__LogRemoveActiveTweenError (System_String_o* errorInfo, DG_Tweening_Tween_o* t, const MethodInfo*);
void DG_Tweening_Core_Debugger__LogAddActiveTweenError (System_String_o* errorInfo, DG_Tweening_Tween_o* t, const MethodInfo*);
void DG_Tweening_Core_Debugger__SetLogPriority (int32_t logBehaviour, const MethodInfo*);
void DG_Tweening_Core_DOTweenComponent__Awake (DG_Tweening_Core_DOTweenComponent_o* __this, const MethodInfo*);
void DG_Tweening_Core_DOTweenComponent__Start (DG_Tweening_Core_DOTweenComponent_o* __this, const MethodInfo*);
void DG_Tweening_Core_DOTweenComponent__Update (DG_Tweening_Core_DOTweenComponent_o* __this, const MethodInfo*);
void DG_Tweening_Core_DOTweenComponent__LateUpdate (DG_Tweening_Core_DOTweenComponent_o* __this, const MethodInfo*);
void DG_Tweening_Core_DOTweenComponent__FixedUpdate (DG_Tweening_Core_DOTweenComponent_o* __this, const MethodInfo*);
void DG_Tweening_Core_DOTweenComponent__OnDrawGizmos (DG_Tweening_Core_DOTweenComponent_o* __this, const MethodInfo*);
void DG_Tweening_Core_DOTweenComponent__OnDestroy (DG_Tweening_Core_DOTweenComponent_o* __this, const MethodInfo*);
void DG_Tweening_Core_DOTweenComponent__OnApplicationPause (DG_Tweening_Core_DOTweenComponent_o* __this, bool pauseStatus, const MethodInfo*);
DG_Tweening_IDOTweenInit_o* DG_Tweening_Core_DOTweenComponent__SetCapacity (DG_Tweening_Core_DOTweenComponent_o* __this, int32_t tweenersCapacity, int32_t sequencesCapacity, const MethodInfo*);
System_Collections_IEnumerator_o* DG_Tweening_Core_DOTweenComponent__WaitForCompletion (DG_Tweening_Core_DOTweenComponent_o* __this, DG_Tweening_Tween_o* t, const MethodInfo*);
System_Collections_IEnumerator_o* DG_Tweening_Core_DOTweenComponent__WaitForRewind (DG_Tweening_Core_DOTweenComponent_o* __this, DG_Tweening_Tween_o* t, const MethodInfo*);
System_Collections_IEnumerator_o* DG_Tweening_Core_DOTweenComponent__WaitForKill (DG_Tweening_Core_DOTweenComponent_o* __this, DG_Tweening_Tween_o* t, const MethodInfo*);
System_Collections_IEnumerator_o* DG_Tweening_Core_DOTweenComponent__WaitForElapsedLoops (DG_Tweening_Core_DOTweenComponent_o* __this, DG_Tweening_Tween_o* t, int32_t elapsedLoops, const MethodInfo*);
System_Collections_IEnumerator_o* DG_Tweening_Core_DOTweenComponent__WaitForPosition (DG_Tweening_Core_DOTweenComponent_o* __this, DG_Tweening_Tween_o* t, float position, const MethodInfo*);
System_Collections_IEnumerator_o* DG_Tweening_Core_DOTweenComponent__WaitForStart (DG_Tweening_Core_DOTweenComponent_o* __this, DG_Tweening_Tween_o* t, const MethodInfo*);
void DG_Tweening_Core_DOTweenComponent__Create (const MethodInfo*);
void DG_Tweening_Core_DOTweenComponent__DestroyInstance (const MethodInfo*);
void DG_Tweening_Core_DOTweenComponent___ctor (DG_Tweening_Core_DOTweenComponent_o* __this, const MethodInfo*);
void DG_Tweening_Core_DOTweenComponent__WaitForCompletion_d__15___ctor (DG_Tweening_Core_DOTweenComponent__WaitForCompletion_d__15_o* __this, int32_t __1__state, const MethodInfo*);
void DG_Tweening_Core_DOTweenComponent__WaitForCompletion_d__15__System_IDisposable_Dispose (DG_Tweening_Core_DOTweenComponent__WaitForCompletion_d__15_o* __this, const MethodInfo*);
bool DG_Tweening_Core_DOTweenComponent__WaitForCompletion_d__15__MoveNext (DG_Tweening_Core_DOTweenComponent__WaitForCompletion_d__15_o* __this, const MethodInfo*);
Il2CppObject* DG_Tweening_Core_DOTweenComponent__WaitForCompletion_d__15__System_Collections_Generic_IEnumerator_System_Object__get_Current (DG_Tweening_Core_DOTweenComponent__WaitForCompletion_d__15_o* __this, const MethodInfo*);
void DG_Tweening_Core_DOTweenComponent__WaitForCompletion_d__15__System_Collections_IEnumerator_Reset (DG_Tweening_Core_DOTweenComponent__WaitForCompletion_d__15_o* __this, const MethodInfo*);
Il2CppObject* DG_Tweening_Core_DOTweenComponent__WaitForCompletion_d__15__System_Collections_IEnumerator_get_Current (DG_Tweening_Core_DOTweenComponent__WaitForCompletion_d__15_o* __this, const MethodInfo*);
void DG_Tweening_Core_DOTweenComponent__WaitForRewind_d__16___ctor (DG_Tweening_Core_DOTweenComponent__WaitForRewind_d__16_o* __this, int32_t __1__state, const MethodInfo*);
void DG_Tweening_Core_DOTweenComponent__WaitForRewind_d__16__System_IDisposable_Dispose (DG_Tweening_Core_DOTweenComponent__WaitForRewind_d__16_o* __this, const MethodInfo*);
bool DG_Tweening_Core_DOTweenComponent__WaitForRewind_d__16__MoveNext (DG_Tweening_Core_DOTweenComponent__WaitForRewind_d__16_o* __this, const MethodInfo*);
Il2CppObject* DG_Tweening_Core_DOTweenComponent__WaitForRewind_d__16__System_Collections_Generic_IEnumerator_System_Object__get_Current (DG_Tweening_Core_DOTweenComponent__WaitForRewind_d__16_o* __this, const MethodInfo*);
void DG_Tweening_Core_DOTweenComponent__WaitForRewind_d__16__System_Collections_IEnumerator_Reset (DG_Tweening_Core_DOTweenComponent__WaitForRewind_d__16_o* __this, const MethodInfo*);
Il2CppObject* DG_Tweening_Core_DOTweenComponent__WaitForRewind_d__16__System_Collections_IEnumerator_get_Current (DG_Tweening_Core_DOTweenComponent__WaitForRewind_d__16_o* __this, const MethodInfo*);
void DG_Tweening_Core_DOTweenComponent__WaitForKill_d__17___ctor (DG_Tweening_Core_DOTweenComponent__WaitForKill_d__17_o* __this, int32_t __1__state, const MethodInfo*);
void DG_Tweening_Core_DOTweenComponent__WaitForKill_d__17__System_IDisposable_Dispose (DG_Tweening_Core_DOTweenComponent__WaitForKill_d__17_o* __this, const MethodInfo*);
bool DG_Tweening_Core_DOTweenComponent__WaitForKill_d__17__MoveNext (DG_Tweening_Core_DOTweenComponent__WaitForKill_d__17_o* __this, const MethodInfo*);
Il2CppObject* DG_Tweening_Core_DOTweenComponent__WaitForKill_d__17__System_Collections_Generic_IEnumerator_System_Object__get_Current (DG_Tweening_Core_DOTweenComponent__WaitForKill_d__17_o* __this, const MethodInfo*);
void DG_Tweening_Core_DOTweenComponent__WaitForKill_d__17__System_Collections_IEnumerator_Reset (DG_Tweening_Core_DOTweenComponent__WaitForKill_d__17_o* __this, const MethodInfo*);
Il2CppObject* DG_Tweening_Core_DOTweenComponent__WaitForKill_d__17__System_Collections_IEnumerator_get_Current (DG_Tweening_Core_DOTweenComponent__WaitForKill_d__17_o* __this, const MethodInfo*);
void DG_Tweening_Core_DOTweenComponent__WaitForElapsedLoops_d__18___ctor (DG_Tweening_Core_DOTweenComponent__WaitForElapsedLoops_d__18_o* __this, int32_t __1__state, const MethodInfo*);
void DG_Tweening_Core_DOTweenComponent__WaitForElapsedLoops_d__18__System_IDisposable_Dispose (DG_Tweening_Core_DOTweenComponent__WaitForElapsedLoops_d__18_o* __this, const MethodInfo*);
bool DG_Tweening_Core_DOTweenComponent__WaitForElapsedLoops_d__18__MoveNext (DG_Tweening_Core_DOTweenComponent__WaitForElapsedLoops_d__18_o* __this, const MethodInfo*);
Il2CppObject* DG_Tweening_Core_DOTweenComponent__WaitForElapsedLoops_d__18__System_Collections_Generic_IEnumerator_System_Object__get_Current (DG_Tweening_Core_DOTweenComponent__WaitForElapsedLoops_d__18_o* __this, const MethodInfo*);
void DG_Tweening_Core_DOTweenComponent__WaitForElapsedLoops_d__18__System_Collections_IEnumerator_Reset (DG_Tweening_Core_DOTweenComponent__WaitForElapsedLoops_d__18_o* __this, const MethodInfo*);
Il2CppObject* DG_Tweening_Core_DOTweenComponent__WaitForElapsedLoops_d__18__System_Collections_IEnumerator_get_Current (DG_Tweening_Core_DOTweenComponent__WaitForElapsedLoops_d__18_o* __this, const MethodInfo*);
void DG_Tweening_Core_DOTweenComponent__WaitForPosition_d__19___ctor (DG_Tweening_Core_DOTweenComponent__WaitForPosition_d__19_o* __this, int32_t __1__state, const MethodInfo*);
void DG_Tweening_Core_DOTweenComponent__WaitForPosition_d__19__System_IDisposable_Dispose (DG_Tweening_Core_DOTweenComponent__WaitForPosition_d__19_o* __this, const MethodInfo*);
bool DG_Tweening_Core_DOTweenComponent__WaitForPosition_d__19__MoveNext (DG_Tweening_Core_DOTweenComponent__WaitForPosition_d__19_o* __this, const MethodInfo*);
Il2CppObject* DG_Tweening_Core_DOTweenComponent__WaitForPosition_d__19__System_Collections_Generic_IEnumerator_System_Object__get_Current (DG_Tweening_Core_DOTweenComponent__WaitForPosition_d__19_o* __this, const MethodInfo*);
void DG_Tweening_Core_DOTweenComponent__WaitForPosition_d__19__System_Collections_IEnumerator_Reset (DG_Tweening_Core_DOTweenComponent__WaitForPosition_d__19_o* __this, const MethodInfo*);
Il2CppObject* DG_Tweening_Core_DOTweenComponent__WaitForPosition_d__19__System_Collections_IEnumerator_get_Current (DG_Tweening_Core_DOTweenComponent__WaitForPosition_d__19_o* __this, const MethodInfo*);
void DG_Tweening_Core_DOTweenComponent__WaitForStart_d__20___ctor (DG_Tweening_Core_DOTweenComponent__WaitForStart_d__20_o* __this, int32_t __1__state, const MethodInfo*);
void DG_Tweening_Core_DOTweenComponent__WaitForStart_d__20__System_IDisposable_Dispose (DG_Tweening_Core_DOTweenComponent__WaitForStart_d__20_o* __this, const MethodInfo*);
bool DG_Tweening_Core_DOTweenComponent__WaitForStart_d__20__MoveNext (DG_Tweening_Core_DOTweenComponent__WaitForStart_d__20_o* __this, const MethodInfo*);
Il2CppObject* DG_Tweening_Core_DOTweenComponent__WaitForStart_d__20__System_Collections_Generic_IEnumerator_System_Object__get_Current (DG_Tweening_Core_DOTweenComponent__WaitForStart_d__20_o* __this, const MethodInfo*);
void DG_Tweening_Core_DOTweenComponent__WaitForStart_d__20__System_Collections_IEnumerator_Reset (DG_Tweening_Core_DOTweenComponent__WaitForStart_d__20_o* __this, const MethodInfo*);
Il2CppObject* DG_Tweening_Core_DOTweenComponent__WaitForStart_d__20__System_Collections_IEnumerator_get_Current (DG_Tweening_Core_DOTweenComponent__WaitForStart_d__20_o* __this, const MethodInfo*);
void DG_Tweening_Core_DOTweenSettings___ctor (DG_Tweening_Core_DOTweenSettings_o* __this, const MethodInfo*);
void DG_Tweening_Core_DOTweenSettings_SafeModeOptions___ctor (DG_Tweening_Core_DOTweenSettings_SafeModeOptions_o* __this, const MethodInfo*);
void DG_Tweening_Core_DOTweenSettings_ModulesSetup___ctor (DG_Tweening_Core_DOTweenSettings_ModulesSetup_o* __this, const MethodInfo*);
DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions__o* DG_Tweening_Core_Extensions__SetSpecialStartupMode_TweenerCore_Quaternion__Vector3__QuaternionOptions__ (DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions__o* t, int32_t mode, const MethodInfo_1D68700* method_1D68700);
DG_Tweening_Core_TweenerCore_Vector3__Vector3____Vector3ArrayOptions__o* DG_Tweening_Core_Extensions__SetSpecialStartupMode_TweenerCore_Vector3__Vector3____Vector3ArrayOptions__ (DG_Tweening_Core_TweenerCore_Vector3__Vector3____Vector3ArrayOptions__o* t, int32_t mode, const MethodInfo_1D68700* method_1D68700);
Il2CppObject* DG_Tweening_Core_Extensions__SetSpecialStartupMode_object_ (Il2CppObject* t, int32_t mode, const MethodInfo_1D68700* method_1D68700);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_Extensions__Blendable_Color__Color__ColorOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_2985820* method_2985820);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_Extensions__Blendable_Quaternion__Vector3__QuaternionOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_2985830* method_2985830);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_Extensions__Blendable_Vector3__object__Vector3ArrayOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_2985840* method_2985840);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_Extensions__Blendable_Vector3__Vector3__VectorOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_2985850* method_2985850);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_Extensions__Blendable_Vector3__Vector3____Vector3ArrayOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_2985840* method_2985840);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_Extensions__NoFrom_float__float__FloatOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_2985860* method_2985860);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_Extensions__NoFrom_Vector3__object__Vector3ArrayOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_2985870* method_2985870);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_Extensions__NoFrom_Vector3__Vector3____Vector3ArrayOptions_ (DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* t, const MethodInfo_2985870* method_2985870);
void DG_Tweening_Core_DOTweenExternalCommand__add_SetOrientationOnPath (System_Action_PathOptions__Tween__Quaternion__Transform__o* value, const MethodInfo*);
void DG_Tweening_Core_DOTweenExternalCommand__remove_SetOrientationOnPath (System_Action_PathOptions__Tween__Quaternion__Transform__o* value, const MethodInfo*);
void DG_Tweening_Core_DOTweenExternalCommand__Dispatch_SetOrientationOnPath (DG_Tweening_Plugins_Options_PathOptions_o options, DG_Tweening_Tween_o* t, UnityEngine_Quaternion_o newRot, UnityEngine_Transform_o* trans, const MethodInfo*);
int32_t DG_Tweening_Core_SafeModeReport__get_totMissingTargetOrFieldErrors (DG_Tweening_Core_SafeModeReport_o __this, const MethodInfo*);
void DG_Tweening_Core_SafeModeReport__set_totMissingTargetOrFieldErrors (DG_Tweening_Core_SafeModeReport_o __this, int32_t value, const MethodInfo*);
int32_t DG_Tweening_Core_SafeModeReport__get_totCallbackErrors (DG_Tweening_Core_SafeModeReport_o __this, const MethodInfo*);
void DG_Tweening_Core_SafeModeReport__set_totCallbackErrors (DG_Tweening_Core_SafeModeReport_o __this, int32_t value, const MethodInfo*);
int32_t DG_Tweening_Core_SafeModeReport__get_totStartupErrors (DG_Tweening_Core_SafeModeReport_o __this, const MethodInfo*);
void DG_Tweening_Core_SafeModeReport__set_totStartupErrors (DG_Tweening_Core_SafeModeReport_o __this, int32_t value, const MethodInfo*);
int32_t DG_Tweening_Core_SafeModeReport__get_totUnsetErrors (DG_Tweening_Core_SafeModeReport_o __this, const MethodInfo*);
void DG_Tweening_Core_SafeModeReport__set_totUnsetErrors (DG_Tweening_Core_SafeModeReport_o __this, int32_t value, const MethodInfo*);
void DG_Tweening_Core_SafeModeReport__Add (DG_Tweening_Core_SafeModeReport_o __this, int32_t type, const MethodInfo*);
int32_t DG_Tweening_Core_SafeModeReport__GetTotErrors (DG_Tweening_Core_SafeModeReport_o __this, const MethodInfo*);
void DG_Tweening_Core_SequenceCallback___ctor (DG_Tweening_Core_SequenceCallback_o* __this, float sequencedPosition, DG_Tweening_TweenCallback_o* callback, const MethodInfo*);
void DG_Tweening_Core_TweenLink___ctor (DG_Tweening_Core_TweenLink_o* __this, UnityEngine_GameObject_o* target, int32_t behaviour, const MethodInfo*);
void DG_Tweening_Core_TweenManager___cctor (const MethodInfo*);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenManager__GetTweener_Color2__Color2__ColorOptions_ (const MethodInfo_2985880* method_2985880);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenManager__GetTweener_double__double__NoOptions_ (const MethodInfo_2985EC0* method_2985EC0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenManager__GetTweener_int__int__NoOptions_ (const MethodInfo_2986500* method_2986500);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenManager__GetTweener_long__long__NoOptions_ (const MethodInfo_2986B40* method_2986B40);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenManager__GetTweener_object__object__NoOptions_ (const MethodInfo_2987180* method_2987180);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenManager__GetTweener_object__object__StringOptions_ (const MethodInfo_29877C0* method_29877C0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenManager__GetTweener_float__float__FloatOptions_ (const MethodInfo_2987E00* method_2987E00);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenManager__GetTweener_uint__uint__UintOptions_ (const MethodInfo_2988440* method_2988440);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenManager__GetTweener_ulong__ulong__NoOptions_ (const MethodInfo_2988A80* method_2988A80);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenManager__GetTweener_Color__Color__ColorOptions_ (const MethodInfo_29890C0* method_29890C0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenManager__GetTweener_Quaternion__Quaternion__NoOptions_ (const MethodInfo_2989700* method_2989700);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenManager__GetTweener_Quaternion__Vector3__QuaternionOptions_ (const MethodInfo_2989D40* method_2989D40);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenManager__GetTweener_Rect__Rect__RectOptions_ (const MethodInfo_298A380* method_298A380);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenManager__GetTweener_Vector2__Vector2__VectorOptions_ (const MethodInfo_298A9C0* method_298A9C0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenManager__GetTweener_Vector3__object__PathOptions_ (const MethodInfo_298B000* method_298B000);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenManager__GetTweener_Vector3__object__Vector3ArrayOptions_ (const MethodInfo_298B640* method_298B640);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenManager__GetTweener_Vector3__Vector3__VectorOptions_ (const MethodInfo_298BC80* method_298BC80);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenManager__GetTweener_Vector3__Vector3__SpiralOptions_ (const MethodInfo_298C2C0* method_298C2C0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenManager__GetTweener_Vector4__Vector4__VectorOptions_ (const MethodInfo_298C900* method_298C900);
DG_Tweening_Sequence_o* DG_Tweening_Core_TweenManager__GetSequence (const MethodInfo*);
void DG_Tweening_Core_TweenManager__SetUpdateType (DG_Tweening_Tween_o* t, int32_t updateType, bool isIndependentUpdate, const MethodInfo*);
void DG_Tweening_Core_TweenManager__AddActiveTweenToSequence (DG_Tweening_Tween_o* t, const MethodInfo*);
int32_t DG_Tweening_Core_TweenManager__DespawnAll (const MethodInfo*);
void DG_Tweening_Core_TweenManager__Despawn (DG_Tweening_Tween_o* t, bool modifyActiveLists, const MethodInfo*);
void DG_Tweening_Core_TweenManager__PurgeAll (const MethodInfo*);
void DG_Tweening_Core_TweenManager__PurgePools (const MethodInfo*);
void DG_Tweening_Core_TweenManager__AddTweenLink (DG_Tweening_Tween_o* t, DG_Tweening_Core_TweenLink_o* tweenLink, const MethodInfo*);
void DG_Tweening_Core_TweenManager__RemoveTweenLink (DG_Tweening_Tween_o* t, const MethodInfo*);
void DG_Tweening_Core_TweenManager__ResetCapacities (const MethodInfo*);
void DG_Tweening_Core_TweenManager__SetCapacities (int32_t tweenersCapacity, int32_t sequencesCapacity, const MethodInfo*);
int32_t DG_Tweening_Core_TweenManager__Validate (const MethodInfo*);
void DG_Tweening_Core_TweenManager__Update (int32_t updateType, float deltaTime, float independentTime, const MethodInfo*);
int32_t DG_Tweening_Core_TweenManager__FilteredOperation (int32_t operationType, int32_t filterType, Il2CppObject* id, bool optionalBool, float optionalFloat, Il2CppObject* optionalObj, System_Object_array* optionalArray, const MethodInfo*);
bool DG_Tweening_Core_TweenManager__Complete (DG_Tweening_Tween_o* t, bool modifyActiveLists, int32_t updateMode, const MethodInfo*);
bool DG_Tweening_Core_TweenManager__Flip (DG_Tweening_Tween_o* t, const MethodInfo*);
void DG_Tweening_Core_TweenManager__ForceInit (DG_Tweening_Tween_o* t, bool isSequenced, const MethodInfo*);
bool DG_Tweening_Core_TweenManager__Goto (DG_Tweening_Tween_o* t, float to, bool andPlay, int32_t updateMode, const MethodInfo*);
bool DG_Tweening_Core_TweenManager__Pause (DG_Tweening_Tween_o* t, const MethodInfo*);
bool DG_Tweening_Core_TweenManager__Play (DG_Tweening_Tween_o* t, const MethodInfo*);
bool DG_Tweening_Core_TweenManager__PlayBackwards (DG_Tweening_Tween_o* t, const MethodInfo*);
bool DG_Tweening_Core_TweenManager__PlayForward (DG_Tweening_Tween_o* t, const MethodInfo*);
bool DG_Tweening_Core_TweenManager__Restart (DG_Tweening_Tween_o* t, bool includeDelay, float changeDelayTo, const MethodInfo*);
bool DG_Tweening_Core_TweenManager__Rewind (DG_Tweening_Tween_o* t, bool includeDelay, const MethodInfo*);
bool DG_Tweening_Core_TweenManager__SmoothRewind (DG_Tweening_Tween_o* t, const MethodInfo*);
bool DG_Tweening_Core_TweenManager__TogglePause (DG_Tweening_Tween_o* t, const MethodInfo*);
int32_t DG_Tweening_Core_TweenManager__TotalPooledTweens (const MethodInfo*);
int32_t DG_Tweening_Core_TweenManager__TotalPlayingTweens (const MethodInfo*);
System_Collections_Generic_List_Tween__o* DG_Tweening_Core_TweenManager__GetActiveTweens (bool playing, System_Collections_Generic_List_Tween__o* fillableList, const MethodInfo*);
System_Collections_Generic_List_Tween__o* DG_Tweening_Core_TweenManager__GetTweensById (Il2CppObject* id, bool playingOnly, System_Collections_Generic_List_Tween__o* fillableList, const MethodInfo*);
System_Collections_Generic_List_Tween__o* DG_Tweening_Core_TweenManager__GetTweensByTarget (Il2CppObject* target, bool playingOnly, System_Collections_Generic_List_Tween__o* fillableList, const MethodInfo*);
void DG_Tweening_Core_TweenManager__MarkForKilling (DG_Tweening_Tween_o* t, const MethodInfo*);
void DG_Tweening_Core_TweenManager__EvaluateTweenLink (DG_Tweening_Tween_o* t, const MethodInfo*);
void DG_Tweening_Core_TweenManager__AddActiveTween (DG_Tweening_Tween_o* t, const MethodInfo*);
void DG_Tweening_Core_TweenManager__ReorganizeActiveTweens (const MethodInfo*);
void DG_Tweening_Core_TweenManager__DespawnActiveTweens (System_Collections_Generic_List_Tween__o* tweens, const MethodInfo*);
void DG_Tweening_Core_TweenManager__RemoveActiveTween (DG_Tweening_Tween_o* t, const MethodInfo*);
void DG_Tweening_Core_TweenManager__ClearTweenArray (DG_Tweening_Tween_array* tweens, const MethodInfo*);
void DG_Tweening_Core_TweenManager__IncreaseCapacities (int32_t increaseMode, const MethodInfo*);
void DG_Tweening_Core_TweenManager__ManageOnRewindCallbackWhenAlreadyRewinded (DG_Tweening_Tween_o* t, bool isPlayBackwardsOrSmoothRewind, const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_Core_Utils__Vector3FromAngle (float degrees, float magnitude, const MethodInfo*);
float DG_Tweening_Core_Utils__Angle2D (UnityEngine_Vector3_o from, UnityEngine_Vector3_o to, const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_Core_Utils__RotateAroundPivot (UnityEngine_Vector3_o point, UnityEngine_Vector3_o pivot, UnityEngine_Quaternion_o rotation, const MethodInfo*);
bool DG_Tweening_Core_Utils__Vector3AreApproximatelyEqual (UnityEngine_Vector3_o a, UnityEngine_Vector3_o b, const MethodInfo*);
System_Type_o* DG_Tweening_Core_Utils__GetLooseScriptType (System_String_o* typeName, const MethodInfo*);
void DG_Tweening_Core_Utils___cctor (const MethodInfo*);
void DG_Tweening_Core_TweenerCore_Color2__Color2__ColorOptions____ctor (DG_Tweening_Core_TweenerCore_Color2__Color2__ColorOptions__o* __this, const MethodInfo_2A7B920* method_2A7B920);
void DG_Tweening_Core_TweenerCore_double__double__NoOptions____ctor (DG_Tweening_Core_TweenerCore_double__double__NoOptions__o* __this, const MethodInfo_2A7D0C0* method_2A7D0C0);
void DG_Tweening_Core_TweenerCore_int__int__NoOptions____ctor (DG_Tweening_Core_TweenerCore_int__int__NoOptions__o* __this, const MethodInfo_2A7E6C0* method_2A7E6C0);
void DG_Tweening_Core_TweenerCore_long__long__NoOptions____ctor (DG_Tweening_Core_TweenerCore_long__long__NoOptions__o* __this, const MethodInfo_2A7FCD0* method_2A7FCD0);
void DG_Tweening_Core_TweenerCore_object__object__NoOptions____ctor (DG_Tweening_Core_TweenerCore_object__object__NoOptions__o* __this, const MethodInfo_2A812E0* method_2A812E0);
void DG_Tweening_Core_TweenerCore_object__object__StringOptions____ctor (DG_Tweening_Core_TweenerCore_object__object__StringOptions__o* __this, const MethodInfo_2A828E0* method_2A828E0);
void DG_Tweening_Core_TweenerCore_float__float__FloatOptions____ctor (DG_Tweening_Core_TweenerCore_float__float__FloatOptions__o* __this, const MethodInfo_2A83F30* method_2A83F30);
void DG_Tweening_Core_TweenerCore_uint__uint__UintOptions____ctor (DG_Tweening_Core_TweenerCore_uint__uint__UintOptions__o* __this, const MethodInfo_2A85530* method_2A85530);
void DG_Tweening_Core_TweenerCore_ulong__ulong__NoOptions____ctor (DG_Tweening_Core_TweenerCore_ulong__ulong__NoOptions__o* __this, const MethodInfo_2A86B40* method_2A86B40);
void DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions____ctor (DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions__o* __this, const MethodInfo_2A88150* method_2A88150);
void DG_Tweening_Core_TweenerCore_Quaternion__Quaternion__NoOptions____ctor (DG_Tweening_Core_TweenerCore_Quaternion__Quaternion__NoOptions__o* __this, const MethodInfo_2A89830* method_2A89830);
void DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions____ctor (DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions__o* __this, const MethodInfo_2A8AF10* method_2A8AF10);
void DG_Tweening_Core_TweenerCore_Rect__Rect__RectOptions____ctor (DG_Tweening_Core_TweenerCore_Rect__Rect__RectOptions__o* __this, const MethodInfo_2A8C600* method_2A8C600);
void DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions____ctor (DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions__o* __this, const MethodInfo_2A8DCE0* method_2A8DCE0);
void DG_Tweening_Core_TweenerCore_Vector3__object__PathOptions____ctor (DG_Tweening_Core_TweenerCore_Vector3__object__PathOptions__o* __this, const MethodInfo_2A8F320* method_2A8F320);
void DG_Tweening_Core_TweenerCore_Vector3__object__Vector3ArrayOptions____ctor (DG_Tweening_Core_TweenerCore_Vector3__object__Vector3ArrayOptions__o* __this, const MethodInfo_2A90A20* method_2A90A20);
void DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions____ctor (DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* __this, const MethodInfo_2245520* method_2245520);
void DG_Tweening_Core_TweenerCore_Vector3__Vector3__SpiralOptions____ctor (DG_Tweening_Core_TweenerCore_Vector3__Vector3__SpiralOptions__o* __this, const MethodInfo_2246B90* method_2246B90);
void DG_Tweening_Core_TweenerCore_Vector4__Vector4__VectorOptions____ctor (DG_Tweening_Core_TweenerCore_Vector4__Vector4__VectorOptions__o* __this, const MethodInfo_22482A0* method_22482A0);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Color2__Color2__ColorOptions___ChangeStartValue (DG_Tweening_Core_TweenerCore_Color2__Color2__ColorOptions__o* __this, Il2CppObject* newStartValue, float newDuration, const MethodInfo_2A7BA20* method_2A7BA20);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_double__double__NoOptions___ChangeStartValue (DG_Tweening_Core_TweenerCore_double__double__NoOptions__o* __this, Il2CppObject* newStartValue, float newDuration, const MethodInfo_2A7D1C0* method_2A7D1C0);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_int__int__NoOptions___ChangeStartValue (DG_Tweening_Core_TweenerCore_int__int__NoOptions__o* __this, Il2CppObject* newStartValue, float newDuration, const MethodInfo_2A7E7C0* method_2A7E7C0);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_long__long__NoOptions___ChangeStartValue (DG_Tweening_Core_TweenerCore_long__long__NoOptions__o* __this, Il2CppObject* newStartValue, float newDuration, const MethodInfo_2A7FDD0* method_2A7FDD0);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_object__object__NoOptions___ChangeStartValue (DG_Tweening_Core_TweenerCore_object__object__NoOptions__o* __this, Il2CppObject* newStartValue, float newDuration, const MethodInfo_2A813E0* method_2A813E0);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_object__object__StringOptions___ChangeStartValue (DG_Tweening_Core_TweenerCore_object__object__StringOptions__o* __this, Il2CppObject* newStartValue, float newDuration, const MethodInfo_2A829E0* method_2A829E0);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_float__float__FloatOptions___ChangeStartValue (DG_Tweening_Core_TweenerCore_float__float__FloatOptions__o* __this, Il2CppObject* newStartValue, float newDuration, const MethodInfo_2A84030* method_2A84030);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_uint__uint__UintOptions___ChangeStartValue (DG_Tweening_Core_TweenerCore_uint__uint__UintOptions__o* __this, Il2CppObject* newStartValue, float newDuration, const MethodInfo_2A85630* method_2A85630);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_ulong__ulong__NoOptions___ChangeStartValue (DG_Tweening_Core_TweenerCore_ulong__ulong__NoOptions__o* __this, Il2CppObject* newStartValue, float newDuration, const MethodInfo_2A86C40* method_2A86C40);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions___ChangeStartValue (DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions__o* __this, Il2CppObject* newStartValue, float newDuration, const MethodInfo_2A88250* method_2A88250);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Quaternion__Quaternion__NoOptions___ChangeStartValue (DG_Tweening_Core_TweenerCore_Quaternion__Quaternion__NoOptions__o* __this, Il2CppObject* newStartValue, float newDuration, const MethodInfo_2A89930* method_2A89930);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions___ChangeStartValue (DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions__o* __this, Il2CppObject* newStartValue, float newDuration, const MethodInfo_2A8B010* method_2A8B010);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Rect__Rect__RectOptions___ChangeStartValue (DG_Tweening_Core_TweenerCore_Rect__Rect__RectOptions__o* __this, Il2CppObject* newStartValue, float newDuration, const MethodInfo_2A8C700* method_2A8C700);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions___ChangeStartValue (DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions__o* __this, Il2CppObject* newStartValue, float newDuration, const MethodInfo_2A8DDE0* method_2A8DDE0);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Vector3__object__PathOptions___ChangeStartValue (DG_Tweening_Core_TweenerCore_Vector3__object__PathOptions__o* __this, Il2CppObject* newStartValue, float newDuration, const MethodInfo_2A8F420* method_2A8F420);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Vector3__object__Vector3ArrayOptions___ChangeStartValue (DG_Tweening_Core_TweenerCore_Vector3__object__Vector3ArrayOptions__o* __this, Il2CppObject* newStartValue, float newDuration, const MethodInfo_2A90B20* method_2A90B20);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions___ChangeStartValue (DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* __this, Il2CppObject* newStartValue, float newDuration, const MethodInfo_2245620* method_2245620);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Vector3__Vector3__SpiralOptions___ChangeStartValue (DG_Tweening_Core_TweenerCore_Vector3__Vector3__SpiralOptions__o* __this, Il2CppObject* newStartValue, float newDuration, const MethodInfo_2246C90* method_2246C90);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Vector4__Vector4__VectorOptions___ChangeStartValue (DG_Tweening_Core_TweenerCore_Vector4__Vector4__VectorOptions__o* __this, Il2CppObject* newStartValue, float newDuration, const MethodInfo_22483A0* method_22483A0);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Color2__Color2__ColorOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_Color2__Color2__ColorOptions__o* __this, Il2CppObject* newEndValue, bool snapStartValue, const MethodInfo_2A7BE00* method_2A7BE00);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_double__double__NoOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_double__double__NoOptions__o* __this, Il2CppObject* newEndValue, bool snapStartValue, const MethodInfo_2A7D590* method_2A7D590);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_int__int__NoOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_int__int__NoOptions__o* __this, Il2CppObject* newEndValue, bool snapStartValue, const MethodInfo_2A7EB90* method_2A7EB90);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_long__long__NoOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_long__long__NoOptions__o* __this, Il2CppObject* newEndValue, bool snapStartValue, const MethodInfo_2A801A0* method_2A801A0);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_object__object__NoOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_object__object__NoOptions__o* __this, Il2CppObject* newEndValue, bool snapStartValue, const MethodInfo_2A817A0* method_2A817A0);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_object__object__StringOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_object__object__StringOptions__o* __this, Il2CppObject* newEndValue, bool snapStartValue, const MethodInfo_2A82DA0* method_2A82DA0);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_float__float__FloatOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_float__float__FloatOptions__o* __this, Il2CppObject* newEndValue, bool snapStartValue, const MethodInfo_2A84400* method_2A84400);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_uint__uint__UintOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_uint__uint__UintOptions__o* __this, Il2CppObject* newEndValue, bool snapStartValue, const MethodInfo_2A85A00* method_2A85A00);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_ulong__ulong__NoOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_ulong__ulong__NoOptions__o* __this, Il2CppObject* newEndValue, bool snapStartValue, const MethodInfo_2A87010* method_2A87010);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions__o* __this, Il2CppObject* newEndValue, bool snapStartValue, const MethodInfo_2A88620* method_2A88620);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Quaternion__Quaternion__NoOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_Quaternion__Quaternion__NoOptions__o* __this, Il2CppObject* newEndValue, bool snapStartValue, const MethodInfo_2A89D00* method_2A89D00);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions__o* __this, Il2CppObject* newEndValue, bool snapStartValue, const MethodInfo_2A8B3E0* method_2A8B3E0);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Rect__Rect__RectOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_Rect__Rect__RectOptions__o* __this, Il2CppObject* newEndValue, bool snapStartValue, const MethodInfo_2A8CAD0* method_2A8CAD0);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions__o* __this, Il2CppObject* newEndValue, bool snapStartValue, const MethodInfo_2A8E1B0* method_2A8E1B0);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Vector3__object__PathOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_Vector3__object__PathOptions__o* __this, Il2CppObject* newEndValue, bool snapStartValue, const MethodInfo_2A8F7E0* method_2A8F7E0);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Vector3__object__Vector3ArrayOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_Vector3__object__Vector3ArrayOptions__o* __this, Il2CppObject* newEndValue, bool snapStartValue, const MethodInfo_2A90EE0* method_2A90EE0);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* __this, Il2CppObject* newEndValue, bool snapStartValue, const MethodInfo_22459F0* method_22459F0);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Vector3__Vector3__SpiralOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_Vector3__Vector3__SpiralOptions__o* __this, Il2CppObject* newEndValue, bool snapStartValue, const MethodInfo_2247060* method_2247060);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Vector4__Vector4__VectorOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_Vector4__Vector4__VectorOptions__o* __this, Il2CppObject* newEndValue, bool snapStartValue, const MethodInfo_2248770* method_2248770);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Color2__Color2__ColorOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_Color2__Color2__ColorOptions__o* __this, Il2CppObject* newEndValue, float newDuration, bool snapStartValue, const MethodInfo_2A7BE20* method_2A7BE20);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_double__double__NoOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_double__double__NoOptions__o* __this, Il2CppObject* newEndValue, float newDuration, bool snapStartValue, const MethodInfo_2A7D5B0* method_2A7D5B0);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_int__int__NoOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_int__int__NoOptions__o* __this, Il2CppObject* newEndValue, float newDuration, bool snapStartValue, const MethodInfo_2A7EBB0* method_2A7EBB0);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_long__long__NoOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_long__long__NoOptions__o* __this, Il2CppObject* newEndValue, float newDuration, bool snapStartValue, const MethodInfo_2A801C0* method_2A801C0);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_object__object__NoOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_object__object__NoOptions__o* __this, Il2CppObject* newEndValue, float newDuration, bool snapStartValue, const MethodInfo_2A817C0* method_2A817C0);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_object__object__StringOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_object__object__StringOptions__o* __this, Il2CppObject* newEndValue, float newDuration, bool snapStartValue, const MethodInfo_2A82DC0* method_2A82DC0);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_float__float__FloatOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_float__float__FloatOptions__o* __this, Il2CppObject* newEndValue, float newDuration, bool snapStartValue, const MethodInfo_2A84420* method_2A84420);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_uint__uint__UintOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_uint__uint__UintOptions__o* __this, Il2CppObject* newEndValue, float newDuration, bool snapStartValue, const MethodInfo_2A85A20* method_2A85A20);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_ulong__ulong__NoOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_ulong__ulong__NoOptions__o* __this, Il2CppObject* newEndValue, float newDuration, bool snapStartValue, const MethodInfo_2A87030* method_2A87030);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions__o* __this, Il2CppObject* newEndValue, float newDuration, bool snapStartValue, const MethodInfo_2A88640* method_2A88640);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Quaternion__Quaternion__NoOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_Quaternion__Quaternion__NoOptions__o* __this, Il2CppObject* newEndValue, float newDuration, bool snapStartValue, const MethodInfo_2A89D20* method_2A89D20);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions__o* __this, Il2CppObject* newEndValue, float newDuration, bool snapStartValue, const MethodInfo_2A8B400* method_2A8B400);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Rect__Rect__RectOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_Rect__Rect__RectOptions__o* __this, Il2CppObject* newEndValue, float newDuration, bool snapStartValue, const MethodInfo_2A8CAF0* method_2A8CAF0);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions__o* __this, Il2CppObject* newEndValue, float newDuration, bool snapStartValue, const MethodInfo_2A8E1D0* method_2A8E1D0);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Vector3__object__PathOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_Vector3__object__PathOptions__o* __this, Il2CppObject* newEndValue, float newDuration, bool snapStartValue, const MethodInfo_2A8F800* method_2A8F800);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Vector3__object__Vector3ArrayOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_Vector3__object__Vector3ArrayOptions__o* __this, Il2CppObject* newEndValue, float newDuration, bool snapStartValue, const MethodInfo_2A90F00* method_2A90F00);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* __this, Il2CppObject* newEndValue, float newDuration, bool snapStartValue, const MethodInfo_2245A10* method_2245A10);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Vector3__Vector3__SpiralOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_Vector3__Vector3__SpiralOptions__o* __this, Il2CppObject* newEndValue, float newDuration, bool snapStartValue, const MethodInfo_2247080* method_2247080);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Vector4__Vector4__VectorOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_Vector4__Vector4__VectorOptions__o* __this, Il2CppObject* newEndValue, float newDuration, bool snapStartValue, const MethodInfo_2248790* method_2248790);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Color2__Color2__ColorOptions___ChangeValues (DG_Tweening_Core_TweenerCore_Color2__Color2__ColorOptions__o* __this, Il2CppObject* newStartValue, Il2CppObject* newEndValue, float newDuration, const MethodInfo_2A7C210* method_2A7C210);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_double__double__NoOptions___ChangeValues (DG_Tweening_Core_TweenerCore_double__double__NoOptions__o* __this, Il2CppObject* newStartValue, Il2CppObject* newEndValue, float newDuration, const MethodInfo_2A7D9A0* method_2A7D9A0);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_int__int__NoOptions___ChangeValues (DG_Tweening_Core_TweenerCore_int__int__NoOptions__o* __this, Il2CppObject* newStartValue, Il2CppObject* newEndValue, float newDuration, const MethodInfo_2A7EFA0* method_2A7EFA0);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_long__long__NoOptions___ChangeValues (DG_Tweening_Core_TweenerCore_long__long__NoOptions__o* __this, Il2CppObject* newStartValue, Il2CppObject* newEndValue, float newDuration, const MethodInfo_2A805B0* method_2A805B0);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_object__object__NoOptions___ChangeValues (DG_Tweening_Core_TweenerCore_object__object__NoOptions__o* __this, Il2CppObject* newStartValue, Il2CppObject* newEndValue, float newDuration, const MethodInfo_2A81BB0* method_2A81BB0);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_object__object__StringOptions___ChangeValues (DG_Tweening_Core_TweenerCore_object__object__StringOptions__o* __this, Il2CppObject* newStartValue, Il2CppObject* newEndValue, float newDuration, const MethodInfo_2A831B0* method_2A831B0);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_float__float__FloatOptions___ChangeValues (DG_Tweening_Core_TweenerCore_float__float__FloatOptions__o* __this, Il2CppObject* newStartValue, Il2CppObject* newEndValue, float newDuration, const MethodInfo_2A84810* method_2A84810);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_uint__uint__UintOptions___ChangeValues (DG_Tweening_Core_TweenerCore_uint__uint__UintOptions__o* __this, Il2CppObject* newStartValue, Il2CppObject* newEndValue, float newDuration, const MethodInfo_2A85E10* method_2A85E10);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_ulong__ulong__NoOptions___ChangeValues (DG_Tweening_Core_TweenerCore_ulong__ulong__NoOptions__o* __this, Il2CppObject* newStartValue, Il2CppObject* newEndValue, float newDuration, const MethodInfo_2A87420* method_2A87420);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions___ChangeValues (DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions__o* __this, Il2CppObject* newStartValue, Il2CppObject* newEndValue, float newDuration, const MethodInfo_2A88A30* method_2A88A30);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Quaternion__Quaternion__NoOptions___ChangeValues (DG_Tweening_Core_TweenerCore_Quaternion__Quaternion__NoOptions__o* __this, Il2CppObject* newStartValue, Il2CppObject* newEndValue, float newDuration, const MethodInfo_2A8A110* method_2A8A110);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions___ChangeValues (DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions__o* __this, Il2CppObject* newStartValue, Il2CppObject* newEndValue, float newDuration, const MethodInfo_2A8B7F0* method_2A8B7F0);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Rect__Rect__RectOptions___ChangeValues (DG_Tweening_Core_TweenerCore_Rect__Rect__RectOptions__o* __this, Il2CppObject* newStartValue, Il2CppObject* newEndValue, float newDuration, const MethodInfo_2A8CEE0* method_2A8CEE0);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions___ChangeValues (DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions__o* __this, Il2CppObject* newStartValue, Il2CppObject* newEndValue, float newDuration, const MethodInfo_2A8E5C0* method_2A8E5C0);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Vector3__object__PathOptions___ChangeValues (DG_Tweening_Core_TweenerCore_Vector3__object__PathOptions__o* __this, Il2CppObject* newStartValue, Il2CppObject* newEndValue, float newDuration, const MethodInfo_2A8FBF0* method_2A8FBF0);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Vector3__object__Vector3ArrayOptions___ChangeValues (DG_Tweening_Core_TweenerCore_Vector3__object__Vector3ArrayOptions__o* __this, Il2CppObject* newStartValue, Il2CppObject* newEndValue, float newDuration, const MethodInfo_2A912F0* method_2A912F0);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions___ChangeValues (DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* __this, Il2CppObject* newStartValue, Il2CppObject* newEndValue, float newDuration, const MethodInfo_2245E00* method_2245E00);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Vector3__Vector3__SpiralOptions___ChangeValues (DG_Tweening_Core_TweenerCore_Vector3__Vector3__SpiralOptions__o* __this, Il2CppObject* newStartValue, Il2CppObject* newEndValue, float newDuration, const MethodInfo_2247470* method_2247470);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Vector4__Vector4__VectorOptions___ChangeValues (DG_Tweening_Core_TweenerCore_Vector4__Vector4__VectorOptions__o* __this, Il2CppObject* newStartValue, Il2CppObject* newEndValue, float newDuration, const MethodInfo_2248B80* method_2248B80);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_Color2__Color2__ColorOptions___ChangeStartValue (DG_Tweening_Core_TweenerCore_Color2__Color2__ColorOptions__o* __this, DG_Tweening_Color2_o newStartValue, float newDuration, const MethodInfo_2A7C820* method_2A7C820);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_double__double__NoOptions___ChangeStartValue (DG_Tweening_Core_TweenerCore_double__double__NoOptions__o* __this, double newStartValue, float newDuration, const MethodInfo_2A7DFB0* method_2A7DFB0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_int__int__NoOptions___ChangeStartValue (DG_Tweening_Core_TweenerCore_int__int__NoOptions__o* __this, int32_t newStartValue, float newDuration, const MethodInfo_2A7F5A0* method_2A7F5A0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_long__long__NoOptions___ChangeStartValue (DG_Tweening_Core_TweenerCore_long__long__NoOptions__o* __this, int64_t newStartValue, float newDuration, const MethodInfo_2A80BB0* method_2A80BB0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_object__object__NoOptions___ChangeStartValue (DG_Tweening_Core_TweenerCore_object__object__NoOptions__o* __this, Il2CppObject* newStartValue, float newDuration, const MethodInfo_2A821B0* method_2A821B0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_object__object__StringOptions___ChangeStartValue (DG_Tweening_Core_TweenerCore_object__object__StringOptions__o* __this, Il2CppObject* newStartValue, float newDuration, const MethodInfo_2A837B0* method_2A837B0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_float__float__FloatOptions___ChangeStartValue (DG_Tweening_Core_TweenerCore_float__float__FloatOptions__o* __this, float newStartValue, float newDuration, const MethodInfo_2A84E20* method_2A84E20);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_uint__uint__UintOptions___ChangeStartValue (DG_Tweening_Core_TweenerCore_uint__uint__UintOptions__o* __this, uint32_t newStartValue, float newDuration, const MethodInfo_2A86410* method_2A86410);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_ulong__ulong__NoOptions___ChangeStartValue (DG_Tweening_Core_TweenerCore_ulong__ulong__NoOptions__o* __this, uint64_t newStartValue, float newDuration, const MethodInfo_2A87A20* method_2A87A20);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions___ChangeStartValue (DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions__o* __this, UnityEngine_Color_o newStartValue, float newDuration, const MethodInfo_2A89040* method_2A89040);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_Quaternion__Quaternion__NoOptions___ChangeStartValue (DG_Tweening_Core_TweenerCore_Quaternion__Quaternion__NoOptions__o* __this, UnityEngine_Quaternion_o newStartValue, float newDuration, const MethodInfo_2A8A720* method_2A8A720);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions___ChangeStartValue (DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions__o* __this, UnityEngine_Vector3_o newStartValue, float newDuration, const MethodInfo_2A8BE10* method_2A8BE10);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_Rect__Rect__RectOptions___ChangeStartValue (DG_Tweening_Core_TweenerCore_Rect__Rect__RectOptions__o* __this, UnityEngine_Rect_o newStartValue, float newDuration, const MethodInfo_2A8D4F0* method_2A8D4F0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions___ChangeStartValue (DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions__o* __this, UnityEngine_Vector2_o newStartValue, float newDuration, const MethodInfo_2A8EBD0* method_2A8EBD0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_Vector3__object__PathOptions___ChangeStartValue (DG_Tweening_Core_TweenerCore_Vector3__object__PathOptions__o* __this, Il2CppObject* newStartValue, float newDuration, const MethodInfo_2A901F0* method_2A901F0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_Vector3__object__Vector3ArrayOptions___ChangeStartValue (DG_Tweening_Core_TweenerCore_Vector3__object__Vector3ArrayOptions__o* __this, Il2CppObject* newStartValue, float newDuration, const MethodInfo_2A918F0* method_2A918F0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions___ChangeStartValue (DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* __this, UnityEngine_Vector3_o newStartValue, float newDuration, const MethodInfo_2246420* method_2246420);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_Vector3__Vector3__SpiralOptions___ChangeStartValue (DG_Tweening_Core_TweenerCore_Vector3__Vector3__SpiralOptions__o* __this, UnityEngine_Vector3_o newStartValue, float newDuration, const MethodInfo_2247A90* method_2247A90);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_Vector4__Vector4__VectorOptions___ChangeStartValue (DG_Tweening_Core_TweenerCore_Vector4__Vector4__VectorOptions__o* __this, UnityEngine_Vector4_o newStartValue, float newDuration, const MethodInfo_2249190* method_2249190);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_Color2__Color2__ColorOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_Color2__Color2__ColorOptions__o* __this, DG_Tweening_Color2_o newEndValue, bool snapStartValue, const MethodInfo_2A7C930* method_2A7C930);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_double__double__NoOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_double__double__NoOptions__o* __this, double newEndValue, bool snapStartValue, const MethodInfo_2A7E0B0* method_2A7E0B0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_int__int__NoOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_int__int__NoOptions__o* __this, int32_t newEndValue, bool snapStartValue, const MethodInfo_2A7F6A0* method_2A7F6A0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_long__long__NoOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_long__long__NoOptions__o* __this, int64_t newEndValue, bool snapStartValue, const MethodInfo_2A80CB0* method_2A80CB0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_object__object__NoOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_object__object__NoOptions__o* __this, Il2CppObject* newEndValue, bool snapStartValue, const MethodInfo_2A822B0* method_2A822B0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_object__object__StringOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_object__object__StringOptions__o* __this, Il2CppObject* newEndValue, bool snapStartValue, const MethodInfo_2A838B0* method_2A838B0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_float__float__FloatOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_float__float__FloatOptions__o* __this, float newEndValue, bool snapStartValue, const MethodInfo_2A84F20* method_2A84F20);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_uint__uint__UintOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_uint__uint__UintOptions__o* __this, uint32_t newEndValue, bool snapStartValue, const MethodInfo_2A86510* method_2A86510);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_ulong__ulong__NoOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_ulong__ulong__NoOptions__o* __this, uint64_t newEndValue, bool snapStartValue, const MethodInfo_2A87B20* method_2A87B20);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions__o* __this, UnityEngine_Color_o newEndValue, bool snapStartValue, const MethodInfo_2A89170* method_2A89170);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_Quaternion__Quaternion__NoOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_Quaternion__Quaternion__NoOptions__o* __this, UnityEngine_Quaternion_o newEndValue, bool snapStartValue, const MethodInfo_2A8A850* method_2A8A850);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions__o* __this, UnityEngine_Vector3_o newEndValue, bool snapStartValue, const MethodInfo_2A8BF20* method_2A8BF20);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_Rect__Rect__RectOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_Rect__Rect__RectOptions__o* __this, UnityEngine_Rect_o newEndValue, bool snapStartValue, const MethodInfo_2A8D620* method_2A8D620);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions__o* __this, UnityEngine_Vector2_o newEndValue, bool snapStartValue, const MethodInfo_2A8ECE0* method_2A8ECE0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_Vector3__object__PathOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_Vector3__object__PathOptions__o* __this, Il2CppObject* newEndValue, bool snapStartValue, const MethodInfo_2A902F0* method_2A902F0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_Vector3__object__Vector3ArrayOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_Vector3__object__Vector3ArrayOptions__o* __this, Il2CppObject* newEndValue, bool snapStartValue, const MethodInfo_2A919F0* method_2A919F0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* __this, UnityEngine_Vector3_o newEndValue, bool snapStartValue, const MethodInfo_2246530* method_2246530);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_Vector3__Vector3__SpiralOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_Vector3__Vector3__SpiralOptions__o* __this, UnityEngine_Vector3_o newEndValue, bool snapStartValue, const MethodInfo_2247BA0* method_2247BA0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_Vector4__Vector4__VectorOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_Vector4__Vector4__VectorOptions__o* __this, UnityEngine_Vector4_o newEndValue, bool snapStartValue, const MethodInfo_22492C0* method_22492C0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_Color2__Color2__ColorOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_Color2__Color2__ColorOptions__o* __this, DG_Tweening_Color2_o newEndValue, float newDuration, bool snapStartValue, const MethodInfo_2A7C990* method_2A7C990);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_double__double__NoOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_double__double__NoOptions__o* __this, double newEndValue, float newDuration, bool snapStartValue, const MethodInfo_2A7E0D0* method_2A7E0D0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_int__int__NoOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_int__int__NoOptions__o* __this, int32_t newEndValue, float newDuration, bool snapStartValue, const MethodInfo_2A7F6C0* method_2A7F6C0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_long__long__NoOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_long__long__NoOptions__o* __this, int64_t newEndValue, float newDuration, bool snapStartValue, const MethodInfo_2A80CD0* method_2A80CD0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_object__object__NoOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_object__object__NoOptions__o* __this, Il2CppObject* newEndValue, float newDuration, bool snapStartValue, const MethodInfo_2A822D0* method_2A822D0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_object__object__StringOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_object__object__StringOptions__o* __this, Il2CppObject* newEndValue, float newDuration, bool snapStartValue, const MethodInfo_2A838D0* method_2A838D0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_float__float__FloatOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_float__float__FloatOptions__o* __this, float newEndValue, float newDuration, bool snapStartValue, const MethodInfo_2A84F40* method_2A84F40);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_uint__uint__UintOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_uint__uint__UintOptions__o* __this, uint32_t newEndValue, float newDuration, bool snapStartValue, const MethodInfo_2A86530* method_2A86530);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_ulong__ulong__NoOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_ulong__ulong__NoOptions__o* __this, uint64_t newEndValue, float newDuration, bool snapStartValue, const MethodInfo_2A87B40* method_2A87B40);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions__o* __this, UnityEngine_Color_o newEndValue, float newDuration, bool snapStartValue, const MethodInfo_2A89190* method_2A89190);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_Quaternion__Quaternion__NoOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_Quaternion__Quaternion__NoOptions__o* __this, UnityEngine_Quaternion_o newEndValue, float newDuration, bool snapStartValue, const MethodInfo_2A8A870* method_2A8A870);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions__o* __this, UnityEngine_Vector3_o newEndValue, float newDuration, bool snapStartValue, const MethodInfo_2A8BF40* method_2A8BF40);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_Rect__Rect__RectOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_Rect__Rect__RectOptions__o* __this, UnityEngine_Rect_o newEndValue, float newDuration, bool snapStartValue, const MethodInfo_2A8D640* method_2A8D640);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions__o* __this, UnityEngine_Vector2_o newEndValue, float newDuration, bool snapStartValue, const MethodInfo_2A8ED00* method_2A8ED00);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_Vector3__object__PathOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_Vector3__object__PathOptions__o* __this, Il2CppObject* newEndValue, float newDuration, bool snapStartValue, const MethodInfo_2A90310* method_2A90310);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_Vector3__object__Vector3ArrayOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_Vector3__object__Vector3ArrayOptions__o* __this, Il2CppObject* newEndValue, float newDuration, bool snapStartValue, const MethodInfo_2A91A10* method_2A91A10);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* __this, UnityEngine_Vector3_o newEndValue, float newDuration, bool snapStartValue, const MethodInfo_2246550* method_2246550);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_Vector3__Vector3__SpiralOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_Vector3__Vector3__SpiralOptions__o* __this, UnityEngine_Vector3_o newEndValue, float newDuration, bool snapStartValue, const MethodInfo_2247BC0* method_2247BC0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_Vector4__Vector4__VectorOptions___ChangeEndValue (DG_Tweening_Core_TweenerCore_Vector4__Vector4__VectorOptions__o* __this, UnityEngine_Vector4_o newEndValue, float newDuration, bool snapStartValue, const MethodInfo_22492E0* method_22492E0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_Color2__Color2__ColorOptions___ChangeValues (DG_Tweening_Core_TweenerCore_Color2__Color2__ColorOptions__o* __this, DG_Tweening_Color2_o newStartValue, DG_Tweening_Color2_o newEndValue, float newDuration, const MethodInfo_2A7CAB0* method_2A7CAB0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_double__double__NoOptions___ChangeValues (DG_Tweening_Core_TweenerCore_double__double__NoOptions__o* __this, double newStartValue, double newEndValue, float newDuration, const MethodInfo_2A7E1D0* method_2A7E1D0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_int__int__NoOptions___ChangeValues (DG_Tweening_Core_TweenerCore_int__int__NoOptions__o* __this, int32_t newStartValue, int32_t newEndValue, float newDuration, const MethodInfo_2A7F7D0* method_2A7F7D0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_long__long__NoOptions___ChangeValues (DG_Tweening_Core_TweenerCore_long__long__NoOptions__o* __this, int64_t newStartValue, int64_t newEndValue, float newDuration, const MethodInfo_2A80DE0* method_2A80DE0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_object__object__NoOptions___ChangeValues (DG_Tweening_Core_TweenerCore_object__object__NoOptions__o* __this, Il2CppObject* newStartValue, Il2CppObject* newEndValue, float newDuration, const MethodInfo_2A823E0* method_2A823E0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_object__object__StringOptions___ChangeValues (DG_Tweening_Core_TweenerCore_object__object__StringOptions__o* __this, Il2CppObject* newStartValue, Il2CppObject* newEndValue, float newDuration, const MethodInfo_2A839E0* method_2A839E0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_float__float__FloatOptions___ChangeValues (DG_Tweening_Core_TweenerCore_float__float__FloatOptions__o* __this, float newStartValue, float newEndValue, float newDuration, const MethodInfo_2A85040* method_2A85040);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_uint__uint__UintOptions___ChangeValues (DG_Tweening_Core_TweenerCore_uint__uint__UintOptions__o* __this, uint32_t newStartValue, uint32_t newEndValue, float newDuration, const MethodInfo_2A86640* method_2A86640);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_ulong__ulong__NoOptions___ChangeValues (DG_Tweening_Core_TweenerCore_ulong__ulong__NoOptions__o* __this, uint64_t newStartValue, uint64_t newEndValue, float newDuration, const MethodInfo_2A87C50* method_2A87C50);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions___ChangeValues (DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions__o* __this, UnityEngine_Color_o newStartValue, UnityEngine_Color_o newEndValue, float newDuration, const MethodInfo_2A892C0* method_2A892C0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_Quaternion__Quaternion__NoOptions___ChangeValues (DG_Tweening_Core_TweenerCore_Quaternion__Quaternion__NoOptions__o* __this, UnityEngine_Quaternion_o newStartValue, UnityEngine_Quaternion_o newEndValue, float newDuration, const MethodInfo_2A8A9A0* method_2A8A9A0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions___ChangeValues (DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions__o* __this, UnityEngine_Vector3_o newStartValue, UnityEngine_Vector3_o newEndValue, float newDuration, const MethodInfo_2A8C060* method_2A8C060);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_Rect__Rect__RectOptions___ChangeValues (DG_Tweening_Core_TweenerCore_Rect__Rect__RectOptions__o* __this, UnityEngine_Rect_o newStartValue, UnityEngine_Rect_o newEndValue, float newDuration, const MethodInfo_2A8D770* method_2A8D770);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions___ChangeValues (DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions__o* __this, UnityEngine_Vector2_o newStartValue, UnityEngine_Vector2_o newEndValue, float newDuration, const MethodInfo_2A8EE10* method_2A8EE10);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_Vector3__object__PathOptions___ChangeValues (DG_Tweening_Core_TweenerCore_Vector3__object__PathOptions__o* __this, Il2CppObject* newStartValue, Il2CppObject* newEndValue, float newDuration, const MethodInfo_2A90420* method_2A90420);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_Vector3__object__Vector3ArrayOptions___ChangeValues (DG_Tweening_Core_TweenerCore_Vector3__object__Vector3ArrayOptions__o* __this, Il2CppObject* newStartValue, Il2CppObject* newEndValue, float newDuration, const MethodInfo_2A91B20* method_2A91B20);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions___ChangeValues (DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* __this, UnityEngine_Vector3_o newStartValue, UnityEngine_Vector3_o newEndValue, float newDuration, const MethodInfo_2246670* method_2246670);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_Vector3__Vector3__SpiralOptions___ChangeValues (DG_Tweening_Core_TweenerCore_Vector3__Vector3__SpiralOptions__o* __this, UnityEngine_Vector3_o newStartValue, UnityEngine_Vector3_o newEndValue, float newDuration, const MethodInfo_2247CE0* method_2247CE0);
DG_Tweening_Core_TweenerCore_T1__T2__TPlugOptions__o* DG_Tweening_Core_TweenerCore_Vector4__Vector4__VectorOptions___ChangeValues (DG_Tweening_Core_TweenerCore_Vector4__Vector4__VectorOptions__o* __this, UnityEngine_Vector4_o newStartValue, UnityEngine_Vector4_o newEndValue, float newDuration, const MethodInfo_2249410* method_2249410);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Color2__Color2__ColorOptions___SetFrom (DG_Tweening_Core_TweenerCore_Color2__Color2__ColorOptions__o* __this, bool relative, const MethodInfo_2A7CC00* method_2A7CC00);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_double__double__NoOptions___SetFrom (DG_Tweening_Core_TweenerCore_double__double__NoOptions__o* __this, bool relative, const MethodInfo_2A7E2E0* method_2A7E2E0);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_int__int__NoOptions___SetFrom (DG_Tweening_Core_TweenerCore_int__int__NoOptions__o* __this, bool relative, const MethodInfo_2A7F8E0* method_2A7F8E0);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_long__long__NoOptions___SetFrom (DG_Tweening_Core_TweenerCore_long__long__NoOptions__o* __this, bool relative, const MethodInfo_2A80EF0* method_2A80EF0);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_object__object__NoOptions___SetFrom (DG_Tweening_Core_TweenerCore_object__object__NoOptions__o* __this, bool relative, const MethodInfo_2A824F0* method_2A824F0);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_object__object__StringOptions___SetFrom (DG_Tweening_Core_TweenerCore_object__object__StringOptions__o* __this, bool relative, const MethodInfo_2A83AF0* method_2A83AF0);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_float__float__FloatOptions___SetFrom (DG_Tweening_Core_TweenerCore_float__float__FloatOptions__o* __this, bool relative, const MethodInfo_2A85150* method_2A85150);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_uint__uint__UintOptions___SetFrom (DG_Tweening_Core_TweenerCore_uint__uint__UintOptions__o* __this, bool relative, const MethodInfo_2A86750* method_2A86750);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_ulong__ulong__NoOptions___SetFrom (DG_Tweening_Core_TweenerCore_ulong__ulong__NoOptions__o* __this, bool relative, const MethodInfo_2A87D60* method_2A87D60);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions___SetFrom (DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions__o* __this, bool relative, const MethodInfo_2A89420* method_2A89420);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Quaternion__Quaternion__NoOptions___SetFrom (DG_Tweening_Core_TweenerCore_Quaternion__Quaternion__NoOptions__o* __this, bool relative, const MethodInfo_2A8AB00* method_2A8AB00);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions___SetFrom (DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions__o* __this, bool relative, const MethodInfo_2A8C1A0* method_2A8C1A0);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Rect__Rect__RectOptions___SetFrom (DG_Tweening_Core_TweenerCore_Rect__Rect__RectOptions__o* __this, bool relative, const MethodInfo_2A8D8D0* method_2A8D8D0);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions___SetFrom (DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions__o* __this, bool relative, const MethodInfo_2A8EF40* method_2A8EF40);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Vector3__object__PathOptions___SetFrom (DG_Tweening_Core_TweenerCore_Vector3__object__PathOptions__o* __this, bool relative, const MethodInfo_2A90530* method_2A90530);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Vector3__object__Vector3ArrayOptions___SetFrom (DG_Tweening_Core_TweenerCore_Vector3__object__Vector3ArrayOptions__o* __this, bool relative, const MethodInfo_2A91C30* method_2A91C30);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions___SetFrom (DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* __this, bool relative, const MethodInfo_22467B0* method_22467B0);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Vector3__Vector3__SpiralOptions___SetFrom (DG_Tweening_Core_TweenerCore_Vector3__Vector3__SpiralOptions__o* __this, bool relative, const MethodInfo_2247E20* method_2247E20);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Vector4__Vector4__VectorOptions___SetFrom (DG_Tweening_Core_TweenerCore_Vector4__Vector4__VectorOptions__o* __this, bool relative, const MethodInfo_2249570* method_2249570);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Color2__Color2__ColorOptions___SetFrom (DG_Tweening_Core_TweenerCore_Color2__Color2__ColorOptions__o* __this, DG_Tweening_Color2_o fromValue, bool setImmediately, const MethodInfo_2A7CC40* method_2A7CC40);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_double__double__NoOptions___SetFrom (DG_Tweening_Core_TweenerCore_double__double__NoOptions__o* __this, double fromValue, bool setImmediately, const MethodInfo_2A7E320* method_2A7E320);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_int__int__NoOptions___SetFrom (DG_Tweening_Core_TweenerCore_int__int__NoOptions__o* __this, int32_t fromValue, bool setImmediately, const MethodInfo_2A7F920* method_2A7F920);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_long__long__NoOptions___SetFrom (DG_Tweening_Core_TweenerCore_long__long__NoOptions__o* __this, int64_t fromValue, bool setImmediately, const MethodInfo_2A80F30* method_2A80F30);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_object__object__NoOptions___SetFrom (DG_Tweening_Core_TweenerCore_object__object__NoOptions__o* __this, Il2CppObject* fromValue, bool setImmediately, const MethodInfo_2A82530* method_2A82530);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_object__object__StringOptions___SetFrom (DG_Tweening_Core_TweenerCore_object__object__StringOptions__o* __this, Il2CppObject* fromValue, bool setImmediately, const MethodInfo_2A83B30* method_2A83B30);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_float__float__FloatOptions___SetFrom (DG_Tweening_Core_TweenerCore_float__float__FloatOptions__o* __this, float fromValue, bool setImmediately, const MethodInfo_2A85190* method_2A85190);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_uint__uint__UintOptions___SetFrom (DG_Tweening_Core_TweenerCore_uint__uint__UintOptions__o* __this, uint32_t fromValue, bool setImmediately, const MethodInfo_2A86790* method_2A86790);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_ulong__ulong__NoOptions___SetFrom (DG_Tweening_Core_TweenerCore_ulong__ulong__NoOptions__o* __this, uint64_t fromValue, bool setImmediately, const MethodInfo_2A87DA0* method_2A87DA0);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions___SetFrom (DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions__o* __this, UnityEngine_Color_o fromValue, bool setImmediately, const MethodInfo_2A89460* method_2A89460);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Quaternion__Quaternion__NoOptions___SetFrom (DG_Tweening_Core_TweenerCore_Quaternion__Quaternion__NoOptions__o* __this, UnityEngine_Quaternion_o fromValue, bool setImmediately, const MethodInfo_2A8AB40* method_2A8AB40);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions___SetFrom (DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions__o* __this, UnityEngine_Vector3_o fromValue, bool setImmediately, const MethodInfo_2A8C1E0* method_2A8C1E0);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Rect__Rect__RectOptions___SetFrom (DG_Tweening_Core_TweenerCore_Rect__Rect__RectOptions__o* __this, UnityEngine_Rect_o fromValue, bool setImmediately, const MethodInfo_2A8D910* method_2A8D910);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions___SetFrom (DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions__o* __this, UnityEngine_Vector2_o fromValue, bool setImmediately, const MethodInfo_2A8EF80* method_2A8EF80);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Vector3__object__PathOptions___SetFrom (DG_Tweening_Core_TweenerCore_Vector3__object__PathOptions__o* __this, Il2CppObject* fromValue, bool setImmediately, const MethodInfo_2A90570* method_2A90570);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Vector3__object__Vector3ArrayOptions___SetFrom (DG_Tweening_Core_TweenerCore_Vector3__object__Vector3ArrayOptions__o* __this, Il2CppObject* fromValue, bool setImmediately, const MethodInfo_2A91C70* method_2A91C70);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions___SetFrom (DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* __this, UnityEngine_Vector3_o fromValue, bool setImmediately, const MethodInfo_22467F0* method_22467F0);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Vector3__Vector3__SpiralOptions___SetFrom (DG_Tweening_Core_TweenerCore_Vector3__Vector3__SpiralOptions__o* __this, UnityEngine_Vector3_o fromValue, bool setImmediately, const MethodInfo_2247E60* method_2247E60);
DG_Tweening_Tweener_o* DG_Tweening_Core_TweenerCore_Vector4__Vector4__VectorOptions___SetFrom (DG_Tweening_Core_TweenerCore_Vector4__Vector4__VectorOptions__o* __this, UnityEngine_Vector4_o fromValue, bool setImmediately, const MethodInfo_22495B0* method_22495B0);
void DG_Tweening_Core_TweenerCore_Color2__Color2__ColorOptions___Reset (DG_Tweening_Core_TweenerCore_Color2__Color2__ColorOptions__o* __this, const MethodInfo_2A7CCB0* method_2A7CCB0);
void DG_Tweening_Core_TweenerCore_double__double__NoOptions___Reset (DG_Tweening_Core_TweenerCore_double__double__NoOptions__o* __this, const MethodInfo_2A7E360* method_2A7E360);
void DG_Tweening_Core_TweenerCore_int__int__NoOptions___Reset (DG_Tweening_Core_TweenerCore_int__int__NoOptions__o* __this, const MethodInfo_2A7F970* method_2A7F970);
void DG_Tweening_Core_TweenerCore_long__long__NoOptions___Reset (DG_Tweening_Core_TweenerCore_long__long__NoOptions__o* __this, const MethodInfo_2A80F80* method_2A80F80);
void DG_Tweening_Core_TweenerCore_object__object__NoOptions___Reset (DG_Tweening_Core_TweenerCore_object__object__NoOptions__o* __this, const MethodInfo_2A82580* method_2A82580);
void DG_Tweening_Core_TweenerCore_object__object__StringOptions___Reset (DG_Tweening_Core_TweenerCore_object__object__StringOptions__o* __this, const MethodInfo_2A83B80* method_2A83B80);
void DG_Tweening_Core_TweenerCore_float__float__FloatOptions___Reset (DG_Tweening_Core_TweenerCore_float__float__FloatOptions__o* __this, const MethodInfo_2A851D0* method_2A851D0);
void DG_Tweening_Core_TweenerCore_uint__uint__UintOptions___Reset (DG_Tweening_Core_TweenerCore_uint__uint__UintOptions__o* __this, const MethodInfo_2A867E0* method_2A867E0);
void DG_Tweening_Core_TweenerCore_ulong__ulong__NoOptions___Reset (DG_Tweening_Core_TweenerCore_ulong__ulong__NoOptions__o* __this, const MethodInfo_2A87DF0* method_2A87DF0);
void DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions___Reset (DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions__o* __this, const MethodInfo_2A894A0* method_2A894A0);
void DG_Tweening_Core_TweenerCore_Quaternion__Quaternion__NoOptions___Reset (DG_Tweening_Core_TweenerCore_Quaternion__Quaternion__NoOptions__o* __this, const MethodInfo_2A8AB80* method_2A8AB80);
void DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions___Reset (DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions__o* __this, const MethodInfo_2A8C220* method_2A8C220);
void DG_Tweening_Core_TweenerCore_Rect__Rect__RectOptions___Reset (DG_Tweening_Core_TweenerCore_Rect__Rect__RectOptions__o* __this, const MethodInfo_2A8D950* method_2A8D950);
void DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions___Reset (DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions__o* __this, const MethodInfo_2A8EFC0* method_2A8EFC0);
void DG_Tweening_Core_TweenerCore_Vector3__object__PathOptions___Reset (DG_Tweening_Core_TweenerCore_Vector3__object__PathOptions__o* __this, const MethodInfo_2A905C0* method_2A905C0);
void DG_Tweening_Core_TweenerCore_Vector3__object__Vector3ArrayOptions___Reset (DG_Tweening_Core_TweenerCore_Vector3__object__Vector3ArrayOptions__o* __this, const MethodInfo_2A91CC0* method_2A91CC0);
void DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions___Reset (DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* __this, const MethodInfo_2246830* method_2246830);
void DG_Tweening_Core_TweenerCore_Vector3__Vector3__SpiralOptions___Reset (DG_Tweening_Core_TweenerCore_Vector3__Vector3__SpiralOptions__o* __this, const MethodInfo_2247EA0* method_2247EA0);
void DG_Tweening_Core_TweenerCore_Vector4__Vector4__VectorOptions___Reset (DG_Tweening_Core_TweenerCore_Vector4__Vector4__VectorOptions__o* __this, const MethodInfo_22495F0* method_22495F0);
bool DG_Tweening_Core_TweenerCore_Color2__Color2__ColorOptions___Validate (DG_Tweening_Core_TweenerCore_Color2__Color2__ColorOptions__o* __this, const MethodInfo_2A7CD20* method_2A7CD20);
bool DG_Tweening_Core_TweenerCore_double__double__NoOptions___Validate (DG_Tweening_Core_TweenerCore_double__double__NoOptions__o* __this, const MethodInfo_2A7E3D0* method_2A7E3D0);
bool DG_Tweening_Core_TweenerCore_int__int__NoOptions___Validate (DG_Tweening_Core_TweenerCore_int__int__NoOptions__o* __this, const MethodInfo_2A7F9E0* method_2A7F9E0);
bool DG_Tweening_Core_TweenerCore_long__long__NoOptions___Validate (DG_Tweening_Core_TweenerCore_long__long__NoOptions__o* __this, const MethodInfo_2A80FF0* method_2A80FF0);
bool DG_Tweening_Core_TweenerCore_object__object__NoOptions___Validate (DG_Tweening_Core_TweenerCore_object__object__NoOptions__o* __this, const MethodInfo_2A825F0* method_2A825F0);
bool DG_Tweening_Core_TweenerCore_object__object__StringOptions___Validate (DG_Tweening_Core_TweenerCore_object__object__StringOptions__o* __this, const MethodInfo_2A83BF0* method_2A83BF0);
bool DG_Tweening_Core_TweenerCore_float__float__FloatOptions___Validate (DG_Tweening_Core_TweenerCore_float__float__FloatOptions__o* __this, const MethodInfo_2A85240* method_2A85240);
bool DG_Tweening_Core_TweenerCore_uint__uint__UintOptions___Validate (DG_Tweening_Core_TweenerCore_uint__uint__UintOptions__o* __this, const MethodInfo_2A86850* method_2A86850);
bool DG_Tweening_Core_TweenerCore_ulong__ulong__NoOptions___Validate (DG_Tweening_Core_TweenerCore_ulong__ulong__NoOptions__o* __this, const MethodInfo_2A87E60* method_2A87E60);
bool DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions___Validate (DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions__o* __this, const MethodInfo_2A89510* method_2A89510);
bool DG_Tweening_Core_TweenerCore_Quaternion__Quaternion__NoOptions___Validate (DG_Tweening_Core_TweenerCore_Quaternion__Quaternion__NoOptions__o* __this, const MethodInfo_2A8ABF0* method_2A8ABF0);
bool DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions___Validate (DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions__o* __this, const MethodInfo_2A8C290* method_2A8C290);
bool DG_Tweening_Core_TweenerCore_Rect__Rect__RectOptions___Validate (DG_Tweening_Core_TweenerCore_Rect__Rect__RectOptions__o* __this, const MethodInfo_2A8D9C0* method_2A8D9C0);
bool DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions___Validate (DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions__o* __this, const MethodInfo_2A8F030* method_2A8F030);
bool DG_Tweening_Core_TweenerCore_Vector3__object__PathOptions___Validate (DG_Tweening_Core_TweenerCore_Vector3__object__PathOptions__o* __this, const MethodInfo_2A90630* method_2A90630);
bool DG_Tweening_Core_TweenerCore_Vector3__object__Vector3ArrayOptions___Validate (DG_Tweening_Core_TweenerCore_Vector3__object__Vector3ArrayOptions__o* __this, const MethodInfo_2A91D30* method_2A91D30);
bool DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions___Validate (DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* __this, const MethodInfo_22468A0* method_22468A0);
bool DG_Tweening_Core_TweenerCore_Vector3__Vector3__SpiralOptions___Validate (DG_Tweening_Core_TweenerCore_Vector3__Vector3__SpiralOptions__o* __this, const MethodInfo_2247F10* method_2247F10);
bool DG_Tweening_Core_TweenerCore_Vector4__Vector4__VectorOptions___Validate (DG_Tweening_Core_TweenerCore_Vector4__Vector4__VectorOptions__o* __this, const MethodInfo_2249660* method_2249660);
float DG_Tweening_Core_TweenerCore_Color2__Color2__ColorOptions___UpdateDelay (DG_Tweening_Core_TweenerCore_Color2__Color2__ColorOptions__o* __this, float elapsed, const MethodInfo_2A7CE10* method_2A7CE10);
float DG_Tweening_Core_TweenerCore_double__double__NoOptions___UpdateDelay (DG_Tweening_Core_TweenerCore_double__double__NoOptions__o* __this, float elapsed, const MethodInfo_2A7E4C0* method_2A7E4C0);
float DG_Tweening_Core_TweenerCore_int__int__NoOptions___UpdateDelay (DG_Tweening_Core_TweenerCore_int__int__NoOptions__o* __this, float elapsed, const MethodInfo_2A7FAD0* method_2A7FAD0);
float DG_Tweening_Core_TweenerCore_long__long__NoOptions___UpdateDelay (DG_Tweening_Core_TweenerCore_long__long__NoOptions__o* __this, float elapsed, const MethodInfo_2A810E0* method_2A810E0);
float DG_Tweening_Core_TweenerCore_object__object__NoOptions___UpdateDelay (DG_Tweening_Core_TweenerCore_object__object__NoOptions__o* __this, float elapsed, const MethodInfo_2A826E0* method_2A826E0);
float DG_Tweening_Core_TweenerCore_object__object__StringOptions___UpdateDelay (DG_Tweening_Core_TweenerCore_object__object__StringOptions__o* __this, float elapsed, const MethodInfo_2A83CE0* method_2A83CE0);
float DG_Tweening_Core_TweenerCore_float__float__FloatOptions___UpdateDelay (DG_Tweening_Core_TweenerCore_float__float__FloatOptions__o* __this, float elapsed, const MethodInfo_2A85330* method_2A85330);
float DG_Tweening_Core_TweenerCore_uint__uint__UintOptions___UpdateDelay (DG_Tweening_Core_TweenerCore_uint__uint__UintOptions__o* __this, float elapsed, const MethodInfo_2A86940* method_2A86940);
float DG_Tweening_Core_TweenerCore_ulong__ulong__NoOptions___UpdateDelay (DG_Tweening_Core_TweenerCore_ulong__ulong__NoOptions__o* __this, float elapsed, const MethodInfo_2A87F50* method_2A87F50);
float DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions___UpdateDelay (DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions__o* __this, float elapsed, const MethodInfo_2A89600* method_2A89600);
float DG_Tweening_Core_TweenerCore_Quaternion__Quaternion__NoOptions___UpdateDelay (DG_Tweening_Core_TweenerCore_Quaternion__Quaternion__NoOptions__o* __this, float elapsed, const MethodInfo_2A8ACE0* method_2A8ACE0);
float DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions___UpdateDelay (DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions__o* __this, float elapsed, const MethodInfo_2A8C380* method_2A8C380);
float DG_Tweening_Core_TweenerCore_Rect__Rect__RectOptions___UpdateDelay (DG_Tweening_Core_TweenerCore_Rect__Rect__RectOptions__o* __this, float elapsed, const MethodInfo_2A8DAB0* method_2A8DAB0);
float DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions___UpdateDelay (DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions__o* __this, float elapsed, const MethodInfo_2A8F120* method_2A8F120);
float DG_Tweening_Core_TweenerCore_Vector3__object__PathOptions___UpdateDelay (DG_Tweening_Core_TweenerCore_Vector3__object__PathOptions__o* __this, float elapsed, const MethodInfo_2A90720* method_2A90720);
float DG_Tweening_Core_TweenerCore_Vector3__object__Vector3ArrayOptions___UpdateDelay (DG_Tweening_Core_TweenerCore_Vector3__object__Vector3ArrayOptions__o* __this, float elapsed, const MethodInfo_2A91E20* method_2A91E20);
float DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions___UpdateDelay (DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* __this, float elapsed, const MethodInfo_2246990* method_2246990);
float DG_Tweening_Core_TweenerCore_Vector3__Vector3__SpiralOptions___UpdateDelay (DG_Tweening_Core_TweenerCore_Vector3__Vector3__SpiralOptions__o* __this, float elapsed, const MethodInfo_2248000* method_2248000);
float DG_Tweening_Core_TweenerCore_Vector4__Vector4__VectorOptions___UpdateDelay (DG_Tweening_Core_TweenerCore_Vector4__Vector4__VectorOptions__o* __this, float elapsed, const MethodInfo_2249750* method_2249750);
bool DG_Tweening_Core_TweenerCore_Color2__Color2__ColorOptions___Startup (DG_Tweening_Core_TweenerCore_Color2__Color2__ColorOptions__o* __this, const MethodInfo_2A7CE30* method_2A7CE30);
bool DG_Tweening_Core_TweenerCore_double__double__NoOptions___Startup (DG_Tweening_Core_TweenerCore_double__double__NoOptions__o* __this, const MethodInfo_2A7E4E0* method_2A7E4E0);
bool DG_Tweening_Core_TweenerCore_int__int__NoOptions___Startup (DG_Tweening_Core_TweenerCore_int__int__NoOptions__o* __this, const MethodInfo_2A7FAF0* method_2A7FAF0);
bool DG_Tweening_Core_TweenerCore_long__long__NoOptions___Startup (DG_Tweening_Core_TweenerCore_long__long__NoOptions__o* __this, const MethodInfo_2A81100* method_2A81100);
bool DG_Tweening_Core_TweenerCore_object__object__NoOptions___Startup (DG_Tweening_Core_TweenerCore_object__object__NoOptions__o* __this, const MethodInfo_2A82700* method_2A82700);
bool DG_Tweening_Core_TweenerCore_object__object__StringOptions___Startup (DG_Tweening_Core_TweenerCore_object__object__StringOptions__o* __this, const MethodInfo_2A83D00* method_2A83D00);
bool DG_Tweening_Core_TweenerCore_float__float__FloatOptions___Startup (DG_Tweening_Core_TweenerCore_float__float__FloatOptions__o* __this, const MethodInfo_2A85350* method_2A85350);
bool DG_Tweening_Core_TweenerCore_uint__uint__UintOptions___Startup (DG_Tweening_Core_TweenerCore_uint__uint__UintOptions__o* __this, const MethodInfo_2A86960* method_2A86960);
bool DG_Tweening_Core_TweenerCore_ulong__ulong__NoOptions___Startup (DG_Tweening_Core_TweenerCore_ulong__ulong__NoOptions__o* __this, const MethodInfo_2A87F70* method_2A87F70);
bool DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions___Startup (DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions__o* __this, const MethodInfo_2A89620* method_2A89620);
bool DG_Tweening_Core_TweenerCore_Quaternion__Quaternion__NoOptions___Startup (DG_Tweening_Core_TweenerCore_Quaternion__Quaternion__NoOptions__o* __this, const MethodInfo_2A8AD00* method_2A8AD00);
bool DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions___Startup (DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions__o* __this, const MethodInfo_2A8C3A0* method_2A8C3A0);
bool DG_Tweening_Core_TweenerCore_Rect__Rect__RectOptions___Startup (DG_Tweening_Core_TweenerCore_Rect__Rect__RectOptions__o* __this, const MethodInfo_2A8DAD0* method_2A8DAD0);
bool DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions___Startup (DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions__o* __this, const MethodInfo_2A8F140* method_2A8F140);
bool DG_Tweening_Core_TweenerCore_Vector3__object__PathOptions___Startup (DG_Tweening_Core_TweenerCore_Vector3__object__PathOptions__o* __this, const MethodInfo_2A90740* method_2A90740);
bool DG_Tweening_Core_TweenerCore_Vector3__object__Vector3ArrayOptions___Startup (DG_Tweening_Core_TweenerCore_Vector3__object__Vector3ArrayOptions__o* __this, const MethodInfo_2A91E40* method_2A91E40);
bool DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions___Startup (DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* __this, const MethodInfo_22469B0* method_22469B0);
bool DG_Tweening_Core_TweenerCore_Vector3__Vector3__SpiralOptions___Startup (DG_Tweening_Core_TweenerCore_Vector3__Vector3__SpiralOptions__o* __this, const MethodInfo_2248020* method_2248020);
bool DG_Tweening_Core_TweenerCore_Vector4__Vector4__VectorOptions___Startup (DG_Tweening_Core_TweenerCore_Vector4__Vector4__VectorOptions__o* __this, const MethodInfo_2249770* method_2249770);
bool DG_Tweening_Core_TweenerCore_Color2__Color2__ColorOptions___ApplyTween (DG_Tweening_Core_TweenerCore_Color2__Color2__ColorOptions__o* __this, float prevPosition, int32_t prevCompletedLoops, int32_t newCompletedSteps, bool useInversePosition, int32_t updateMode, int32_t updateNotice, const MethodInfo_2A7CE50* method_2A7CE50);
bool DG_Tweening_Core_TweenerCore_double__double__NoOptions___ApplyTween (DG_Tweening_Core_TweenerCore_double__double__NoOptions__o* __this, float prevPosition, int32_t prevCompletedLoops, int32_t newCompletedSteps, bool useInversePosition, int32_t updateMode, int32_t updateNotice, const MethodInfo_2A7E500* method_2A7E500);
bool DG_Tweening_Core_TweenerCore_int__int__NoOptions___ApplyTween (DG_Tweening_Core_TweenerCore_int__int__NoOptions__o* __this, float prevPosition, int32_t prevCompletedLoops, int32_t newCompletedSteps, bool useInversePosition, int32_t updateMode, int32_t updateNotice, const MethodInfo_2A7FB10* method_2A7FB10);
bool DG_Tweening_Core_TweenerCore_long__long__NoOptions___ApplyTween (DG_Tweening_Core_TweenerCore_long__long__NoOptions__o* __this, float prevPosition, int32_t prevCompletedLoops, int32_t newCompletedSteps, bool useInversePosition, int32_t updateMode, int32_t updateNotice, const MethodInfo_2A81120* method_2A81120);
bool DG_Tweening_Core_TweenerCore_object__object__NoOptions___ApplyTween (DG_Tweening_Core_TweenerCore_object__object__NoOptions__o* __this, float prevPosition, int32_t prevCompletedLoops, int32_t newCompletedSteps, bool useInversePosition, int32_t updateMode, int32_t updateNotice, const MethodInfo_2A82720* method_2A82720);
bool DG_Tweening_Core_TweenerCore_object__object__StringOptions___ApplyTween (DG_Tweening_Core_TweenerCore_object__object__StringOptions__o* __this, float prevPosition, int32_t prevCompletedLoops, int32_t newCompletedSteps, bool useInversePosition, int32_t updateMode, int32_t updateNotice, const MethodInfo_2A83D20* method_2A83D20);
bool DG_Tweening_Core_TweenerCore_float__float__FloatOptions___ApplyTween (DG_Tweening_Core_TweenerCore_float__float__FloatOptions__o* __this, float prevPosition, int32_t prevCompletedLoops, int32_t newCompletedSteps, bool useInversePosition, int32_t updateMode, int32_t updateNotice, const MethodInfo_2A85370* method_2A85370);
bool DG_Tweening_Core_TweenerCore_uint__uint__UintOptions___ApplyTween (DG_Tweening_Core_TweenerCore_uint__uint__UintOptions__o* __this, float prevPosition, int32_t prevCompletedLoops, int32_t newCompletedSteps, bool useInversePosition, int32_t updateMode, int32_t updateNotice, const MethodInfo_2A86980* method_2A86980);
bool DG_Tweening_Core_TweenerCore_ulong__ulong__NoOptions___ApplyTween (DG_Tweening_Core_TweenerCore_ulong__ulong__NoOptions__o* __this, float prevPosition, int32_t prevCompletedLoops, int32_t newCompletedSteps, bool useInversePosition, int32_t updateMode, int32_t updateNotice, const MethodInfo_2A87F90* method_2A87F90);
bool DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions___ApplyTween (DG_Tweening_Core_TweenerCore_Color__Color__ColorOptions__o* __this, float prevPosition, int32_t prevCompletedLoops, int32_t newCompletedSteps, bool useInversePosition, int32_t updateMode, int32_t updateNotice, const MethodInfo_2A89640* method_2A89640);
bool DG_Tweening_Core_TweenerCore_Quaternion__Quaternion__NoOptions___ApplyTween (DG_Tweening_Core_TweenerCore_Quaternion__Quaternion__NoOptions__o* __this, float prevPosition, int32_t prevCompletedLoops, int32_t newCompletedSteps, bool useInversePosition, int32_t updateMode, int32_t updateNotice, const MethodInfo_2A8AD20* method_2A8AD20);
bool DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions___ApplyTween (DG_Tweening_Core_TweenerCore_Quaternion__Vector3__QuaternionOptions__o* __this, float prevPosition, int32_t prevCompletedLoops, int32_t newCompletedSteps, bool useInversePosition, int32_t updateMode, int32_t updateNotice, const MethodInfo_2A8C3C0* method_2A8C3C0);
bool DG_Tweening_Core_TweenerCore_Rect__Rect__RectOptions___ApplyTween (DG_Tweening_Core_TweenerCore_Rect__Rect__RectOptions__o* __this, float prevPosition, int32_t prevCompletedLoops, int32_t newCompletedSteps, bool useInversePosition, int32_t updateMode, int32_t updateNotice, const MethodInfo_2A8DAF0* method_2A8DAF0);
bool DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions___ApplyTween (DG_Tweening_Core_TweenerCore_Vector2__Vector2__VectorOptions__o* __this, float prevPosition, int32_t prevCompletedLoops, int32_t newCompletedSteps, bool useInversePosition, int32_t updateMode, int32_t updateNotice, const MethodInfo_2A8F160* method_2A8F160);
bool DG_Tweening_Core_TweenerCore_Vector3__object__PathOptions___ApplyTween (DG_Tweening_Core_TweenerCore_Vector3__object__PathOptions__o* __this, float prevPosition, int32_t prevCompletedLoops, int32_t newCompletedSteps, bool useInversePosition, int32_t updateMode, int32_t updateNotice, const MethodInfo_2A90760* method_2A90760);
bool DG_Tweening_Core_TweenerCore_Vector3__object__Vector3ArrayOptions___ApplyTween (DG_Tweening_Core_TweenerCore_Vector3__object__Vector3ArrayOptions__o* __this, float prevPosition, int32_t prevCompletedLoops, int32_t newCompletedSteps, bool useInversePosition, int32_t updateMode, int32_t updateNotice, const MethodInfo_2A91E60* method_2A91E60);
bool DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions___ApplyTween (DG_Tweening_Core_TweenerCore_Vector3__Vector3__VectorOptions__o* __this, float prevPosition, int32_t prevCompletedLoops, int32_t newCompletedSteps, bool useInversePosition, int32_t updateMode, int32_t updateNotice, const MethodInfo_22469D0* method_22469D0);
bool DG_Tweening_Core_TweenerCore_Vector3__Vector3__SpiralOptions___ApplyTween (DG_Tweening_Core_TweenerCore_Vector3__Vector3__SpiralOptions__o* __this, float prevPosition, int32_t prevCompletedLoops, int32_t newCompletedSteps, bool useInversePosition, int32_t updateMode, int32_t updateNotice, const MethodInfo_2248040* method_2248040);
bool DG_Tweening_Core_TweenerCore_Vector4__Vector4__VectorOptions___ApplyTween (DG_Tweening_Core_TweenerCore_Vector4__Vector4__VectorOptions__o* __this, float prevPosition, int32_t prevCompletedLoops, int32_t newCompletedSteps, bool useInversePosition, int32_t updateMode, int32_t updateNotice, const MethodInfo_2249790* method_2249790);
float DG_Tweening_Core_Easing_Bounce__EaseIn (float time, float duration, float unusedOvershootOrAmplitude, float unusedPeriod, const MethodInfo*);
float DG_Tweening_Core_Easing_Bounce__EaseOut (float time, float duration, float unusedOvershootOrAmplitude, float unusedPeriod, const MethodInfo*);
float DG_Tweening_Core_Easing_Bounce__EaseInOut (float time, float duration, float unusedOvershootOrAmplitude, float unusedPeriod, const MethodInfo*);
float DG_Tweening_Core_Easing_EaseManager__Evaluate (DG_Tweening_Tween_o* t, float time, float duration, float overshootOrAmplitude, float period, const MethodInfo*);
float DG_Tweening_Core_Easing_EaseManager__Evaluate (int32_t easeType, DG_Tweening_EaseFunction_o* customEase, float time, float duration, float overshootOrAmplitude, float period, const MethodInfo*);
DG_Tweening_EaseFunction_o* DG_Tweening_Core_Easing_EaseManager__ToEaseFunction (int32_t ease, const MethodInfo*);
bool DG_Tweening_Core_Easing_EaseManager__IsFlashEase (int32_t ease, const MethodInfo*);
void DG_Tweening_Core_Easing_EaseManager___c___cctor (const MethodInfo*);
void DG_Tweening_Core_Easing_EaseManager___c___ctor (DG_Tweening_Core_Easing_EaseManager___c_o* __this, const MethodInfo*);
float DG_Tweening_Core_Easing_EaseManager___c___ToEaseFunction_b__4_0 (DG_Tweening_Core_Easing_EaseManager___c_o* __this, float time, float duration, float overshootOrAmplitude, float period, const MethodInfo*);
float DG_Tweening_Core_Easing_EaseManager___c___ToEaseFunction_b__4_1 (DG_Tweening_Core_Easing_EaseManager___c_o* __this, float time, float duration, float overshootOrAmplitude, float period, const MethodInfo*);
float DG_Tweening_Core_Easing_EaseManager___c___ToEaseFunction_b__4_2 (DG_Tweening_Core_Easing_EaseManager___c_o* __this, float time, float duration, float overshootOrAmplitude, float period, const MethodInfo*);
float DG_Tweening_Core_Easing_EaseManager___c___ToEaseFunction_b__4_3 (DG_Tweening_Core_Easing_EaseManager___c_o* __this, float time, float duration, float overshootOrAmplitude, float period, const MethodInfo*);
float DG_Tweening_Core_Easing_EaseManager___c___ToEaseFunction_b__4_4 (DG_Tweening_Core_Easing_EaseManager___c_o* __this, float time, float duration, float overshootOrAmplitude, float period, const MethodInfo*);
float DG_Tweening_Core_Easing_EaseManager___c___ToEaseFunction_b__4_5 (DG_Tweening_Core_Easing_EaseManager___c_o* __this, float time, float duration, float overshootOrAmplitude, float period, const MethodInfo*);
float DG_Tweening_Core_Easing_EaseManager___c___ToEaseFunction_b__4_6 (DG_Tweening_Core_Easing_EaseManager___c_o* __this, float time, float duration, float overshootOrAmplitude, float period, const MethodInfo*);
float DG_Tweening_Core_Easing_EaseManager___c___ToEaseFunction_b__4_7 (DG_Tweening_Core_Easing_EaseManager___c_o* __this, float time, float duration, float overshootOrAmplitude, float period, const MethodInfo*);
float DG_Tweening_Core_Easing_EaseManager___c___ToEaseFunction_b__4_8 (DG_Tweening_Core_Easing_EaseManager___c_o* __this, float time, float duration, float overshootOrAmplitude, float period, const MethodInfo*);
float DG_Tweening_Core_Easing_EaseManager___c___ToEaseFunction_b__4_9 (DG_Tweening_Core_Easing_EaseManager___c_o* __this, float time, float duration, float overshootOrAmplitude, float period, const MethodInfo*);
float DG_Tweening_Core_Easing_EaseManager___c___ToEaseFunction_b__4_10 (DG_Tweening_Core_Easing_EaseManager___c_o* __this, float time, float duration, float overshootOrAmplitude, float period, const MethodInfo*);
float DG_Tweening_Core_Easing_EaseManager___c___ToEaseFunction_b__4_11 (DG_Tweening_Core_Easing_EaseManager___c_o* __this, float time, float duration, float overshootOrAmplitude, float period, const MethodInfo*);
float DG_Tweening_Core_Easing_EaseManager___c___ToEaseFunction_b__4_12 (DG_Tweening_Core_Easing_EaseManager___c_o* __this, float time, float duration, float overshootOrAmplitude, float period, const MethodInfo*);
float DG_Tweening_Core_Easing_EaseManager___c___ToEaseFunction_b__4_13 (DG_Tweening_Core_Easing_EaseManager___c_o* __this, float time, float duration, float overshootOrAmplitude, float period, const MethodInfo*);
float DG_Tweening_Core_Easing_EaseManager___c___ToEaseFunction_b__4_14 (DG_Tweening_Core_Easing_EaseManager___c_o* __this, float time, float duration, float overshootOrAmplitude, float period, const MethodInfo*);
float DG_Tweening_Core_Easing_EaseManager___c___ToEaseFunction_b__4_15 (DG_Tweening_Core_Easing_EaseManager___c_o* __this, float time, float duration, float overshootOrAmplitude, float period, const MethodInfo*);
float DG_Tweening_Core_Easing_EaseManager___c___ToEaseFunction_b__4_16 (DG_Tweening_Core_Easing_EaseManager___c_o* __this, float time, float duration, float overshootOrAmplitude, float period, const MethodInfo*);
float DG_Tweening_Core_Easing_EaseManager___c___ToEaseFunction_b__4_17 (DG_Tweening_Core_Easing_EaseManager___c_o* __this, float time, float duration, float overshootOrAmplitude, float period, const MethodInfo*);
float DG_Tweening_Core_Easing_EaseManager___c___ToEaseFunction_b__4_18 (DG_Tweening_Core_Easing_EaseManager___c_o* __this, float time, float duration, float overshootOrAmplitude, float period, const MethodInfo*);
float DG_Tweening_Core_Easing_EaseManager___c___ToEaseFunction_b__4_19 (DG_Tweening_Core_Easing_EaseManager___c_o* __this, float time, float duration, float overshootOrAmplitude, float period, const MethodInfo*);
float DG_Tweening_Core_Easing_EaseManager___c___ToEaseFunction_b__4_20 (DG_Tweening_Core_Easing_EaseManager___c_o* __this, float time, float duration, float overshootOrAmplitude, float period, const MethodInfo*);
float DG_Tweening_Core_Easing_EaseManager___c___ToEaseFunction_b__4_21 (DG_Tweening_Core_Easing_EaseManager___c_o* __this, float time, float duration, float overshootOrAmplitude, float period, const MethodInfo*);
float DG_Tweening_Core_Easing_EaseManager___c___ToEaseFunction_b__4_22 (DG_Tweening_Core_Easing_EaseManager___c_o* __this, float time, float duration, float overshootOrAmplitude, float period, const MethodInfo*);
float DG_Tweening_Core_Easing_EaseManager___c___ToEaseFunction_b__4_23 (DG_Tweening_Core_Easing_EaseManager___c_o* __this, float time, float duration, float overshootOrAmplitude, float period, const MethodInfo*);
float DG_Tweening_Core_Easing_EaseManager___c___ToEaseFunction_b__4_24 (DG_Tweening_Core_Easing_EaseManager___c_o* __this, float time, float duration, float overshootOrAmplitude, float period, const MethodInfo*);
float DG_Tweening_Core_Easing_EaseManager___c___ToEaseFunction_b__4_25 (DG_Tweening_Core_Easing_EaseManager___c_o* __this, float time, float duration, float overshootOrAmplitude, float period, const MethodInfo*);
float DG_Tweening_Core_Easing_EaseManager___c___ToEaseFunction_b__4_26 (DG_Tweening_Core_Easing_EaseManager___c_o* __this, float time, float duration, float overshootOrAmplitude, float period, const MethodInfo*);
float DG_Tweening_Core_Easing_EaseManager___c___ToEaseFunction_b__4_27 (DG_Tweening_Core_Easing_EaseManager___c_o* __this, float time, float duration, float overshootOrAmplitude, float period, const MethodInfo*);
float DG_Tweening_Core_Easing_EaseManager___c___ToEaseFunction_b__4_28 (DG_Tweening_Core_Easing_EaseManager___c_o* __this, float time, float duration, float overshootOrAmplitude, float period, const MethodInfo*);
float DG_Tweening_Core_Easing_EaseManager___c___ToEaseFunction_b__4_29 (DG_Tweening_Core_Easing_EaseManager___c_o* __this, float time, float duration, float overshootOrAmplitude, float period, const MethodInfo*);
float DG_Tweening_Core_Easing_EaseManager___c___ToEaseFunction_b__4_30 (DG_Tweening_Core_Easing_EaseManager___c_o* __this, float time, float duration, float overshootOrAmplitude, float period, const MethodInfo*);
float DG_Tweening_Core_Easing_EaseManager___c___ToEaseFunction_b__4_31 (DG_Tweening_Core_Easing_EaseManager___c_o* __this, float time, float duration, float overshootOrAmplitude, float period, const MethodInfo*);
float DG_Tweening_Core_Easing_EaseManager___c___ToEaseFunction_b__4_32 (DG_Tweening_Core_Easing_EaseManager___c_o* __this, float time, float duration, float overshootOrAmplitude, float period, const MethodInfo*);
float DG_Tweening_Core_Easing_EaseManager___c___ToEaseFunction_b__4_33 (DG_Tweening_Core_Easing_EaseManager___c_o* __this, float time, float duration, float overshootOrAmplitude, float period, const MethodInfo*);
float DG_Tweening_Core_Easing_EaseManager___c___ToEaseFunction_b__4_34 (DG_Tweening_Core_Easing_EaseManager___c_o* __this, float time, float duration, float overshootOrAmplitude, float period, const MethodInfo*);
float DG_Tweening_Core_Easing_EaseManager___c___ToEaseFunction_b__4_35 (DG_Tweening_Core_Easing_EaseManager___c_o* __this, float time, float duration, float overshootOrAmplitude, float period, const MethodInfo*);
void DG_Tweening_Core_Easing_EaseCurve___ctor (DG_Tweening_Core_Easing_EaseCurve_o* __this, UnityEngine_AnimationCurve_o* animCurve, const MethodInfo*);
float DG_Tweening_Core_Easing_EaseCurve__Evaluate (DG_Tweening_Core_Easing_EaseCurve_o* __this, float time, float duration, float unusedOvershoot, float unusedPeriod, const MethodInfo*);
float DG_Tweening_Core_Easing_Flash__Ease (float time, float duration, float overshootOrAmplitude, float period, const MethodInfo*);
float DG_Tweening_Core_Easing_Flash__EaseIn (float time, float duration, float overshootOrAmplitude, float period, const MethodInfo*);
float DG_Tweening_Core_Easing_Flash__EaseOut (float time, float duration, float overshootOrAmplitude, float period, const MethodInfo*);
float DG_Tweening_Core_Easing_Flash__EaseInOut (float time, float duration, float overshootOrAmplitude, float period, const MethodInfo*);
float DG_Tweening_Core_Easing_Flash__WeightedEase (float overshootOrAmplitude, float period, int32_t stepIndex, float stepDuration, float dir, float res, const MethodInfo*);
UnityEngine_Matrix4x4_o* SmartPoint_Mathematics_Matrix4x4Ext__FastTranslate (UnityEngine_Matrix4x4_o* self, UnityEngine_Vector3_o* V, const MethodInfo*);
UnityEngine_Matrix4x4_o* SmartPoint_Mathematics_Matrix4x4Ext__FastTranslateLocal (UnityEngine_Matrix4x4_o* self, UnityEngine_Vector3_o* V, const MethodInfo*);
UnityEngine_Matrix4x4_o* SmartPoint_Mathematics_Matrix4x4Ext__FastScale (UnityEngine_Matrix4x4_o* self, UnityEngine_Vector3_o* V, const MethodInfo*);
UnityEngine_Matrix4x4_o* SmartPoint_Mathematics_Matrix4x4Ext__FastScaleLocal (UnityEngine_Matrix4x4_o* self, UnityEngine_Vector3_o* V, const MethodInfo*);
UnityEngine_Quaternion_o* SmartPoint_Mathematics_QuaternionExt__FastNormalizeAxis (UnityEngine_Quaternion_o* self, const MethodInfo*);
UnityEngine_Quaternion_o* SmartPoint_Mathematics_QuaternionExt__FastNormalize (UnityEngine_Quaternion_o* self, const MethodInfo*);
UnityEngine_Quaternion_o* SmartPoint_Mathematics_QuaternionExt__FastRotateY (UnityEngine_Quaternion_o* self, float angle, const MethodInfo*);
UnityEngine_Quaternion_o* SmartPoint_Mathematics_QuaternionExt__FastRotationArc (UnityEngine_Quaternion_o* self, UnityEngine_Vector3_o V1, UnityEngine_Vector3_o V2, const MethodInfo*);
UnityEngine_Quaternion_o SmartPoint_Mathematics_FastMath__RotationAxis (UnityEngine_Vector3_o* V, float angle, const MethodInfo*);
UnityEngine_Quaternion_o SmartPoint_Mathematics_FastMath__RotateZLocal (UnityEngine_Quaternion_o* Q, float Angle, const MethodInfo*);
UnityEngine_Vector3_o SmartPoint_Mathematics_FastMath__GetForwardVector (UnityEngine_Quaternion_o* Q, const MethodInfo*);
UnityEngine_Vector3_o SmartPoint_Mathematics_FastMath__GetUpVector (UnityEngine_Quaternion_o* Q, const MethodInfo*);
UnityEngine_Vector3_o SmartPoint_Mathematics_FastMath__GetRightVector (UnityEngine_Quaternion_o* Q, const MethodInfo*);
UnityEngine_Quaternion_o SmartPoint_Mathematics_FastMath__LookRotation (UnityEngine_Vector3_o* forward, const MethodInfo*);
UnityEngine_Quaternion_o SmartPoint_Mathematics_FastMath__LookRotation (UnityEngine_Vector3_o* forward, UnityEngine_Vector3_o* up, const MethodInfo*);
float SmartPoint_Mathematics_FastMath__Dot (UnityEngine_Vector2_o* V1, UnityEngine_Vector2_o* V2, const MethodInfo*);
float SmartPoint_Mathematics_FastMath__IntersectLine (UnityEngine_Vector2_o* P1, UnityEngine_Vector2_o* V1, UnityEngine_Vector2_o* P2, UnityEngine_Vector2_o* V2, const MethodInfo*);
float SmartPoint_Mathematics_FastMath__Dot (UnityEngine_Vector3_o* V1, UnityEngine_Vector3_o* V2, const MethodInfo*);
UnityEngine_Vector3_o SmartPoint_Mathematics_FastMath__Cross (UnityEngine_Vector3_o* V1, UnityEngine_Vector3_o* V2, const MethodInfo*);
UnityEngine_Vector3_o SmartPoint_Mathematics_FastMath__Normalize (UnityEngine_Vector3_o* V, const MethodInfo*);
UnityEngine_Vector3_o SmartPoint_Mathematics_FastMath__CrossNormalize (UnityEngine_Vector3_o* V1, UnityEngine_Vector3_o* V2, const MethodInfo*);
UnityEngine_Vector3_o SmartPoint_Mathematics_FastMath__CalculateFaceNormal (UnityEngine_Vector3_o* V1, UnityEngine_Vector3_o* V2, UnityEngine_Vector3_o* V3, const MethodInfo*);
UnityEngine_Vector3_o SmartPoint_Mathematics_FastMath__CalculateCentroid (UnityEngine_Vector3_o* V1, UnityEngine_Vector3_o* V2, UnityEngine_Vector3_o* V3, const MethodInfo*);
UnityEngine_Matrix4x4_o SmartPoint_Mathematics_FastMath__Reflection (float a, float b, float c, float d, const MethodInfo*);
void SmartPoint_Mathematics_FastMath___ctor (SmartPoint_Mathematics_FastMath_o* __this, const MethodInfo*);
float* SmartPoint_Mathematics_FloatExt__NormalizeRadians (float* self, const MethodInfo*);
float* SmartPoint_Mathematics_FloatExt__NormalizeDegrees (float* self, const MethodInfo*);
float SmartPoint_Mathematics_FloatExt__LerpDegrees (float a1, float a2, float s, const MethodInfo*);
float SmartPoint_Mathematics_Vector2Ext__FastLengthSq (UnityEngine_Vector2_o* self, const MethodInfo*);
float SmartPoint_Mathematics_Vector2Ext__FastCross (UnityEngine_Vector2_o* self, UnityEngine_Vector2_o* V, const MethodInfo*);
UnityEngine_Vector3_o* SmartPoint_Mathematics_Vector3Ext__FastClear (UnityEngine_Vector3_o* self, const MethodInfo*);
UnityEngine_Vector3_o* SmartPoint_Mathematics_Vector3Ext__FastNegate (UnityEngine_Vector3_o* self, const MethodInfo*);
UnityEngine_Vector3_o* SmartPoint_Mathematics_Vector3Ext__FastReciprocal (UnityEngine_Vector3_o* self, const MethodInfo*);
UnityEngine_Vector3_o* SmartPoint_Mathematics_Vector3Ext__FastSet (UnityEngine_Vector3_o* self, float s, const MethodInfo*);
UnityEngine_Vector3_o* SmartPoint_Mathematics_Vector3Ext__FastSet (UnityEngine_Vector3_o* self, float x, float y, float z, const MethodInfo*);
UnityEngine_Vector3_o* SmartPoint_Mathematics_Vector3Ext__FastAdd (UnityEngine_Vector3_o* self, UnityEngine_Vector3_o* V, const MethodInfo*);
UnityEngine_Vector3_o* SmartPoint_Mathematics_Vector3Ext__FastScale (UnityEngine_Vector3_o* self, float s, const MethodInfo*);
UnityEngine_Vector3_o* SmartPoint_Mathematics_Vector3Ext__FastMul (UnityEngine_Vector3_o* self, UnityEngine_Vector3_o* V, const MethodInfo*);
UnityEngine_Vector3_o* SmartPoint_Mathematics_Vector3Ext__FastScaleAdd (UnityEngine_Vector3_o* self, UnityEngine_Vector3_o* V, float s, const MethodInfo*);
UnityEngine_Vector3_o* SmartPoint_Mathematics_Vector3Ext__FastLerp (UnityEngine_Vector3_o* self, UnityEngine_Vector3_o* V, float s, const MethodInfo*);
float SmartPoint_Mathematics_Vector3Ext__FastLengthSq (UnityEngine_Vector3_o* self, const MethodInfo*);
float SmartPoint_Mathematics_Vector3Ext__FastDistanceSq (UnityEngine_Vector3_o* self, UnityEngine_Vector3_o* V, const MethodInfo*);
float SmartPoint_Mathematics_Vector3Ext__FastLength (UnityEngine_Vector3_o* self, const MethodInfo*);
float SmartPoint_Mathematics_Vector3Ext__FastDot (UnityEngine_Vector3_o* self, UnityEngine_Vector3_o* V, const MethodInfo*);
UnityEngine_Vector3_o* SmartPoint_Mathematics_Vector3Ext__FastCross (UnityEngine_Vector3_o* self, UnityEngine_Vector3_o* V, const MethodInfo*);
UnityEngine_Vector3_o* SmartPoint_Mathematics_Vector3Ext__FastCrossNormalize (UnityEngine_Vector3_o* self, UnityEngine_Vector3_o* V, const MethodInfo*);
float SmartPoint_Mathematics_Vector3Ext__FastNormalize (UnityEngine_Vector3_o* self, const MethodInfo*);
UnityEngine_Vector3_o* SmartPoint_Mathematics_Vector3Ext__FastRotateX (UnityEngine_Vector3_o* self, float angle, const MethodInfo*);
UnityEngine_Vector3_o* SmartPoint_Mathematics_Vector3Ext__FastRotateY (UnityEngine_Vector3_o* self, float angle, const MethodInfo*);
UnityEngine_Vector3_o* SmartPoint_Mathematics_Vector3Ext__FastRotateZ (UnityEngine_Vector3_o* self, float angle, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetAssistantInitializeMethodAttribute___ctor (SmartPoint_AssetAssistant_AssetAssistantInitializeMethodAttribute_o* __this, int32_t order, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetManagerAfferSetupMethodAttribute___ctor (SmartPoint_AssetAssistant_AssetManagerAfferSetupMethodAttribute_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneRestoreOperationMethodAttribute___ctor (SmartPoint_AssetAssistant_SceneRestoreOperationMethodAttribute_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneCloseOperationMethodAttribute___ctor (SmartPoint_AssetAssistant_SceneCloseOperationMethodAttribute_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneBeforeActivateOperationMethodAttribute___ctor (SmartPoint_AssetAssistant_SceneBeforeActivateOperationMethodAttribute_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneDeactivatedOperationMethodAttribute___ctor (SmartPoint_AssetAssistant_SceneDeactivatedOperationMethodAttribute_o* __this, const MethodInfo*);
System_Collections_IEnumerator_o* SmartPoint_AssetAssistant_AssetBundleInstantiator__RestoreOperation (SmartPoint_AssetAssistant_AssetBundleInstantiator_o* __this, SmartPoint_AssetAssistant_SceneEntity_o* entity, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleInstantiator__OnFinished (SmartPoint_AssetAssistant_AssetBundleInstantiator_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleInstantiator___ctor (SmartPoint_AssetAssistant_AssetBundleInstantiator_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleInstantiator___RestoreOperation_b__1_0 (SmartPoint_AssetAssistant_AssetBundleInstantiator_o* __this, int32_t eventType, System_String_o* name, UnityEngine_Object_o* asset, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleInstantiator__RestoreOperation_d__1___ctor (SmartPoint_AssetAssistant_AssetBundleInstantiator__RestoreOperation_d__1_o* __this, int32_t __1__state, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleInstantiator__RestoreOperation_d__1__System_IDisposable_Dispose (SmartPoint_AssetAssistant_AssetBundleInstantiator__RestoreOperation_d__1_o* __this, const MethodInfo*);
bool SmartPoint_AssetAssistant_AssetBundleInstantiator__RestoreOperation_d__1__MoveNext (SmartPoint_AssetAssistant_AssetBundleInstantiator__RestoreOperation_d__1_o* __this, const MethodInfo*);
Il2CppObject* SmartPoint_AssetAssistant_AssetBundleInstantiator__RestoreOperation_d__1__System_Collections_Generic_IEnumerator_System_Object__get_Current (SmartPoint_AssetAssistant_AssetBundleInstantiator__RestoreOperation_d__1_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleInstantiator__RestoreOperation_d__1__System_Collections_IEnumerator_Reset (SmartPoint_AssetAssistant_AssetBundleInstantiator__RestoreOperation_d__1_o* __this, const MethodInfo*);
Il2CppObject* SmartPoint_AssetAssistant_AssetBundleInstantiator__RestoreOperation_d__1__System_Collections_IEnumerator_get_Current (SmartPoint_AssetAssistant_AssetBundleInstantiator__RestoreOperation_d__1_o* __this, const MethodInfo*);
UnityEngine_Object_o* SmartPoint_AssetAssistant_AssetBundleCache__get_loadedFirstAsset (SmartPoint_AssetAssistant_AssetBundleCache_o* __this, const MethodInfo*);
TMPro_TMP_FontAsset_o* SmartPoint_AssetAssistant_AssetBundleCache__FindFirstAsset_TMP_FontAsset_ (SmartPoint_AssetAssistant_AssetBundleCache_o* __this, const MethodInfo_1D6DE70* method_1D6DE70);
Il2CppObject* SmartPoint_AssetAssistant_AssetBundleCache__FindFirstAsset_object_ (SmartPoint_AssetAssistant_AssetBundleCache_o* __this, const MethodInfo_1D6DE70* method_1D6DE70);
UnityEngine_Object_array* SmartPoint_AssetAssistant_AssetBundleCache__get_loadedAssets (SmartPoint_AssetAssistant_AssetBundleCache_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleCache__set_loadedAssets (SmartPoint_AssetAssistant_AssetBundleCache_o* __this, UnityEngine_Object_array* value, const MethodInfo*);
System_String_array* SmartPoint_AssetAssistant_AssetBundleCache__get_variants (SmartPoint_AssetAssistant_AssetBundleCache_o* __this, const MethodInfo*);
System_String_array* SmartPoint_AssetAssistant_AssetBundleCache__get_remapDependencies (SmartPoint_AssetAssistant_AssetBundleCache_o* __this, const MethodInfo*);
bool SmartPoint_AssetAssistant_AssetBundleCache__get_allLoaded (SmartPoint_AssetAssistant_AssetBundleCache_o* __this, const MethodInfo*);
SmartPoint_AssetAssistant_AssetBundleRecord_o* SmartPoint_AssetAssistant_AssetBundleCache__get_record (SmartPoint_AssetAssistant_AssetBundleCache_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleCache__set_record (SmartPoint_AssetAssistant_AssetBundleCache_o* __this, SmartPoint_AssetAssistant_AssetBundleRecord_o* value, const MethodInfo*);
UnityEngine_AssetBundle_o* SmartPoint_AssetAssistant_AssetBundleCache__get_assetBundle (SmartPoint_AssetAssistant_AssetBundleCache_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleCache__set_assetBundle (SmartPoint_AssetAssistant_AssetBundleCache_o* __this, UnityEngine_AssetBundle_o* value, const MethodInfo*);
bool SmartPoint_AssetAssistant_AssetBundleCache__get_isLoaded (SmartPoint_AssetAssistant_AssetBundleCache_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleCache__set_isLoaded (SmartPoint_AssetAssistant_AssetBundleCache_o* __this, bool value, const MethodInfo*);
bool SmartPoint_AssetAssistant_AssetBundleCache__get_canLoadAsset (SmartPoint_AssetAssistant_AssetBundleCache_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleCache___ctor (SmartPoint_AssetAssistant_AssetBundleCache_o* __this, const MethodInfo*);
int32_t SmartPoint_AssetAssistant_AssetBundleCache__Release (SmartPoint_AssetAssistant_AssetBundleCache_o* __this, const MethodInfo*);
bool SmartPoint_AssetAssistant_AssetBundleCache__Contains (System_String_o* assetBundleName, bool includeNotLoaded, const MethodInfo*);
SmartPoint_AssetAssistant_AssetBundleCache_o* SmartPoint_AssetAssistant_AssetBundleCache__Add (SmartPoint_AssetAssistant_AssetBundleRecord_o* record, bool isLoaded, System_String_array* variants, const MethodInfo*);
SmartPoint_AssetAssistant_AssetBundleCache_o* SmartPoint_AssetAssistant_AssetBundleCache__Get (System_String_o* assetBundleName, bool includeNotLoaded, const MethodInfo*);
int32_t SmartPoint_AssetAssistant_AssetBundleCache__ReleaseFromAssetBundleChache (SmartPoint_AssetAssistant_AssetBundleCache_o* cache, bool unloadAllLoadedObjects, const MethodInfo*);
int32_t SmartPoint_AssetAssistant_AssetBundleCache__ReleaseFromAssetBundleName (System_String_o* assetBundleName, bool unloadAllLoadedObjects, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleCache__Destroy (const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleCache___cctor (const MethodInfo*);
void SmartPoint_AssetAssistant_RecordedHash___ctor (SmartPoint_AssetAssistant_RecordedHash_o __this, uint32_t u0, uint32_t u1, uint32_t u2, uint32_t u3, const MethodInfo*);
uint32_t SmartPoint_AssetAssistant_RecordedHash__SwapEndian (uint32_t x, const MethodInfo*);
SmartPoint_AssetAssistant_RecordedHash_o SmartPoint_AssetAssistant_RecordedHash__Parse (System_String_o* hashString, const MethodInfo*);
bool SmartPoint_AssetAssistant_RecordedHash__get_isValid (SmartPoint_AssetAssistant_RecordedHash_o __this, const MethodInfo*);
System_String_o* SmartPoint_AssetAssistant_RecordedHash__ToString (SmartPoint_AssetAssistant_RecordedHash_o __this, const MethodInfo*);
int32_t SmartPoint_AssetAssistant_RecordedHash__GetHashCode (SmartPoint_AssetAssistant_RecordedHash_o __this, const MethodInfo*);
bool SmartPoint_AssetAssistant_RecordedHash__Equals (SmartPoint_AssetAssistant_RecordedHash_o __this, Il2CppObject* reference, const MethodInfo*);
bool SmartPoint_AssetAssistant_RecordedHash__op_Equality (SmartPoint_AssetAssistant_RecordedHash_o lhs, SmartPoint_AssetAssistant_RecordedHash_o rhs, const MethodInfo*);
bool SmartPoint_AssetAssistant_RecordedHash__op_Inequality (SmartPoint_AssetAssistant_RecordedHash_o lhs, SmartPoint_AssetAssistant_RecordedHash_o rhs, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleRecord___ctor (SmartPoint_AssetAssistant_AssetBundleRecord_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleRecord___ctor (SmartPoint_AssetAssistant_AssetBundleRecord_o* __this, System_String_o* _projectName, System_String_o* _assetBundleName, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleRecord___ctor (SmartPoint_AssetAssistant_AssetBundleRecord_o* __this, SmartPoint_AssetAssistant_AssetBundleRecord_o* other, const MethodInfo*);
System_String_o* SmartPoint_AssetAssistant_AssetBundleDownloadManifest__get_projectName (SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleDownloadManifest__set_projectName (SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* __this, System_String_o* value, const MethodInfo*);
System_String_o* SmartPoint_AssetAssistant_AssetBundleDownloadManifest__get_path (SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleDownloadManifest__set_path (SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* __this, System_String_o* value, const MethodInfo*);
SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* SmartPoint_AssetAssistant_AssetBundleDownloadManifest__get_latest (SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleDownloadManifest__set_latest (SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* __this, SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* value, const MethodInfo*);
int32_t SmartPoint_AssetAssistant_AssetBundleDownloadManifest__get_recordCount (SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* __this, const MethodInfo*);
SmartPoint_AssetAssistant_AssetBundleRecord_array* SmartPoint_AssetAssistant_AssetBundleDownloadManifest__get_records (SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* __this, const MethodInfo*);
int64_t SmartPoint_AssetAssistant_AssetBundleDownloadManifest__get_totalSize (SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* __this, const MethodInfo*);
int64_t SmartPoint_AssetAssistant_AssetBundleDownloadManifest__get_installSize (SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* __this, const MethodInfo*);
int32_t SmartPoint_AssetAssistant_AssetBundleDownloadManifest__get_installCount (SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* __this, const MethodInfo*);
SmartPoint_AssetAssistant_AssetBundleRecord_array* SmartPoint_AssetAssistant_AssetBundleDownloadManifest__get_installAssetBundleRecords (SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* __this, const MethodInfo*);
SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* SmartPoint_AssetAssistant_AssetBundleDownloadManifest__Load (System_Byte_array* data, const MethodInfo*);
SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* SmartPoint_AssetAssistant_AssetBundleDownloadManifest__Load (System_String_o* path, bool isSimulation, const MethodInfo*);
SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* SmartPoint_AssetAssistant_AssetBundleDownloadManifest__Load (System_String_o* targetPath, UnityEngine_AssetBundleManifest_o* other, SmartPoint_AssetAssistant_AssetBundleDownloadManifest_OnRecordCreated_o* callback, const MethodInfo*);
System_String_array* SmartPoint_AssetAssistant_AssetBundleDownloadManifest__GetDependencies (SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* __this, System_String_o* assetBundleName, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleDownloadManifest__LoadFromAssetBundleManifest (SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* __this, System_String_o* targetPath, UnityEngine_AssetBundleManifest_o* other, SmartPoint_AssetAssistant_AssetBundleDownloadManifest_OnRecordCreated_o* callback, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleDownloadManifest__Save (SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* __this, System_String_o* path, bool force, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleDownloadManifest___ctor (SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleDownloadManifest__Append (SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* __this, System_String_o* projectName, SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* appendManifest, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleDownloadManifest__MarkDifference (SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* __this, SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* latestManifest, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleDownloadManifest__BuildLookupTables (SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* __this, const MethodInfo*);
SmartPoint_AssetAssistant_AssetBundleRecord_o* SmartPoint_AssetAssistant_AssetBundleDownloadManifest__AddRecord (SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* __this, System_String_o* projectName, System_String_o* assetBundleName, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleDownloadManifest__Clear (SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* __this, const MethodInfo*);
bool SmartPoint_AssetAssistant_AssetBundleDownloadManifest__IsExist (SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* __this, System_String_o* assetBundleName, const MethodInfo*);
System_String_array* SmartPoint_AssetAssistant_AssetBundleDownloadManifest__GetExists (SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* __this, System_String_array* assetBundleNames, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleDownloadManifest__RemoveRecords (SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* __this, System_String_array* assetBundleNames, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleDownloadManifest__RestrictRecords (SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* __this, System_String_array* assetBundleNames, const MethodInfo*);
System_String_array* SmartPoint_AssetAssistant_AssetBundleDownloadManifest__GetAllAssetBundleNames (SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* __this, const MethodInfo*);
System_String_array* SmartPoint_AssetAssistant_AssetBundleDownloadManifest__GetAssetBundleNamesWithVariant (SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* __this, const MethodInfo*);
System_String_o* SmartPoint_AssetAssistant_AssetBundleDownloadManifest__FindMatchAssetBundleNameWithVariants (SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* __this, System_String_o* assetBundleName, System_String_array* variants, const MethodInfo*);
System_String_o* SmartPoint_AssetAssistant_AssetBundleDownloadManifest__GetAssetBundleNameAtPath (SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* __this, System_String_o* path, const MethodInfo*);
SmartPoint_AssetAssistant_AssetBundleRecord_o* SmartPoint_AssetAssistant_AssetBundleDownloadManifest__GetAssetBundleRecord (SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* __this, System_String_o* assetBundleName, const MethodInfo*);
SmartPoint_AssetAssistant_AssetBundleRecord_array* SmartPoint_AssetAssistant_AssetBundleDownloadManifest__GetAssetBundleRecordsWithDependencies (SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* __this, System_String_o* assetBundleName, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleDownloadManifest_OnRecordCreated___ctor (SmartPoint_AssetAssistant_AssetBundleDownloadManifest_OnRecordCreated_o* __this, Il2CppObject* object, intptr_t method, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleDownloadManifest_OnRecordCreated__Invoke (SmartPoint_AssetAssistant_AssetBundleDownloadManifest_OnRecordCreated_o* __this, SmartPoint_AssetAssistant_AssetBundleRecord_o* record, const MethodInfo*);
System_IAsyncResult_o* SmartPoint_AssetAssistant_AssetBundleDownloadManifest_OnRecordCreated__BeginInvoke (SmartPoint_AssetAssistant_AssetBundleDownloadManifest_OnRecordCreated_o* __this, SmartPoint_AssetAssistant_AssetBundleRecord_o* record, System_AsyncCallback_o* callback, Il2CppObject* object, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleDownloadManifest_OnRecordCreated__EndInvoke (SmartPoint_AssetAssistant_AssetBundleDownloadManifest_OnRecordCreated_o* __this, System_IAsyncResult_o* result, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleDownloadManifest___c__DisplayClass24_0___ctor (SmartPoint_AssetAssistant_AssetBundleDownloadManifest___c__DisplayClass24_0_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleDownloadManifest___c__DisplayClass24_1___ctor (SmartPoint_AssetAssistant_AssetBundleDownloadManifest___c__DisplayClass24_1_o* __this, const MethodInfo*);
bool SmartPoint_AssetAssistant_AssetBundleDownloadManifest___c__DisplayClass24_1___Load_b__0 (SmartPoint_AssetAssistant_AssetBundleDownloadManifest___c__DisplayClass24_1_o* __this, System_String_o* __, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleDownloadManifest___c__DisplayClass26_0___ctor (SmartPoint_AssetAssistant_AssetBundleDownloadManifest___c__DisplayClass26_0_o* __this, const MethodInfo*);
bool SmartPoint_AssetAssistant_AssetBundleDownloadManifest___c__DisplayClass26_0___GetDependencies_b__0 (SmartPoint_AssetAssistant_AssetBundleDownloadManifest___c__DisplayClass26_0_o* __this, SmartPoint_AssetAssistant_AssetBundleRecord_o* x, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleDownloadManifest___c___cctor (const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleDownloadManifest___c___ctor (SmartPoint_AssetAssistant_AssetBundleDownloadManifest___c_o* __this, const MethodInfo*);
System_String_o* SmartPoint_AssetAssistant_AssetBundleDownloadManifest___c___BuildLookupTables_b__32_0 (SmartPoint_AssetAssistant_AssetBundleDownloadManifest___c_o* __this, SmartPoint_AssetAssistant_AssetBundleRecord_o* x, const MethodInfo*);
SmartPoint_AssetAssistant_AssetBundleRecord_o* SmartPoint_AssetAssistant_AssetBundleDownloadManifest___c___BuildLookupTables_b__32_1 (SmartPoint_AssetAssistant_AssetBundleDownloadManifest___c_o* __this, SmartPoint_AssetAssistant_AssetBundleRecord_o* x, const MethodInfo*);
System_String_o* SmartPoint_AssetAssistant_AssetBundleDownloadManifest___c___GetExists_b__36_1 (SmartPoint_AssetAssistant_AssetBundleDownloadManifest___c_o* __this, SmartPoint_AssetAssistant_AssetBundleRecord_o* x, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleDownloadManifest___c__DisplayClass36_0___ctor (SmartPoint_AssetAssistant_AssetBundleDownloadManifest___c__DisplayClass36_0_o* __this, const MethodInfo*);
bool SmartPoint_AssetAssistant_AssetBundleDownloadManifest___c__DisplayClass36_0___GetExists_b__0 (SmartPoint_AssetAssistant_AssetBundleDownloadManifest___c__DisplayClass36_0_o* __this, SmartPoint_AssetAssistant_AssetBundleRecord_o* x, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleDownloadManifest___c__DisplayClass37_0___ctor (SmartPoint_AssetAssistant_AssetBundleDownloadManifest___c__DisplayClass37_0_o* __this, const MethodInfo*);
bool SmartPoint_AssetAssistant_AssetBundleDownloadManifest___c__DisplayClass37_0___RemoveRecords_b__0 (SmartPoint_AssetAssistant_AssetBundleDownloadManifest___c__DisplayClass37_0_o* __this, SmartPoint_AssetAssistant_AssetBundleRecord_o* x, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleDownloadManifest___c__DisplayClass38_0___ctor (SmartPoint_AssetAssistant_AssetBundleDownloadManifest___c__DisplayClass38_0_o* __this, const MethodInfo*);
bool SmartPoint_AssetAssistant_AssetBundleDownloadManifest___c__DisplayClass38_0___RestrictRecords_b__0 (SmartPoint_AssetAssistant_AssetBundleDownloadManifest___c__DisplayClass38_0_o* __this, SmartPoint_AssetAssistant_AssetBundleRecord_o* x, const MethodInfo*);
bool SmartPoint_AssetAssistant_AssetBundleMemory__LoadFromFile (System_String_o* path, const MethodInfo*);
bool SmartPoint_AssetAssistant_AssetBundleMemory__GetBuffer (System_String_o* path, System_Byte_array** buffer, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleMemory___ctor (SmartPoint_AssetAssistant_AssetBundleMemory_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleMemory___cctor (const MethodInfo*);
System_String_o* SmartPoint_AssetAssistant_AssetManager__get_editorPath (const MethodInfo*);
System_String_o* SmartPoint_AssetAssistant_AssetManager__get_cachePath (const MethodInfo*);
System_String_o* SmartPoint_AssetAssistant_AssetManager__get_buitinAssetsPath (const MethodInfo*);
SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* SmartPoint_AssetAssistant_AssetManager__get_defaultDownloadManifest (const MethodInfo*);
UnityEngine_Shader_o* SmartPoint_AssetAssistant_AssetManager__FindShader (System_String_o* name, const MethodInfo*);
bool SmartPoint_AssetAssistant_AssetManager__get_isReady (const MethodInfo*);
void SmartPoint_AssetAssistant_AssetManager__Initialize (const MethodInfo*);
void SmartPoint_AssetAssistant_AssetManager__ClearCacheFiles (const MethodInfo*);
void SmartPoint_AssetAssistant_AssetManager__Cleanup (const MethodInfo*);
System_Collections_IEnumerator_o* SmartPoint_AssetAssistant_AssetManager__SetupOperation (const MethodInfo*);
SmartPoint_AssetAssistant_InstallRequestItem_o* SmartPoint_AssetAssistant_AssetManager__Install (SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* manifest, System_String_array* assetBundleNames, const MethodInfo*);
System_String_array* SmartPoint_AssetAssistant_AssetManager__GetAllAssetBundleNames (const MethodInfo*);
System_String_array* SmartPoint_AssetAssistant_AssetManager__GetAssetBundleNamesWithVariant (const MethodInfo*);
bool SmartPoint_AssetAssistant_AssetManager__IsExistAssetBundle (System_String_o* assetBundleName, const MethodInfo*);
System_String_array* SmartPoint_AssetAssistant_AssetManager__FindAssetBundleNames (System_String_o* filter, const MethodInfo*);
bool SmartPoint_AssetAssistant_AssetManager__IsCached (System_String_o* assetBundleName, const MethodInfo*);
SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* SmartPoint_AssetAssistant_AssetManager__GetManifest (System_String_o* path, System_String_o** fileName, const MethodInfo*);
SmartPoint_AssetAssistant_AssetRequestOperation_o* SmartPoint_AssetAssistant_AssetManager__AppendAssetBundleRequest (System_String_o* assetBundleName, bool loadAllAssets, SmartPoint_AssetAssistant_RequestEventCallback_o* callback, System_String_array* variants, const MethodInfo*);
SmartPoint_AssetAssistant_AssetRequestOperation_o* SmartPoint_AssetAssistant_AssetManager__RequestAssetBundle (System_String_o* assetBundleName, bool loadAllAssets, SmartPoint_AssetAssistant_RequestEventCallback_o* callback, System_String_array* variants, const MethodInfo*);
SmartPoint_AssetAssistant_AssetRequestOperation_o* SmartPoint_AssetAssistant_AssetManager__RequestAsset (System_String_o* assetPath, SmartPoint_AssetAssistant_RequestEventCallback_o* callback, const MethodInfo*);
SmartPoint_AssetAssistant_AssetRequestOperation_o* SmartPoint_AssetAssistant_AssetManager__AppendAssetRequest (System_String_o* assetPath, SmartPoint_AssetAssistant_RequestEventCallback_o* callback, const MethodInfo*);
SmartPoint_AssetAssistant_AssetRequestOperation_o* SmartPoint_AssetAssistant_AssetManager__DispatchRequests (SmartPoint_AssetAssistant_RequestEventCallback_o* callback, const MethodInfo*);
SmartPoint_AssetAssistant_AssetBundleCache_o* SmartPoint_AssetAssistant_AssetManager__LoadAssetBundle (System_String_o* assetBundleName, const MethodInfo*);
SmartPoint_AssetAssistant_AssetBundleCache_o* SmartPoint_AssetAssistant_AssetManager__LoadAssetBundle (SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* manifest, SmartPoint_AssetAssistant_AssetBundleRecord_o* record, bool loadAllAssets, bool loadDependency, System_String_array* variants, const MethodInfo*);
UnityEngine_Object_o* SmartPoint_AssetAssistant_AssetManager__LoadAsset (System_String_o* assetPath, bool cached, const MethodInfo*);
int32_t SmartPoint_AssetAssistant_AssetManager__UnloadAssetBundleAtAssetPath (System_String_o* assetPath, const MethodInfo*);
int32_t SmartPoint_AssetAssistant_AssetManager__UnloadAssetBundle (System_String_o* assetBundleName, const MethodInfo*);
bool SmartPoint_AssetAssistant_AssetManager__get_isBusy (const MethodInfo*);
void SmartPoint_AssetAssistant_AssetManager__Update (float deltaTime, const MethodInfo*);
SmartPoint_AssetAssistant_AssetBundleRecord_o* SmartPoint_AssetAssistant_AssetManager__GetAssetBundleRecord (SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* manifest, System_String_o* assetBundleName, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetManager__OnStreamWriteFinished (System_IAsyncResult_o* asyncResult, const MethodInfo*);
bool SmartPoint_AssetAssistant_AssetManager__ProcessRequestItem (SmartPoint_AssetAssistant_IAssetRequestItem_o* requestItem, const MethodInfo*);
System_String_o* SmartPoint_AssetAssistant_AssetManager__RemapVariantName (System_String_o* assetBundleName, System_String_array* variants, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetManager__OnResumeSingleton (const MethodInfo*);
void SmartPoint_AssetAssistant_AssetManager__OnDestroy (const MethodInfo*);
void SmartPoint_AssetAssistant_AssetManager___ctor (SmartPoint_AssetAssistant_AssetManager_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetManager___cctor (const MethodInfo*);
void SmartPoint_AssetAssistant_AssetManager_OnRequestError___ctor (SmartPoint_AssetAssistant_AssetManager_OnRequestError_o* __this, Il2CppObject* object, intptr_t method, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetManager_OnRequestError__Invoke (SmartPoint_AssetAssistant_AssetManager_OnRequestError_o* __this, const MethodInfo*);
System_IAsyncResult_o* SmartPoint_AssetAssistant_AssetManager_OnRequestError__BeginInvoke (SmartPoint_AssetAssistant_AssetManager_OnRequestError_o* __this, System_AsyncCallback_o* callback, Il2CppObject* object, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetManager_OnRequestError__EndInvoke (SmartPoint_AssetAssistant_AssetManager_OnRequestError_o* __this, System_IAsyncResult_o* result, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetManager___c__DisplayClass17_0___ctor (SmartPoint_AssetAssistant_AssetManager___c__DisplayClass17_0_o* __this, const MethodInfo*);
bool SmartPoint_AssetAssistant_AssetManager___c__DisplayClass17_0___FindShader_b__0 (SmartPoint_AssetAssistant_AssetManager___c__DisplayClass17_0_o* __this, UnityEngine_Shader_o* __, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetManager__SetupOperation_d__30___ctor (SmartPoint_AssetAssistant_AssetManager__SetupOperation_d__30_o* __this, int32_t __1__state, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetManager__SetupOperation_d__30__System_IDisposable_Dispose (SmartPoint_AssetAssistant_AssetManager__SetupOperation_d__30_o* __this, const MethodInfo*);
bool SmartPoint_AssetAssistant_AssetManager__SetupOperation_d__30__MoveNext (SmartPoint_AssetAssistant_AssetManager__SetupOperation_d__30_o* __this, const MethodInfo*);
Il2CppObject* SmartPoint_AssetAssistant_AssetManager__SetupOperation_d__30__System_Collections_Generic_IEnumerator_System_Object__get_Current (SmartPoint_AssetAssistant_AssetManager__SetupOperation_d__30_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetManager__SetupOperation_d__30__System_Collections_IEnumerator_Reset (SmartPoint_AssetAssistant_AssetManager__SetupOperation_d__30_o* __this, const MethodInfo*);
Il2CppObject* SmartPoint_AssetAssistant_AssetManager__SetupOperation_d__30__System_Collections_IEnumerator_get_Current (SmartPoint_AssetAssistant_AssetManager__SetupOperation_d__30_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetManager___c__DisplayClass31_0___ctor (SmartPoint_AssetAssistant_AssetManager___c__DisplayClass31_0_o* __this, const MethodInfo*);
bool SmartPoint_AssetAssistant_AssetManager___c__DisplayClass31_0___Install_b__0 (SmartPoint_AssetAssistant_AssetManager___c__DisplayClass31_0_o* __this, SmartPoint_AssetAssistant_AssetBundleRecord_o* __, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetManager___c__DisplayClass34_0___ctor (SmartPoint_AssetAssistant_AssetManager___c__DisplayClass34_0_o* __this, const MethodInfo*);
bool SmartPoint_AssetAssistant_AssetManager___c__DisplayClass34_0___IsExistAssetBundle_b__0 (SmartPoint_AssetAssistant_AssetManager___c__DisplayClass34_0_o* __this, System_String_o* __, const MethodInfo*);
bool SmartPoint_AssetAssistant_AssetManager___c__DisplayClass34_0___IsExistAssetBundle_b__1 (SmartPoint_AssetAssistant_AssetManager___c__DisplayClass34_0_o* __this, System_String_o* __, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetManager___c__DisplayClass44_0___ctor (SmartPoint_AssetAssistant_AssetManager___c__DisplayClass44_0_o* __this, const MethodInfo*);
bool SmartPoint_AssetAssistant_AssetManager___c__DisplayClass44_0___LoadAssetBundle_b__0 (SmartPoint_AssetAssistant_AssetManager___c__DisplayClass44_0_o* __this, System_String_o* __, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetManager___c___cctor (const MethodInfo*);
void SmartPoint_AssetAssistant_AssetManager___c___ctor (SmartPoint_AssetAssistant_AssetManager___c_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetManager___c___Update_b__50_0 (SmartPoint_AssetAssistant_AssetManager___c_o* __this, int32_t result, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetManager___c__DisplayClass53_0___ctor (SmartPoint_AssetAssistant_AssetManager___c__DisplayClass53_0_o* __this, const MethodInfo*);
bool SmartPoint_AssetAssistant_AssetManager___c__DisplayClass53_0___ProcessRequestItem_b__0 (SmartPoint_AssetAssistant_AssetManager___c__DisplayClass53_0_o* __this, System_String_o* __, const MethodInfo*);
void SmartPoint_AssetAssistant_RefCounted___ctor (SmartPoint_AssetAssistant_RefCounted_o* __this, const MethodInfo*);
int32_t SmartPoint_AssetAssistant_RefCounted__AddRef (SmartPoint_AssetAssistant_RefCounted_o* __this, const MethodInfo*);
int32_t SmartPoint_AssetAssistant_RefCounted__Release (SmartPoint_AssetAssistant_RefCounted_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_RequestEventCallback___ctor (SmartPoint_AssetAssistant_RequestEventCallback_o* __this, Il2CppObject* object, intptr_t method, const MethodInfo*);
void SmartPoint_AssetAssistant_RequestEventCallback__Invoke (SmartPoint_AssetAssistant_RequestEventCallback_o* __this, int32_t requestEventType, System_String_o* name, UnityEngine_Object_o* content, const MethodInfo*);
System_IAsyncResult_o* SmartPoint_AssetAssistant_RequestEventCallback__BeginInvoke (SmartPoint_AssetAssistant_RequestEventCallback_o* __this, int32_t requestEventType, System_String_o* name, UnityEngine_Object_o* content, System_AsyncCallback_o* callback, Il2CppObject* object, const MethodInfo*);
void SmartPoint_AssetAssistant_RequestEventCallback__EndInvoke (SmartPoint_AssetAssistant_RequestEventCallback_o* __this, System_IAsyncResult_o* result, const MethodInfo*);
void SmartPoint_AssetAssistant_RequestItemPacket___ctor (SmartPoint_AssetAssistant_RequestItemPacket_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_RequestItemPacket__Clear (SmartPoint_AssetAssistant_RequestItemPacket_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_InstallRequestItem___ctor (SmartPoint_AssetAssistant_InstallRequestItem_o* __this, SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* _cacheManifest, System_String_o* _uri, const MethodInfo*);
int32_t SmartPoint_AssetAssistant_InstallRequestItem__get_status (SmartPoint_AssetAssistant_InstallRequestItem_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_InstallRequestItem__set_status (SmartPoint_AssetAssistant_InstallRequestItem_o* __this, int32_t value, const MethodInfo*);
SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* SmartPoint_AssetAssistant_InstallRequestItem__get_manifest (SmartPoint_AssetAssistant_InstallRequestItem_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_InstallRequestItem__set_manifest (SmartPoint_AssetAssistant_InstallRequestItem_o* __this, SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* value, const MethodInfo*);
System_String_o* SmartPoint_AssetAssistant_InstallRequestItem__get_uri (SmartPoint_AssetAssistant_InstallRequestItem_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_InstallRequestItem__set_uri (SmartPoint_AssetAssistant_InstallRequestItem_o* __this, System_String_o* value, const MethodInfo*);
SmartPoint_AssetAssistant_InstallRequestItem_InstallItem_array* SmartPoint_AssetAssistant_InstallRequestItem__get_items (SmartPoint_AssetAssistant_InstallRequestItem_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_InstallRequestItem__set_items (SmartPoint_AssetAssistant_InstallRequestItem_o* __this, SmartPoint_AssetAssistant_InstallRequestItem_InstallItem_array* value, const MethodInfo*);
int64_t SmartPoint_AssetAssistant_InstallRequestItem__get_installSize (SmartPoint_AssetAssistant_InstallRequestItem_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_InstallRequestItem__set_installSize (SmartPoint_AssetAssistant_InstallRequestItem_o* __this, int64_t value, const MethodInfo*);
int64_t SmartPoint_AssetAssistant_InstallRequestItem__get_totalSize (SmartPoint_AssetAssistant_InstallRequestItem_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_InstallRequestItem__set_totalSize (SmartPoint_AssetAssistant_InstallRequestItem_o* __this, int64_t value, const MethodInfo*);
SmartPoint_AssetAssistant_RequestEventCallback_o* SmartPoint_AssetAssistant_InstallRequestItem__get_callback (SmartPoint_AssetAssistant_InstallRequestItem_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_InstallRequestItem__set_callback (SmartPoint_AssetAssistant_InstallRequestItem_o* __this, SmartPoint_AssetAssistant_RequestEventCallback_o* value, const MethodInfo*);
System_String_o* SmartPoint_AssetAssistant_InstallRequestItem__get_error (SmartPoint_AssetAssistant_InstallRequestItem_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_InstallRequestItem__set_error (SmartPoint_AssetAssistant_InstallRequestItem_o* __this, System_String_o* value, const MethodInfo*);
bool SmartPoint_AssetAssistant_InstallRequestItem__get_isComplete (SmartPoint_AssetAssistant_InstallRequestItem_o* __this, const MethodInfo*);
float SmartPoint_AssetAssistant_InstallRequestItem__get_progress (SmartPoint_AssetAssistant_InstallRequestItem_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_InstallRequestItem_InstallItem___ctor (SmartPoint_AssetAssistant_InstallRequestItem_InstallItem_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleRequestItem___ctor (SmartPoint_AssetAssistant_AssetBundleRequestItem_o* __this, SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* _manifest, System_String_o* _uri, bool _loadAllAssets, bool _loadDependencies, System_String_array* _variants, const MethodInfo*);
bool SmartPoint_AssetAssistant_AssetBundleRequestItem__get_isComplete (SmartPoint_AssetAssistant_AssetBundleRequestItem_o* __this, const MethodInfo*);
int32_t SmartPoint_AssetAssistant_AssetBundleRequestItem__get_status (SmartPoint_AssetAssistant_AssetBundleRequestItem_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleRequestItem__set_status (SmartPoint_AssetAssistant_AssetBundleRequestItem_o* __this, int32_t value, const MethodInfo*);
SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* SmartPoint_AssetAssistant_AssetBundleRequestItem__get_manifest (SmartPoint_AssetAssistant_AssetBundleRequestItem_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleRequestItem__set_manifest (SmartPoint_AssetAssistant_AssetBundleRequestItem_o* __this, SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* value, const MethodInfo*);
System_String_o* SmartPoint_AssetAssistant_AssetBundleRequestItem__get_uri (SmartPoint_AssetAssistant_AssetBundleRequestItem_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleRequestItem__set_uri (SmartPoint_AssetAssistant_AssetBundleRequestItem_o* __this, System_String_o* value, const MethodInfo*);
UnityEngine_Networking_UnityWebRequest_o* SmartPoint_AssetAssistant_AssetBundleRequestItem__get_webRequest (SmartPoint_AssetAssistant_AssetBundleRequestItem_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleRequestItem__set_webRequest (SmartPoint_AssetAssistant_AssetBundleRequestItem_o* __this, UnityEngine_Networking_UnityWebRequest_o* value, const MethodInfo*);
System_IO_FileStream_o* SmartPoint_AssetAssistant_AssetBundleRequestItem__get_fileStream (SmartPoint_AssetAssistant_AssetBundleRequestItem_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleRequestItem__set_fileStream (SmartPoint_AssetAssistant_AssetBundleRequestItem_o* __this, System_IO_FileStream_o* value, const MethodInfo*);
System_String_array* SmartPoint_AssetAssistant_AssetBundleRequestItem__get_variants (SmartPoint_AssetAssistant_AssetBundleRequestItem_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleRequestItem__set_variants (SmartPoint_AssetAssistant_AssetBundleRequestItem_o* __this, System_String_array* value, const MethodInfo*);
bool SmartPoint_AssetAssistant_AssetBundleRequestItem__get_loadAllAssets (SmartPoint_AssetAssistant_AssetBundleRequestItem_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleRequestItem__set_loadAllAssets (SmartPoint_AssetAssistant_AssetBundleRequestItem_o* __this, bool value, const MethodInfo*);
SmartPoint_AssetAssistant_AssetBundleCache_o* SmartPoint_AssetAssistant_AssetBundleRequestItem__get_cache (SmartPoint_AssetAssistant_AssetBundleRequestItem_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleRequestItem__set_cache (SmartPoint_AssetAssistant_AssetBundleRequestItem_o* __this, SmartPoint_AssetAssistant_AssetBundleCache_o* value, const MethodInfo*);
UnityEngine_AssetBundleCreateRequest_o* SmartPoint_AssetAssistant_AssetBundleRequestItem__get_createRequest (SmartPoint_AssetAssistant_AssetBundleRequestItem_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleRequestItem__set_createRequest (SmartPoint_AssetAssistant_AssetBundleRequestItem_o* __this, UnityEngine_AssetBundleCreateRequest_o* value, const MethodInfo*);
UnityEngine_AsyncOperation_o* SmartPoint_AssetAssistant_AssetBundleRequestItem__get_assetRequest (SmartPoint_AssetAssistant_AssetBundleRequestItem_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleRequestItem__set_assetRequest (SmartPoint_AssetAssistant_AssetBundleRequestItem_o* __this, UnityEngine_AsyncOperation_o* value, const MethodInfo*);
SmartPoint_AssetAssistant_RequestEventCallback_o* SmartPoint_AssetAssistant_AssetBundleRequestItem__get_callback (SmartPoint_AssetAssistant_AssetBundleRequestItem_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleRequestItem__set_callback (SmartPoint_AssetAssistant_AssetBundleRequestItem_o* __this, SmartPoint_AssetAssistant_RequestEventCallback_o* value, const MethodInfo*);
System_String_o* SmartPoint_AssetAssistant_AssetBundleRequestItem__get_error (SmartPoint_AssetAssistant_AssetBundleRequestItem_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleRequestItem__set_error (SmartPoint_AssetAssistant_AssetBundleRequestItem_o* __this, System_String_o* value, const MethodInfo*);
UnityEngine_CustomYieldInstruction_o* SmartPoint_AssetAssistant_AssetBundleRequestItem__get_customInstruction (SmartPoint_AssetAssistant_AssetBundleRequestItem_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetBundleRequestItem__set_customInstruction (SmartPoint_AssetAssistant_AssetBundleRequestItem_o* __this, UnityEngine_CustomYieldInstruction_o* value, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetRequestItem___ctor (SmartPoint_AssetAssistant_AssetRequestItem_o* __this, SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* _manifest, System_String_o* _assetName, const MethodInfo*);
UnityEngine_Object_o* SmartPoint_AssetAssistant_AssetRequestItem__get_asset (SmartPoint_AssetAssistant_AssetRequestItem_o* __this, const MethodInfo*);
bool SmartPoint_AssetAssistant_AssetRequestItem__get_isComplete (SmartPoint_AssetAssistant_AssetRequestItem_o* __this, const MethodInfo*);
int32_t SmartPoint_AssetAssistant_AssetRequestItem__get_status (SmartPoint_AssetAssistant_AssetRequestItem_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetRequestItem__set_status (SmartPoint_AssetAssistant_AssetRequestItem_o* __this, int32_t value, const MethodInfo*);
SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* SmartPoint_AssetAssistant_AssetRequestItem__get_manifest (SmartPoint_AssetAssistant_AssetRequestItem_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetRequestItem__set_manifest (SmartPoint_AssetAssistant_AssetRequestItem_o* __this, SmartPoint_AssetAssistant_AssetBundleDownloadManifest_o* value, const MethodInfo*);
System_String_o* SmartPoint_AssetAssistant_AssetRequestItem__get_uri (SmartPoint_AssetAssistant_AssetRequestItem_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetRequestItem__set_uri (SmartPoint_AssetAssistant_AssetRequestItem_o* __this, System_String_o* value, const MethodInfo*);
System_String_o* SmartPoint_AssetAssistant_AssetRequestItem__get_assetBundleName (SmartPoint_AssetAssistant_AssetRequestItem_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetRequestItem__set_assetBundleName (SmartPoint_AssetAssistant_AssetRequestItem_o* __this, System_String_o* value, const MethodInfo*);
UnityEngine_AsyncOperation_o* SmartPoint_AssetAssistant_AssetRequestItem__get_resourceRequest (SmartPoint_AssetAssistant_AssetRequestItem_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetRequestItem__set_resourceRequest (SmartPoint_AssetAssistant_AssetRequestItem_o* __this, UnityEngine_AsyncOperation_o* value, const MethodInfo*);
SmartPoint_AssetAssistant_RequestEventCallback_o* SmartPoint_AssetAssistant_AssetRequestItem__get_callback (SmartPoint_AssetAssistant_AssetRequestItem_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetRequestItem__set_callback (SmartPoint_AssetAssistant_AssetRequestItem_o* __this, SmartPoint_AssetAssistant_RequestEventCallback_o* value, const MethodInfo*);
System_String_o* SmartPoint_AssetAssistant_AssetRequestItem__get_error (SmartPoint_AssetAssistant_AssetRequestItem_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetRequestItem__set_error (SmartPoint_AssetAssistant_AssetRequestItem_o* __this, System_String_o* value, const MethodInfo*);
SmartPoint_AssetAssistant_IAssetRequestItem_array* SmartPoint_AssetAssistant_AssetRequestOperation__get_requests (SmartPoint_AssetAssistant_AssetRequestOperation_o* __this, const MethodInfo*);
SmartPoint_AssetAssistant_IAssetRequestItem_o* SmartPoint_AssetAssistant_AssetRequestOperation__get_request (SmartPoint_AssetAssistant_AssetRequestOperation_o* __this, const MethodInfo*);
SmartPoint_AssetAssistant_AssetRequestItem_o* SmartPoint_AssetAssistant_AssetRequestOperation__get_assetRequest (SmartPoint_AssetAssistant_AssetRequestOperation_o* __this, const MethodInfo*);
SmartPoint_AssetAssistant_AssetRequestItem_array* SmartPoint_AssetAssistant_AssetRequestOperation__get_assetRequests (SmartPoint_AssetAssistant_AssetRequestOperation_o* __this, const MethodInfo*);
SmartPoint_AssetAssistant_AssetBundleRequestItem_o* SmartPoint_AssetAssistant_AssetRequestOperation__get_assetBundleRequest (SmartPoint_AssetAssistant_AssetRequestOperation_o* __this, const MethodInfo*);
SmartPoint_AssetAssistant_AssetBundleRequestItem_array* SmartPoint_AssetAssistant_AssetRequestOperation__get_assetBundleRequests (SmartPoint_AssetAssistant_AssetRequestOperation_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetRequestOperation___ctor (SmartPoint_AssetAssistant_AssetRequestOperation_o* __this, SmartPoint_AssetAssistant_IAssetRequestItem_o* requestItem, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetRequestOperation___ctor (SmartPoint_AssetAssistant_AssetRequestOperation_o* __this, SmartPoint_AssetAssistant_IAssetRequestItem_array* requestItems, const MethodInfo*);
void SmartPoint_AssetAssistant_AssetRequestOperation___ctor (SmartPoint_AssetAssistant_AssetRequestOperation_o* __this, System_Collections_Generic_List_IAssetRequestItem__o* requestItems, const MethodInfo*);
bool SmartPoint_AssetAssistant_AssetRequestOperation__get_keepWaiting (SmartPoint_AssetAssistant_AssetRequestOperation_o* __this, const MethodInfo*);
System_String_o* SmartPoint_AssetAssistant_InstallHandler__get_installPath (const MethodInfo*);
void SmartPoint_AssetAssistant_InstallHandler__set_installPath (System_String_o* value, const MethodInfo*);
void SmartPoint_AssetAssistant_InstallHandler___ctor (SmartPoint_AssetAssistant_InstallHandler_o* __this, System_String_o* fileName, System_Byte_array* preallocatedBuffer, const MethodInfo*);
void SmartPoint_AssetAssistant_InstallHandler___ctor (SmartPoint_AssetAssistant_InstallHandler_o* __this, System_String_o* fileName, int32_t cacheSize, const MethodInfo*);
void SmartPoint_AssetAssistant_InstallHandler___ctor (SmartPoint_AssetAssistant_InstallHandler_o* __this, System_String_o* fileName, const MethodInfo*);
bool SmartPoint_AssetAssistant_InstallHandler__ReceiveData (SmartPoint_AssetAssistant_InstallHandler_o* __this, System_Byte_array* data, int32_t bytesToRead, const MethodInfo*);
void SmartPoint_AssetAssistant_InstallHandler__ReceiveContentLengthHeader (SmartPoint_AssetAssistant_InstallHandler_o* __this, uint64_t contentLength, const MethodInfo*);
void SmartPoint_AssetAssistant_InstallHandler__CompleteContent (SmartPoint_AssetAssistant_InstallHandler_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_InstallHandler__CloseStream (SmartPoint_AssetAssistant_InstallHandler_o* __this, const MethodInfo*);
float SmartPoint_AssetAssistant_InstallHandler__GetProgress (SmartPoint_AssetAssistant_InstallHandler_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_InstallHandler___cctor (const MethodInfo*);
void SmartPoint_AssetAssistant_StreamExtensions__SerializeBinaryFormatter (System_IO_Stream_o* stream, Il2CppObject* content, const MethodInfo*);
Il2CppObject* SmartPoint_AssetAssistant_StreamExtensions__DeserializeBinaryFormatter (System_IO_Stream_o* stream, const MethodInfo*);
System_Reflection_Assembly_o* SmartPoint_AssetAssistant_StreamExtensions__ResolveAssembly (Il2CppObject* sender, System_ResolveEventArgs_o* args, const MethodInfo*);
System_Type_o* SmartPoint_AssetAssistant_IgnoreVersionBinder__BindToType (SmartPoint_AssetAssistant_IgnoreVersionBinder_o* __this, System_String_o* assemblyName, System_String_o* typeName, const MethodInfo*);
void SmartPoint_AssetAssistant_IgnoreVersionBinder___ctor (SmartPoint_AssetAssistant_IgnoreVersionBinder_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_Serializer___cctor (const MethodInfo*);
System_String_o* SmartPoint_AssetAssistant_Serializer__ToBase64String (Il2CppObject* content, const MethodInfo*);
Il2CppObject* SmartPoint_AssetAssistant_Serializer__FromBase64String (System_String_o* base64string, const MethodInfo*);
void SmartPoint_AssetAssistant_Serializer___ctor (SmartPoint_AssetAssistant_Serializer_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_PermanentHolder__Awake (SmartPoint_AssetAssistant_PermanentHolder_o* __this, const MethodInfo*);
UnityEngine_Object_array* SmartPoint_AssetAssistant_PermanentHolder__get_objects (const MethodInfo*);
void SmartPoint_AssetAssistant_PermanentHolder__set_objects (UnityEngine_Object_array* value, const MethodInfo*);
void SmartPoint_AssetAssistant_PermanentHolder___ctor (SmartPoint_AssetAssistant_PermanentHolder_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_PrefabInstantiator__Restore (SmartPoint_AssetAssistant_PrefabInstantiator_o* __this, const MethodInfo*);
System_Collections_IEnumerator_o* SmartPoint_AssetAssistant_PrefabInstantiator__RestoreOperation (SmartPoint_AssetAssistant_PrefabInstantiator_o* __this, SmartPoint_AssetAssistant_SceneEntity_o* entity, const MethodInfo*);
void SmartPoint_AssetAssistant_PrefabInstantiator___ctor (SmartPoint_AssetAssistant_PrefabInstantiator_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_PrefabInstantiator__RestoreOperation_d__2___ctor (SmartPoint_AssetAssistant_PrefabInstantiator__RestoreOperation_d__2_o* __this, int32_t __1__state, const MethodInfo*);
void SmartPoint_AssetAssistant_PrefabInstantiator__RestoreOperation_d__2__System_IDisposable_Dispose (SmartPoint_AssetAssistant_PrefabInstantiator__RestoreOperation_d__2_o* __this, const MethodInfo*);
bool SmartPoint_AssetAssistant_PrefabInstantiator__RestoreOperation_d__2__MoveNext (SmartPoint_AssetAssistant_PrefabInstantiator__RestoreOperation_d__2_o* __this, const MethodInfo*);
Il2CppObject* SmartPoint_AssetAssistant_PrefabInstantiator__RestoreOperation_d__2__System_Collections_Generic_IEnumerator_System_Object__get_Current (SmartPoint_AssetAssistant_PrefabInstantiator__RestoreOperation_d__2_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_PrefabInstantiator__RestoreOperation_d__2__System_Collections_IEnumerator_Reset (SmartPoint_AssetAssistant_PrefabInstantiator__RestoreOperation_d__2_o* __this, const MethodInfo*);
Il2CppObject* SmartPoint_AssetAssistant_PrefabInstantiator__RestoreOperation_d__2__System_Collections_IEnumerator_get_Current (SmartPoint_AssetAssistant_PrefabInstantiator__RestoreOperation_d__2_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneBrowser__add__sceneNavigated (SmartPoint_AssetAssistant_SceneBrowser_ChangeSceneCallback_o* value, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneBrowser__remove__sceneNavigated (SmartPoint_AssetAssistant_SceneBrowser_ChangeSceneCallback_o* value, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneBrowser__add__beforeSceneChanged (SmartPoint_AssetAssistant_SceneBrowser_ChangeSceneCallback_o* value, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneBrowser__remove__beforeSceneChanged (SmartPoint_AssetAssistant_SceneBrowser_ChangeSceneCallback_o* value, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneBrowser__add__prepareForSceneSwitching (SmartPoint_AssetAssistant_SceneBrowser_PrepareForSceneSwitching_o* value, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneBrowser__remove__prepareForSceneSwitching (SmartPoint_AssetAssistant_SceneBrowser_PrepareForSceneSwitching_o* value, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneBrowser__add__delayCall (SmartPoint_AssetAssistant_SceneBrowser_SceneBrowserUpdateCallback_o* value, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneBrowser__remove__delayCall (SmartPoint_AssetAssistant_SceneBrowser_SceneBrowserUpdateCallback_o* value, const MethodInfo*);
bool SmartPoint_AssetAssistant_SceneBrowser__get_hasHistory (const MethodInfo*);
System_String_array* SmartPoint_AssetAssistant_SceneBrowser__get_histories (const MethodInfo*);
SmartPoint_AssetAssistant_SceneEntity_o* SmartPoint_AssetAssistant_SceneBrowser__get_currentScene (const MethodInfo*);
bool SmartPoint_AssetAssistant_SceneBrowser__get_isRequested (const MethodInfo*);
System_Reflection_MethodInfo_o* SmartPoint_AssetAssistant_SceneBrowser__GetSceneRestoreOperationMethod (System_Type_o* type, const MethodInfo*);
System_Reflection_MethodInfo_o* SmartPoint_AssetAssistant_SceneBrowser__GetSceneBeforeActivateOperationMethod (System_Type_o* type, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneBrowser__add_sceneNavigated (SmartPoint_AssetAssistant_SceneBrowser_ChangeSceneCallback_o* value, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneBrowser__remove_sceneNavigated (SmartPoint_AssetAssistant_SceneBrowser_ChangeSceneCallback_o* value, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneBrowser__add_delayCall (SmartPoint_AssetAssistant_SceneBrowser_SceneBrowserUpdateCallback_o* value, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneBrowser__remove_delayCall (SmartPoint_AssetAssistant_SceneBrowser_SceneBrowserUpdateCallback_o* value, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneBrowser__add_beforeSceneChanged (SmartPoint_AssetAssistant_SceneBrowser_ChangeSceneCallback_o* value, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneBrowser__remove_beforeSceneChanged (SmartPoint_AssetAssistant_SceneBrowser_ChangeSceneCallback_o* value, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneBrowser__add_prepareForSceneSwitching (SmartPoint_AssetAssistant_SceneBrowser_PrepareForSceneSwitching_o* value, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneBrowser__remove_prepareForSceneSwitching (SmartPoint_AssetAssistant_SceneBrowser_PrepareForSceneSwitching_o* value, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneBrowser__Initialize (const MethodInfo*);
void SmartPoint_AssetAssistant_SceneBrowser__OnSceneLoaded (UnityEngine_SceneManagement_Scene_o scene, int32_t sceneMode, const MethodInfo*);
System_Collections_IEnumerator_o* SmartPoint_AssetAssistant_SceneBrowser__WaitForAssetReady (const MethodInfo*);
void SmartPoint_AssetAssistant_SceneBrowser__Update (float deltaTime, const MethodInfo*);
bool SmartPoint_AssetAssistant_SceneBrowser__IsFinishedPrepareForSceneSwitching (const MethodInfo*);
void SmartPoint_AssetAssistant_SceneBrowser__SuspendSceneObjects (SmartPoint_AssetAssistant_SceneEntity_o* scene, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneBrowser__ResumeSceneObjects (SmartPoint_AssetAssistant_SceneEntity_o* scene, const MethodInfo*);
SmartPoint_AssetAssistant_SceneEntity_o* SmartPoint_AssetAssistant_SceneBrowser__Open (System_String_o* scenePath, bool useSubScene, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneBrowser__Close (SmartPoint_AssetAssistant_SceneBrowser_o* __this, SmartPoint_AssetAssistant_SceneEntity_o* entity, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneBrowser__Close (UnityEngine_Component_o* component, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneBrowser__UnloadScene (SmartPoint_AssetAssistant_SceneEntity_o* scene, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneBrowser__UnloadScenes (SmartPoint_AssetAssistant_SceneEntity_o* scene, const MethodInfo*);
SmartPoint_AssetAssistant_SceneEntity_o* SmartPoint_AssetAssistant_SceneBrowser__AppendScene (System_String_o* scenePath, bool useSubScene, const MethodInfo*);
System_String_o* SmartPoint_AssetAssistant_SceneBrowser__GetFullPath (System_String_o* sceneName, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneBrowser__RequestScene (SmartPoint_AssetAssistant_SceneEntity_o* scene, const MethodInfo*);
SmartPoint_AssetAssistant_SceneEntity_o* SmartPoint_AssetAssistant_SceneBrowser__Open (System_String_o* scenePath, bool noHistory, bool navigate, bool useSubScene, const MethodInfo*);
SmartPoint_AssetAssistant_SceneEntity_o* SmartPoint_AssetAssistant_SceneBrowser__Navigate (System_String_o* scenePath, bool noHistory, const MethodInfo*);
bool SmartPoint_AssetAssistant_SceneBrowser__CanBack (const MethodInfo*);
bool SmartPoint_AssetAssistant_SceneBrowser__GoBack (const MethodInfo*);
void SmartPoint_AssetAssistant_SceneBrowser__OnSceneUnloaded (UnityEngine_SceneManagement_Scene_o scene, const MethodInfo*);
UnityEngine_GameObject_o* SmartPoint_AssetAssistant_SceneBrowser__InstantiateTo (UnityEngine_SceneManagement_Scene_o scene, UnityEngine_Object_o* asset, const MethodInfo*);
SmartPoint_AssetAssistant_SceneEntity_o* SmartPoint_AssetAssistant_SceneBrowser__GetEntity (System_String_o* path, const MethodInfo*);
SmartPoint_AssetAssistant_SceneEntity_o* SmartPoint_AssetAssistant_SceneBrowser__GetEntity (UnityEngine_Component_o* compoent, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneBrowser___ctor (SmartPoint_AssetAssistant_SceneBrowser_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneBrowser_ChangeSceneCallback___ctor (SmartPoint_AssetAssistant_SceneBrowser_ChangeSceneCallback_o* __this, Il2CppObject* object, intptr_t method, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneBrowser_ChangeSceneCallback__Invoke (SmartPoint_AssetAssistant_SceneBrowser_ChangeSceneCallback_o* __this, SmartPoint_AssetAssistant_SceneEntity_o* currentScene, SmartPoint_AssetAssistant_SceneEntity_o* targetScene, const MethodInfo*);
System_IAsyncResult_o* SmartPoint_AssetAssistant_SceneBrowser_ChangeSceneCallback__BeginInvoke (SmartPoint_AssetAssistant_SceneBrowser_ChangeSceneCallback_o* __this, SmartPoint_AssetAssistant_SceneEntity_o* currentScene, SmartPoint_AssetAssistant_SceneEntity_o* targetScene, System_AsyncCallback_o* callback, Il2CppObject* object, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneBrowser_ChangeSceneCallback__EndInvoke (SmartPoint_AssetAssistant_SceneBrowser_ChangeSceneCallback_o* __this, System_IAsyncResult_o* result, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneBrowser_SceneBrowserUpdateCallback___ctor (SmartPoint_AssetAssistant_SceneBrowser_SceneBrowserUpdateCallback_o* __this, Il2CppObject* object, intptr_t method, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneBrowser_SceneBrowserUpdateCallback__Invoke (SmartPoint_AssetAssistant_SceneBrowser_SceneBrowserUpdateCallback_o* __this, const MethodInfo*);
System_IAsyncResult_o* SmartPoint_AssetAssistant_SceneBrowser_SceneBrowserUpdateCallback__BeginInvoke (SmartPoint_AssetAssistant_SceneBrowser_SceneBrowserUpdateCallback_o* __this, System_AsyncCallback_o* callback, Il2CppObject* object, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneBrowser_SceneBrowserUpdateCallback__EndInvoke (SmartPoint_AssetAssistant_SceneBrowser_SceneBrowserUpdateCallback_o* __this, System_IAsyncResult_o* result, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneBrowser_PrepareForSceneSwitching___ctor (SmartPoint_AssetAssistant_SceneBrowser_PrepareForSceneSwitching_o* __this, Il2CppObject* object, intptr_t method, const MethodInfo*);
System_Collections_IEnumerator_o* SmartPoint_AssetAssistant_SceneBrowser_PrepareForSceneSwitching__Invoke (SmartPoint_AssetAssistant_SceneBrowser_PrepareForSceneSwitching_o* __this, SmartPoint_AssetAssistant_SceneEntity_o* currentScene, SmartPoint_AssetAssistant_SceneEntity_o* targetScene, const MethodInfo*);
System_IAsyncResult_o* SmartPoint_AssetAssistant_SceneBrowser_PrepareForSceneSwitching__BeginInvoke (SmartPoint_AssetAssistant_SceneBrowser_PrepareForSceneSwitching_o* __this, SmartPoint_AssetAssistant_SceneEntity_o* currentScene, SmartPoint_AssetAssistant_SceneEntity_o* targetScene, System_AsyncCallback_o* callback, Il2CppObject* object, const MethodInfo*);
System_Collections_IEnumerator_o* SmartPoint_AssetAssistant_SceneBrowser_PrepareForSceneSwitching__EndInvoke (SmartPoint_AssetAssistant_SceneBrowser_PrepareForSceneSwitching_o* __this, System_IAsyncResult_o* result, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneBrowser__WaitForAssetReady_d__50___ctor (SmartPoint_AssetAssistant_SceneBrowser__WaitForAssetReady_d__50_o* __this, int32_t __1__state, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneBrowser__WaitForAssetReady_d__50__System_IDisposable_Dispose (SmartPoint_AssetAssistant_SceneBrowser__WaitForAssetReady_d__50_o* __this, const MethodInfo*);
bool SmartPoint_AssetAssistant_SceneBrowser__WaitForAssetReady_d__50__MoveNext (SmartPoint_AssetAssistant_SceneBrowser__WaitForAssetReady_d__50_o* __this, const MethodInfo*);
Il2CppObject* SmartPoint_AssetAssistant_SceneBrowser__WaitForAssetReady_d__50__System_Collections_Generic_IEnumerator_System_Object__get_Current (SmartPoint_AssetAssistant_SceneBrowser__WaitForAssetReady_d__50_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneBrowser__WaitForAssetReady_d__50__System_Collections_IEnumerator_Reset (SmartPoint_AssetAssistant_SceneBrowser__WaitForAssetReady_d__50_o* __this, const MethodInfo*);
Il2CppObject* SmartPoint_AssetAssistant_SceneBrowser__WaitForAssetReady_d__50__System_Collections_IEnumerator_get_Current (SmartPoint_AssetAssistant_SceneBrowser__WaitForAssetReady_d__50_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneDatabase__OnEnable (SmartPoint_AssetAssistant_SceneDatabase_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneDatabase__InternalUpdate (SmartPoint_AssetAssistant_SceneDatabase_o* __this, const MethodInfo*);
bool SmartPoint_AssetAssistant_SceneDatabase__Contains (System_String_o* scenePath, const MethodInfo*);
System_String_o* SmartPoint_AssetAssistant_SceneDatabase__GUIDToPath (System_String_o* guid, const MethodInfo*);
bool SmartPoint_AssetAssistant_SceneDatabase__IsExist (System_String_o* scenePath, const MethodInfo*);
SmartPoint_AssetAssistant_SceneDatabase_SceneProperty_o* SmartPoint_AssetAssistant_SceneDatabase__GetProperty (System_String_o* scenePath, const MethodInfo*);
System_String_o* SmartPoint_AssetAssistant_SceneDatabase__GetAssetBundleName (System_String_o* scenePath, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneDatabase__AddProperty (System_String_o* path, const MethodInfo*);
System_Collections_Generic_Dictionary_string__SceneDatabase_SceneProperty__o* SmartPoint_AssetAssistant_SceneDatabase__GetAllSceneProperty (const MethodInfo*);
void SmartPoint_AssetAssistant_SceneDatabase___ctor (SmartPoint_AssetAssistant_SceneDatabase_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneDatabase_SceneProperty___ctor (SmartPoint_AssetAssistant_SceneDatabase_SceneProperty_o* __this, System_String_o* path, const MethodInfo*);
System_String_o* SmartPoint_AssetAssistant_SceneDatabase_SceneProperty__get_scenePath (SmartPoint_AssetAssistant_SceneDatabase_SceneProperty_o* __this, const MethodInfo*);
System_String_o* SmartPoint_AssetAssistant_SceneDatabase_SceneProperty__get_guid (SmartPoint_AssetAssistant_SceneDatabase_SceneProperty_o* __this, const MethodInfo*);
System_String_o* SmartPoint_AssetAssistant_SceneDatabase_SceneProperty__get_assetBundleName (SmartPoint_AssetAssistant_SceneDatabase_SceneProperty_o* __this, const MethodInfo*);
bool SmartPoint_AssetAssistant_SceneDatabase_SceneProperty__get_dontDiscard (SmartPoint_AssetAssistant_SceneDatabase_SceneProperty_o* __this, const MethodInfo*);
bool SmartPoint_AssetAssistant_SceneDatabase_SceneProperty__get_leaveHistroy (SmartPoint_AssetAssistant_SceneDatabase_SceneProperty_o* __this, const MethodInfo*);
System_String_array* SmartPoint_AssetAssistant_SceneDatabase_SceneProperty__get_includes (SmartPoint_AssetAssistant_SceneDatabase_SceneProperty_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneEntity___ctor (SmartPoint_AssetAssistant_SceneEntity_o* __this, System_String_o* sceneName, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneEntity___ctor (SmartPoint_AssetAssistant_SceneEntity_o* __this, UnityEngine_SceneManagement_Scene_o scene, const MethodInfo*);
System_String_o* SmartPoint_AssetAssistant_SceneEntity__get_path (SmartPoint_AssetAssistant_SceneEntity_o* __this, const MethodInfo*);
SmartPoint_AssetAssistant_SceneDatabase_SceneProperty_o* SmartPoint_AssetAssistant_SceneEntity__get_property (SmartPoint_AssetAssistant_SceneEntity_o* __this, const MethodInfo*);
UnityEngine_GameObject_o* SmartPoint_AssetAssistant_SceneEntity__get_cluster (SmartPoint_AssetAssistant_SceneEntity_o* __this, const MethodInfo*);
SmartPoint_AssetAssistant_SceneEntity_array* SmartPoint_AssetAssistant_SceneEntity__get_includes (SmartPoint_AssetAssistant_SceneEntity_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneEntity__set_includes (SmartPoint_AssetAssistant_SceneEntity_o* __this, SmartPoint_AssetAssistant_SceneEntity_array* value, const MethodInfo*);
bool SmartPoint_AssetAssistant_SceneEntity__get_isRequested (SmartPoint_AssetAssistant_SceneEntity_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneEntity__set_isRequested (SmartPoint_AssetAssistant_SceneEntity_o* __this, bool value, const MethodInfo*);
UnityEngine_Transform_o* SmartPoint_AssetAssistant_SceneEntity__get_clusterRootTransform (SmartPoint_AssetAssistant_SceneEntity_o* __this, const MethodInfo*);
bool SmartPoint_AssetAssistant_SceneEntity__get_isLoaded (SmartPoint_AssetAssistant_SceneEntity_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneEntity__set_isLoaded (SmartPoint_AssetAssistant_SceneEntity_o* __this, bool value, const MethodInfo*);
UnityEngine_MonoBehaviour_array* SmartPoint_AssetAssistant_SceneEntity__FindScripts (SmartPoint_AssetAssistant_SceneEntity_o* __this, const MethodInfo*);
bool SmartPoint_AssetAssistant_SceneEntity__get_isActivatable (SmartPoint_AssetAssistant_SceneEntity_o* __this, const MethodInfo*);
bool SmartPoint_AssetAssistant_SceneEntity__CanActivate (SmartPoint_AssetAssistant_SceneEntity_o* __this, const MethodInfo*);
bool SmartPoint_AssetAssistant_SceneEntity__CanDeactivate (SmartPoint_AssetAssistant_SceneEntity_o* __this, const MethodInfo*);
UnityEngine_GameObject_array* SmartPoint_AssetAssistant_SceneEntity__GetRootGameObjects (SmartPoint_AssetAssistant_SceneEntity_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneEntity__Suspend (SmartPoint_AssetAssistant_SceneEntity_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneEntity__Resume (SmartPoint_AssetAssistant_SceneEntity_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_SceneEntity_Operation___ctor (SmartPoint_AssetAssistant_SceneEntity_Operation_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_SequenceMonoBehaviour__OnEnable (SmartPoint_AssetAssistant_SequenceMonoBehaviour_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_SequenceMonoBehaviour__OnDisable (SmartPoint_AssetAssistant_SequenceMonoBehaviour_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_SequenceMonoBehaviour___ctor (SmartPoint_AssetAssistant_SequenceMonoBehaviour_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_LogMessage___ctor (SmartPoint_AssetAssistant_LogMessage_o* __this, int32_t id, const MethodInfo*);
void SmartPoint_AssetAssistant_LogMessage__AdvanceAndSet (SmartPoint_AssetAssistant_LogMessage_o* __this, System_String_o* condition, System_String_o* stackTrace, int32_t type, const MethodInfo*);
void SmartPoint_AssetAssistant_LogMessage___cctor (const MethodInfo*);
System_Text_StringBuilder_o* SmartPoint_AssetAssistant_Sequencer__get_stringBuilder (const MethodInfo*);
float SmartPoint_AssetAssistant_Sequencer__get_elapsedTime (const MethodInfo*);
void SmartPoint_AssetAssistant_Sequencer__set_elapsedTime (float value, const MethodInfo*);
int32_t SmartPoint_AssetAssistant_Sequencer__get_nativeScreenWidth (const MethodInfo*);
void SmartPoint_AssetAssistant_Sequencer__set_nativeScreenWidth (int32_t value, const MethodInfo*);
int32_t SmartPoint_AssetAssistant_Sequencer__get_nativeScreenHeight (const MethodInfo*);
void SmartPoint_AssetAssistant_Sequencer__set_nativeScreenHeight (int32_t value, const MethodInfo*);
float SmartPoint_AssetAssistant_Sequencer__get_nativeAspectRatio (const MethodInfo*);
void SmartPoint_AssetAssistant_Sequencer__set_nativeAspectRatio (float value, const MethodInfo*);
int32_t SmartPoint_AssetAssistant_Sequencer__get_screenWidth (const MethodInfo*);
void SmartPoint_AssetAssistant_Sequencer__set_screenWidth (int32_t value, const MethodInfo*);
int32_t SmartPoint_AssetAssistant_Sequencer__get_screenHeight (const MethodInfo*);
void SmartPoint_AssetAssistant_Sequencer__set_screenHeight (int32_t value, const MethodInfo*);
float SmartPoint_AssetAssistant_Sequencer__get_aspectRatio (const MethodInfo*);
void SmartPoint_AssetAssistant_Sequencer__set_aspectRatio (float value, const MethodInfo*);
bool SmartPoint_AssetAssistant_Sequencer__get_isSuspendUpdate (const MethodInfo*);
void SmartPoint_AssetAssistant_Sequencer__set_isSuspendUpdate (bool value, const MethodInfo*);
void SmartPoint_AssetAssistant_Sequencer__Initialize (const MethodInfo*);
SmartPoint_AssetAssistant_IUnityEditorProxy_o* SmartPoint_AssetAssistant_Sequencer__get_editorProxy (const MethodInfo*);
bool SmartPoint_AssetAssistant_Sequencer__Awake (SmartPoint_AssetAssistant_Sequencer_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_Sequencer__SubscribeUpdate (int32_t order, SmartPoint_AssetAssistant_Sequencer_TickCallback_o* callback, const MethodInfo*);
void SmartPoint_AssetAssistant_Sequencer__UnsubscribeUpdate (SmartPoint_AssetAssistant_Sequencer_TickCallback_o* callback, const MethodInfo*);
void SmartPoint_AssetAssistant_Sequencer__Trash (UnityEngine_Object_o* trashObject, const MethodInfo*);
UnityEngine_Coroutine_o* SmartPoint_AssetAssistant_Sequencer__Start (System_Collections_IEnumerator_o* routine, const MethodInfo*);
System_Collections_IEnumerator_o* SmartPoint_AssetAssistant_Sequencer__RunCoroutine (System_Collections_IEnumerator_o* routine, const MethodInfo*);
void SmartPoint_AssetAssistant_Sequencer__Stop (UnityEngine_Coroutine_o* coroutine, const MethodInfo*);
bool SmartPoint_AssetAssistant_Sequencer__IsFinished (UnityEngine_Coroutine_o* coroutine, const MethodInfo*);
void SmartPoint_AssetAssistant_Sequencer__Update (SmartPoint_AssetAssistant_Sequencer_o* __this, const MethodInfo*);
System_Collections_IEnumerator_o* SmartPoint_AssetAssistant_Sequencer__AfterUpdate (SmartPoint_AssetAssistant_Sequencer_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_Sequencer__LateUpdate (SmartPoint_AssetAssistant_Sequencer_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_Sequencer__OnDestroy (SmartPoint_AssetAssistant_Sequencer_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_Sequencer__OnApplicationQuit (SmartPoint_AssetAssistant_Sequencer_o* __this, const MethodInfo*);
UnityEngine_Component_o* SmartPoint_AssetAssistant_Sequencer__AddComponent (System_Type_o* componentType, const MethodInfo*);
Il2CppObject* SmartPoint_AssetAssistant_Sequencer__AddComponent_object_ (const MethodInfo_1D6DF50* method_1D6DF50);
UnityEngine_Camera_o* SmartPoint_AssetAssistant_Sequencer__AddComponent_Camera_ (const MethodInfo_1D6DF50* method_1D6DF50);
void SmartPoint_AssetAssistant_Sequencer__RemoveComponent (System_Type_o* componentType, const MethodInfo*);
void SmartPoint_AssetAssistant_Sequencer__RemoveCompoent_object_ (const MethodInfo_1B52DD0* method_1B52DD0);
void SmartPoint_AssetAssistant_Sequencer__RemoveCompoent_Camera_ (const MethodInfo_1B52DD0* method_1B52DD0);
void SmartPoint_AssetAssistant_Sequencer__LogReceiver (System_String_o* condition, System_String_o* stackTrace, int32_t type, const MethodInfo*);
SmartPoint_AssetAssistant_LogMessage_o* SmartPoint_AssetAssistant_Sequencer__GetLastLog (const MethodInfo*);
SmartPoint_AssetAssistant_LogMessage_array* SmartPoint_AssetAssistant_Sequencer__GetLogs (int32_t startID, const MethodInfo*);
System_String_o* SmartPoint_AssetAssistant_Sequencer__FormatMessage (SmartPoint_AssetAssistant_Sequencer_o* __this, System_String_o* message, const MethodInfo*);
System_Collections_IEnumerator_o* SmartPoint_AssetAssistant_Sequencer__LogSender (SmartPoint_AssetAssistant_Sequencer_o* __this, System_String_o* url, const MethodInfo*);
bool SmartPoint_AssetAssistant_Sequencer__IntersectGUI (UnityEngine_Vector3_o position, const MethodInfo*);
System_Collections_Generic_List_RaycastResult__o* SmartPoint_AssetAssistant_Sequencer__GetIntersectGUIs (UnityEngine_Vector3_o position, const MethodInfo*);
void SmartPoint_AssetAssistant_Sequencer___ctor (SmartPoint_AssetAssistant_Sequencer_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_Sequencer___cctor (const MethodInfo*);
void SmartPoint_AssetAssistant_Sequencer_EventCallback___ctor (SmartPoint_AssetAssistant_Sequencer_EventCallback_o* __this, Il2CppObject* object, intptr_t method, const MethodInfo*);
void SmartPoint_AssetAssistant_Sequencer_EventCallback__Invoke (SmartPoint_AssetAssistant_Sequencer_EventCallback_o* __this, const MethodInfo*);
System_IAsyncResult_o* SmartPoint_AssetAssistant_Sequencer_EventCallback__BeginInvoke (SmartPoint_AssetAssistant_Sequencer_EventCallback_o* __this, System_AsyncCallback_o* callback, Il2CppObject* object, const MethodInfo*);
void SmartPoint_AssetAssistant_Sequencer_EventCallback__EndInvoke (SmartPoint_AssetAssistant_Sequencer_EventCallback_o* __this, System_IAsyncResult_o* result, const MethodInfo*);
void SmartPoint_AssetAssistant_Sequencer_TickCallback___ctor (SmartPoint_AssetAssistant_Sequencer_TickCallback_o* __this, Il2CppObject* object, intptr_t method, const MethodInfo*);
void SmartPoint_AssetAssistant_Sequencer_TickCallback__Invoke (SmartPoint_AssetAssistant_Sequencer_TickCallback_o* __this, float deltaTime, const MethodInfo*);
System_IAsyncResult_o* SmartPoint_AssetAssistant_Sequencer_TickCallback__BeginInvoke (SmartPoint_AssetAssistant_Sequencer_TickCallback_o* __this, float deltaTime, System_AsyncCallback_o* callback, Il2CppObject* object, const MethodInfo*);
void SmartPoint_AssetAssistant_Sequencer_TickCallback__EndInvoke (SmartPoint_AssetAssistant_Sequencer_TickCallback_o* __this, System_IAsyncResult_o* result, const MethodInfo*);
void SmartPoint_AssetAssistant_Sequencer___c__DisplayClass65_0___ctor (SmartPoint_AssetAssistant_Sequencer___c__DisplayClass65_0_o* __this, const MethodInfo*);
bool SmartPoint_AssetAssistant_Sequencer___c__DisplayClass65_0___SubscribeUpdate_b__0 (SmartPoint_AssetAssistant_Sequencer___c__DisplayClass65_0_o* __this, System_ValueTuple_int__Sequencer_TickCallback__o x, const MethodInfo*);
void SmartPoint_AssetAssistant_Sequencer___c__DisplayClass66_0___ctor (SmartPoint_AssetAssistant_Sequencer___c__DisplayClass66_0_o* __this, const MethodInfo*);
bool SmartPoint_AssetAssistant_Sequencer___c__DisplayClass66_0___UnsubscribeUpdate_b__0 (SmartPoint_AssetAssistant_Sequencer___c__DisplayClass66_0_o* __this, System_ValueTuple_int__Sequencer_TickCallback__o x, const MethodInfo*);
void SmartPoint_AssetAssistant_Sequencer__RunCoroutine_d__69___ctor (SmartPoint_AssetAssistant_Sequencer__RunCoroutine_d__69_o* __this, int32_t __1__state, const MethodInfo*);
void SmartPoint_AssetAssistant_Sequencer__RunCoroutine_d__69__System_IDisposable_Dispose (SmartPoint_AssetAssistant_Sequencer__RunCoroutine_d__69_o* __this, const MethodInfo*);
bool SmartPoint_AssetAssistant_Sequencer__RunCoroutine_d__69__MoveNext (SmartPoint_AssetAssistant_Sequencer__RunCoroutine_d__69_o* __this, const MethodInfo*);
Il2CppObject* SmartPoint_AssetAssistant_Sequencer__RunCoroutine_d__69__System_Collections_Generic_IEnumerator_System_Object__get_Current (SmartPoint_AssetAssistant_Sequencer__RunCoroutine_d__69_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_Sequencer__RunCoroutine_d__69__System_Collections_IEnumerator_Reset (SmartPoint_AssetAssistant_Sequencer__RunCoroutine_d__69_o* __this, const MethodInfo*);
Il2CppObject* SmartPoint_AssetAssistant_Sequencer__RunCoroutine_d__69__System_Collections_IEnumerator_get_Current (SmartPoint_AssetAssistant_Sequencer__RunCoroutine_d__69_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_Sequencer__AfterUpdate_d__73___ctor (SmartPoint_AssetAssistant_Sequencer__AfterUpdate_d__73_o* __this, int32_t __1__state, const MethodInfo*);
void SmartPoint_AssetAssistant_Sequencer__AfterUpdate_d__73__System_IDisposable_Dispose (SmartPoint_AssetAssistant_Sequencer__AfterUpdate_d__73_o* __this, const MethodInfo*);
bool SmartPoint_AssetAssistant_Sequencer__AfterUpdate_d__73__MoveNext (SmartPoint_AssetAssistant_Sequencer__AfterUpdate_d__73_o* __this, const MethodInfo*);
Il2CppObject* SmartPoint_AssetAssistant_Sequencer__AfterUpdate_d__73__System_Collections_Generic_IEnumerator_System_Object__get_Current (SmartPoint_AssetAssistant_Sequencer__AfterUpdate_d__73_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_Sequencer__AfterUpdate_d__73__System_Collections_IEnumerator_Reset (SmartPoint_AssetAssistant_Sequencer__AfterUpdate_d__73_o* __this, const MethodInfo*);
Il2CppObject* SmartPoint_AssetAssistant_Sequencer__AfterUpdate_d__73__System_Collections_IEnumerator_get_Current (SmartPoint_AssetAssistant_Sequencer__AfterUpdate_d__73_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_Sequencer___c___cctor (const MethodInfo*);
void SmartPoint_AssetAssistant_Sequencer___c___ctor (SmartPoint_AssetAssistant_Sequencer___c_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_Sequencer___c___LateUpdate_b__74_0 (SmartPoint_AssetAssistant_Sequencer___c_o* __this, SmartPoint_AssetAssistant_IViewportChangeHandler_o* x, UnityEngine_EventSystems_BaseEventData_o* y, const MethodInfo*);
void SmartPoint_AssetAssistant_Sequencer__LogSender_d__85___ctor (SmartPoint_AssetAssistant_Sequencer__LogSender_d__85_o* __this, int32_t __1__state, const MethodInfo*);
void SmartPoint_AssetAssistant_Sequencer__LogSender_d__85__System_IDisposable_Dispose (SmartPoint_AssetAssistant_Sequencer__LogSender_d__85_o* __this, const MethodInfo*);
bool SmartPoint_AssetAssistant_Sequencer__LogSender_d__85__MoveNext (SmartPoint_AssetAssistant_Sequencer__LogSender_d__85_o* __this, const MethodInfo*);
Il2CppObject* SmartPoint_AssetAssistant_Sequencer__LogSender_d__85__System_Collections_Generic_IEnumerator_System_Object__get_Current (SmartPoint_AssetAssistant_Sequencer__LogSender_d__85_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_Sequencer__LogSender_d__85__System_Collections_IEnumerator_Reset (SmartPoint_AssetAssistant_Sequencer__LogSender_d__85_o* __this, const MethodInfo*);
Il2CppObject* SmartPoint_AssetAssistant_Sequencer__LogSender_d__85__System_Collections_IEnumerator_get_Current (SmartPoint_AssetAssistant_Sequencer__LogSender_d__85_o* __this, const MethodInfo*);
bool SmartPoint_AssetAssistant_SingletonMonoBehaviour_Sequencer___get_isQuit (const MethodInfo_23C1F60* method_23C1F60);
bool SmartPoint_AssetAssistant_SingletonMonoBehaviour_object___get_isQuit (const MethodInfo_23C1F60* method_23C1F60);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_object___set_isQuit (bool value, const MethodInfo_23C2090* method_23C2090);
bool SmartPoint_AssetAssistant_SingletonMonoBehaviour_AudioManager___get_isInstantiated (const MethodInfo_23C21D0* method_23C21D0);
bool SmartPoint_AssetAssistant_SingletonMonoBehaviour_BattleProc___get_isInstantiated (const MethodInfo_23C21D0* method_23C21D0);
bool SmartPoint_AssetAssistant_SingletonMonoBehaviour_BattleViewCore___get_isInstantiated (const MethodInfo_23C21D0* method_23C21D0);
bool SmartPoint_AssetAssistant_SingletonMonoBehaviour_FureaiManager___get_isInstantiated (const MethodInfo_23C21D0* method_23C21D0);
bool SmartPoint_AssetAssistant_SingletonMonoBehaviour_MessageManager___get_isInstantiated (const MethodInfo_23C21D0* method_23C21D0);
bool SmartPoint_AssetAssistant_SingletonMonoBehaviour_MsgWindowManager___get_isInstantiated (const MethodInfo_23C21D0* method_23C21D0);
bool SmartPoint_AssetAssistant_SingletonMonoBehaviour_NetworkManager___get_isInstantiated (const MethodInfo_23C21D0* method_23C21D0);
bool SmartPoint_AssetAssistant_SingletonMonoBehaviour_PoffinCookingSceneManager___get_isInstantiated (const MethodInfo_23C21D0* method_23C21D0);
bool SmartPoint_AssetAssistant_SingletonMonoBehaviour_EffectManager___get_isInstantiated (const MethodInfo_23C21D0* method_23C21D0);
bool SmartPoint_AssetAssistant_SingletonMonoBehaviour_GameManager___get_isInstantiated (const MethodInfo_23C21D0* method_23C21D0);
bool SmartPoint_AssetAssistant_SingletonMonoBehaviour_object___get_isInstantiated (const MethodInfo_23C21D0* method_23C21D0);
bool SmartPoint_AssetAssistant_SingletonMonoBehaviour_UgNetworkManager___get_isInstantiated (const MethodInfo_23C21D0* method_23C21D0);
UnityEngine_GameObject_o* SmartPoint_AssetAssistant_SingletonMonoBehaviour_object___GetGameObject (const MethodInfo_23C2370* method_23C2370);
Audio_AudioManager_o* SmartPoint_AssetAssistant_SingletonMonoBehaviour_AudioManager___get_Instance (const MethodInfo_23C2630* method_23C2630);
ColiseumFrontDeskStateController_o* SmartPoint_AssetAssistant_SingletonMonoBehaviour_ColiseumFrontDeskStateController___get_Instance (const MethodInfo_23C2630* method_23C2630);
ColiseumRoomManager_o* SmartPoint_AssetAssistant_SingletonMonoBehaviour_ColiseumRoomManager___get_Instance (const MethodInfo_23C2630* method_23C2630);
Dpr_Battle_Logic_BattleProc_o* SmartPoint_AssetAssistant_SingletonMonoBehaviour_BattleProc___get_Instance (const MethodInfo_23C2630* method_23C2630);
Dpr_Battle_View_BattleViewCore_o* SmartPoint_AssetAssistant_SingletonMonoBehaviour_BattleViewCore___get_Instance (const MethodInfo_23C2630* method_23C2630);
Dpr_Contest_SceneObjectManager_o* SmartPoint_AssetAssistant_SingletonMonoBehaviour_SceneObjectManager___get_Instance (const MethodInfo_23C2630* method_23C2630);
Dpr_FureaiHiroba_FureaiManager_o* SmartPoint_AssetAssistant_SingletonMonoBehaviour_FureaiManager___get_Instance (const MethodInfo_23C2630* method_23C2630);
Dpr_Message_FontManager_o* SmartPoint_AssetAssistant_SingletonMonoBehaviour_FontManager___get_Instance (const MethodInfo_23C2630* method_23C2630);
Dpr_Message_MessageManager_o* SmartPoint_AssetAssistant_SingletonMonoBehaviour_MessageManager___get_Instance (const MethodInfo_23C2630* method_23C2630);
Dpr_MsgWindow_MsgWindowManager_o* SmartPoint_AssetAssistant_SingletonMonoBehaviour_MsgWindowManager___get_Instance (const MethodInfo_23C2630* method_23C2630);
Dpr_NetworkUtils_NetworkManager_o* SmartPoint_AssetAssistant_SingletonMonoBehaviour_NetworkManager___get_Instance (const MethodInfo_23C2630* method_23C2630);
Dpr_SubContents_PoffinCookingSceneManager_o* SmartPoint_AssetAssistant_SingletonMonoBehaviour_PoffinCookingSceneManager___get_Instance (const MethodInfo_23C2630* method_23C2630);
Dpr_UI_UIManager_o* SmartPoint_AssetAssistant_SingletonMonoBehaviour_UIManager___get_Instance (const MethodInfo_23C2630* method_23C2630);
Dpr_UnderGround_LightStone_LightStoneManager_o* SmartPoint_AssetAssistant_SingletonMonoBehaviour_LightStoneManager___get_Instance (const MethodInfo_23C2630* method_23C2630);
Effect_EffectManager_o* SmartPoint_AssetAssistant_SingletonMonoBehaviour_EffectManager___get_Instance (const MethodInfo_23C2630* method_23C2630);
GameManager_o* SmartPoint_AssetAssistant_SingletonMonoBehaviour_GameManager___get_Instance (const MethodInfo_23C2630* method_23C2630);
SmartPoint_Components_DebugMenu_o* SmartPoint_AssetAssistant_SingletonMonoBehaviour_DebugMenu___get_Instance (const MethodInfo_23C2630* method_23C2630);
SmartPoint_Components_DebugMonitor_o* SmartPoint_AssetAssistant_SingletonMonoBehaviour_DebugMonitor___get_Instance (const MethodInfo_23C2630* method_23C2630);
SmartPoint_Components_Fader_o* SmartPoint_AssetAssistant_SingletonMonoBehaviour_Fader___get_Instance (const MethodInfo_23C2630* method_23C2630);
TheaterTrackPlayer_o* SmartPoint_AssetAssistant_SingletonMonoBehaviour_TheaterTrackPlayer___get_Instance (const MethodInfo_23C2630* method_23C2630);
UgNetworkManager_o* SmartPoint_AssetAssistant_SingletonMonoBehaviour_UgNetworkManager___get_Instance (const MethodInfo_23C2630* method_23C2630);
UnionFrontDeskStateController_o* SmartPoint_AssetAssistant_SingletonMonoBehaviour_UnionFrontDeskStateController___get_Instance (const MethodInfo_23C2630* method_23C2630);
UnionRoomManager_o* SmartPoint_AssetAssistant_SingletonMonoBehaviour_UnionRoomManager___get_Instance (const MethodInfo_23C2630* method_23C2630);
SmartPoint_AssetAssistant_Sequencer_o* SmartPoint_AssetAssistant_SingletonMonoBehaviour_Sequencer___get_Instance (const MethodInfo_23C2630* method_23C2630);
Il2CppObject* SmartPoint_AssetAssistant_SingletonMonoBehaviour_object___get_Instance (const MethodInfo_23C2630* method_23C2630);
bool SmartPoint_AssetAssistant_SingletonMonoBehaviour_AudioManager___Awake (SmartPoint_AssetAssistant_SingletonMonoBehaviour_AudioManager__o* __this, const MethodInfo_23C3350* method_23C3350);
bool SmartPoint_AssetAssistant_SingletonMonoBehaviour_ColiseumFrontDeskStateController___Awake (SmartPoint_AssetAssistant_SingletonMonoBehaviour_ColiseumFrontDeskStateController__o* __this, const MethodInfo_23C3350* method_23C3350);
bool SmartPoint_AssetAssistant_SingletonMonoBehaviour_ColiseumRoomManager___Awake (SmartPoint_AssetAssistant_SingletonMonoBehaviour_ColiseumRoomManager__o* __this, const MethodInfo_23C3350* method_23C3350);
bool SmartPoint_AssetAssistant_SingletonMonoBehaviour_BattleProc___Awake (SmartPoint_AssetAssistant_SingletonMonoBehaviour_BattleProc__o* __this, const MethodInfo_23C3350* method_23C3350);
bool SmartPoint_AssetAssistant_SingletonMonoBehaviour_BattleViewCore___Awake (SmartPoint_AssetAssistant_SingletonMonoBehaviour_BattleViewCore__o* __this, const MethodInfo_23C3350* method_23C3350);
bool SmartPoint_AssetAssistant_SingletonMonoBehaviour_SceneObjectManager___Awake (SmartPoint_AssetAssistant_SingletonMonoBehaviour_SceneObjectManager__o* __this, const MethodInfo_23C3350* method_23C3350);
bool SmartPoint_AssetAssistant_SingletonMonoBehaviour_FureaiManager___Awake (SmartPoint_AssetAssistant_SingletonMonoBehaviour_FureaiManager__o* __this, const MethodInfo_23C3350* method_23C3350);
bool SmartPoint_AssetAssistant_SingletonMonoBehaviour_FontManager___Awake (SmartPoint_AssetAssistant_SingletonMonoBehaviour_FontManager__o* __this, const MethodInfo_23C3350* method_23C3350);
bool SmartPoint_AssetAssistant_SingletonMonoBehaviour_MessageManager___Awake (SmartPoint_AssetAssistant_SingletonMonoBehaviour_MessageManager__o* __this, const MethodInfo_23C3350* method_23C3350);
bool SmartPoint_AssetAssistant_SingletonMonoBehaviour_MsgWindowManager___Awake (SmartPoint_AssetAssistant_SingletonMonoBehaviour_MsgWindowManager__o* __this, const MethodInfo_23C3350* method_23C3350);
bool SmartPoint_AssetAssistant_SingletonMonoBehaviour_NetworkManager___Awake (SmartPoint_AssetAssistant_SingletonMonoBehaviour_NetworkManager__o* __this, const MethodInfo_23C3350* method_23C3350);
bool SmartPoint_AssetAssistant_SingletonMonoBehaviour_PoffinCookingSceneManager___Awake (SmartPoint_AssetAssistant_SingletonMonoBehaviour_PoffinCookingSceneManager__o* __this, const MethodInfo_23C3350* method_23C3350);
bool SmartPoint_AssetAssistant_SingletonMonoBehaviour_UIManager___Awake (SmartPoint_AssetAssistant_SingletonMonoBehaviour_UIManager__o* __this, const MethodInfo_23C3350* method_23C3350);
bool SmartPoint_AssetAssistant_SingletonMonoBehaviour_LightStoneManager___Awake (SmartPoint_AssetAssistant_SingletonMonoBehaviour_LightStoneManager__o* __this, const MethodInfo_23C3350* method_23C3350);
bool SmartPoint_AssetAssistant_SingletonMonoBehaviour_UgFatherManager___Awake (SmartPoint_AssetAssistant_SingletonMonoBehaviour_UgFatherManager__o* __this, const MethodInfo_23C3350* method_23C3350);
bool SmartPoint_AssetAssistant_SingletonMonoBehaviour_EffectManager___Awake (SmartPoint_AssetAssistant_SingletonMonoBehaviour_EffectManager__o* __this, const MethodInfo_23C3350* method_23C3350);
bool SmartPoint_AssetAssistant_SingletonMonoBehaviour_EnterCollision___Awake (SmartPoint_AssetAssistant_SingletonMonoBehaviour_EnterCollision__o* __this, const MethodInfo_23C3350* method_23C3350);
bool SmartPoint_AssetAssistant_SingletonMonoBehaviour_GameManager___Awake (SmartPoint_AssetAssistant_SingletonMonoBehaviour_GameManager__o* __this, const MethodInfo_23C3350* method_23C3350);
bool SmartPoint_AssetAssistant_SingletonMonoBehaviour_Sequencer___Awake (SmartPoint_AssetAssistant_SingletonMonoBehaviour_Sequencer__o* __this, const MethodInfo_23C3350* method_23C3350);
bool SmartPoint_AssetAssistant_SingletonMonoBehaviour_DebugMenu___Awake (SmartPoint_AssetAssistant_SingletonMonoBehaviour_DebugMenu__o* __this, const MethodInfo_23C3350* method_23C3350);
bool SmartPoint_AssetAssistant_SingletonMonoBehaviour_DebugMonitor___Awake (SmartPoint_AssetAssistant_SingletonMonoBehaviour_DebugMonitor__o* __this, const MethodInfo_23C3350* method_23C3350);
bool SmartPoint_AssetAssistant_SingletonMonoBehaviour_Fader___Awake (SmartPoint_AssetAssistant_SingletonMonoBehaviour_Fader__o* __this, const MethodInfo_23C3350* method_23C3350);
bool SmartPoint_AssetAssistant_SingletonMonoBehaviour_object___Awake (SmartPoint_AssetAssistant_SingletonMonoBehaviour_object__o* __this, const MethodInfo_23C3350* method_23C3350);
bool SmartPoint_AssetAssistant_SingletonMonoBehaviour_TheaterTrackPlayer___Awake (SmartPoint_AssetAssistant_SingletonMonoBehaviour_TheaterTrackPlayer__o* __this, const MethodInfo_23C3350* method_23C3350);
bool SmartPoint_AssetAssistant_SingletonMonoBehaviour_UgNetworkManager___Awake (SmartPoint_AssetAssistant_SingletonMonoBehaviour_UgNetworkManager__o* __this, const MethodInfo_23C3350* method_23C3350);
bool SmartPoint_AssetAssistant_SingletonMonoBehaviour_UnionFrontDeskStateController___Awake (SmartPoint_AssetAssistant_SingletonMonoBehaviour_UnionFrontDeskStateController__o* __this, const MethodInfo_23C3350* method_23C3350);
bool SmartPoint_AssetAssistant_SingletonMonoBehaviour_UnionRoomManager___Awake (SmartPoint_AssetAssistant_SingletonMonoBehaviour_UnionRoomManager__o* __this, const MethodInfo_23C3350* method_23C3350);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_AudioManager___OnApplicationQuit (SmartPoint_AssetAssistant_SingletonMonoBehaviour_AudioManager__o* __this, const MethodInfo_23C36F0* method_23C36F0);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_ColiseumFrontDeskStateController___OnApplicationQuit (SmartPoint_AssetAssistant_SingletonMonoBehaviour_ColiseumFrontDeskStateController__o* __this, const MethodInfo_23C36F0* method_23C36F0);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_ColiseumRoomManager___OnApplicationQuit (SmartPoint_AssetAssistant_SingletonMonoBehaviour_ColiseumRoomManager__o* __this, const MethodInfo_23C36F0* method_23C36F0);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_BattleProc___OnApplicationQuit (SmartPoint_AssetAssistant_SingletonMonoBehaviour_BattleProc__o* __this, const MethodInfo_23C36F0* method_23C36F0);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_BattleViewCore___OnApplicationQuit (SmartPoint_AssetAssistant_SingletonMonoBehaviour_BattleViewCore__o* __this, const MethodInfo_23C36F0* method_23C36F0);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_SceneObjectManager___OnApplicationQuit (SmartPoint_AssetAssistant_SingletonMonoBehaviour_SceneObjectManager__o* __this, const MethodInfo_23C36F0* method_23C36F0);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_FureaiManager___OnApplicationQuit (SmartPoint_AssetAssistant_SingletonMonoBehaviour_FureaiManager__o* __this, const MethodInfo_23C36F0* method_23C36F0);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_FontManager___OnApplicationQuit (SmartPoint_AssetAssistant_SingletonMonoBehaviour_FontManager__o* __this, const MethodInfo_23C36F0* method_23C36F0);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_MessageManager___OnApplicationQuit (SmartPoint_AssetAssistant_SingletonMonoBehaviour_MessageManager__o* __this, const MethodInfo_23C36F0* method_23C36F0);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_MsgWindowManager___OnApplicationQuit (SmartPoint_AssetAssistant_SingletonMonoBehaviour_MsgWindowManager__o* __this, const MethodInfo_23C36F0* method_23C36F0);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_NetworkManager___OnApplicationQuit (SmartPoint_AssetAssistant_SingletonMonoBehaviour_NetworkManager__o* __this, const MethodInfo_23C36F0* method_23C36F0);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_PoffinCookingSceneManager___OnApplicationQuit (SmartPoint_AssetAssistant_SingletonMonoBehaviour_PoffinCookingSceneManager__o* __this, const MethodInfo_23C36F0* method_23C36F0);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_UIManager___OnApplicationQuit (SmartPoint_AssetAssistant_SingletonMonoBehaviour_UIManager__o* __this, const MethodInfo_23C36F0* method_23C36F0);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_LightStoneManager___OnApplicationQuit (SmartPoint_AssetAssistant_SingletonMonoBehaviour_LightStoneManager__o* __this, const MethodInfo_23C36F0* method_23C36F0);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_UgFatherManager___OnApplicationQuit (SmartPoint_AssetAssistant_SingletonMonoBehaviour_UgFatherManager__o* __this, const MethodInfo_23C36F0* method_23C36F0);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_EffectManager___OnApplicationQuit (SmartPoint_AssetAssistant_SingletonMonoBehaviour_EffectManager__o* __this, const MethodInfo_23C36F0* method_23C36F0);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_EnterCollision___OnApplicationQuit (SmartPoint_AssetAssistant_SingletonMonoBehaviour_EnterCollision__o* __this, const MethodInfo_23C36F0* method_23C36F0);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_GameManager___OnApplicationQuit (SmartPoint_AssetAssistant_SingletonMonoBehaviour_GameManager__o* __this, const MethodInfo_23C36F0* method_23C36F0);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_Sequencer___OnApplicationQuit (SmartPoint_AssetAssistant_SingletonMonoBehaviour_Sequencer__o* __this, const MethodInfo_23C36F0* method_23C36F0);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_DebugMenu___OnApplicationQuit (SmartPoint_AssetAssistant_SingletonMonoBehaviour_DebugMenu__o* __this, const MethodInfo_23C36F0* method_23C36F0);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_DebugMonitor___OnApplicationQuit (SmartPoint_AssetAssistant_SingletonMonoBehaviour_DebugMonitor__o* __this, const MethodInfo_23C36F0* method_23C36F0);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_Fader___OnApplicationQuit (SmartPoint_AssetAssistant_SingletonMonoBehaviour_Fader__o* __this, const MethodInfo_23C36F0* method_23C36F0);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_object___OnApplicationQuit (SmartPoint_AssetAssistant_SingletonMonoBehaviour_object__o* __this, const MethodInfo_23C36F0* method_23C36F0);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_TheaterTrackPlayer___OnApplicationQuit (SmartPoint_AssetAssistant_SingletonMonoBehaviour_TheaterTrackPlayer__o* __this, const MethodInfo_23C36F0* method_23C36F0);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_UgNetworkManager___OnApplicationQuit (SmartPoint_AssetAssistant_SingletonMonoBehaviour_UgNetworkManager__o* __this, const MethodInfo_23C36F0* method_23C36F0);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_UnionFrontDeskStateController___OnApplicationQuit (SmartPoint_AssetAssistant_SingletonMonoBehaviour_UnionFrontDeskStateController__o* __this, const MethodInfo_23C36F0* method_23C36F0);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_UnionRoomManager___OnApplicationQuit (SmartPoint_AssetAssistant_SingletonMonoBehaviour_UnionRoomManager__o* __this, const MethodInfo_23C36F0* method_23C36F0);
SmartPoint_AssetAssistant_Sequencer_o* SmartPoint_AssetAssistant_SingletonMonoBehaviour_Sequencer___Instantiate (System_String_o* instanceName, UnityEngine_Transform_o* parent, const MethodInfo_23C3790* method_23C3790);
Il2CppObject* SmartPoint_AssetAssistant_SingletonMonoBehaviour_object___Instantiate (System_String_o* instanceName, UnityEngine_Transform_o* parent, const MethodInfo_23C3790* method_23C3790);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_AudioManager____ctor (SmartPoint_AssetAssistant_SingletonMonoBehaviour_AudioManager__o* __this, const MethodInfo_23C4090* method_23C4090);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_ColiseumFrontDeskStateController____ctor (SmartPoint_AssetAssistant_SingletonMonoBehaviour_ColiseumFrontDeskStateController__o* __this, const MethodInfo_23C4090* method_23C4090);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_BattleProc____ctor (SmartPoint_AssetAssistant_SingletonMonoBehaviour_BattleProc__o* __this, const MethodInfo_23C4090* method_23C4090);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_BattleViewCore____ctor (SmartPoint_AssetAssistant_SingletonMonoBehaviour_BattleViewCore__o* __this, const MethodInfo_23C4090* method_23C4090);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_SceneObjectManager____ctor (SmartPoint_AssetAssistant_SingletonMonoBehaviour_SceneObjectManager__o* __this, const MethodInfo_23C4090* method_23C4090);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_FureaiManager____ctor (SmartPoint_AssetAssistant_SingletonMonoBehaviour_FureaiManager__o* __this, const MethodInfo_23C4090* method_23C4090);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_FontManager____ctor (SmartPoint_AssetAssistant_SingletonMonoBehaviour_FontManager__o* __this, const MethodInfo_23C4090* method_23C4090);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_MessageManager____ctor (SmartPoint_AssetAssistant_SingletonMonoBehaviour_MessageManager__o* __this, const MethodInfo_23C4090* method_23C4090);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_MsgWindowManager____ctor (SmartPoint_AssetAssistant_SingletonMonoBehaviour_MsgWindowManager__o* __this, const MethodInfo_23C4090* method_23C4090);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_NetworkManager____ctor (SmartPoint_AssetAssistant_SingletonMonoBehaviour_NetworkManager__o* __this, const MethodInfo_23C4090* method_23C4090);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_PoffinCookingSceneManager____ctor (SmartPoint_AssetAssistant_SingletonMonoBehaviour_PoffinCookingSceneManager__o* __this, const MethodInfo_23C4090* method_23C4090);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_UIManager____ctor (SmartPoint_AssetAssistant_SingletonMonoBehaviour_UIManager__o* __this, const MethodInfo_23C4090* method_23C4090);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_LightStoneManager____ctor (SmartPoint_AssetAssistant_SingletonMonoBehaviour_LightStoneManager__o* __this, const MethodInfo_23C4090* method_23C4090);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_UgFatherManager____ctor (SmartPoint_AssetAssistant_SingletonMonoBehaviour_UgFatherManager__o* __this, const MethodInfo_23C4090* method_23C4090);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_EffectManager____ctor (SmartPoint_AssetAssistant_SingletonMonoBehaviour_EffectManager__o* __this, const MethodInfo_23C4090* method_23C4090);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_EnterCollision____ctor (SmartPoint_AssetAssistant_SingletonMonoBehaviour_EnterCollision__o* __this, const MethodInfo_23C4090* method_23C4090);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_GameManager____ctor (SmartPoint_AssetAssistant_SingletonMonoBehaviour_GameManager__o* __this, const MethodInfo_23C4090* method_23C4090);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_Sequencer____ctor (SmartPoint_AssetAssistant_SingletonMonoBehaviour_Sequencer__o* __this, const MethodInfo_23C4090* method_23C4090);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_DebugMenu____ctor (SmartPoint_AssetAssistant_SingletonMonoBehaviour_DebugMenu__o* __this, const MethodInfo_23C4090* method_23C4090);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_DebugMonitor____ctor (SmartPoint_AssetAssistant_SingletonMonoBehaviour_DebugMonitor__o* __this, const MethodInfo_23C4090* method_23C4090);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_Fader____ctor (SmartPoint_AssetAssistant_SingletonMonoBehaviour_Fader__o* __this, const MethodInfo_23C4090* method_23C4090);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_object____ctor (SmartPoint_AssetAssistant_SingletonMonoBehaviour_object__o* __this, const MethodInfo_23C4090* method_23C4090);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_TheaterTrackPlayer____ctor (SmartPoint_AssetAssistant_SingletonMonoBehaviour_TheaterTrackPlayer__o* __this, const MethodInfo_23C4090* method_23C4090);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_UnionFrontDeskStateController____ctor (SmartPoint_AssetAssistant_SingletonMonoBehaviour_UnionFrontDeskStateController__o* __this, const MethodInfo_23C4090* method_23C4090);
void SmartPoint_AssetAssistant_SingletonMonoBehaviour_object____cctor (const MethodInfo_23C40A0* method_23C40A0);
System_String_o* SmartPoint_AssetAssistant_SingletonScriptableObject_object___get_className (const MethodInfo_23C40B0* method_23C40B0);
SmartPoint_AssetAssistant_SceneDatabase_o* SmartPoint_AssetAssistant_SingletonScriptableObject_SceneDatabase___get_instance (const MethodInfo_23C4140* method_23C4140);
SmartPoint_AssetAssistant_StartupSettings_o* SmartPoint_AssetAssistant_SingletonScriptableObject_StartupSettings___get_instance (const MethodInfo_23C4140* method_23C4140);
Il2CppObject* SmartPoint_AssetAssistant_SingletonScriptableObject_object___get_instance (const MethodInfo_23C4140* method_23C4140);
void SmartPoint_AssetAssistant_SingletonScriptableObject_SceneDatabase___OnEnable (SmartPoint_AssetAssistant_SingletonScriptableObject_SceneDatabase__o* __this, const MethodInfo_23C46A0* method_23C46A0);
void SmartPoint_AssetAssistant_SingletonScriptableObject_StartupSettings___OnEnable (SmartPoint_AssetAssistant_SingletonScriptableObject_StartupSettings__o* __this, const MethodInfo_23C46A0* method_23C46A0);
void SmartPoint_AssetAssistant_SingletonScriptableObject_object___OnEnable (SmartPoint_AssetAssistant_SingletonScriptableObject_object__o* __this, const MethodInfo_23C46A0* method_23C46A0);
void SmartPoint_AssetAssistant_SingletonScriptableObject_SceneDatabase____ctor (SmartPoint_AssetAssistant_SingletonScriptableObject_SceneDatabase__o* __this, const MethodInfo_23C4870* method_23C4870);
void SmartPoint_AssetAssistant_SingletonScriptableObject_StartupSettings____ctor (SmartPoint_AssetAssistant_SingletonScriptableObject_StartupSettings__o* __this, const MethodInfo_23C4870* method_23C4870);
void SmartPoint_AssetAssistant_SingletonScriptableObject_object____ctor (SmartPoint_AssetAssistant_SingletonScriptableObject_object__o* __this, const MethodInfo_23C4870* method_23C4870);
void SmartPoint_AssetAssistant_SingletonScriptableObject_object____cctor (const MethodInfo_23C4880* method_23C4880);
void SmartPoint_AssetAssistant_PreloadRequest___ctor (SmartPoint_AssetAssistant_PreloadRequest_o __this, System_String_o* assetBundleName, bool loadAllAssets, const MethodInfo*);
System_String_o* SmartPoint_AssetAssistant_StartupSettings__get_platformName (const MethodInfo*);
SmartPoint_AssetAssistant_Forms_MessageBoxManifestBase_o* SmartPoint_AssetAssistant_StartupSettings__get_messageBoxManifest (const MethodInfo*);
bool SmartPoint_AssetAssistant_StartupSettings__get_useSceneBrowser (const MethodInfo*);
System_String_o* SmartPoint_AssetAssistant_StartupSettings__get_assetBundleTargetURI (const MethodInfo*);
System_String_array* SmartPoint_AssetAssistant_StartupSettings__get_assetBundlesForEditor (const MethodInfo*);
System_String_array* SmartPoint_AssetAssistant_StartupSettings__get_externalProjectNames (const MethodInfo*);
int32_t SmartPoint_AssetAssistant_StartupSettings__get_assetBundleTarget (const MethodInfo*);
bool SmartPoint_AssetAssistant_StartupSettings__get_runBootSequence (const MethodInfo*);
int32_t SmartPoint_AssetAssistant_StartupSettings__get_minimumResolution (const MethodInfo*);
bool SmartPoint_AssetAssistant_StartupSettings__get_clearCacheFiles (const MethodInfo*);
bool SmartPoint_AssetAssistant_StartupSettings__get_webhookInEditMode (const MethodInfo*);
System_String_o* SmartPoint_AssetAssistant_StartupSettings__get_webhookURL (const MethodInfo*);
System_String_o* SmartPoint_AssetAssistant_StartupSettings__get_startupScenePath (const MethodInfo*);
SmartPoint_AssetAssistant_PreloadRequest_array* SmartPoint_AssetAssistant_StartupSettings__get_preloadRequests (const MethodInfo*);
SmartPoint_AssetAssistant_UnityExtensions_SerializedMethod_o SmartPoint_AssetAssistant_StartupSettings__get_preloadMethod (const MethodInfo*);
SmartPoint_AssetAssistant_UnityExtensions_SerializedMethod_array* SmartPoint_AssetAssistant_StartupSettings__get_initializeMethods (const MethodInfo*);
SmartPoint_AssetAssistant_UnityExtensions_SerializedMethod_array* SmartPoint_AssetAssistant_StartupSettings__get_assetManagerAfterSetupMethods (const MethodInfo*);
SmartPoint_AssetAssistant_UnityExtensions_SerializedMethod_array* SmartPoint_AssetAssistant_StartupSettings__get_sceneRestoreOperationMethods (const MethodInfo*);
SmartPoint_AssetAssistant_UnityExtensions_SerializedMethod_array* SmartPoint_AssetAssistant_StartupSettings__get_sceneBeforeActivateOperationMethods (const MethodInfo*);
SmartPoint_AssetAssistant_ReferenceObject_array* SmartPoint_AssetAssistant_StartupSettings__get_permanentObjects (const MethodInfo*);
System_String_o* SmartPoint_AssetAssistant_StartupSettings__get_buildVersion (const MethodInfo*);
System_String_o* SmartPoint_AssetAssistant_StartupSettings__get_creationTime (const MethodInfo*);
void SmartPoint_AssetAssistant_StartupSettings___ctor (SmartPoint_AssetAssistant_StartupSettings_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_UnityExtensions_Pair_object__object____ctor (SmartPoint_AssetAssistant_UnityExtensions_Pair_object__object__o* __this, const MethodInfo_23C4890* method_23C4890);
void SmartPoint_AssetAssistant_UnityExtensions_Pair_object__object____ctor (SmartPoint_AssetAssistant_UnityExtensions_Pair_object__object__o* __this, Il2CppObject* first, Il2CppObject* second, const MethodInfo_23C48A0* method_23C48A0);
void SmartPoint_AssetAssistant_UnityExtensions_Pair_Renderer__Renderer____ctor (SmartPoint_AssetAssistant_UnityExtensions_Pair_Renderer__Renderer__o* __this, UnityEngine_Renderer_o* first, UnityEngine_Renderer_o* second, const MethodInfo_23C48A0* method_23C48A0);
UnityEngine_Renderer_o* SmartPoint_AssetAssistant_UnityExtensions_Pair_Renderer__Renderer___get_First (SmartPoint_AssetAssistant_UnityExtensions_Pair_Renderer__Renderer__o* __this, const MethodInfo_23C4910* method_23C4910);
Il2CppObject* SmartPoint_AssetAssistant_UnityExtensions_Pair_object__object___get_First (SmartPoint_AssetAssistant_UnityExtensions_Pair_object__object__o* __this, const MethodInfo_23C4910* method_23C4910);
void SmartPoint_AssetAssistant_UnityExtensions_Pair_object__object___set_First (SmartPoint_AssetAssistant_UnityExtensions_Pair_object__object__o* __this, Il2CppObject* value, const MethodInfo_23C4920* method_23C4920);
UnityEngine_Renderer_o* SmartPoint_AssetAssistant_UnityExtensions_Pair_Renderer__Renderer___get_Second (SmartPoint_AssetAssistant_UnityExtensions_Pair_Renderer__Renderer__o* __this, const MethodInfo_23C4930* method_23C4930);
Il2CppObject* SmartPoint_AssetAssistant_UnityExtensions_Pair_object__object___get_Second (SmartPoint_AssetAssistant_UnityExtensions_Pair_object__object__o* __this, const MethodInfo_23C4930* method_23C4930);
void SmartPoint_AssetAssistant_UnityExtensions_Pair_object__object___set_Second (SmartPoint_AssetAssistant_UnityExtensions_Pair_object__object__o* __this, Il2CppObject* value, const MethodInfo_23C4940* method_23C4940);
void SmartPoint_AssetAssistant_UnityExtensions_Pair_Renderer__Renderer___set_Second (SmartPoint_AssetAssistant_UnityExtensions_Pair_Renderer__Renderer__o* __this, UnityEngine_Renderer_o* value, const MethodInfo_23C4940* method_23C4940);
BattleObjectEntity_CharaAutomaticBlinkProcess_BlinkValue_array* SmartPoint_AssetAssistant_UnityExtensions_ArrayHelper__Empty_BattleObjectEntity_CharaAutomaticBlinkProcess_BlinkValue_ (const MethodInfo_2C8B2A0* method_2C8B2A0);
FieldCharacterEntity_array* SmartPoint_AssetAssistant_UnityExtensions_ArrayHelper__Empty_FieldCharacterEntity_ (const MethodInfo_2C8B2A0* method_2C8B2A0);
FieldElevatorBackgroundEntity_array* SmartPoint_AssetAssistant_UnityExtensions_ArrayHelper__Empty_FieldElevatorBackgroundEntity_ (const MethodInfo_2C8B2A0* method_2C8B2A0);
FieldEmbankmentEntity_array* SmartPoint_AssetAssistant_UnityExtensions_ArrayHelper__Empty_FieldEmbankmentEntity_ (const MethodInfo_2C8B2A0* method_2C8B2A0);
FieldEventDoorEntity_array* SmartPoint_AssetAssistant_UnityExtensions_ArrayHelper__Empty_FieldEventDoorEntity_ (const MethodInfo_2C8B2A0* method_2C8B2A0);
FieldEventEntity_array* SmartPoint_AssetAssistant_UnityExtensions_ArrayHelper__Empty_FieldEventEntity_ (const MethodInfo_2C8B2A0* method_2C8B2A0);
FieldEventLiftEntity_array* SmartPoint_AssetAssistant_UnityExtensions_ArrayHelper__Empty_FieldEventLiftEntity_ (const MethodInfo_2C8B2A0* method_2C8B2A0);
FieldEventTrainEntity_array* SmartPoint_AssetAssistant_UnityExtensions_ArrayHelper__Empty_FieldEventTrainEntity_ (const MethodInfo_2C8B2A0* method_2C8B2A0);
FieldEyePaintingEntity_array* SmartPoint_AssetAssistant_UnityExtensions_ArrayHelper__Empty_FieldEyePaintingEntity_ (const MethodInfo_2C8B2A0* method_2C8B2A0);
FieldNagisaGymGearEntity_array* SmartPoint_AssetAssistant_UnityExtensions_ArrayHelper__Empty_FieldNagisaGymGearEntity_ (const MethodInfo_2C8B2A0* method_2C8B2A0);
FieldNomoseGymSwitchEntity_array* SmartPoint_AssetAssistant_UnityExtensions_ArrayHelper__Empty_FieldNomoseGymSwitchEntity_ (const MethodInfo_2C8B2A0* method_2C8B2A0);
FieldNomoseGymWaterEntity_array* SmartPoint_AssetAssistant_UnityExtensions_ArrayHelper__Empty_FieldNomoseGymWaterEntity_ (const MethodInfo_2C8B2A0* method_2C8B2A0);
FieldObjectEntity_array* SmartPoint_AssetAssistant_UnityExtensions_ArrayHelper__Empty_FieldObjectEntity_ (const MethodInfo_2C8B2A0* method_2C8B2A0);
FieldPlayerEntity_array* SmartPoint_AssetAssistant_UnityExtensions_ArrayHelper__Empty_FieldPlayerEntity_ (const MethodInfo_2C8B2A0* method_2C8B2A0);
FieldPokemonCenterEntity_array* SmartPoint_AssetAssistant_UnityExtensions_ArrayHelper__Empty_FieldPokemonCenterEntity_ (const MethodInfo_2C8B2A0* method_2C8B2A0);
FieldPokemonCenterMonitorEntity_array* SmartPoint_AssetAssistant_UnityExtensions_ArrayHelper__Empty_FieldPokemonCenterMonitorEntity_ (const MethodInfo_2C8B2A0* method_2C8B2A0);
FieldPokemonEntity_array* SmartPoint_AssetAssistant_UnityExtensions_ArrayHelper__Empty_FieldPokemonEntity_ (const MethodInfo_2C8B2A0* method_2C8B2A0);
FieldTobariGymWallEntity_array* SmartPoint_AssetAssistant_UnityExtensions_ArrayHelper__Empty_FieldTobariGymWallEntity_ (const MethodInfo_2C8B2A0* method_2C8B2A0);
FieldTvEntity_array* SmartPoint_AssetAssistant_UnityExtensions_ArrayHelper__Empty_FieldTvEntity_ (const MethodInfo_2C8B2A0* method_2C8B2A0);
System_Boolean_array* SmartPoint_AssetAssistant_UnityExtensions_ArrayHelper__Empty_bool_ (const MethodInfo_2C8B220* method_2C8B220);
SmartPoint_AssetAssistant_AssetBundleRecord_array* SmartPoint_AssetAssistant_UnityExtensions_ArrayHelper__Empty_AssetBundleRecord_ (const MethodInfo_2C8B2A0* method_2C8B2A0);
SmartPoint_AssetAssistant_PreloadRequest_array* SmartPoint_AssetAssistant_UnityExtensions_ArrayHelper__Empty_PreloadRequest_ (const MethodInfo_2C8B0A0* method_2C8B0A0);
SmartPoint_AssetAssistant_ReferenceObject_array* SmartPoint_AssetAssistant_UnityExtensions_ArrayHelper__Empty_ReferenceObject_ (const MethodInfo_2C8B120* method_2C8B120);
SmartPoint_AssetAssistant_SceneDatabase_SceneProperty_array* SmartPoint_AssetAssistant_UnityExtensions_ArrayHelper__Empty_SceneDatabase_SceneProperty_ (const MethodInfo_2C8B2A0* method_2C8B2A0);
SmartPoint_AssetAssistant_SceneEntity_array* SmartPoint_AssetAssistant_UnityExtensions_ArrayHelper__Empty_SceneEntity_ (const MethodInfo_2C8B2A0* method_2C8B2A0);
SmartPoint_AssetAssistant_UnityExtensions_SerializedMethod_array* SmartPoint_AssetAssistant_UnityExtensions_ArrayHelper__Empty_SerializedMethod_ (const MethodInfo_2C8B1A0* method_2C8B1A0);
System_Object_array* SmartPoint_AssetAssistant_UnityExtensions_ArrayHelper__Empty_object_ (const MethodInfo_2C8B2A0* method_2C8B2A0);
System_Reflection_MethodInfo_array* SmartPoint_AssetAssistant_UnityExtensions_ArrayHelper__Empty_MethodInfo_ (const MethodInfo_2C8B2A0* method_2C8B2A0);
System_String_array* SmartPoint_AssetAssistant_UnityExtensions_ArrayHelper__Empty_string_ (const MethodInfo_2C8B2A0* method_2C8B2A0);
UnityEngine_GameObject_array* SmartPoint_AssetAssistant_UnityExtensions_ArrayHelper__Empty_GameObject_ (const MethodInfo_2C8B2A0* method_2C8B2A0);
UnityEngine_Object_array* SmartPoint_AssetAssistant_UnityExtensions_ArrayHelper__Empty_Object_ (const MethodInfo_2C8B2A0* method_2C8B2A0);
void SmartPoint_AssetAssistant_UnityExtensions_ArrayHelper___ctor (SmartPoint_AssetAssistant_UnityExtensions_ArrayHelper_o* __this, const MethodInfo*);
UnityEngine_Component_o* SmartPoint_AssetAssistant_UnityExtensions_GameObjectExtension__GetComponentInChildrenByName (UnityEngine_GameObject_o* asset, System_Type_o* type, System_String_o* name, const MethodInfo*);
Il2CppObject* SmartPoint_AssetAssistant_UnityExtensions_GameObjectExtension__GetComponentInChildrenByName_object_ (UnityEngine_GameObject_o* asset, System_String_o* name, const MethodInfo_1D6E0F0* method_1D6E0F0);
bool SmartPoint_AssetAssistant_UnityExtensions_GameObjectExtension__IsValid (UnityEngine_MonoBehaviour_o* self, const MethodInfo*);
System_String_o* SmartPoint_AssetAssistant_UnityExtensions_StringExtensions__ToDivisionSlash (System_String_o* self, const MethodInfo*);
System_String_o* SmartPoint_AssetAssistant_UnityExtensions_StringExtensions__ToSlash (System_String_o* self, const MethodInfo*);
System_String_o* SmartPoint_AssetAssistant_UnityExtensions_StringExtensions__RemoveStart (System_String_o* self, System_String_o* value, const MethodInfo*);
void SmartPoint_AssetAssistant_UnityExtensions_StringExtensions__ToLowerSelf (System_String_o* self, const MethodInfo*);
bool SmartPoint_AssetAssistant_UnityExtensions_StringExtensions__IsNullOrEmpty (System_String_o* self, const MethodInfo*);
bool SmartPoint_AssetAssistant_UnityExtensions_StringExtensions__IsUrl (System_String_o* self, const MethodInfo*);
System_String_o* SmartPoint_AssetAssistant_UnityExtensions_StringExtensions__RemoveEnd (System_String_o* self, System_String_o* value, const MethodInfo*);
System_String_o* SmartPoint_AssetAssistant_UnityExtensions_StringExtensions__CombinePath (System_String_o* self, System_String_o* value, const MethodInfo*);
bool SmartPoint_AssetAssistant_UnityExtensions_StringExtensions__Contains (System_String_o* self, System_String_o* value, int32_t comparisionType, const MethodInfo*);
UnityEngine_Bounds_o SmartPoint_AssetAssistant_UnityExtensions_TransformExtensions__TransformBounds (UnityEngine_Matrix4x4_o self, UnityEngine_Bounds_o bounds, const MethodInfo*);
UnityEngine_Bounds_o SmartPoint_AssetAssistant_UnityExtensions_TransformExtensions__InverseTransformBounds (UnityEngine_Transform_o* self, UnityEngine_Bounds_o bounds, const MethodInfo*);
System_Collections_Generic_List_Vector3__o* SmartPoint_AssetAssistant_UnityExtensions_TransformExtensions__GetCorners (UnityEngine_Bounds_o obj, bool includePosition, const MethodInfo*);
UnityEngine_Vector3_o SmartPoint_AssetAssistant_UnityExtensions_TransformExtensions__Multiply (UnityEngine_Vector3_o self, UnityEngine_Vector3_o other, const MethodInfo*);
void SmartPoint_AssetAssistant_UnityExtensions_FloatBits___ctor (SmartPoint_AssetAssistant_UnityExtensions_FloatBits_o __this, float value, const MethodInfo*);
void SmartPoint_AssetAssistant_UnityExtensions_FloatBits___ctor (SmartPoint_AssetAssistant_UnityExtensions_FloatBits_o __this, int32_t value, const MethodInfo*);
void SmartPoint_AssetAssistant_UnityExtensions_FloatBits___ctor (SmartPoint_AssetAssistant_UnityExtensions_FloatBits_o __this, uint32_t value, const MethodInfo*);
float SmartPoint_AssetAssistant_UnityExtensions_FloatBits__op_Implicit (SmartPoint_AssetAssistant_UnityExtensions_FloatBits_o fpBits, const MethodInfo*);
SmartPoint_AssetAssistant_UnityExtensions_FloatBits_o SmartPoint_AssetAssistant_UnityExtensions_FloatBits__op_Implicit (float fp, const MethodInfo*);
SmartPoint_AssetAssistant_UnityExtensions_FloatBits_o SmartPoint_AssetAssistant_UnityExtensions_FloatBits__op_Implicit (int32_t bits, const MethodInfo*);
SmartPoint_AssetAssistant_UnityExtensions_FloatBits_o SmartPoint_AssetAssistant_UnityExtensions_FloatBits__op_Implicit (uint32_t ubits, const MethodInfo*);
float SmartPoint_AssetAssistant_UnityExtensions_FloatBits__ToFloat (int32_t bits, const MethodInfo*);
float SmartPoint_AssetAssistant_UnityExtensions_FloatBits__ToFloat (uint32_t bits, const MethodInfo*);
int32_t SmartPoint_AssetAssistant_UnityExtensions_FloatBits__ToInt (float value, const MethodInfo*);
uint32_t SmartPoint_AssetAssistant_UnityExtensions_FloatBits__ToUInt (float value, const MethodInfo*);
System_String_o* SmartPoint_AssetAssistant_UnityExtensions_FloatBits__ToString (SmartPoint_AssetAssistant_UnityExtensions_FloatBits_o __this, const MethodInfo*);
SmartPoint_AssetAssistant_UnityExtensions_FloatBits_o SmartPoint_AssetAssistant_UnityExtensions_FloatBits__Absolute (SmartPoint_AssetAssistant_UnityExtensions_FloatBits_o __this, const MethodInfo*);
bool SmartPoint_AssetAssistant_UnityExtensions_FloatBits__IsInRange (SmartPoint_AssetAssistant_UnityExtensions_FloatBits_o __this, float low, float high, const MethodInfo*);
void SmartPoint_AssetAssistant_UnityExtensions_StringContainer__Add (SmartPoint_AssetAssistant_UnityExtensions_StringContainer_o* __this, System_String_o* text, const MethodInfo*);
void SmartPoint_AssetAssistant_UnityExtensions_StringContainer__Clear (SmartPoint_AssetAssistant_UnityExtensions_StringContainer_o* __this, const MethodInfo*);
System_String_array* SmartPoint_AssetAssistant_UnityExtensions_StringContainer__ToArray (SmartPoint_AssetAssistant_UnityExtensions_StringContainer_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_UnityExtensions_StringContainer___ctor (SmartPoint_AssetAssistant_UnityExtensions_StringContainer_o* __this, const MethodInfo*);
System_String_o* SmartPoint_AssetAssistant_UnityExtensions_SerializedMethod__get_assemblyQualifiedName (SmartPoint_AssetAssistant_UnityExtensions_SerializedMethod_o __this, const MethodInfo*);
System_String_o* SmartPoint_AssetAssistant_UnityExtensions_SerializedMethod__get_methodName (SmartPoint_AssetAssistant_UnityExtensions_SerializedMethod_o __this, const MethodInfo*);
bool SmartPoint_AssetAssistant_UnityExtensions_SerializedMethod__get_isStatic (SmartPoint_AssetAssistant_UnityExtensions_SerializedMethod_o __this, const MethodInfo*);
void SmartPoint_AssetAssistant_UnityExtensions_SerializedMethod___ctor (SmartPoint_AssetAssistant_UnityExtensions_SerializedMethod_o __this, System_String_o* assemblyQualifiedName, System_String_o* methodName, bool isStatic, const MethodInfo*);
void SmartPoint_AssetAssistant_UnityExtensions_SerializedMethod___ctor (SmartPoint_AssetAssistant_UnityExtensions_SerializedMethod_o __this, System_Reflection_MethodInfo_o* methodInfo, const MethodInfo*);
void SmartPoint_AssetAssistant_UnityExtensions_SerializedMethod__Invoke (SmartPoint_AssetAssistant_UnityExtensions_SerializedMethod_o __this, const MethodInfo*);
void SmartPoint_AssetAssistant_UnityExtensions_SerializedMethod__Invoke (SmartPoint_AssetAssistant_UnityExtensions_SerializedMethod_o __this, Il2CppObject* obj, System_Object_array* parameters, const MethodInfo*);
System_Reflection_MethodInfo_o* SmartPoint_AssetAssistant_UnityExtensions_SerializedMethod__GetMethodInfo (SmartPoint_AssetAssistant_UnityExtensions_SerializedMethod_o __this, const MethodInfo*);
System_RuntimeMethodHandle_o SmartPoint_AssetAssistant_UnityExtensions_SerializedMethod__GetMethod (SmartPoint_AssetAssistant_UnityExtensions_SerializedMethod_o __this, const MethodInfo*);
Il2CppObject* SmartPoint_AssetAssistant_UnityExtensions_SerializedMethod__GetDelegate_object_ (SmartPoint_AssetAssistant_UnityExtensions_SerializedMethod_o __this, const MethodInfo_1D6E200* method_1D6E200);
System_Reflection_MethodInfo_array* SmartPoint_AssetAssistant_UnityExtensions_Reflection__FindDelegateMethods_object_ (const MethodInfo_1F9BD70* method_1F9BD70);
void SmartPoint_AssetAssistant_UnityExtensions_Reflection___c__DisplayClass0_0_object____ctor (SmartPoint_AssetAssistant_UnityExtensions_Reflection___c__DisplayClass0_0_object__o* __this, const MethodInfo_23C4950* method_23C4950);
bool SmartPoint_AssetAssistant_UnityExtensions_Reflection___c__DisplayClass0_0_object____FindDelegateMethods_b__0 (SmartPoint_AssetAssistant_UnityExtensions_Reflection___c__DisplayClass0_0_object__o* __this, System_Reflection_AssemblyName_o* x, const MethodInfo_23C4960* method_23C4960);
float SmartPoint_AssetAssistant_UnityExtensions_SectionCounter__get_startTime (SmartPoint_AssetAssistant_UnityExtensions_SectionCounter_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_UnityExtensions_SectionCounter__set_startTime (SmartPoint_AssetAssistant_UnityExtensions_SectionCounter_o* __this, float value, const MethodInfo*);
float SmartPoint_AssetAssistant_UnityExtensions_SectionCounter__get_lastTime (SmartPoint_AssetAssistant_UnityExtensions_SectionCounter_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_UnityExtensions_SectionCounter__set_lastTime (SmartPoint_AssetAssistant_UnityExtensions_SectionCounter_o* __this, float value, const MethodInfo*);
int32_t SmartPoint_AssetAssistant_UnityExtensions_SectionCounter__get_count (SmartPoint_AssetAssistant_UnityExtensions_SectionCounter_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_UnityExtensions_SectionCounter__set_count (SmartPoint_AssetAssistant_UnityExtensions_SectionCounter_o* __this, int32_t value, const MethodInfo*);
float SmartPoint_AssetAssistant_UnityExtensions_SectionCounter__get_minTime (SmartPoint_AssetAssistant_UnityExtensions_SectionCounter_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_UnityExtensions_SectionCounter__set_minTime (SmartPoint_AssetAssistant_UnityExtensions_SectionCounter_o* __this, float value, const MethodInfo*);
float SmartPoint_AssetAssistant_UnityExtensions_SectionCounter__get_maxTime (SmartPoint_AssetAssistant_UnityExtensions_SectionCounter_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_UnityExtensions_SectionCounter__set_maxTime (SmartPoint_AssetAssistant_UnityExtensions_SectionCounter_o* __this, float value, const MethodInfo*);
float SmartPoint_AssetAssistant_UnityExtensions_SectionCounter__get_averageTime (SmartPoint_AssetAssistant_UnityExtensions_SectionCounter_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_UnityExtensions_SectionCounter__set_averageTime (SmartPoint_AssetAssistant_UnityExtensions_SectionCounter_o* __this, float value, const MethodInfo*);
float SmartPoint_AssetAssistant_UnityExtensions_SectionCounter__get_nestedCount (SmartPoint_AssetAssistant_UnityExtensions_SectionCounter_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_UnityExtensions_SectionCounter__set_nestedCount (SmartPoint_AssetAssistant_UnityExtensions_SectionCounter_o* __this, float value, const MethodInfo*);
void SmartPoint_AssetAssistant_UnityExtensions_SectionCounter__Initialize (const MethodInfo*);
void SmartPoint_AssetAssistant_UnityExtensions_SectionCounter__Start (Il2CppObject* key, const MethodInfo*);
SmartPoint_AssetAssistant_UnityExtensions_SectionCounter_o* SmartPoint_AssetAssistant_UnityExtensions_SectionCounter__End (Il2CppObject* key, const MethodInfo*);
void SmartPoint_AssetAssistant_UnityExtensions_SectionCounter___ctor (SmartPoint_AssetAssistant_UnityExtensions_SectionCounter_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_UnityExtensions_SectionCounter___cctor (const MethodInfo*);
void SmartPoint_AssetAssistant_Forms_MessageBox__SetManifest (SmartPoint_AssetAssistant_Forms_MessageBoxManifestBase_o* manifest, const MethodInfo*);
bool SmartPoint_AssetAssistant_Forms_MessageBox__Show (System_String_o* message, System_String_o* caption, int32_t buttons, System_String_array* buttonNames, SmartPoint_AssetAssistant_Forms_MessageBox_OnClick_o* onClick, const MethodInfo*);
void SmartPoint_AssetAssistant_Forms_MessageBox__Show (System_String_o* message, System_String_o* caption, int32_t buttons, SmartPoint_AssetAssistant_Forms_MessageBox_OnClick_o* onClick, const MethodInfo*);
void SmartPoint_AssetAssistant_Forms_MessageBox__CreateButtons (SmartPoint_AssetAssistant_Forms_MessageBoxManifestBase_o* manifest, int32_t buttons, System_String_array* buttonNames, const MethodInfo*);
void SmartPoint_AssetAssistant_Forms_MessageBox__CreateButtonSeparator (SmartPoint_AssetAssistant_Forms_MessageBoxManifestBase_o* manifest, const MethodInfo*);
void SmartPoint_AssetAssistant_Forms_MessageBox__CreateButton (SmartPoint_AssetAssistant_Forms_MessageBoxManifestBase_o* manifest, int32_t result, System_String_o* name, System_String_o* text, const MethodInfo*);
void SmartPoint_AssetAssistant_Forms_MessageBox__AddTrigger (UnityEngine_GameObject_o* instance, const MethodInfo*);
void SmartPoint_AssetAssistant_Forms_MessageBox__OnPointerClickDelegate (UnityEngine_EventSystems_BaseEventData_o* baseData, const MethodInfo*);
void SmartPoint_AssetAssistant_Forms_MessageBox__Hide (const MethodInfo*);
void SmartPoint_AssetAssistant_Forms_MessageBox___ctor (SmartPoint_AssetAssistant_Forms_MessageBox_o* __this, const MethodInfo*);
void SmartPoint_AssetAssistant_Forms_MessageBox___cctor (const MethodInfo*);
void SmartPoint_AssetAssistant_Forms_MessageBox_OnClick___ctor (SmartPoint_AssetAssistant_Forms_MessageBox_OnClick_o* __this, Il2CppObject* object, intptr_t method, const MethodInfo*);
void SmartPoint_AssetAssistant_Forms_MessageBox_OnClick__Invoke (SmartPoint_AssetAssistant_Forms_MessageBox_OnClick_o* __this, int32_t result, const MethodInfo*);
System_IAsyncResult_o* SmartPoint_AssetAssistant_Forms_MessageBox_OnClick__BeginInvoke (SmartPoint_AssetAssistant_Forms_MessageBox_OnClick_o* __this, int32_t result, System_AsyncCallback_o* callback, Il2CppObject* object, const MethodInfo*);
void SmartPoint_AssetAssistant_Forms_MessageBox_OnClick__EndInvoke (SmartPoint_AssetAssistant_Forms_MessageBox_OnClick_o* __this, System_IAsyncResult_o* result, const MethodInfo*);
void SmartPoint_AssetAssistant_Forms_MessageBoxManifestBase___ctor (SmartPoint_AssetAssistant_Forms_MessageBoxManifestBase_o* __this, const MethodInfo*);
void DG_Tweening_DOTweenVisualManager__Awake (DG_Tweening_DOTweenVisualManager_o* __this, const MethodInfo*);
void DG_Tweening_DOTweenVisualManager__Update (DG_Tweening_DOTweenVisualManager_o* __this, const MethodInfo*);
void DG_Tweening_DOTweenVisualManager__OnEnable (DG_Tweening_DOTweenVisualManager_o* __this, const MethodInfo*);
void DG_Tweening_DOTweenVisualManager__OnDisable (DG_Tweening_DOTweenVisualManager_o* __this, const MethodInfo*);
void DG_Tweening_DOTweenVisualManager___ctor (DG_Tweening_DOTweenVisualManager_o* __this, const MethodInfo*);
void DG_Tweening_DOTweenPath__add_OnReset (System_Action_DOTweenPath__o* value, const MethodInfo*);
void DG_Tweening_DOTweenPath__remove_OnReset (System_Action_DOTweenPath__o* value, const MethodInfo*);
void DG_Tweening_DOTweenPath__Dispatch_OnReset (DG_Tweening_DOTweenPath_o* path, const MethodInfo*);
void DG_Tweening_DOTweenPath__Awake (DG_Tweening_DOTweenPath_o* __this, const MethodInfo*);
void DG_Tweening_DOTweenPath__Reset (DG_Tweening_DOTweenPath_o* __this, const MethodInfo*);
void DG_Tweening_DOTweenPath__OnDestroy (DG_Tweening_DOTweenPath_o* __this, const MethodInfo*);
void DG_Tweening_DOTweenPath__DOPlay (DG_Tweening_DOTweenPath_o* __this, const MethodInfo*);
void DG_Tweening_DOTweenPath__DOPlayBackwards (DG_Tweening_DOTweenPath_o* __this, const MethodInfo*);
void DG_Tweening_DOTweenPath__DOPlayForward (DG_Tweening_DOTweenPath_o* __this, const MethodInfo*);
void DG_Tweening_DOTweenPath__DOPause (DG_Tweening_DOTweenPath_o* __this, const MethodInfo*);
void DG_Tweening_DOTweenPath__DOTogglePause (DG_Tweening_DOTweenPath_o* __this, const MethodInfo*);
void DG_Tweening_DOTweenPath__DORewind (DG_Tweening_DOTweenPath_o* __this, const MethodInfo*);
void DG_Tweening_DOTweenPath__DORestart (DG_Tweening_DOTweenPath_o* __this, const MethodInfo*);
void DG_Tweening_DOTweenPath__DORestart (DG_Tweening_DOTweenPath_o* __this, bool fromHere, const MethodInfo*);
void DG_Tweening_DOTweenPath__DOComplete (DG_Tweening_DOTweenPath_o* __this, const MethodInfo*);
void DG_Tweening_DOTweenPath__DOKill (DG_Tweening_DOTweenPath_o* __this, const MethodInfo*);
DG_Tweening_Tween_o* DG_Tweening_DOTweenPath__GetTween (DG_Tweening_DOTweenPath_o* __this, const MethodInfo*);
UnityEngine_Vector3_array* DG_Tweening_DOTweenPath__GetDrawPoints (DG_Tweening_DOTweenPath_o* __this, const MethodInfo*);
UnityEngine_Vector3_array* DG_Tweening_DOTweenPath__GetFullWps (DG_Tweening_DOTweenPath_o* __this, const MethodInfo*);
void DG_Tweening_DOTweenPath__ReEvaluateRelativeTween (DG_Tweening_DOTweenPath_o* __this, const MethodInfo*);
void DG_Tweening_DOTweenPath___ctor (DG_Tweening_DOTweenPath_o* __this, const MethodInfo*);
void DG_Tweening_DOTweenPath___Awake_b__44_0 (DG_Tweening_DOTweenPath_o* __this, const MethodInfo*);
void DG_Tweening_Plugins_SpiralOptions__Reset (DG_Tweening_Plugins_SpiralOptions_o __this, const MethodInfo*);
void DG_Tweening_Plugins_SpiralPlugin__Reset (DG_Tweening_Plugins_SpiralPlugin_o* __this, DG_Tweening_Core_TweenerCore_Vector3__Vector3__SpiralOptions__o* t, const MethodInfo*);
void DG_Tweening_Plugins_SpiralPlugin__SetFrom (DG_Tweening_Plugins_SpiralPlugin_o* __this, DG_Tweening_Core_TweenerCore_Vector3__Vector3__SpiralOptions__o* t, bool isRelative, const MethodInfo*);
void DG_Tweening_Plugins_SpiralPlugin__SetFrom (DG_Tweening_Plugins_SpiralPlugin_o* __this, DG_Tweening_Core_TweenerCore_Vector3__Vector3__SpiralOptions__o* t, UnityEngine_Vector3_o fromValue, bool setImmediately, const MethodInfo*);
DG_Tweening_Plugins_Core_ABSTweenPlugin_Vector3__Vector3__SpiralOptions__o* DG_Tweening_Plugins_SpiralPlugin__Get (const MethodInfo*);
UnityEngine_Vector3_o DG_Tweening_Plugins_SpiralPlugin__ConvertToStartValue (DG_Tweening_Plugins_SpiralPlugin_o* __this, DG_Tweening_Core_TweenerCore_Vector3__Vector3__SpiralOptions__o* t, UnityEngine_Vector3_o value, const MethodInfo*);
void DG_Tweening_Plugins_SpiralPlugin__SetRelativeEndValue (DG_Tweening_Plugins_SpiralPlugin_o* __this, DG_Tweening_Core_TweenerCore_Vector3__Vector3__SpiralOptions__o* t, const MethodInfo*);
void DG_Tweening_Plugins_SpiralPlugin__SetChangeValue (DG_Tweening_Plugins_SpiralPlugin_o* __this, DG_Tweening_Core_TweenerCore_Vector3__Vector3__SpiralOptions__o* t, const MethodInfo*);
float DG_Tweening_Plugins_SpiralPlugin__GetSpeedBasedDuration (DG_Tweening_Plugins_SpiralPlugin_o* __this, DG_Tweening_Plugins_SpiralOptions_o options, float unitsXSecond, UnityEngine_Vector3_o changeValue, const MethodInfo*);
void DG_Tweening_Plugins_SpiralPlugin__EvaluateAndApply (DG_Tweening_Plugins_SpiralPlugin_o* __this, DG_Tweening_Plugins_SpiralOptions_o options, DG_Tweening_Tween_o* t, bool isRelative, DG_Tweening_Core_DOGetter_Vector3__o* getter, DG_Tweening_Core_DOSetter_Vector3__o* setter, float elapsed, UnityEngine_Vector3_o startValue, UnityEngine_Vector3_o changeValue, float duration, bool usingInversePosition, int32_t updateNotice, const MethodInfo*);
void DG_Tweening_Plugins_SpiralPlugin___ctor (DG_Tweening_Plugins_SpiralPlugin_o* __this, const MethodInfo*);
void DG_Tweening_Plugins_SpiralPlugin___cctor (const MethodInfo*);
void DG_Tweening_Core_ABSAnimationComponent___ctor (DG_Tweening_Core_ABSAnimationComponent_o* __this, const MethodInfo*);
void TMPro_FastAction__Add (TMPro_FastAction_o* __this, System_Action_o* rhs, const MethodInfo*);
void TMPro_FastAction__Remove (TMPro_FastAction_o* __this, System_Action_o* rhs, const MethodInfo*);
void TMPro_FastAction__Call (TMPro_FastAction_o* __this, const MethodInfo*);
void TMPro_FastAction___ctor (TMPro_FastAction_o* __this, const MethodInfo*);
void TMPro_FastAction_bool___Add (TMPro_FastAction_bool__o* __this, System_Action_A__o* rhs, const MethodInfo_26CF6E0* method_26CF6E0);
void TMPro_FastAction_object___Add (TMPro_FastAction_object__o* __this, System_Action_A__o* rhs, const MethodInfo_26CF970* method_26CF970);
void TMPro_FastAction_Object___Add (TMPro_FastAction_Object__o* __this, System_Action_A__o* rhs, const MethodInfo_26CF970* method_26CF970);
void TMPro_FastAction_bool___Remove (TMPro_FastAction_bool__o* __this, System_Action_A__o* rhs, const MethodInfo_26CF770* method_26CF770);
void TMPro_FastAction_object___Remove (TMPro_FastAction_object__o* __this, System_Action_A__o* rhs, const MethodInfo_26CFA00* method_26CFA00);
void TMPro_FastAction_Object___Remove (TMPro_FastAction_Object__o* __this, System_Action_A__o* rhs, const MethodInfo_26CFA00* method_26CFA00);
void TMPro_FastAction_bool___Call (TMPro_FastAction_bool__o* __this, bool a, const MethodInfo_26CF800* method_26CF800);
void TMPro_FastAction_object___Call (TMPro_FastAction_object__o* __this, Il2CppObject* a, const MethodInfo_26CFA90* method_26CFA90);
void TMPro_FastAction_Object___Call (TMPro_FastAction_Object__o* __this, UnityEngine_Object_o* a, const MethodInfo_26CFA90* method_26CFA90);
void TMPro_FastAction_bool____ctor (TMPro_FastAction_bool__o* __this, const MethodInfo_26CF8A0* method_26CF8A0);
void TMPro_FastAction_object____ctor (TMPro_FastAction_object__o* __this, const MethodInfo_26CFB30* method_26CFB30);
void TMPro_FastAction_Object____ctor (TMPro_FastAction_Object__o* __this, const MethodInfo_26CFB30* method_26CFB30);
void TMPro_FastAction_bool__object___Add (TMPro_FastAction_bool__object__o* __this, System_Action_A__B__o* rhs, const MethodInfo_26CFC00* method_26CFC00);
void TMPro_FastAction_object__object___Add (TMPro_FastAction_object__object__o* __this, System_Action_A__B__o* rhs, const MethodInfo_26CFEA0* method_26CFEA0);
void TMPro_FastAction_bool__object___Remove (TMPro_FastAction_bool__object__o* __this, System_Action_A__B__o* rhs, const MethodInfo_26CFC90* method_26CFC90);
void TMPro_FastAction_object__object___Remove (TMPro_FastAction_object__object__o* __this, System_Action_A__B__o* rhs, const MethodInfo_26CFF30* method_26CFF30);
void TMPro_FastAction_bool__object___Call (TMPro_FastAction_bool__object__o* __this, bool a, Il2CppObject* b, const MethodInfo_26CFD20* method_26CFD20);
void TMPro_FastAction_bool__Material___Call (TMPro_FastAction_bool__Material__o* __this, bool a, UnityEngine_Material_o* b, const MethodInfo_26CFD20* method_26CFD20);
void TMPro_FastAction_bool__Object___Call (TMPro_FastAction_bool__Object__o* __this, bool a, UnityEngine_Object_o* b, const MethodInfo_26CFD20* method_26CFD20);
void TMPro_FastAction_object__object___Call (TMPro_FastAction_object__object__o* __this, Il2CppObject* a, Il2CppObject* b, const MethodInfo_26CFFC0* method_26CFFC0);
void TMPro_FastAction_object__Compute_DT_EventArgs___Call (TMPro_FastAction_object__Compute_DT_EventArgs__o* __this, Il2CppObject* a, TMPro_Compute_DT_EventArgs_o* b, const MethodInfo_26CFFC0* method_26CFFC0);
void TMPro_FastAction_bool__object____ctor (TMPro_FastAction_bool__object__o* __this, const MethodInfo_26CFDD0* method_26CFDD0);
void TMPro_FastAction_bool__Material____ctor (TMPro_FastAction_bool__Material__o* __this, const MethodInfo_26CFDD0* method_26CFDD0);
void TMPro_FastAction_bool__Object____ctor (TMPro_FastAction_bool__Object__o* __this, const MethodInfo_26CFDD0* method_26CFDD0);
void TMPro_FastAction_object__object____ctor (TMPro_FastAction_object__object__o* __this, const MethodInfo_26D0060* method_26D0060);
void TMPro_FastAction_object__Compute_DT_EventArgs____ctor (TMPro_FastAction_object__Compute_DT_EventArgs__o* __this, const MethodInfo_26D0060* method_26D0060);
void TMPro_FastAction_object__object__object___Add (TMPro_FastAction_object__object__object__o* __this, System_Action_A__B__C__o* rhs, const MethodInfo_26D0130* method_26D0130);
void TMPro_FastAction_object__object__object___Remove (TMPro_FastAction_object__object__object__o* __this, System_Action_A__B__C__o* rhs, const MethodInfo_26D01C0* method_26D01C0);
void TMPro_FastAction_object__object__object___Call (TMPro_FastAction_object__object__object__o* __this, Il2CppObject* a, Il2CppObject* b, Il2CppObject* c, const MethodInfo_26D0250* method_26D0250);
void TMPro_FastAction_GameObject__Material__Material___Call (TMPro_FastAction_GameObject__Material__Material__o* __this, UnityEngine_GameObject_o* a, UnityEngine_Material_o* b, UnityEngine_Material_o* c, const MethodInfo_26D0250* method_26D0250);
void TMPro_FastAction_object__object__object____ctor (TMPro_FastAction_object__object__object__o* __this, const MethodInfo_26D0300* method_26D0300);
void TMPro_FastAction_GameObject__Material__Material____ctor (TMPro_FastAction_GameObject__Material__Material__o* __this, const MethodInfo_26D0300* method_26D0300);
TMPro_MaterialReferenceManager_o* TMPro_MaterialReferenceManager__get_instance (const MethodInfo*);
void TMPro_MaterialReferenceManager__AddFontAsset (TMPro_TMP_FontAsset_o* fontAsset, const MethodInfo*);
void TMPro_MaterialReferenceManager__AddFontAssetInternal (TMPro_MaterialReferenceManager_o* __this, TMPro_TMP_FontAsset_o* fontAsset, const MethodInfo*);
void TMPro_MaterialReferenceManager__AddSpriteAsset (TMPro_TMP_SpriteAsset_o* spriteAsset, const MethodInfo*);
void TMPro_MaterialReferenceManager__AddSpriteAssetInternal (TMPro_MaterialReferenceManager_o* __this, TMPro_TMP_SpriteAsset_o* spriteAsset, const MethodInfo*);
void TMPro_MaterialReferenceManager__AddSpriteAsset (int32_t hashCode, TMPro_TMP_SpriteAsset_o* spriteAsset, const MethodInfo*);
void TMPro_MaterialReferenceManager__AddSpriteAssetInternal (TMPro_MaterialReferenceManager_o* __this, int32_t hashCode, TMPro_TMP_SpriteAsset_o* spriteAsset, const MethodInfo*);
void TMPro_MaterialReferenceManager__AddFontMaterial (int32_t hashCode, UnityEngine_Material_o* material, const MethodInfo*);
void TMPro_MaterialReferenceManager__AddFontMaterialInternal (TMPro_MaterialReferenceManager_o* __this, int32_t hashCode, UnityEngine_Material_o* material, const MethodInfo*);
void TMPro_MaterialReferenceManager__AddColorGradientPreset (int32_t hashCode, TMPro_TMP_ColorGradient_o* spriteAsset, const MethodInfo*);
void TMPro_MaterialReferenceManager__AddColorGradientPreset_Internal (TMPro_MaterialReferenceManager_o* __this, int32_t hashCode, TMPro_TMP_ColorGradient_o* spriteAsset, const MethodInfo*);
bool TMPro_MaterialReferenceManager__Contains (TMPro_MaterialReferenceManager_o* __this, TMPro_TMP_FontAsset_o* font, const MethodInfo*);
bool TMPro_MaterialReferenceManager__Contains (TMPro_MaterialReferenceManager_o* __this, TMPro_TMP_SpriteAsset_o* sprite, const MethodInfo*);
bool TMPro_MaterialReferenceManager__TryGetFontAsset (int32_t hashCode, TMPro_TMP_FontAsset_o** fontAsset, const MethodInfo*);
bool TMPro_MaterialReferenceManager__TryGetFontAssetInternal (TMPro_MaterialReferenceManager_o* __this, int32_t hashCode, TMPro_TMP_FontAsset_o** fontAsset, const MethodInfo*);
bool TMPro_MaterialReferenceManager__TryGetSpriteAsset (int32_t hashCode, TMPro_TMP_SpriteAsset_o** spriteAsset, const MethodInfo*);
bool TMPro_MaterialReferenceManager__TryGetSpriteAssetInternal (TMPro_MaterialReferenceManager_o* __this, int32_t hashCode, TMPro_TMP_SpriteAsset_o** spriteAsset, const MethodInfo*);
bool TMPro_MaterialReferenceManager__TryGetColorGradientPreset (int32_t hashCode, TMPro_TMP_ColorGradient_o** gradientPreset, const MethodInfo*);
bool TMPro_MaterialReferenceManager__TryGetColorGradientPresetInternal (TMPro_MaterialReferenceManager_o* __this, int32_t hashCode, TMPro_TMP_ColorGradient_o** gradientPreset, const MethodInfo*);
bool TMPro_MaterialReferenceManager__TryGetMaterial (int32_t hashCode, UnityEngine_Material_o** material, const MethodInfo*);
bool TMPro_MaterialReferenceManager__TryGetMaterialInternal (TMPro_MaterialReferenceManager_o* __this, int32_t hashCode, UnityEngine_Material_o** material, const MethodInfo*);
void TMPro_MaterialReferenceManager___ctor (TMPro_MaterialReferenceManager_o* __this, const MethodInfo*);
void TMPro_MaterialReference___ctor (TMPro_MaterialReference_o __this, int32_t index, TMPro_TMP_FontAsset_o* fontAsset, TMPro_TMP_SpriteAsset_o* spriteAsset, UnityEngine_Material_o* material, float padding, const MethodInfo*);
bool TMPro_MaterialReference__Contains (TMPro_MaterialReference_array* materialReferences, TMPro_TMP_FontAsset_o* fontAsset, const MethodInfo*);
int32_t TMPro_MaterialReference__AddMaterialReference (UnityEngine_Material_o* material, TMPro_TMP_FontAsset_o* fontAsset, TMPro_MaterialReference_array** materialReferences, System_Collections_Generic_Dictionary_int__int__o* materialReferenceIndexLookup, const MethodInfo*);
int32_t TMPro_MaterialReference__AddMaterialReference (UnityEngine_Material_o* material, TMPro_TMP_SpriteAsset_o* spriteAsset, TMPro_MaterialReference_array** materialReferences, System_Collections_Generic_Dictionary_int__int__o* materialReferenceIndexLookup, const MethodInfo*);
int32_t TMPro_TMP_Asset__get_instanceID (TMPro_TMP_Asset_o* __this, const MethodInfo*);
void TMPro_TMP_Asset___ctor (TMPro_TMP_Asset_o* __this, const MethodInfo*);
void TMPro_TMP_Character___ctor (TMPro_TMP_Character_o* __this, const MethodInfo*);
void TMPro_TMP_Character___ctor (TMPro_TMP_Character_o* __this, uint32_t unicode, UnityEngine_TextCore_Glyph_o* glyph, const MethodInfo*);
void TMPro_TMP_Character___ctor (TMPro_TMP_Character_o* __this, uint32_t unicode, TMPro_TMP_FontAsset_o* fontAsset, UnityEngine_TextCore_Glyph_o* glyph, const MethodInfo*);
void TMPro_TMP_Character___ctor (TMPro_TMP_Character_o* __this, uint32_t unicode, uint32_t glyphIndex, const MethodInfo*);
TMPro_TMP_Vertex_o TMPro_TMP_Vertex__get_zero (const MethodInfo*);
void TMPro_TMP_Vertex___cctor (const MethodInfo*);
float TMPro_TMP_Offset__get_left (TMPro_TMP_Offset_o __this, const MethodInfo*);
void TMPro_TMP_Offset__set_left (TMPro_TMP_Offset_o __this, float value, const MethodInfo*);
float TMPro_TMP_Offset__get_right (TMPro_TMP_Offset_o __this, const MethodInfo*);
void TMPro_TMP_Offset__set_right (TMPro_TMP_Offset_o __this, float value, const MethodInfo*);
float TMPro_TMP_Offset__get_top (TMPro_TMP_Offset_o __this, const MethodInfo*);
void TMPro_TMP_Offset__set_top (TMPro_TMP_Offset_o __this, float value, const MethodInfo*);
float TMPro_TMP_Offset__get_bottom (TMPro_TMP_Offset_o __this, const MethodInfo*);
void TMPro_TMP_Offset__set_bottom (TMPro_TMP_Offset_o __this, float value, const MethodInfo*);
float TMPro_TMP_Offset__get_horizontal (TMPro_TMP_Offset_o __this, const MethodInfo*);
void TMPro_TMP_Offset__set_horizontal (TMPro_TMP_Offset_o __this, float value, const MethodInfo*);
float TMPro_TMP_Offset__get_vertical (TMPro_TMP_Offset_o __this, const MethodInfo*);
void TMPro_TMP_Offset__set_vertical (TMPro_TMP_Offset_o __this, float value, const MethodInfo*);
TMPro_TMP_Offset_o TMPro_TMP_Offset__get_zero (const MethodInfo*);
void TMPro_TMP_Offset___ctor (TMPro_TMP_Offset_o __this, float left, float right, float top, float bottom, const MethodInfo*);
void TMPro_TMP_Offset___ctor (TMPro_TMP_Offset_o __this, float horizontal, float vertical, const MethodInfo*);
bool TMPro_TMP_Offset__op_Equality (TMPro_TMP_Offset_o lhs, TMPro_TMP_Offset_o rhs, const MethodInfo*);
bool TMPro_TMP_Offset__op_Inequality (TMPro_TMP_Offset_o lhs, TMPro_TMP_Offset_o rhs, const MethodInfo*);
TMPro_TMP_Offset_o TMPro_TMP_Offset__op_Multiply (TMPro_TMP_Offset_o a, float b, const MethodInfo*);
int32_t TMPro_TMP_Offset__GetHashCode (TMPro_TMP_Offset_o __this, const MethodInfo*);
bool TMPro_TMP_Offset__Equals (TMPro_TMP_Offset_o __this, Il2CppObject* obj, const MethodInfo*);
bool TMPro_TMP_Offset__Equals (TMPro_TMP_Offset_o __this, TMPro_TMP_Offset_o other, const MethodInfo*);
void TMPro_TMP_Offset___cctor (const MethodInfo*);
void TMPro_HighlightState___ctor (TMPro_HighlightState_o __this, UnityEngine_Color32_o color, TMPro_TMP_Offset_o padding, const MethodInfo*);
bool TMPro_HighlightState__op_Equality (TMPro_HighlightState_o lhs, TMPro_HighlightState_o rhs, const MethodInfo*);
bool TMPro_HighlightState__op_Inequality (TMPro_HighlightState_o lhs, TMPro_HighlightState_o rhs, const MethodInfo*);
int32_t TMPro_HighlightState__GetHashCode (TMPro_HighlightState_o __this, const MethodInfo*);
bool TMPro_HighlightState__Equals (TMPro_HighlightState_o __this, Il2CppObject* obj, const MethodInfo*);
bool TMPro_HighlightState__Equals (TMPro_HighlightState_o __this, TMPro_HighlightState_o other, const MethodInfo*);
void TMPro_TMP_ColorGradient___ctor (TMPro_TMP_ColorGradient_o* __this, const MethodInfo*);
void TMPro_TMP_ColorGradient___ctor (TMPro_TMP_ColorGradient_o* __this, UnityEngine_Color_o color, const MethodInfo*);
void TMPro_TMP_ColorGradient___ctor (TMPro_TMP_ColorGradient_o* __this, UnityEngine_Color_o color0, UnityEngine_Color_o color1, UnityEngine_Color_o color2, UnityEngine_Color_o color3, const MethodInfo*);
void TMPro_TMP_ColorGradient___cctor (const MethodInfo*);
int32_t TMPro_TMP_Compatibility__ConvertTextAlignmentEnumValues (int32_t oldValue, const MethodInfo*);
UnityEngine_Color_o TMPro_ColorTween__get_startColor (TMPro_ColorTween_o __this, const MethodInfo*);
void TMPro_ColorTween__set_startColor (TMPro_ColorTween_o __this, UnityEngine_Color_o value, const MethodInfo*);
UnityEngine_Color_o TMPro_ColorTween__get_targetColor (TMPro_ColorTween_o __this, const MethodInfo*);
void TMPro_ColorTween__set_targetColor (TMPro_ColorTween_o __this, UnityEngine_Color_o value, const MethodInfo*);
int32_t TMPro_ColorTween__get_tweenMode (TMPro_ColorTween_o __this, const MethodInfo*);
void TMPro_ColorTween__set_tweenMode (TMPro_ColorTween_o __this, int32_t value, const MethodInfo*);
float TMPro_ColorTween__get_duration (TMPro_ColorTween_o __this, const MethodInfo*);
void TMPro_ColorTween__set_duration (TMPro_ColorTween_o __this, float value, const MethodInfo*);
bool TMPro_ColorTween__get_ignoreTimeScale (TMPro_ColorTween_o __this, const MethodInfo*);
void TMPro_ColorTween__set_ignoreTimeScale (TMPro_ColorTween_o __this, bool value, const MethodInfo*);
void TMPro_ColorTween__TweenValue (TMPro_ColorTween_o __this, float floatPercentage, const MethodInfo*);
void TMPro_ColorTween__AddOnChangedCallback (TMPro_ColorTween_o __this, UnityEngine_Events_UnityAction_Color__o* callback, const MethodInfo*);
bool TMPro_ColorTween__GetIgnoreTimescale (TMPro_ColorTween_o __this, const MethodInfo*);
float TMPro_ColorTween__GetDuration (TMPro_ColorTween_o __this, const MethodInfo*);
bool TMPro_ColorTween__ValidTarget (TMPro_ColorTween_o __this, const MethodInfo*);
void TMPro_ColorTween_ColorTweenCallback___ctor (TMPro_ColorTween_ColorTweenCallback_o* __this, const MethodInfo*);
float TMPro_FloatTween__get_startValue (TMPro_FloatTween_o __this, const MethodInfo*);
void TMPro_FloatTween__set_startValue (TMPro_FloatTween_o __this, float value, const MethodInfo*);
float TMPro_FloatTween__get_targetValue (TMPro_FloatTween_o __this, const MethodInfo*);
void TMPro_FloatTween__set_targetValue (TMPro_FloatTween_o __this, float value, const MethodInfo*);
float TMPro_FloatTween__get_duration (TMPro_FloatTween_o __this, const MethodInfo*);
void TMPro_FloatTween__set_duration (TMPro_FloatTween_o __this, float value, const MethodInfo*);
bool TMPro_FloatTween__get_ignoreTimeScale (TMPro_FloatTween_o __this, const MethodInfo*);
void TMPro_FloatTween__set_ignoreTimeScale (TMPro_FloatTween_o __this, bool value, const MethodInfo*);
void TMPro_FloatTween__TweenValue (TMPro_FloatTween_o __this, float floatPercentage, const MethodInfo*);
void TMPro_FloatTween__AddOnChangedCallback (TMPro_FloatTween_o __this, UnityEngine_Events_UnityAction_float__o* callback, const MethodInfo*);
bool TMPro_FloatTween__GetIgnoreTimescale (TMPro_FloatTween_o __this, const MethodInfo*);
float TMPro_FloatTween__GetDuration (TMPro_FloatTween_o __this, const MethodInfo*);
bool TMPro_FloatTween__ValidTarget (TMPro_FloatTween_o __this, const MethodInfo*);
void TMPro_FloatTween_FloatTweenCallback___ctor (TMPro_FloatTween_FloatTweenCallback_o* __this, const MethodInfo*);
System_Collections_IEnumerator_o* TMPro_TweenRunner_FloatTween___Start (TMPro_FloatTween_o tweenInfo, const MethodInfo_287B1E0* method_287B1E0);
void TMPro_TweenRunner_FloatTween___Init (TMPro_TweenRunner_FloatTween__o* __this, UnityEngine_MonoBehaviour_o* coroutineContainer, const MethodInfo_287B2C0* method_287B2C0);
void TMPro_TweenRunner_FloatTween___StartTween (TMPro_TweenRunner_FloatTween__o* __this, TMPro_FloatTween_o info, const MethodInfo_287B2D0* method_287B2D0);
void TMPro_TweenRunner_FloatTween___StopTween (TMPro_TweenRunner_FloatTween__o* __this, const MethodInfo_287B440* method_287B440);
void TMPro_TweenRunner_FloatTween____ctor (TMPro_TweenRunner_FloatTween__o* __this, const MethodInfo_287B490* method_287B490);
void TMPro_TweenRunner__Start_d__2_FloatTween____ctor (TMPro_TweenRunner__Start_d__2_FloatTween__o* __this, int32_t __1__state, const MethodInfo_287AFE0* method_287AFE0);
void TMPro_TweenRunner__Start_d__2_FloatTween___System_IDisposable_Dispose (TMPro_TweenRunner__Start_d__2_FloatTween__o* __this, const MethodInfo_287B010* method_287B010);
bool TMPro_TweenRunner__Start_d__2_FloatTween___MoveNext (TMPro_TweenRunner__Start_d__2_FloatTween__o* __this, const MethodInfo_287B020* method_287B020);
Il2CppObject* TMPro_TweenRunner__Start_d__2_FloatTween___System_Collections_Generic_IEnumerator_System_Object__get_Current (TMPro_TweenRunner__Start_d__2_FloatTween__o* __this, const MethodInfo_287B160* method_287B160);
void TMPro_TweenRunner__Start_d__2_FloatTween___System_Collections_IEnumerator_Reset (TMPro_TweenRunner__Start_d__2_FloatTween__o* __this, const MethodInfo_287B170* method_287B170);
Il2CppObject* TMPro_TweenRunner__Start_d__2_FloatTween___System_Collections_IEnumerator_get_Current (TMPro_TweenRunner__Start_d__2_FloatTween__o* __this, const MethodInfo_287B1D0* method_287B1D0);
UnityEngine_GameObject_o* TMPro_TMP_DefaultControls__CreateUIElementRoot (System_String_o* name, UnityEngine_Vector2_o size, const MethodInfo*);
UnityEngine_GameObject_o* TMPro_TMP_DefaultControls__CreateUIObject (System_String_o* name, UnityEngine_GameObject_o* parent, const MethodInfo*);
void TMPro_TMP_DefaultControls__SetDefaultTextValues (TMPro_TMP_Text_o* lbl, const MethodInfo*);
void TMPro_TMP_DefaultControls__SetDefaultColorTransitionValues (UnityEngine_UI_Selectable_o* slider, const MethodInfo*);
void TMPro_TMP_DefaultControls__SetParentAndAlign (UnityEngine_GameObject_o* child, UnityEngine_GameObject_o* parent, const MethodInfo*);
void TMPro_TMP_DefaultControls__SetLayerRecursively (UnityEngine_GameObject_o* go, int32_t layer, const MethodInfo*);
UnityEngine_GameObject_o* TMPro_TMP_DefaultControls__CreateScrollbar (TMPro_TMP_DefaultControls_Resources_o resources, const MethodInfo*);
UnityEngine_GameObject_o* TMPro_TMP_DefaultControls__CreateButton (TMPro_TMP_DefaultControls_Resources_o resources, const MethodInfo*);
UnityEngine_GameObject_o* TMPro_TMP_DefaultControls__CreateText (TMPro_TMP_DefaultControls_Resources_o resources, const MethodInfo*);
UnityEngine_GameObject_o* TMPro_TMP_DefaultControls__CreateInputField (TMPro_TMP_DefaultControls_Resources_o resources, const MethodInfo*);
UnityEngine_GameObject_o* TMPro_TMP_DefaultControls__CreateDropdown (TMPro_TMP_DefaultControls_Resources_o resources, const MethodInfo*);
void TMPro_TMP_DefaultControls___cctor (const MethodInfo*);
UnityEngine_RectTransform_o* TMPro_TMP_Dropdown__get_template (TMPro_TMP_Dropdown_o* __this, const MethodInfo*);
void TMPro_TMP_Dropdown__set_template (TMPro_TMP_Dropdown_o* __this, UnityEngine_RectTransform_o* value, const MethodInfo*);
TMPro_TMP_Text_o* TMPro_TMP_Dropdown__get_captionText (TMPro_TMP_Dropdown_o* __this, const MethodInfo*);
void TMPro_TMP_Dropdown__set_captionText (TMPro_TMP_Dropdown_o* __this, TMPro_TMP_Text_o* value, const MethodInfo*);
UnityEngine_UI_Image_o* TMPro_TMP_Dropdown__get_captionImage (TMPro_TMP_Dropdown_o* __this, const MethodInfo*);
void TMPro_TMP_Dropdown__set_captionImage (TMPro_TMP_Dropdown_o* __this, UnityEngine_UI_Image_o* value, const MethodInfo*);
UnityEngine_UI_Graphic_o* TMPro_TMP_Dropdown__get_placeholder (TMPro_TMP_Dropdown_o* __this, const MethodInfo*);
void TMPro_TMP_Dropdown__set_placeholder (TMPro_TMP_Dropdown_o* __this, UnityEngine_UI_Graphic_o* value, const MethodInfo*);
TMPro_TMP_Text_o* TMPro_TMP_Dropdown__get_itemText (TMPro_TMP_Dropdown_o* __this, const MethodInfo*);
void TMPro_TMP_Dropdown__set_itemText (TMPro_TMP_Dropdown_o* __this, TMPro_TMP_Text_o* value, const MethodInfo*);
UnityEngine_UI_Image_o* TMPro_TMP_Dropdown__get_itemImage (TMPro_TMP_Dropdown_o* __this, const MethodInfo*);
void TMPro_TMP_Dropdown__set_itemImage (TMPro_TMP_Dropdown_o* __this, UnityEngine_UI_Image_o* value, const MethodInfo*);
System_Collections_Generic_List_TMP_Dropdown_OptionData__o* TMPro_TMP_Dropdown__get_options (TMPro_TMP_Dropdown_o* __this, const MethodInfo*);
void TMPro_TMP_Dropdown__set_options (TMPro_TMP_Dropdown_o* __this, System_Collections_Generic_List_TMP_Dropdown_OptionData__o* value, const MethodInfo*);
TMPro_TMP_Dropdown_DropdownEvent_o* TMPro_TMP_Dropdown__get_onValueChanged (TMPro_TMP_Dropdown_o* __this, const MethodInfo*);
void TMPro_TMP_Dropdown__set_onValueChanged (TMPro_TMP_Dropdown_o* __this, TMPro_TMP_Dropdown_DropdownEvent_o* value, const MethodInfo*);
float TMPro_TMP_Dropdown__get_alphaFadeSpeed (TMPro_TMP_Dropdown_o* __this, const MethodInfo*);
void TMPro_TMP_Dropdown__set_alphaFadeSpeed (TMPro_TMP_Dropdown_o* __this, float value, const MethodInfo*);
int32_t TMPro_TMP_Dropdown__get_value (TMPro_TMP_Dropdown_o* __this, const MethodInfo*);
void TMPro_TMP_Dropdown__set_value (TMPro_TMP_Dropdown_o* __this, int32_t value, const MethodInfo*);
void TMPro_TMP_Dropdown__SetValueWithoutNotify (TMPro_TMP_Dropdown_o* __this, int32_t input, const MethodInfo*);
void TMPro_TMP_Dropdown__SetValue (TMPro_TMP_Dropdown_o* __this, int32_t value, bool sendCallback, const MethodInfo*);
bool TMPro_TMP_Dropdown__get_IsExpanded (TMPro_TMP_Dropdown_o* __this, const MethodInfo*);
void TMPro_TMP_Dropdown___ctor (TMPro_TMP_Dropdown_o* __this, const MethodInfo*);
void TMPro_TMP_Dropdown__Awake (TMPro_TMP_Dropdown_o* __this, const MethodInfo*);
void TMPro_TMP_Dropdown__Start (TMPro_TMP_Dropdown_o* __this, const MethodInfo*);
void TMPro_TMP_Dropdown__OnDisable (TMPro_TMP_Dropdown_o* __this, const MethodInfo*);
void TMPro_TMP_Dropdown__RefreshShownValue (TMPro_TMP_Dropdown_o* __this, const MethodInfo*);
void TMPro_TMP_Dropdown__AddOptions (TMPro_TMP_Dropdown_o* __this, System_Collections_Generic_List_TMP_Dropdown_OptionData__o* options, const MethodInfo*);
void TMPro_TMP_Dropdown__AddOptions (TMPro_TMP_Dropdown_o* __this, System_Collections_Generic_List_string__o* options, const MethodInfo*);
void TMPro_TMP_Dropdown__AddOptions (TMPro_TMP_Dropdown_o* __this, System_Collections_Generic_List_Sprite__o* options, const MethodInfo*);
void TMPro_TMP_Dropdown__ClearOptions (TMPro_TMP_Dropdown_o* __this, const MethodInfo*);
void TMPro_TMP_Dropdown__SetupTemplate (TMPro_TMP_Dropdown_o* __this, const MethodInfo*);
Il2CppObject* TMPro_TMP_Dropdown__GetOrAddComponent_object_ (UnityEngine_GameObject_o* go, const MethodInfo_1FD0530* method_1FD0530);
UnityEngine_Canvas_o* TMPro_TMP_Dropdown__GetOrAddComponent_Canvas_ (UnityEngine_GameObject_o* go, const MethodInfo_1FD0530* method_1FD0530);
UnityEngine_CanvasGroup_o* TMPro_TMP_Dropdown__GetOrAddComponent_CanvasGroup_ (UnityEngine_GameObject_o* go, const MethodInfo_1FD0530* method_1FD0530);
UnityEngine_UI_GraphicRaycaster_o* TMPro_TMP_Dropdown__GetOrAddComponent_GraphicRaycaster_ (UnityEngine_GameObject_o* go, const MethodInfo_1FD0530* method_1FD0530);
void TMPro_TMP_Dropdown__OnPointerClick (TMPro_TMP_Dropdown_o* __this, UnityEngine_EventSystems_PointerEventData_o* eventData, const MethodInfo*);
void TMPro_TMP_Dropdown__OnSubmit (TMPro_TMP_Dropdown_o* __this, UnityEngine_EventSystems_BaseEventData_o* eventData, const MethodInfo*);
void TMPro_TMP_Dropdown__OnCancel (TMPro_TMP_Dropdown_o* __this, UnityEngine_EventSystems_BaseEventData_o* eventData, const MethodInfo*);
void TMPro_TMP_Dropdown__Show (TMPro_TMP_Dropdown_o* __this, const MethodInfo*);
UnityEngine_GameObject_o* TMPro_TMP_Dropdown__CreateBlocker (TMPro_TMP_Dropdown_o* __this, UnityEngine_Canvas_o* rootCanvas, const MethodInfo*);
void TMPro_TMP_Dropdown__DestroyBlocker (TMPro_TMP_Dropdown_o* __this, UnityEngine_GameObject_o* blocker, const MethodInfo*);
UnityEngine_GameObject_o* TMPro_TMP_Dropdown__CreateDropdownList (TMPro_TMP_Dropdown_o* __this, UnityEngine_GameObject_o* _template, const MethodInfo*);
void TMPro_TMP_Dropdown__DestroyDropdownList (TMPro_TMP_Dropdown_o* __this, UnityEngine_GameObject_o* dropdownList, const MethodInfo*);
TMPro_TMP_Dropdown_DropdownItem_o* TMPro_TMP_Dropdown__CreateItem (TMPro_TMP_Dropdown_o* __this, TMPro_TMP_Dropdown_DropdownItem_o* itemTemplate, const MethodInfo*);
void TMPro_TMP_Dropdown__DestroyItem (TMPro_TMP_Dropdown_o* __this, TMPro_TMP_Dropdown_DropdownItem_o* item, const MethodInfo*);
TMPro_TMP_Dropdown_DropdownItem_o* TMPro_TMP_Dropdown__AddItem (TMPro_TMP_Dropdown_o* __this, TMPro_TMP_Dropdown_OptionData_o* data, bool selected, TMPro_TMP_Dropdown_DropdownItem_o* itemTemplate, System_Collections_Generic_List_TMP_Dropdown_DropdownItem__o* items, const MethodInfo*);
void TMPro_TMP_Dropdown__AlphaFadeList (TMPro_TMP_Dropdown_o* __this, float duration, float alpha, const MethodInfo*);
void TMPro_TMP_Dropdown__AlphaFadeList (TMPro_TMP_Dropdown_o* __this, float duration, float start, float end, const MethodInfo*);
void TMPro_TMP_Dropdown__SetAlpha (TMPro_TMP_Dropdown_o* __this, float alpha, const MethodInfo*);
void TMPro_TMP_Dropdown__Hide (TMPro_TMP_Dropdown_o* __this, const MethodInfo*);
System_Collections_IEnumerator_o* TMPro_TMP_Dropdown__DelayedDestroyDropdownList (TMPro_TMP_Dropdown_o* __this, float delay, const MethodInfo*);
void TMPro_TMP_Dropdown__ImmediateDestroyDropdownList (TMPro_TMP_Dropdown_o* __this, const MethodInfo*);
void TMPro_TMP_Dropdown__OnSelectItem (TMPro_TMP_Dropdown_o* __this, UnityEngine_UI_Toggle_o* toggle, const MethodInfo*);
void TMPro_TMP_Dropdown___cctor (const MethodInfo*);
TMPro_TMP_Text_o* TMPro_TMP_Dropdown_DropdownItem__get_text (TMPro_TMP_Dropdown_DropdownItem_o* __this, const MethodInfo*);
void TMPro_TMP_Dropdown_DropdownItem__set_text (TMPro_TMP_Dropdown_DropdownItem_o* __this, TMPro_TMP_Text_o* value, const MethodInfo*);
UnityEngine_UI_Image_o* TMPro_TMP_Dropdown_DropdownItem__get_image (TMPro_TMP_Dropdown_DropdownItem_o* __this, const MethodInfo*);
void TMPro_TMP_Dropdown_DropdownItem__set_image (TMPro_TMP_Dropdown_DropdownItem_o* __this, UnityEngine_UI_Image_o* value, const MethodInfo*);
UnityEngine_RectTransform_o* TMPro_TMP_Dropdown_DropdownItem__get_rectTransform (TMPro_TMP_Dropdown_DropdownItem_o* __this, const MethodInfo*);
void TMPro_TMP_Dropdown_DropdownItem__set_rectTransform (TMPro_TMP_Dropdown_DropdownItem_o* __this, UnityEngine_RectTransform_o* value, const MethodInfo*);
UnityEngine_UI_Toggle_o* TMPro_TMP_Dropdown_DropdownItem__get_toggle (TMPro_TMP_Dropdown_DropdownItem_o* __this, const MethodInfo*);
void TMPro_TMP_Dropdown_DropdownItem__set_toggle (TMPro_TMP_Dropdown_DropdownItem_o* __this, UnityEngine_UI_Toggle_o* value, const MethodInfo*);
void TMPro_TMP_Dropdown_DropdownItem__OnPointerEnter (TMPro_TMP_Dropdown_DropdownItem_o* __this, UnityEngine_EventSystems_PointerEventData_o* eventData, const MethodInfo*);
void TMPro_TMP_Dropdown_DropdownItem__OnCancel (TMPro_TMP_Dropdown_DropdownItem_o* __this, UnityEngine_EventSystems_BaseEventData_o* eventData, const MethodInfo*);
void TMPro_TMP_Dropdown_DropdownItem___ctor (TMPro_TMP_Dropdown_DropdownItem_o* __this, const MethodInfo*);
System_String_o* TMPro_TMP_Dropdown_OptionData__get_text (TMPro_TMP_Dropdown_OptionData_o* __this, const MethodInfo*);
void TMPro_TMP_Dropdown_OptionData__set_text (TMPro_TMP_Dropdown_OptionData_o* __this, System_String_o* value, const MethodInfo*);
UnityEngine_Sprite_o* TMPro_TMP_Dropdown_OptionData__get_image (TMPro_TMP_Dropdown_OptionData_o* __this, const MethodInfo*);
void TMPro_TMP_Dropdown_OptionData__set_image (TMPro_TMP_Dropdown_OptionData_o* __this, UnityEngine_Sprite_o* value, const MethodInfo*);
void TMPro_TMP_Dropdown_OptionData___ctor (TMPro_TMP_Dropdown_OptionData_o* __this, const MethodInfo*);
void TMPro_TMP_Dropdown_OptionData___ctor (TMPro_TMP_Dropdown_OptionData_o* __this, System_String_o* text, const MethodInfo*);
void TMPro_TMP_Dropdown_OptionData___ctor (TMPro_TMP_Dropdown_OptionData_o* __this, UnityEngine_Sprite_o* image, const MethodInfo*);
void TMPro_TMP_Dropdown_OptionData___ctor (TMPro_TMP_Dropdown_OptionData_o* __this, System_String_o* text, UnityEngine_Sprite_o* image, const MethodInfo*);
System_Collections_Generic_List_TMP_Dropdown_OptionData__o* TMPro_TMP_Dropdown_OptionDataList__get_options (TMPro_TMP_Dropdown_OptionDataList_o* __this, const MethodInfo*);
void TMPro_TMP_Dropdown_OptionDataList__set_options (TMPro_TMP_Dropdown_OptionDataList_o* __this, System_Collections_Generic_List_TMP_Dropdown_OptionData__o* value, const MethodInfo*);
void TMPro_TMP_Dropdown_OptionDataList___ctor (TMPro_TMP_Dropdown_OptionDataList_o* __this, const MethodInfo*);
void TMPro_TMP_Dropdown_DropdownEvent___ctor (TMPro_TMP_Dropdown_DropdownEvent_o* __this, const MethodInfo*);
void TMPro_TMP_Dropdown___c__DisplayClass69_0___ctor (TMPro_TMP_Dropdown___c__DisplayClass69_0_o* __this, const MethodInfo*);
void TMPro_TMP_Dropdown___c__DisplayClass69_0___Show_b__0 (TMPro_TMP_Dropdown___c__DisplayClass69_0_o* __this, bool x, const MethodInfo*);
void TMPro_TMP_Dropdown__DelayedDestroyDropdownList_d__81___ctor (TMPro_TMP_Dropdown__DelayedDestroyDropdownList_d__81_o* __this, int32_t __1__state, const MethodInfo*);
void TMPro_TMP_Dropdown__DelayedDestroyDropdownList_d__81__System_IDisposable_Dispose (TMPro_TMP_Dropdown__DelayedDestroyDropdownList_d__81_o* __this, const MethodInfo*);
bool TMPro_TMP_Dropdown__DelayedDestroyDropdownList_d__81__MoveNext (TMPro_TMP_Dropdown__DelayedDestroyDropdownList_d__81_o* __this, const MethodInfo*);
Il2CppObject* TMPro_TMP_Dropdown__DelayedDestroyDropdownList_d__81__System_Collections_Generic_IEnumerator_System_Object__get_Current (TMPro_TMP_Dropdown__DelayedDestroyDropdownList_d__81_o* __this, const MethodInfo*);
void TMPro_TMP_Dropdown__DelayedDestroyDropdownList_d__81__System_Collections_IEnumerator_Reset (TMPro_TMP_Dropdown__DelayedDestroyDropdownList_d__81_o* __this, const MethodInfo*);
Il2CppObject* TMPro_TMP_Dropdown__DelayedDestroyDropdownList_d__81__System_Collections_IEnumerator_get_Current (TMPro_TMP_Dropdown__DelayedDestroyDropdownList_d__81_o* __this, const MethodInfo*);
System_String_o* TMPro_TMP_FontAsset__get_version (TMPro_TMP_FontAsset_o* __this, const MethodInfo*);
void TMPro_TMP_FontAsset__set_version (TMPro_TMP_FontAsset_o* __this, System_String_o* value, const MethodInfo*);
UnityEngine_Font_o* TMPro_TMP_FontAsset__get_sourceFontFile (TMPro_TMP_FontAsset_o* __this, const MethodInfo*);
void TMPro_TMP_FontAsset__set_sourceFontFile (TMPro_TMP_FontAsset_o* __this, UnityEngine_Font_o* value, const MethodInfo*);
int32_t TMPro_TMP_FontAsset__get_atlasPopulationMode (TMPro_TMP_FontAsset_o* __this, const MethodInfo*);
void TMPro_TMP_FontAsset__set_atlasPopulationMode (TMPro_TMP_FontAsset_o* __this, int32_t value, const MethodInfo*);
UnityEngine_TextCore_FaceInfo_o TMPro_TMP_FontAsset__get_faceInfo (TMPro_TMP_FontAsset_o* __this, const MethodInfo*);
void TMPro_TMP_FontAsset__set_faceInfo (TMPro_TMP_FontAsset_o* __this, UnityEngine_TextCore_FaceInfo_o value, const MethodInfo*);
System_Collections_Generic_List_Glyph__o* TMPro_TMP_FontAsset__get_glyphTable (TMPro_TMP_FontAsset_o* __this, const MethodInfo*);
void TMPro_TMP_FontAsset__set_glyphTable (TMPro_TMP_FontAsset_o* __this, System_Collections_Generic_List_Glyph__o* value, const MethodInfo*);
System_Collections_Generic_Dictionary_uint__Glyph__o* TMPro_TMP_FontAsset__get_glyphLookupTable (TMPro_TMP_FontAsset_o* __this, const MethodInfo*);
System_Collections_Generic_List_TMP_Character__o* TMPro_TMP_FontAsset__get_characterTable (TMPro_TMP_FontAsset_o* __this, const MethodInfo*);
void TMPro_TMP_FontAsset__set_characterTable (TMPro_TMP_FontAsset_o* __this, System_Collections_Generic_List_TMP_Character__o* value, const MethodInfo*);
System_Collections_Generic_Dictionary_uint__TMP_Character__o* TMPro_TMP_FontAsset__get_characterLookupTable (TMPro_TMP_FontAsset_o* __this, const MethodInfo*);
UnityEngine_Texture2D_o* TMPro_TMP_FontAsset__get_atlasTexture (TMPro_TMP_FontAsset_o* __this, const MethodInfo*);
UnityEngine_Texture2D_array* TMPro_TMP_FontAsset__get_atlasTextures (TMPro_TMP_FontAsset_o* __this, const MethodInfo*);
void TMPro_TMP_FontAsset__set_atlasTextures (TMPro_TMP_FontAsset_o* __this, UnityEngine_Texture2D_array* value, const MethodInfo*);
int32_t TMPro_TMP_FontAsset__get_atlasTextureCount (TMPro_TMP_FontAsset_o* __this, const MethodInfo*);
bool TMPro_TMP_FontAsset__get_isMultiAtlasTexturesEnabled (TMPro_TMP_FontAsset_o* __this, const MethodInfo*);
void TMPro_TMP_FontAsset__set_isMultiAtlasTexturesEnabled (TMPro_TMP_FontAsset_o* __this, bool value, const MethodInfo*);
bool TMPro_TMP_FontAsset__get_clearDynamicDataOnBuild (TMPro_TMP_FontAsset_o* __this, const MethodInfo*);
void TMPro_TMP_FontAsset__set_clearDynamicDataOnBuild (TMPro_TMP_FontAsset_o* __this, bool value, const MethodInfo*);
System_Collections_Generic_List_GlyphRect__o* TMPro_TMP_FontAsset__get_usedGlyphRects (TMPro_TMP_FontAsset_o* __this, const MethodInfo*);
void TMPro_TMP_FontAsset__set_usedGlyphRects (TMPro_TMP_FontAsset_o* __this, System_Collections_Generic_List_GlyphRect__o* value, const MethodInfo*);
System_Collections_Generic_List_GlyphRect__o* TMPro_TMP_FontAsset__get_freeGlyphRects (TMPro_TMP_FontAsset_o* __this, const MethodInfo*);
void TMPro_TMP_FontAsset__set_freeGlyphRects (TMPro_TMP_FontAsset_o* __this, System_Collections_Generic_List_GlyphRect__o* value, const MethodInfo*);
TMPro_FaceInfo_Legacy_o* TMPro_TMP_FontAsset__get_fontInfo (TMPro_TMP_FontAsset_o* __this, const MethodInfo*);
int32_t TMPro_TMP_FontAsset__get_atlasWidth (TMPro_TMP_FontAsset_o* __this, const MethodInfo*);
void TMPro_TMP_FontAsset__set_atlasWidth (TMPro_TMP_FontAsset_o* __this, int32_t value, const MethodInfo*);
int32_t TMPro_TMP_FontAsset__get_atlasHeight (TMPro_TMP_FontAsset_o* __this, const MethodInfo*);
void TMPro_TMP_FontAsset__set_atlasHeight (TMPro_TMP_FontAsset_o* __this, int32_t value, const MethodInfo*);
int32_t TMPro_TMP_FontAsset__get_atlasPadding (TMPro_TMP_FontAsset_o* __this, const MethodInfo*);
void TMPro_TMP_FontAsset__set_atlasPadding (TMPro_TMP_FontAsset_o* __this, int32_t value, const MethodInfo*);
int32_t TMPro_TMP_FontAsset__get_atlasRenderMode (TMPro_TMP_FontAsset_o* __this, const MethodInfo*);
void TMPro_TMP_FontAsset__set_atlasRenderMode (TMPro_TMP_FontAsset_o* __this, int32_t value, const MethodInfo*);
TMPro_TMP_FontFeatureTable_o* TMPro_TMP_FontAsset__get_fontFeatureTable (TMPro_TMP_FontAsset_o* __this, const MethodInfo*);
void TMPro_TMP_FontAsset__set_fontFeatureTable (TMPro_TMP_FontAsset_o* __this, TMPro_TMP_FontFeatureTable_o* value, const MethodInfo*);
System_Collections_Generic_List_TMP_FontAsset__o* TMPro_TMP_FontAsset__get_fallbackFontAssetTable (TMPro_TMP_FontAsset_o* __this, const MethodInfo*);
void TMPro_TMP_FontAsset__set_fallbackFontAssetTable (TMPro_TMP_FontAsset_o* __this, System_Collections_Generic_List_TMP_FontAsset__o* value, const MethodInfo*);
TMPro_FontAssetCreationSettings_o TMPro_TMP_FontAsset__get_creationSettings (TMPro_TMP_FontAsset_o* __this, const MethodInfo*);
void TMPro_TMP_FontAsset__set_creationSettings (TMPro_TMP_FontAsset_o* __this, TMPro_FontAssetCreationSettings_o value, const MethodInfo*);
TMPro_TMP_FontWeightPair_array* TMPro_TMP_FontAsset__get_fontWeightTable (TMPro_TMP_FontAsset_o* __this, const MethodInfo*);
void TMPro_TMP_FontAsset__set_fontWeightTable (TMPro_TMP_FontAsset_o* __this, TMPro_TMP_FontWeightPair_array* value, const MethodInfo*);
TMPro_TMP_FontAsset_o* TMPro_TMP_FontAsset__CreateFontAsset (UnityEngine_Font_o* font, const MethodInfo*);
TMPro_TMP_FontAsset_o* TMPro_TMP_FontAsset__CreateFontAsset (UnityEngine_Font_o* font, int32_t samplingPointSize, int32_t atlasPadding, int32_t renderMode, int32_t atlasWidth, int32_t atlasHeight, int32_t atlasPopulationMode, bool enableMultiAtlasSupport, const MethodInfo*);
void TMPro_TMP_FontAsset__Awake (TMPro_TMP_FontAsset_o* __this, const MethodInfo*);
void TMPro_TMP_FontAsset__ReadFontAssetDefinition (TMPro_TMP_FontAsset_o* __this, const MethodInfo*);
void TMPro_TMP_FontAsset__InitializeDictionaryLookupTables (TMPro_TMP_FontAsset_o* __this, const MethodInfo*);
void TMPro_TMP_FontAsset__InitializeGlyphLookupDictionary (TMPro_TMP_FontAsset_o* __this, const MethodInfo*);
void TMPro_TMP_FontAsset__InitializeCharacterLookupDictionary (TMPro_TMP_FontAsset_o* __this, const MethodInfo*);
void TMPro_TMP_FontAsset__InitializeGlyphPaidAdjustmentRecordsLookupDictionary (TMPro_TMP_FontAsset_o* __this, const MethodInfo*);
void TMPro_TMP_FontAsset__AddSynthesizedCharactersAndFaceMetrics (TMPro_TMP_FontAsset_o* __this, const MethodInfo*);
void TMPro_TMP_FontAsset__AddSynthesizedCharacter (TMPro_TMP_FontAsset_o* __this, uint32_t unicode, bool addImmediately, const MethodInfo*);
void TMPro_TMP_FontAsset__AddCharacterToLookupCache (TMPro_TMP_FontAsset_o* __this, uint32_t unicode, TMPro_TMP_Character_o* character, const MethodInfo*);
void TMPro_TMP_FontAsset__SortCharacterTable (TMPro_TMP_FontAsset_o* __this, const MethodInfo*);
void TMPro_TMP_FontAsset__SortGlyphTable (TMPro_TMP_FontAsset_o* __this, const MethodInfo*);
void TMPro_TMP_FontAsset__SortFontFeatureTable (TMPro_TMP_FontAsset_o* __this, const MethodInfo*);
void TMPro_TMP_FontAsset__SortAllTables (TMPro_TMP_FontAsset_o* __this, const MethodInfo*);
bool TMPro_TMP_FontAsset__HasCharacter (TMPro_TMP_FontAsset_o* __this, int32_t character, const MethodInfo*);
bool TMPro_TMP_FontAsset__HasCharacter (TMPro_TMP_FontAsset_o* __this, uint16_t character, bool searchFallbacks, bool tryAddCharacter, const MethodInfo*);
bool TMPro_TMP_FontAsset__HasCharacter_Internal (TMPro_TMP_FontAsset_o* __this, uint32_t character, bool searchFallbacks, bool tryAddCharacter, const MethodInfo*);
bool TMPro_TMP_FontAsset__HasCharacters (TMPro_TMP_FontAsset_o* __this, System_String_o* text, System_Collections_Generic_List_char__o** missingCharacters, const MethodInfo*);
bool TMPro_TMP_FontAsset__HasCharacters (TMPro_TMP_FontAsset_o* __this, System_String_o* text, System_UInt32_array** missingCharacters, bool searchFallbacks, bool tryAddCharacter, const MethodInfo*);
bool TMPro_TMP_FontAsset__HasCharacters (TMPro_TMP_FontAsset_o* __this, System_String_o* text, const MethodInfo*);
System_String_o* TMPro_TMP_FontAsset__GetCharacters (TMPro_TMP_FontAsset_o* fontAsset, const MethodInfo*);
System_Int32_array* TMPro_TMP_FontAsset__GetCharactersArray (TMPro_TMP_FontAsset_o* fontAsset, const MethodInfo*);
uint32_t TMPro_TMP_FontAsset__GetGlyphIndex (TMPro_TMP_FontAsset_o* __this, uint32_t unicode, const MethodInfo*);
void TMPro_TMP_FontAsset__RegisterFontAssetForFontFeatureUpdate (TMPro_TMP_FontAsset_o* fontAsset, const MethodInfo*);
void TMPro_TMP_FontAsset__UpdateFontFeaturesForFontAssetsInQueue (const MethodInfo*);
void TMPro_TMP_FontAsset__RegisterFontAssetForAtlasTextureUpdate (TMPro_TMP_FontAsset_o* fontAsset, const MethodInfo*);
void TMPro_TMP_FontAsset__UpdateAtlasTexturesForFontAssetsInQueue (const MethodInfo*);
bool TMPro_TMP_FontAsset__TryAddCharacters (TMPro_TMP_FontAsset_o* __this, System_UInt32_array* unicodes, bool includeFontFeatures, const MethodInfo*);
bool TMPro_TMP_FontAsset__TryAddCharacters (TMPro_TMP_FontAsset_o* __this, System_UInt32_array* unicodes, System_UInt32_array** missingUnicodes, bool includeFontFeatures, const MethodInfo*);
bool TMPro_TMP_FontAsset__TryAddCharacters (TMPro_TMP_FontAsset_o* __this, System_String_o* characters, bool includeFontFeatures, const MethodInfo*);
bool TMPro_TMP_FontAsset__TryAddCharacters (TMPro_TMP_FontAsset_o* __this, System_String_o* characters, System_String_o** missingCharacters, bool includeFontFeatures, const MethodInfo*);
bool TMPro_TMP_FontAsset__TryAddCharacterInternal (TMPro_TMP_FontAsset_o* __this, uint32_t unicode, TMPro_TMP_Character_o** character, const MethodInfo*);
bool TMPro_TMP_FontAsset__TryGetCharacter_and_QueueRenderToTexture (TMPro_TMP_FontAsset_o* __this, uint32_t unicode, TMPro_TMP_Character_o** character, const MethodInfo*);
void TMPro_TMP_FontAsset__TryAddGlyphsToAtlasTextures (TMPro_TMP_FontAsset_o* __this, const MethodInfo*);
bool TMPro_TMP_FontAsset__TryAddGlyphsToNewAtlasTexture (TMPro_TMP_FontAsset_o* __this, const MethodInfo*);
void TMPro_TMP_FontAsset__SetupNewAtlasTexture (TMPro_TMP_FontAsset_o* __this, const MethodInfo*);
void TMPro_TMP_FontAsset__UpdateAtlasTexture (TMPro_TMP_FontAsset_o* __this, const MethodInfo*);
void TMPro_TMP_FontAsset__UpdateGlyphAdjustmentRecords (TMPro_TMP_FontAsset_o* __this, const MethodInfo*);
void TMPro_TMP_FontAsset__UpdateGlyphAdjustmentRecords (TMPro_TMP_FontAsset_o* __this, System_UInt32_array* glyphIndexes, const MethodInfo*);
void TMPro_TMP_FontAsset__UpdateGlyphAdjustmentRecords (TMPro_TMP_FontAsset_o* __this, System_Collections_Generic_List_uint__o* glyphIndexes, const MethodInfo*);
void TMPro_TMP_FontAsset__UpdateGlyphAdjustmentRecords (TMPro_TMP_FontAsset_o* __this, System_Collections_Generic_List_uint__o* newGlyphIndexes, System_Collections_Generic_List_uint__o* allGlyphIndexes, const MethodInfo*);
void TMPro_TMP_FontAsset__CopyListDataToArray_object_ (TMPro_TMP_FontAsset_o* __this, System_Collections_Generic_List_T__o* srcList, System_Object_array** dstArray, const MethodInfo_1D61B70* method_1D61B70);
void TMPro_TMP_FontAsset__ClearFontAssetData (TMPro_TMP_FontAsset_o* __this, bool setAtlasSizeToZero, const MethodInfo*);
void TMPro_TMP_FontAsset__ClearFontAssetDataInternal (TMPro_TMP_FontAsset_o* __this, const MethodInfo*);
void TMPro_TMP_FontAsset__UpdateFontAssetData (TMPro_TMP_FontAsset_o* __this, const MethodInfo*);
void TMPro_TMP_FontAsset__ClearFontAssetTables (TMPro_TMP_FontAsset_o* __this, const MethodInfo*);
void TMPro_TMP_FontAsset__ClearAtlasTextures (TMPro_TMP_FontAsset_o* __this, bool setAtlasSizeToZero, const MethodInfo*);
void TMPro_TMP_FontAsset__UpgradeFontAsset (TMPro_TMP_FontAsset_o* __this, const MethodInfo*);
void TMPro_TMP_FontAsset__UpgradeGlyphAdjustmentTableToFontFeatureTable (TMPro_TMP_FontAsset_o* __this, const MethodInfo*);
void TMPro_TMP_FontAsset___ctor (TMPro_TMP_FontAsset_o* __this, const MethodInfo*);
void TMPro_TMP_FontAsset___cctor (const MethodInfo*);
void TMPro_TMP_FontAsset___c___cctor (const MethodInfo*);
void TMPro_TMP_FontAsset___c___ctor (TMPro_TMP_FontAsset___c_o* __this, const MethodInfo*);
uint32_t TMPro_TMP_FontAsset___c___SortCharacterTable_b__124_0 (TMPro_TMP_FontAsset___c_o* __this, TMPro_TMP_Character_o* c, const MethodInfo*);
uint32_t TMPro_TMP_FontAsset___c___SortGlyphTable_b__125_0 (TMPro_TMP_FontAsset___c_o* __this, UnityEngine_TextCore_Glyph_o* c, const MethodInfo*);
void TMPro_FaceInfo_Legacy___ctor (TMPro_FaceInfo_Legacy_o* __this, const MethodInfo*);
TMPro_TMP_Glyph_o* TMPro_TMP_Glyph__Clone (TMPro_TMP_Glyph_o* source, const MethodInfo*);
void TMPro_TMP_Glyph___ctor (TMPro_TMP_Glyph_o* __this, const MethodInfo*);
void TMPro_FontAssetCreationSettings___ctor (TMPro_FontAssetCreationSettings_o __this, System_String_o* sourceFontFileGUID, int32_t pointSize, int32_t pointSizeSamplingMode, int32_t padding, int32_t packingMode, int32_t atlasWidth, int32_t atlasHeight, int32_t characterSelectionMode, System_String_o* characterSet, int32_t renderMode, const MethodInfo*);
void TMPro_KerningPairKey___ctor (TMPro_KerningPairKey_o __this, uint32_t ascii_left, uint32_t ascii_right, const MethodInfo*);
void TMPro_GlyphValueRecord_Legacy___ctor (TMPro_GlyphValueRecord_Legacy_o __this, UnityEngine_TextCore_LowLevel_GlyphValueRecord_o valueRecord, const MethodInfo*);
TMPro_GlyphValueRecord_Legacy_o TMPro_GlyphValueRecord_Legacy__op_Addition (TMPro_GlyphValueRecord_Legacy_o a, TMPro_GlyphValueRecord_Legacy_o b, const MethodInfo*);
uint32_t TMPro_KerningPair__get_firstGlyph (TMPro_KerningPair_o* __this, const MethodInfo*);
void TMPro_KerningPair__set_firstGlyph (TMPro_KerningPair_o* __this, uint32_t value, const MethodInfo*);
TMPro_GlyphValueRecord_Legacy_o TMPro_KerningPair__get_firstGlyphAdjustments (TMPro_KerningPair_o* __this, const MethodInfo*);
uint32_t TMPro_KerningPair__get_secondGlyph (TMPro_KerningPair_o* __this, const MethodInfo*);
void TMPro_KerningPair__set_secondGlyph (TMPro_KerningPair_o* __this, uint32_t value, const MethodInfo*);
TMPro_GlyphValueRecord_Legacy_o TMPro_KerningPair__get_secondGlyphAdjustments (TMPro_KerningPair_o* __this, const MethodInfo*);
bool TMPro_KerningPair__get_ignoreSpacingAdjustments (TMPro_KerningPair_o* __this, const MethodInfo*);
void TMPro_KerningPair___ctor (TMPro_KerningPair_o* __this, const MethodInfo*);
void TMPro_KerningPair___ctor (TMPro_KerningPair_o* __this, uint32_t left, uint32_t right, float offset, const MethodInfo*);
void TMPro_KerningPair___ctor (TMPro_KerningPair_o* __this, uint32_t firstGlyph, TMPro_GlyphValueRecord_Legacy_o firstGlyphAdjustments, uint32_t secondGlyph, TMPro_GlyphValueRecord_Legacy_o secondGlyphAdjustments, const MethodInfo*);
void TMPro_KerningPair__ConvertLegacyKerningData (TMPro_KerningPair_o* __this, const MethodInfo*);
void TMPro_KerningPair___cctor (const MethodInfo*);
void TMPro_KerningTable___ctor (TMPro_KerningTable_o* __this, const MethodInfo*);
void TMPro_KerningTable__AddKerningPair (TMPro_KerningTable_o* __this, const MethodInfo*);
int32_t TMPro_KerningTable__AddKerningPair (TMPro_KerningTable_o* __this, uint32_t first, uint32_t second, float offset, const MethodInfo*);
int32_t TMPro_KerningTable__AddGlyphPairAdjustmentRecord (TMPro_KerningTable_o* __this, uint32_t first, TMPro_GlyphValueRecord_Legacy_o firstAdjustments, uint32_t second, TMPro_GlyphValueRecord_Legacy_o secondAdjustments, const MethodInfo*);
void TMPro_KerningTable__RemoveKerningPair (TMPro_KerningTable_o* __this, int32_t left, int32_t right, const MethodInfo*);
void TMPro_KerningTable__RemoveKerningPair (TMPro_KerningTable_o* __this, int32_t index, const MethodInfo*);
void TMPro_KerningTable__SortKerningPairs (TMPro_KerningTable_o* __this, const MethodInfo*);
void TMPro_KerningTable___c__DisplayClass3_0___ctor (TMPro_KerningTable___c__DisplayClass3_0_o* __this, const MethodInfo*);
bool TMPro_KerningTable___c__DisplayClass3_0___AddKerningPair_b__0 (TMPro_KerningTable___c__DisplayClass3_0_o* __this, TMPro_KerningPair_o* item, const MethodInfo*);
void TMPro_KerningTable___c__DisplayClass4_0___ctor (TMPro_KerningTable___c__DisplayClass4_0_o* __this, const MethodInfo*);
bool TMPro_KerningTable___c__DisplayClass4_0___AddGlyphPairAdjustmentRecord_b__0 (TMPro_KerningTable___c__DisplayClass4_0_o* __this, TMPro_KerningPair_o* item, const MethodInfo*);
void TMPro_KerningTable___c__DisplayClass5_0___ctor (TMPro_KerningTable___c__DisplayClass5_0_o* __this, const MethodInfo*);
bool TMPro_KerningTable___c__DisplayClass5_0___RemoveKerningPair_b__0 (TMPro_KerningTable___c__DisplayClass5_0_o* __this, TMPro_KerningPair_o* item, const MethodInfo*);
void TMPro_KerningTable___c___cctor (const MethodInfo*);
void TMPro_KerningTable___c___ctor (TMPro_KerningTable___c_o* __this, const MethodInfo*);
uint32_t TMPro_KerningTable___c___SortKerningPairs_b__7_0 (TMPro_KerningTable___c_o* __this, TMPro_KerningPair_o* s, const MethodInfo*);
uint32_t TMPro_KerningTable___c___SortKerningPairs_b__7_1 (TMPro_KerningTable___c_o* __this, TMPro_KerningPair_o* s, const MethodInfo*);
TMPro_TMP_FontAsset_o* TMPro_TMP_FontUtilities__SearchForCharacter (TMPro_TMP_FontAsset_o* font, uint32_t unicode, TMPro_TMP_Character_o** character, const MethodInfo*);
TMPro_TMP_FontAsset_o* TMPro_TMP_FontUtilities__SearchForCharacter (System_Collections_Generic_List_TMP_FontAsset__o* fonts, uint32_t unicode, TMPro_TMP_Character_o** character, const MethodInfo*);
TMPro_TMP_FontAsset_o* TMPro_TMP_FontUtilities__SearchForCharacterInternal (TMPro_TMP_FontAsset_o* font, uint32_t unicode, TMPro_TMP_Character_o** character, const MethodInfo*);
TMPro_TMP_FontAsset_o* TMPro_TMP_FontUtilities__SearchForCharacterInternal (System_Collections_Generic_List_TMP_FontAsset__o* fonts, uint32_t unicode, TMPro_TMP_Character_o** character, const MethodInfo*);
void TMPro_TMP_FontAssetUtilities___cctor (const MethodInfo*);
TMPro_TMP_FontAssetUtilities_o* TMPro_TMP_FontAssetUtilities__get_instance (const MethodInfo*);
TMPro_TMP_Character_o* TMPro_TMP_FontAssetUtilities__GetCharacterFromFontAsset (uint32_t unicode, TMPro_TMP_FontAsset_o* sourceFontAsset, bool includeFallbacks, int32_t fontStyle, int32_t fontWeight, bool* isAlternativeTypeface, const MethodInfo*);
TMPro_TMP_Character_o* TMPro_TMP_FontAssetUtilities__GetCharacterFromFontAsset_Internal (uint32_t unicode, TMPro_TMP_FontAsset_o* sourceFontAsset, bool includeFallbacks, int32_t fontStyle, int32_t fontWeight, bool* isAlternativeTypeface, const MethodInfo*);
TMPro_TMP_Character_o* TMPro_TMP_FontAssetUtilities__GetCharacterFromFontAssets (uint32_t unicode, TMPro_TMP_FontAsset_o* sourceFontAsset, System_Collections_Generic_List_TMP_FontAsset__o* fontAssets, bool includeFallbacks, int32_t fontStyle, int32_t fontWeight, bool* isAlternativeTypeface, const MethodInfo*);
TMPro_TMP_SpriteCharacter_o* TMPro_TMP_FontAssetUtilities__GetSpriteCharacterFromSpriteAsset (uint32_t unicode, TMPro_TMP_SpriteAsset_o* spriteAsset, bool includeFallbacks, const MethodInfo*);
TMPro_TMP_SpriteCharacter_o* TMPro_TMP_FontAssetUtilities__GetSpriteCharacterFromSpriteAsset_Internal (uint32_t unicode, TMPro_TMP_SpriteAsset_o* spriteAsset, bool includeFallbacks, const MethodInfo*);
void TMPro_TMP_FontAssetUtilities___ctor (TMPro_TMP_FontAssetUtilities_o* __this, const MethodInfo*);
System_Collections_Generic_List_TMP_GlyphPairAdjustmentRecord__o* TMPro_TMP_FontFeatureTable__get_glyphPairAdjustmentRecords (TMPro_TMP_FontFeatureTable_o* __this, const MethodInfo*);
void TMPro_TMP_FontFeatureTable__set_glyphPairAdjustmentRecords (TMPro_TMP_FontFeatureTable_o* __this, System_Collections_Generic_List_TMP_GlyphPairAdjustmentRecord__o* value, const MethodInfo*);
void TMPro_TMP_FontFeatureTable___ctor (TMPro_TMP_FontFeatureTable_o* __this, const MethodInfo*);
void TMPro_TMP_FontFeatureTable__SortGlyphPairAdjustmentRecords (TMPro_TMP_FontFeatureTable_o* __this, const MethodInfo*);
void TMPro_TMP_FontFeatureTable___c___cctor (const MethodInfo*);
void TMPro_TMP_FontFeatureTable___c___ctor (TMPro_TMP_FontFeatureTable___c_o* __this, const MethodInfo*);
uint32_t TMPro_TMP_FontFeatureTable___c___SortGlyphPairAdjustmentRecords_b__6_0 (TMPro_TMP_FontFeatureTable___c_o* __this, TMPro_TMP_GlyphPairAdjustmentRecord_o* s, const MethodInfo*);
uint32_t TMPro_TMP_FontFeatureTable___c___SortGlyphPairAdjustmentRecords_b__6_1 (TMPro_TMP_FontFeatureTable___c_o* __this, TMPro_TMP_GlyphPairAdjustmentRecord_o* s, const MethodInfo*);
float TMPro_TMP_GlyphValueRecord__get_xPlacement (TMPro_TMP_GlyphValueRecord_o __this, const MethodInfo*);
void TMPro_TMP_GlyphValueRecord__set_xPlacement (TMPro_TMP_GlyphValueRecord_o __this, float value, const MethodInfo*);
float TMPro_TMP_GlyphValueRecord__get_yPlacement (TMPro_TMP_GlyphValueRecord_o __this, const MethodInfo*);
void TMPro_TMP_GlyphValueRecord__set_yPlacement (TMPro_TMP_GlyphValueRecord_o __this, float value, const MethodInfo*);
float TMPro_TMP_GlyphValueRecord__get_xAdvance (TMPro_TMP_GlyphValueRecord_o __this, const MethodInfo*);
void TMPro_TMP_GlyphValueRecord__set_xAdvance (TMPro_TMP_GlyphValueRecord_o __this, float value, const MethodInfo*);
float TMPro_TMP_GlyphValueRecord__get_yAdvance (TMPro_TMP_GlyphValueRecord_o __this, const MethodInfo*);
void TMPro_TMP_GlyphValueRecord__set_yAdvance (TMPro_TMP_GlyphValueRecord_o __this, float value, const MethodInfo*);
void TMPro_TMP_GlyphValueRecord___ctor (TMPro_TMP_GlyphValueRecord_o __this, float xPlacement, float yPlacement, float xAdvance, float yAdvance, const MethodInfo*);
void TMPro_TMP_GlyphValueRecord___ctor (TMPro_TMP_GlyphValueRecord_o __this, TMPro_GlyphValueRecord_Legacy_o valueRecord, const MethodInfo*);
void TMPro_TMP_GlyphValueRecord___ctor (TMPro_TMP_GlyphValueRecord_o __this, UnityEngine_TextCore_LowLevel_GlyphValueRecord_o valueRecord, const MethodInfo*);
TMPro_TMP_GlyphValueRecord_o TMPro_TMP_GlyphValueRecord__op_Addition (TMPro_TMP_GlyphValueRecord_o a, TMPro_TMP_GlyphValueRecord_o b, const MethodInfo*);
uint32_t TMPro_TMP_GlyphAdjustmentRecord__get_glyphIndex (TMPro_TMP_GlyphAdjustmentRecord_o __this, const MethodInfo*);
void TMPro_TMP_GlyphAdjustmentRecord__set_glyphIndex (TMPro_TMP_GlyphAdjustmentRecord_o __this, uint32_t value, const MethodInfo*);
TMPro_TMP_GlyphValueRecord_o TMPro_TMP_GlyphAdjustmentRecord__get_glyphValueRecord (TMPro_TMP_GlyphAdjustmentRecord_o __this, const MethodInfo*);
void TMPro_TMP_GlyphAdjustmentRecord__set_glyphValueRecord (TMPro_TMP_GlyphAdjustmentRecord_o __this, TMPro_TMP_GlyphValueRecord_o value, const MethodInfo*);
void TMPro_TMP_GlyphAdjustmentRecord___ctor (TMPro_TMP_GlyphAdjustmentRecord_o __this, uint32_t glyphIndex, TMPro_TMP_GlyphValueRecord_o glyphValueRecord, const MethodInfo*);
void TMPro_TMP_GlyphAdjustmentRecord___ctor (TMPro_TMP_GlyphAdjustmentRecord_o __this, UnityEngine_TextCore_LowLevel_GlyphAdjustmentRecord_o adjustmentRecord, const MethodInfo*);
TMPro_TMP_GlyphAdjustmentRecord_o TMPro_TMP_GlyphPairAdjustmentRecord__get_firstAdjustmentRecord (TMPro_TMP_GlyphPairAdjustmentRecord_o* __this, const MethodInfo*);
void TMPro_TMP_GlyphPairAdjustmentRecord__set_firstAdjustmentRecord (TMPro_TMP_GlyphPairAdjustmentRecord_o* __this, TMPro_TMP_GlyphAdjustmentRecord_o value, const MethodInfo*);
TMPro_TMP_GlyphAdjustmentRecord_o TMPro_TMP_GlyphPairAdjustmentRecord__get_secondAdjustmentRecord (TMPro_TMP_GlyphPairAdjustmentRecord_o* __this, const MethodInfo*);
void TMPro_TMP_GlyphPairAdjustmentRecord__set_secondAdjustmentRecord (TMPro_TMP_GlyphPairAdjustmentRecord_o* __this, TMPro_TMP_GlyphAdjustmentRecord_o value, const MethodInfo*);
int32_t TMPro_TMP_GlyphPairAdjustmentRecord__get_featureLookupFlags (TMPro_TMP_GlyphPairAdjustmentRecord_o* __this, const MethodInfo*);
void TMPro_TMP_GlyphPairAdjustmentRecord__set_featureLookupFlags (TMPro_TMP_GlyphPairAdjustmentRecord_o* __this, int32_t value, const MethodInfo*);
void TMPro_TMP_GlyphPairAdjustmentRecord___ctor (TMPro_TMP_GlyphPairAdjustmentRecord_o* __this, TMPro_TMP_GlyphAdjustmentRecord_o firstAdjustmentRecord, TMPro_TMP_GlyphAdjustmentRecord_o secondAdjustmentRecord, const MethodInfo*);
void TMPro_TMP_GlyphPairAdjustmentRecord___ctor (TMPro_TMP_GlyphPairAdjustmentRecord_o* __this, UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_o glyphPairAdjustmentRecord, const MethodInfo*);
void TMPro_GlyphPairKey___ctor (TMPro_GlyphPairKey_o __this, uint32_t firstGlyphIndex, uint32_t secondGlyphIndex, const MethodInfo*);
void TMPro_GlyphPairKey___ctor (TMPro_GlyphPairKey_o __this, TMPro_TMP_GlyphPairAdjustmentRecord_o* record, const MethodInfo*);
UnityEngine_EventSystems_BaseInput_o* TMPro_TMP_InputField__get_inputSystem (TMPro_TMP_InputField_o* __this, const MethodInfo*);
System_String_o* TMPro_TMP_InputField__get_compositionString (TMPro_TMP_InputField_o* __this, const MethodInfo*);
int32_t TMPro_TMP_InputField__get_compositionLength (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField___ctor (TMPro_TMP_InputField_o* __this, const MethodInfo*);
UnityEngine_Mesh_o* TMPro_TMP_InputField__get_mesh (TMPro_TMP_InputField_o* __this, const MethodInfo*);
bool TMPro_TMP_InputField__get_shouldHideMobileInput (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__set_shouldHideMobileInput (TMPro_TMP_InputField_o* __this, bool value, const MethodInfo*);
bool TMPro_TMP_InputField__get_shouldHideSoftKeyboard (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__set_shouldHideSoftKeyboard (TMPro_TMP_InputField_o* __this, bool value, const MethodInfo*);
bool TMPro_TMP_InputField__isKeyboardUsingEvents (TMPro_TMP_InputField_o* __this, const MethodInfo*);
System_String_o* TMPro_TMP_InputField__get_text (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__set_text (TMPro_TMP_InputField_o* __this, System_String_o* value, const MethodInfo*);
void TMPro_TMP_InputField__SetTextWithoutNotify (TMPro_TMP_InputField_o* __this, System_String_o* input, const MethodInfo*);
void TMPro_TMP_InputField__SetText (TMPro_TMP_InputField_o* __this, System_String_o* value, bool sendCallback, const MethodInfo*);
bool TMPro_TMP_InputField__get_isFocused (TMPro_TMP_InputField_o* __this, const MethodInfo*);
float TMPro_TMP_InputField__get_caretBlinkRate (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__set_caretBlinkRate (TMPro_TMP_InputField_o* __this, float value, const MethodInfo*);
int32_t TMPro_TMP_InputField__get_caretWidth (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__set_caretWidth (TMPro_TMP_InputField_o* __this, int32_t value, const MethodInfo*);
UnityEngine_RectTransform_o* TMPro_TMP_InputField__get_textViewport (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__set_textViewport (TMPro_TMP_InputField_o* __this, UnityEngine_RectTransform_o* value, const MethodInfo*);
TMPro_TMP_Text_o* TMPro_TMP_InputField__get_textComponent (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__set_textComponent (TMPro_TMP_InputField_o* __this, TMPro_TMP_Text_o* value, const MethodInfo*);
UnityEngine_UI_Graphic_o* TMPro_TMP_InputField__get_placeholder (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__set_placeholder (TMPro_TMP_InputField_o* __this, UnityEngine_UI_Graphic_o* value, const MethodInfo*);
UnityEngine_UI_Scrollbar_o* TMPro_TMP_InputField__get_verticalScrollbar (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__set_verticalScrollbar (TMPro_TMP_InputField_o* __this, UnityEngine_UI_Scrollbar_o* value, const MethodInfo*);
float TMPro_TMP_InputField__get_scrollSensitivity (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__set_scrollSensitivity (TMPro_TMP_InputField_o* __this, float value, const MethodInfo*);
UnityEngine_Color_o TMPro_TMP_InputField__get_caretColor (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__set_caretColor (TMPro_TMP_InputField_o* __this, UnityEngine_Color_o value, const MethodInfo*);
bool TMPro_TMP_InputField__get_customCaretColor (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__set_customCaretColor (TMPro_TMP_InputField_o* __this, bool value, const MethodInfo*);
UnityEngine_Color_o TMPro_TMP_InputField__get_selectionColor (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__set_selectionColor (TMPro_TMP_InputField_o* __this, UnityEngine_Color_o value, const MethodInfo*);
TMPro_TMP_InputField_SubmitEvent_o* TMPro_TMP_InputField__get_onEndEdit (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__set_onEndEdit (TMPro_TMP_InputField_o* __this, TMPro_TMP_InputField_SubmitEvent_o* value, const MethodInfo*);
TMPro_TMP_InputField_SubmitEvent_o* TMPro_TMP_InputField__get_onSubmit (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__set_onSubmit (TMPro_TMP_InputField_o* __this, TMPro_TMP_InputField_SubmitEvent_o* value, const MethodInfo*);
TMPro_TMP_InputField_SelectionEvent_o* TMPro_TMP_InputField__get_onSelect (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__set_onSelect (TMPro_TMP_InputField_o* __this, TMPro_TMP_InputField_SelectionEvent_o* value, const MethodInfo*);
TMPro_TMP_InputField_SelectionEvent_o* TMPro_TMP_InputField__get_onDeselect (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__set_onDeselect (TMPro_TMP_InputField_o* __this, TMPro_TMP_InputField_SelectionEvent_o* value, const MethodInfo*);
TMPro_TMP_InputField_TextSelectionEvent_o* TMPro_TMP_InputField__get_onTextSelection (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__set_onTextSelection (TMPro_TMP_InputField_o* __this, TMPro_TMP_InputField_TextSelectionEvent_o* value, const MethodInfo*);
TMPro_TMP_InputField_TextSelectionEvent_o* TMPro_TMP_InputField__get_onEndTextSelection (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__set_onEndTextSelection (TMPro_TMP_InputField_o* __this, TMPro_TMP_InputField_TextSelectionEvent_o* value, const MethodInfo*);
TMPro_TMP_InputField_OnChangeEvent_o* TMPro_TMP_InputField__get_onValueChanged (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__set_onValueChanged (TMPro_TMP_InputField_o* __this, TMPro_TMP_InputField_OnChangeEvent_o* value, const MethodInfo*);
TMPro_TMP_InputField_TouchScreenKeyboardEvent_o* TMPro_TMP_InputField__get_onTouchScreenKeyboardStatusChanged (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__set_onTouchScreenKeyboardStatusChanged (TMPro_TMP_InputField_o* __this, TMPro_TMP_InputField_TouchScreenKeyboardEvent_o* value, const MethodInfo*);
TMPro_TMP_InputField_OnValidateInput_o* TMPro_TMP_InputField__get_onValidateInput (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__set_onValidateInput (TMPro_TMP_InputField_o* __this, TMPro_TMP_InputField_OnValidateInput_o* value, const MethodInfo*);
int32_t TMPro_TMP_InputField__get_characterLimit (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__set_characterLimit (TMPro_TMP_InputField_o* __this, int32_t value, const MethodInfo*);
float TMPro_TMP_InputField__get_pointSize (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__set_pointSize (TMPro_TMP_InputField_o* __this, float value, const MethodInfo*);
TMPro_TMP_FontAsset_o* TMPro_TMP_InputField__get_fontAsset (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__set_fontAsset (TMPro_TMP_InputField_o* __this, TMPro_TMP_FontAsset_o* value, const MethodInfo*);
bool TMPro_TMP_InputField__get_onFocusSelectAll (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__set_onFocusSelectAll (TMPro_TMP_InputField_o* __this, bool value, const MethodInfo*);
bool TMPro_TMP_InputField__get_resetOnDeActivation (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__set_resetOnDeActivation (TMPro_TMP_InputField_o* __this, bool value, const MethodInfo*);
bool TMPro_TMP_InputField__get_restoreOriginalTextOnEscape (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__set_restoreOriginalTextOnEscape (TMPro_TMP_InputField_o* __this, bool value, const MethodInfo*);
bool TMPro_TMP_InputField__get_isRichTextEditingAllowed (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__set_isRichTextEditingAllowed (TMPro_TMP_InputField_o* __this, bool value, const MethodInfo*);
int32_t TMPro_TMP_InputField__get_contentType (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__set_contentType (TMPro_TMP_InputField_o* __this, int32_t value, const MethodInfo*);
int32_t TMPro_TMP_InputField__get_lineType (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__set_lineType (TMPro_TMP_InputField_o* __this, int32_t value, const MethodInfo*);
int32_t TMPro_TMP_InputField__get_lineLimit (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__set_lineLimit (TMPro_TMP_InputField_o* __this, int32_t value, const MethodInfo*);
int32_t TMPro_TMP_InputField__get_inputType (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__set_inputType (TMPro_TMP_InputField_o* __this, int32_t value, const MethodInfo*);
int32_t TMPro_TMP_InputField__get_keyboardType (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__set_keyboardType (TMPro_TMP_InputField_o* __this, int32_t value, const MethodInfo*);
int32_t TMPro_TMP_InputField__get_characterValidation (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__set_characterValidation (TMPro_TMP_InputField_o* __this, int32_t value, const MethodInfo*);
TMPro_TMP_InputValidator_o* TMPro_TMP_InputField__get_inputValidator (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__set_inputValidator (TMPro_TMP_InputField_o* __this, TMPro_TMP_InputValidator_o* value, const MethodInfo*);
bool TMPro_TMP_InputField__get_readOnly (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__set_readOnly (TMPro_TMP_InputField_o* __this, bool value, const MethodInfo*);
bool TMPro_TMP_InputField__get_richText (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__set_richText (TMPro_TMP_InputField_o* __this, bool value, const MethodInfo*);
bool TMPro_TMP_InputField__get_multiLine (TMPro_TMP_InputField_o* __this, const MethodInfo*);
uint16_t TMPro_TMP_InputField__get_asteriskChar (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__set_asteriskChar (TMPro_TMP_InputField_o* __this, uint16_t value, const MethodInfo*);
bool TMPro_TMP_InputField__get_wasCanceled (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__ClampStringPos (TMPro_TMP_InputField_o* __this, int32_t* pos, const MethodInfo*);
void TMPro_TMP_InputField__ClampCaretPos (TMPro_TMP_InputField_o* __this, int32_t* pos, const MethodInfo*);
int32_t TMPro_TMP_InputField__get_caretPositionInternal (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__set_caretPositionInternal (TMPro_TMP_InputField_o* __this, int32_t value, const MethodInfo*);
int32_t TMPro_TMP_InputField__get_stringPositionInternal (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__set_stringPositionInternal (TMPro_TMP_InputField_o* __this, int32_t value, const MethodInfo*);
int32_t TMPro_TMP_InputField__get_caretSelectPositionInternal (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__set_caretSelectPositionInternal (TMPro_TMP_InputField_o* __this, int32_t value, const MethodInfo*);
int32_t TMPro_TMP_InputField__get_stringSelectPositionInternal (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__set_stringSelectPositionInternal (TMPro_TMP_InputField_o* __this, int32_t value, const MethodInfo*);
bool TMPro_TMP_InputField__get_hasSelection (TMPro_TMP_InputField_o* __this, const MethodInfo*);
int32_t TMPro_TMP_InputField__get_caretPosition (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__set_caretPosition (TMPro_TMP_InputField_o* __this, int32_t value, const MethodInfo*);
int32_t TMPro_TMP_InputField__get_selectionAnchorPosition (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__set_selectionAnchorPosition (TMPro_TMP_InputField_o* __this, int32_t value, const MethodInfo*);
int32_t TMPro_TMP_InputField__get_selectionFocusPosition (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__set_selectionFocusPosition (TMPro_TMP_InputField_o* __this, int32_t value, const MethodInfo*);
int32_t TMPro_TMP_InputField__get_stringPosition (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__set_stringPosition (TMPro_TMP_InputField_o* __this, int32_t value, const MethodInfo*);
int32_t TMPro_TMP_InputField__get_selectionStringAnchorPosition (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__set_selectionStringAnchorPosition (TMPro_TMP_InputField_o* __this, int32_t value, const MethodInfo*);
int32_t TMPro_TMP_InputField__get_selectionStringFocusPosition (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__set_selectionStringFocusPosition (TMPro_TMP_InputField_o* __this, int32_t value, const MethodInfo*);
void TMPro_TMP_InputField__OnEnable (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__OnDisable (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__ON_TEXT_CHANGED (TMPro_TMP_InputField_o* __this, UnityEngine_Object_o* obj, const MethodInfo*);
System_Collections_IEnumerator_o* TMPro_TMP_InputField__CaretBlink (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__SetCaretVisible (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__SetCaretActive (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__OnFocus (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__SelectAll (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__MoveTextEnd (TMPro_TMP_InputField_o* __this, bool shift, const MethodInfo*);
void TMPro_TMP_InputField__MoveTextStart (TMPro_TMP_InputField_o* __this, bool shift, const MethodInfo*);
void TMPro_TMP_InputField__MoveToEndOfLine (TMPro_TMP_InputField_o* __this, bool shift, bool ctrl, const MethodInfo*);
void TMPro_TMP_InputField__MoveToStartOfLine (TMPro_TMP_InputField_o* __this, bool shift, bool ctrl, const MethodInfo*);
System_String_o* TMPro_TMP_InputField__get_clipboard (const MethodInfo*);
void TMPro_TMP_InputField__set_clipboard (System_String_o* value, const MethodInfo*);
bool TMPro_TMP_InputField__InPlaceEditing (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__UpdateStringPositionFromKeyboard (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__LateUpdate (TMPro_TMP_InputField_o* __this, const MethodInfo*);
bool TMPro_TMP_InputField__MayDrag (TMPro_TMP_InputField_o* __this, UnityEngine_EventSystems_PointerEventData_o* eventData, const MethodInfo*);
void TMPro_TMP_InputField__OnBeginDrag (TMPro_TMP_InputField_o* __this, UnityEngine_EventSystems_PointerEventData_o* eventData, const MethodInfo*);
void TMPro_TMP_InputField__OnDrag (TMPro_TMP_InputField_o* __this, UnityEngine_EventSystems_PointerEventData_o* eventData, const MethodInfo*);
System_Collections_IEnumerator_o* TMPro_TMP_InputField__MouseDragOutsideRect (TMPro_TMP_InputField_o* __this, UnityEngine_EventSystems_PointerEventData_o* eventData, const MethodInfo*);
void TMPro_TMP_InputField__OnEndDrag (TMPro_TMP_InputField_o* __this, UnityEngine_EventSystems_PointerEventData_o* eventData, const MethodInfo*);
void TMPro_TMP_InputField__OnPointerDown (TMPro_TMP_InputField_o* __this, UnityEngine_EventSystems_PointerEventData_o* eventData, const MethodInfo*);
int32_t TMPro_TMP_InputField__KeyPressed (TMPro_TMP_InputField_o* __this, UnityEngine_Event_o* evt, const MethodInfo*);
bool TMPro_TMP_InputField__IsValidChar (TMPro_TMP_InputField_o* __this, uint16_t c, const MethodInfo*);
void TMPro_TMP_InputField__ProcessEvent (TMPro_TMP_InputField_o* __this, UnityEngine_Event_o* e, const MethodInfo*);
void TMPro_TMP_InputField__OnUpdateSelected (TMPro_TMP_InputField_o* __this, UnityEngine_EventSystems_BaseEventData_o* eventData, const MethodInfo*);
void TMPro_TMP_InputField__OnScroll (TMPro_TMP_InputField_o* __this, UnityEngine_EventSystems_PointerEventData_o* eventData, const MethodInfo*);
float TMPro_TMP_InputField__GetScrollPositionRelativeToViewport (TMPro_TMP_InputField_o* __this, const MethodInfo*);
System_String_o* TMPro_TMP_InputField__GetSelectedString (TMPro_TMP_InputField_o* __this, const MethodInfo*);
int32_t TMPro_TMP_InputField__FindNextWordBegin (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__MoveRight (TMPro_TMP_InputField_o* __this, bool shift, bool ctrl, const MethodInfo*);
int32_t TMPro_TMP_InputField__FindPrevWordBegin (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__MoveLeft (TMPro_TMP_InputField_o* __this, bool shift, bool ctrl, const MethodInfo*);
int32_t TMPro_TMP_InputField__LineUpCharacterPosition (TMPro_TMP_InputField_o* __this, int32_t originalPos, bool goToFirstChar, const MethodInfo*);
int32_t TMPro_TMP_InputField__LineDownCharacterPosition (TMPro_TMP_InputField_o* __this, int32_t originalPos, bool goToLastChar, const MethodInfo*);
int32_t TMPro_TMP_InputField__PageUpCharacterPosition (TMPro_TMP_InputField_o* __this, int32_t originalPos, bool goToFirstChar, const MethodInfo*);
int32_t TMPro_TMP_InputField__PageDownCharacterPosition (TMPro_TMP_InputField_o* __this, int32_t originalPos, bool goToLastChar, const MethodInfo*);
void TMPro_TMP_InputField__MoveDown (TMPro_TMP_InputField_o* __this, bool shift, const MethodInfo*);
void TMPro_TMP_InputField__MoveDown (TMPro_TMP_InputField_o* __this, bool shift, bool goToLastChar, const MethodInfo*);
void TMPro_TMP_InputField__MoveUp (TMPro_TMP_InputField_o* __this, bool shift, const MethodInfo*);
void TMPro_TMP_InputField__MoveUp (TMPro_TMP_InputField_o* __this, bool shift, bool goToFirstChar, const MethodInfo*);
void TMPro_TMP_InputField__MovePageUp (TMPro_TMP_InputField_o* __this, bool shift, const MethodInfo*);
void TMPro_TMP_InputField__MovePageUp (TMPro_TMP_InputField_o* __this, bool shift, bool goToFirstChar, const MethodInfo*);
void TMPro_TMP_InputField__MovePageDown (TMPro_TMP_InputField_o* __this, bool shift, const MethodInfo*);
void TMPro_TMP_InputField__MovePageDown (TMPro_TMP_InputField_o* __this, bool shift, bool goToLastChar, const MethodInfo*);
void TMPro_TMP_InputField__Delete (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__DeleteKey (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__Backspace (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__Append (TMPro_TMP_InputField_o* __this, System_String_o* input, const MethodInfo*);
void TMPro_TMP_InputField__Append (TMPro_TMP_InputField_o* __this, uint16_t input, const MethodInfo*);
void TMPro_TMP_InputField__Insert (TMPro_TMP_InputField_o* __this, uint16_t c, const MethodInfo*);
void TMPro_TMP_InputField__UpdateTouchKeyboardFromEditChanges (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__SendOnValueChangedAndUpdateLabel (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__SendOnValueChanged (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__SendOnEndEdit (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__SendOnSubmit (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__SendOnFocus (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__SendOnFocusLost (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__SendOnTextSelection (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__SendOnEndTextSelection (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__SendTouchScreenKeyboardStatusChanged (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__UpdateLabel (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__UpdateScrollbar (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__OnScrollbarValueChange (TMPro_TMP_InputField_o* __this, float value, const MethodInfo*);
void TMPro_TMP_InputField__UpdateMaskRegions (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__AdjustTextPositionRelativeToViewport (TMPro_TMP_InputField_o* __this, float relativePosition, const MethodInfo*);
int32_t TMPro_TMP_InputField__GetCaretPositionFromStringIndex (TMPro_TMP_InputField_o* __this, int32_t stringIndex, const MethodInfo*);
int32_t TMPro_TMP_InputField__GetMinCaretPositionFromStringIndex (TMPro_TMP_InputField_o* __this, int32_t stringIndex, const MethodInfo*);
int32_t TMPro_TMP_InputField__GetMaxCaretPositionFromStringIndex (TMPro_TMP_InputField_o* __this, int32_t stringIndex, const MethodInfo*);
int32_t TMPro_TMP_InputField__GetStringIndexFromCaretPosition (TMPro_TMP_InputField_o* __this, int32_t caretPosition, const MethodInfo*);
void TMPro_TMP_InputField__ForceLabelUpdate (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__MarkGeometryAsDirty (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__Rebuild (TMPro_TMP_InputField_o* __this, int32_t update, const MethodInfo*);
void TMPro_TMP_InputField__LayoutComplete (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__GraphicUpdateComplete (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__UpdateGeometry (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__AssignPositioningIfNeeded (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__OnFillVBO (TMPro_TMP_InputField_o* __this, UnityEngine_Mesh_o* vbo, const MethodInfo*);
void TMPro_TMP_InputField__GenerateCaret (TMPro_TMP_InputField_o* __this, UnityEngine_UI_VertexHelper_o* vbo, UnityEngine_Vector2_o roundingOffset, const MethodInfo*);
void TMPro_TMP_InputField__CreateCursorVerts (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__GenerateHightlight (TMPro_TMP_InputField_o* __this, UnityEngine_UI_VertexHelper_o* vbo, UnityEngine_Vector2_o roundingOffset, const MethodInfo*);
void TMPro_TMP_InputField__AdjustRectTransformRelativeToViewport (TMPro_TMP_InputField_o* __this, UnityEngine_Vector2_o startPosition, float height, bool isCharVisible, const MethodInfo*);
uint16_t TMPro_TMP_InputField__Validate (TMPro_TMP_InputField_o* __this, System_String_o* text, int32_t pos, uint16_t ch, const MethodInfo*);
void TMPro_TMP_InputField__ActivateInputField (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__ActivateInputFieldInternal (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__OnSelect (TMPro_TMP_InputField_o* __this, UnityEngine_EventSystems_BaseEventData_o* eventData, const MethodInfo*);
void TMPro_TMP_InputField__OnPointerClick (TMPro_TMP_InputField_o* __this, UnityEngine_EventSystems_PointerEventData_o* eventData, const MethodInfo*);
void TMPro_TMP_InputField__OnControlClick (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__ReleaseSelection (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__DeactivateInputField (TMPro_TMP_InputField_o* __this, bool clearSelection, const MethodInfo*);
void TMPro_TMP_InputField__OnDeselect (TMPro_TMP_InputField_o* __this, UnityEngine_EventSystems_BaseEventData_o* eventData, const MethodInfo*);
void TMPro_TMP_InputField__OnSubmit (TMPro_TMP_InputField_o* __this, UnityEngine_EventSystems_BaseEventData_o* eventData, const MethodInfo*);
void TMPro_TMP_InputField__EnforceContentType (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__SetTextComponentWrapMode (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__SetTextComponentRichTextMode (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__SetToCustomIfContentTypeIsNot (TMPro_TMP_InputField_o* __this, TMPro_TMP_InputField_ContentType_array* allowedContentTypes, const MethodInfo*);
void TMPro_TMP_InputField__SetToCustom (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__SetToCustom (TMPro_TMP_InputField_o* __this, int32_t characterValidation, const MethodInfo*);
void TMPro_TMP_InputField__DoStateTransition (TMPro_TMP_InputField_o* __this, int32_t state, bool instant, const MethodInfo*);
void TMPro_TMP_InputField__CalculateLayoutInputHorizontal (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__CalculateLayoutInputVertical (TMPro_TMP_InputField_o* __this, const MethodInfo*);
float TMPro_TMP_InputField__get_minWidth (TMPro_TMP_InputField_o* __this, const MethodInfo*);
float TMPro_TMP_InputField__get_preferredWidth (TMPro_TMP_InputField_o* __this, const MethodInfo*);
float TMPro_TMP_InputField__get_flexibleWidth (TMPro_TMP_InputField_o* __this, const MethodInfo*);
float TMPro_TMP_InputField__get_minHeight (TMPro_TMP_InputField_o* __this, const MethodInfo*);
float TMPro_TMP_InputField__get_preferredHeight (TMPro_TMP_InputField_o* __this, const MethodInfo*);
float TMPro_TMP_InputField__get_flexibleHeight (TMPro_TMP_InputField_o* __this, const MethodInfo*);
int32_t TMPro_TMP_InputField__get_layoutPriority (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__SetGlobalPointSize (TMPro_TMP_InputField_o* __this, float pointSize, const MethodInfo*);
void TMPro_TMP_InputField__SetGlobalFontAsset (TMPro_TMP_InputField_o* __this, TMPro_TMP_FontAsset_o* fontAsset, const MethodInfo*);
void TMPro_TMP_InputField___cctor (const MethodInfo*);
UnityEngine_Transform_o* TMPro_TMP_InputField__UnityEngine_UI_ICanvasElement_get_transform (TMPro_TMP_InputField_o* __this, const MethodInfo*);
void TMPro_TMP_InputField_OnValidateInput___ctor (TMPro_TMP_InputField_OnValidateInput_o* __this, Il2CppObject* object, intptr_t method, const MethodInfo*);
uint16_t TMPro_TMP_InputField_OnValidateInput__Invoke (TMPro_TMP_InputField_OnValidateInput_o* __this, System_String_o* text, int32_t charIndex, uint16_t addedChar, const MethodInfo*);
System_IAsyncResult_o* TMPro_TMP_InputField_OnValidateInput__BeginInvoke (TMPro_TMP_InputField_OnValidateInput_o* __this, System_String_o* text, int32_t charIndex, uint16_t addedChar, System_AsyncCallback_o* callback, Il2CppObject* object, const MethodInfo*);
uint16_t TMPro_TMP_InputField_OnValidateInput__EndInvoke (TMPro_TMP_InputField_OnValidateInput_o* __this, System_IAsyncResult_o* result, const MethodInfo*);
void TMPro_TMP_InputField_SubmitEvent___ctor (TMPro_TMP_InputField_SubmitEvent_o* __this, const MethodInfo*);
void TMPro_TMP_InputField_OnChangeEvent___ctor (TMPro_TMP_InputField_OnChangeEvent_o* __this, const MethodInfo*);
void TMPro_TMP_InputField_SelectionEvent___ctor (TMPro_TMP_InputField_SelectionEvent_o* __this, const MethodInfo*);
void TMPro_TMP_InputField_TextSelectionEvent___ctor (TMPro_TMP_InputField_TextSelectionEvent_o* __this, const MethodInfo*);
void TMPro_TMP_InputField_TouchScreenKeyboardEvent___ctor (TMPro_TMP_InputField_TouchScreenKeyboardEvent_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__CaretBlink_d__276___ctor (TMPro_TMP_InputField__CaretBlink_d__276_o* __this, int32_t __1__state, const MethodInfo*);
void TMPro_TMP_InputField__CaretBlink_d__276__System_IDisposable_Dispose (TMPro_TMP_InputField__CaretBlink_d__276_o* __this, const MethodInfo*);
bool TMPro_TMP_InputField__CaretBlink_d__276__MoveNext (TMPro_TMP_InputField__CaretBlink_d__276_o* __this, const MethodInfo*);
Il2CppObject* TMPro_TMP_InputField__CaretBlink_d__276__System_Collections_Generic_IEnumerator_System_Object__get_Current (TMPro_TMP_InputField__CaretBlink_d__276_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__CaretBlink_d__276__System_Collections_IEnumerator_Reset (TMPro_TMP_InputField__CaretBlink_d__276_o* __this, const MethodInfo*);
Il2CppObject* TMPro_TMP_InputField__CaretBlink_d__276__System_Collections_IEnumerator_get_Current (TMPro_TMP_InputField__CaretBlink_d__276_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__MouseDragOutsideRect_d__294___ctor (TMPro_TMP_InputField__MouseDragOutsideRect_d__294_o* __this, int32_t __1__state, const MethodInfo*);
void TMPro_TMP_InputField__MouseDragOutsideRect_d__294__System_IDisposable_Dispose (TMPro_TMP_InputField__MouseDragOutsideRect_d__294_o* __this, const MethodInfo*);
bool TMPro_TMP_InputField__MouseDragOutsideRect_d__294__MoveNext (TMPro_TMP_InputField__MouseDragOutsideRect_d__294_o* __this, const MethodInfo*);
Il2CppObject* TMPro_TMP_InputField__MouseDragOutsideRect_d__294__System_Collections_Generic_IEnumerator_System_Object__get_Current (TMPro_TMP_InputField__MouseDragOutsideRect_d__294_o* __this, const MethodInfo*);
void TMPro_TMP_InputField__MouseDragOutsideRect_d__294__System_Collections_IEnumerator_Reset (TMPro_TMP_InputField__MouseDragOutsideRect_d__294_o* __this, const MethodInfo*);
Il2CppObject* TMPro_TMP_InputField__MouseDragOutsideRect_d__294__System_Collections_IEnumerator_get_Current (TMPro_TMP_InputField__MouseDragOutsideRect_d__294_o* __this, const MethodInfo*);
bool TMPro_SetPropertyUtility__SetColor (UnityEngine_Color_o* currentValue, UnityEngine_Color_o newValue, const MethodInfo*);
bool TMPro_SetPropertyUtility__SetEquatableStruct_object_ (Il2CppObject** currentValue, Il2CppObject* newValue, const MethodInfo_1F5CF00* method_1F5CF00);
bool TMPro_SetPropertyUtility__SetStruct_bool_ (bool* currentValue, bool newValue, const MethodInfo_1F5CFD0* method_1F5CFD0);
bool TMPro_SetPropertyUtility__SetStruct_char_ (uint16_t* currentValue, uint16_t newValue, const MethodInfo_1F5D050* method_1F5D050);
bool TMPro_SetPropertyUtility__SetStruct_int_ (int32_t* currentValue, int32_t newValue, const MethodInfo_1F5D0D0* method_1F5D0D0);
bool TMPro_SetPropertyUtility__SetStruct_Int32Enum_ (int32_t* currentValue, int32_t newValue, const MethodInfo_1F5D150* method_1F5D150);
bool TMPro_SetPropertyUtility__SetStruct_float_ (float* currentValue, float newValue, const MethodInfo_1F5D200* method_1F5D200);
bool TMPro_SetPropertyUtility__SetStruct_TMP_InputField_CharacterValidation_ (int32_t* currentValue, int32_t newValue, const MethodInfo_1F5D150* method_1F5D150);
bool TMPro_SetPropertyUtility__SetStruct_TMP_InputField_ContentType_ (int32_t* currentValue, int32_t newValue, const MethodInfo_1F5D150* method_1F5D150);
bool TMPro_SetPropertyUtility__SetStruct_TMP_InputField_InputType_ (int32_t* currentValue, int32_t newValue, const MethodInfo_1F5D150* method_1F5D150);
bool TMPro_SetPropertyUtility__SetStruct_TMP_InputField_LineType_ (int32_t* currentValue, int32_t newValue, const MethodInfo_1F5D150* method_1F5D150);
bool TMPro_SetPropertyUtility__SetStruct_TouchScreenKeyboardType_ (int32_t* currentValue, int32_t newValue, const MethodInfo_1F5D150* method_1F5D150);
bool TMPro_SetPropertyUtility__SetClass_object_ (Il2CppObject** currentValue, Il2CppObject* newValue, const MethodInfo_1F5CE80* method_1F5CE80);
bool TMPro_SetPropertyUtility__SetClass_TMP_FontAsset_ (TMPro_TMP_FontAsset_o** currentValue, TMPro_TMP_FontAsset_o* newValue, const MethodInfo_1F5CE80* method_1F5CE80);
bool TMPro_SetPropertyUtility__SetClass_TMP_InputField_OnChangeEvent_ (TMPro_TMP_InputField_OnChangeEvent_o** currentValue, TMPro_TMP_InputField_OnChangeEvent_o* newValue, const MethodInfo_1F5CE80* method_1F5CE80);
bool TMPro_SetPropertyUtility__SetClass_TMP_InputField_OnValidateInput_ (TMPro_TMP_InputField_OnValidateInput_o** currentValue, TMPro_TMP_InputField_OnValidateInput_o* newValue, const MethodInfo_1F5CE80* method_1F5CE80);
bool TMPro_SetPropertyUtility__SetClass_TMP_InputField_SelectionEvent_ (TMPro_TMP_InputField_SelectionEvent_o** currentValue, TMPro_TMP_InputField_SelectionEvent_o* newValue, const MethodInfo_1F5CE80* method_1F5CE80);
bool TMPro_SetPropertyUtility__SetClass_TMP_InputField_SubmitEvent_ (TMPro_TMP_InputField_SubmitEvent_o** currentValue, TMPro_TMP_InputField_SubmitEvent_o* newValue, const MethodInfo_1F5CE80* method_1F5CE80);
bool TMPro_SetPropertyUtility__SetClass_TMP_InputField_TextSelectionEvent_ (TMPro_TMP_InputField_TextSelectionEvent_o** currentValue, TMPro_TMP_InputField_TextSelectionEvent_o* newValue, const MethodInfo_1F5CE80* method_1F5CE80);
bool TMPro_SetPropertyUtility__SetClass_TMP_InputField_TouchScreenKeyboardEvent_ (TMPro_TMP_InputField_TouchScreenKeyboardEvent_o** currentValue, TMPro_TMP_InputField_TouchScreenKeyboardEvent_o* newValue, const MethodInfo_1F5CE80* method_1F5CE80);
bool TMPro_SetPropertyUtility__SetClass_TMP_InputValidator_ (TMPro_TMP_InputValidator_o** currentValue, TMPro_TMP_InputValidator_o* newValue, const MethodInfo_1F5CE80* method_1F5CE80);
bool TMPro_SetPropertyUtility__SetClass_TMP_Text_ (TMPro_TMP_Text_o** currentValue, TMPro_TMP_Text_o* newValue, const MethodInfo_1F5CE80* method_1F5CE80);
bool TMPro_SetPropertyUtility__SetClass_RectTransform_ (UnityEngine_RectTransform_o** currentValue, UnityEngine_RectTransform_o* newValue, const MethodInfo_1F5CE80* method_1F5CE80);
bool TMPro_SetPropertyUtility__SetClass_Graphic_ (UnityEngine_UI_Graphic_o** currentValue, UnityEngine_UI_Graphic_o* newValue, const MethodInfo_1F5CE80* method_1F5CE80);
bool TMPro_SetPropertyUtility__SetClass_Scrollbar_ (UnityEngine_UI_Scrollbar_o** currentValue, UnityEngine_UI_Scrollbar_o* newValue, const MethodInfo_1F5CE80* method_1F5CE80);
void TMPro_TMP_InputValidator___ctor (TMPro_TMP_InputValidator_o* __this, const MethodInfo*);
System_Collections_Generic_List_T__o* TMPro_TMP_ListPool_object___Get (const MethodInfo_26D04E0* method_26D04E0);
System_Collections_Generic_List_T__o* TMPro_TMP_ListPool_Canvas___Get (const MethodInfo_26D04E0* method_26D04E0);
System_Collections_Generic_List_T__o* TMPro_TMP_ListPool_IMaterialModifier___Get (const MethodInfo_26D04E0* method_26D04E0);
System_Collections_Generic_List_T__o* TMPro_TMP_ListPool_Mask___Get (const MethodInfo_26D04E0* method_26D04E0);
void TMPro_TMP_ListPool_object___Release (System_Collections_Generic_List_T__o* toRelease, const MethodInfo_26D0670* method_26D0670);
void TMPro_TMP_ListPool_Canvas___Release (System_Collections_Generic_List_T__o* toRelease, const MethodInfo_26D0670* method_26D0670);
void TMPro_TMP_ListPool_IMaterialModifier___Release (System_Collections_Generic_List_T__o* toRelease, const MethodInfo_26D0670* method_26D0670);
void TMPro_TMP_ListPool_Mask___Release (System_Collections_Generic_List_T__o* toRelease, const MethodInfo_26D0670* method_26D0670);
void TMPro_TMP_ListPool_object____cctor (const MethodInfo_26D0800* method_26D0800);
void TMPro_TMP_ListPool___c_object____cctor (const MethodInfo_26D03D0* method_26D03D0);
void TMPro_TMP_ListPool___c_object____ctor (TMPro_TMP_ListPool___c_object__o* __this, const MethodInfo_26D04B0* method_26D04B0);
void TMPro_TMP_ListPool___c_object_____cctor_b__3_0 (TMPro_TMP_ListPool___c_object__o* __this, System_Collections_Generic_List_T__o* l, const MethodInfo_26D04C0* method_26D04C0);
void TMPro_TMP_MaterialManager___cctor (const MethodInfo*);
void TMPro_TMP_MaterialManager__OnPreRender (const MethodInfo*);
UnityEngine_Material_o* TMPro_TMP_MaterialManager__GetStencilMaterial (UnityEngine_Material_o* baseMaterial, int32_t stencilID, const MethodInfo*);
void TMPro_TMP_MaterialManager__ReleaseStencilMaterial (UnityEngine_Material_o* stencilMaterial, const MethodInfo*);
UnityEngine_Material_o* TMPro_TMP_MaterialManager__GetBaseMaterial (UnityEngine_Material_o* stencilMaterial, const MethodInfo*);
UnityEngine_Material_o* TMPro_TMP_MaterialManager__SetStencil (UnityEngine_Material_o* material, int32_t stencilID, const MethodInfo*);
void TMPro_TMP_MaterialManager__AddMaskingMaterial (UnityEngine_Material_o* baseMaterial, UnityEngine_Material_o* stencilMaterial, int32_t stencilID, const MethodInfo*);
void TMPro_TMP_MaterialManager__RemoveStencilMaterial (UnityEngine_Material_o* stencilMaterial, const MethodInfo*);
void TMPro_TMP_MaterialManager__ReleaseBaseMaterial (UnityEngine_Material_o* baseMaterial, const MethodInfo*);
void TMPro_TMP_MaterialManager__ClearMaterials (const MethodInfo*);
int32_t TMPro_TMP_MaterialManager__GetStencilID (UnityEngine_GameObject_o* obj, const MethodInfo*);
UnityEngine_Material_o* TMPro_TMP_MaterialManager__GetMaterialForRendering (UnityEngine_UI_MaskableGraphic_o* graphic, UnityEngine_Material_o* baseMaterial, const MethodInfo*);
UnityEngine_Transform_o* TMPro_TMP_MaterialManager__FindRootSortOverrideCanvas (UnityEngine_Transform_o* start, const MethodInfo*);
UnityEngine_Material_o* TMPro_TMP_MaterialManager__GetFallbackMaterial (TMPro_TMP_FontAsset_o* fontAsset, UnityEngine_Material_o* sourceMaterial, int32_t atlasIndex, const MethodInfo*);
UnityEngine_Material_o* TMPro_TMP_MaterialManager__GetFallbackMaterial (UnityEngine_Material_o* sourceMaterial, UnityEngine_Material_o* targetMaterial, const MethodInfo*);
void TMPro_TMP_MaterialManager__AddFallbackMaterialReference (UnityEngine_Material_o* targetMaterial, const MethodInfo*);
void TMPro_TMP_MaterialManager__RemoveFallbackMaterialReference (UnityEngine_Material_o* targetMaterial, const MethodInfo*);
void TMPro_TMP_MaterialManager__CleanupFallbackMaterials (const MethodInfo*);
void TMPro_TMP_MaterialManager__ReleaseFallbackMaterial (UnityEngine_Material_o* fallbackMaterial, const MethodInfo*);
void TMPro_TMP_MaterialManager__CopyMaterialPresetProperties (UnityEngine_Material_o* source, UnityEngine_Material_o* destination, const MethodInfo*);
void TMPro_TMP_MaterialManager_FallbackMaterial___ctor (TMPro_TMP_MaterialManager_FallbackMaterial_o* __this, const MethodInfo*);
void TMPro_TMP_MaterialManager_MaskingMaterial___ctor (TMPro_TMP_MaterialManager_MaskingMaterial_o* __this, const MethodInfo*);
void TMPro_TMP_MaterialManager___c__DisplayClass9_0___ctor (TMPro_TMP_MaterialManager___c__DisplayClass9_0_o* __this, const MethodInfo*);
bool TMPro_TMP_MaterialManager___c__DisplayClass9_0___GetBaseMaterial_b__0 (TMPro_TMP_MaterialManager___c__DisplayClass9_0_o* __this, TMPro_TMP_MaterialManager_MaskingMaterial_o* item, const MethodInfo*);
void TMPro_TMP_MaterialManager___c__DisplayClass11_0___ctor (TMPro_TMP_MaterialManager___c__DisplayClass11_0_o* __this, const MethodInfo*);
bool TMPro_TMP_MaterialManager___c__DisplayClass11_0___AddMaskingMaterial_b__0 (TMPro_TMP_MaterialManager___c__DisplayClass11_0_o* __this, TMPro_TMP_MaterialManager_MaskingMaterial_o* item, const MethodInfo*);
void TMPro_TMP_MaterialManager___c__DisplayClass12_0___ctor (TMPro_TMP_MaterialManager___c__DisplayClass12_0_o* __this, const MethodInfo*);
bool TMPro_TMP_MaterialManager___c__DisplayClass12_0___RemoveStencilMaterial_b__0 (TMPro_TMP_MaterialManager___c__DisplayClass12_0_o* __this, TMPro_TMP_MaterialManager_MaskingMaterial_o* item, const MethodInfo*);
void TMPro_TMP_MaterialManager___c__DisplayClass13_0___ctor (TMPro_TMP_MaterialManager___c__DisplayClass13_0_o* __this, const MethodInfo*);
bool TMPro_TMP_MaterialManager___c__DisplayClass13_0___ReleaseBaseMaterial_b__0 (TMPro_TMP_MaterialManager___c__DisplayClass13_0_o* __this, TMPro_TMP_MaterialManager_MaskingMaterial_o* item, const MethodInfo*);
void TMPro_TMP_MeshInfo___ctor (TMPro_TMP_MeshInfo_o __this, UnityEngine_Mesh_o* mesh, int32_t size, const MethodInfo*);
void TMPro_TMP_MeshInfo___ctor (TMPro_TMP_MeshInfo_o __this, UnityEngine_Mesh_o* mesh, int32_t size, bool isVolumetric, const MethodInfo*);
void TMPro_TMP_MeshInfo__ResizeMeshInfo (TMPro_TMP_MeshInfo_o __this, int32_t size, const MethodInfo*);
void TMPro_TMP_MeshInfo__ResizeMeshInfo (TMPro_TMP_MeshInfo_o __this, int32_t size, bool isVolumetric, const MethodInfo*);
void TMPro_TMP_MeshInfo__Clear (TMPro_TMP_MeshInfo_o __this, const MethodInfo*);
void TMPro_TMP_MeshInfo__Clear (TMPro_TMP_MeshInfo_o __this, bool uploadChanges, const MethodInfo*);
void TMPro_TMP_MeshInfo__ClearUnusedVertices (TMPro_TMP_MeshInfo_o __this, const MethodInfo*);
void TMPro_TMP_MeshInfo__ClearUnusedVertices (TMPro_TMP_MeshInfo_o __this, int32_t startIndex, const MethodInfo*);
void TMPro_TMP_MeshInfo__ClearUnusedVertices (TMPro_TMP_MeshInfo_o __this, int32_t startIndex, bool updateMesh, const MethodInfo*);
void TMPro_TMP_MeshInfo__SortGeometry (TMPro_TMP_MeshInfo_o __this, int32_t order, const MethodInfo*);
void TMPro_TMP_MeshInfo__SortGeometry (TMPro_TMP_MeshInfo_o __this, System_Collections_Generic_IList_int__o* sortingOrder, const MethodInfo*);
void TMPro_TMP_MeshInfo__SwapVertexData (TMPro_TMP_MeshInfo_o __this, int32_t src, int32_t dst, const MethodInfo*);
void TMPro_TMP_MeshInfo___cctor (const MethodInfo*);
int32_t TMPro_TMP_ObjectPool_object___get_countAll (TMPro_TMP_ObjectPool_object__o* __this, const MethodInfo_26D0AB0* method_26D0AB0);
void TMPro_TMP_ObjectPool_object___set_countAll (TMPro_TMP_ObjectPool_object__o* __this, int32_t value, const MethodInfo_26D0AC0* method_26D0AC0);
int32_t TMPro_TMP_ObjectPool_object___get_countActive (TMPro_TMP_ObjectPool_object__o* __this, const MethodInfo_26D0AD0* method_26D0AD0);
int32_t TMPro_TMP_ObjectPool_object___get_countInactive (TMPro_TMP_ObjectPool_object__o* __this, const MethodInfo_26D0B30* method_26D0B30);
void TMPro_TMP_ObjectPool_object____ctor (TMPro_TMP_ObjectPool_object__o* __this, UnityEngine_Events_UnityAction_T__o* actionOnGet, UnityEngine_Events_UnityAction_T__o* actionOnRelease, const MethodInfo_26D0B50* method_26D0B50);
Il2CppObject* TMPro_TMP_ObjectPool_object___Get (TMPro_TMP_ObjectPool_object__o* __this, const MethodInfo_26D0C00* method_26D0C00);
void TMPro_TMP_ObjectPool_object___Release (TMPro_TMP_ObjectPool_object__o* __this, Il2CppObject* element, const MethodInfo_26D0CE0* method_26D0CE0);
void TMPro_TMP_ResourceManager___cctor (const MethodInfo*);
TMPro_TMP_Settings_o* TMPro_TMP_ResourceManager__GetTextSettings (const MethodInfo*);
void TMPro_TMP_ResourceManager__AddFontAsset (TMPro_TMP_FontAsset_o* fontAsset, const MethodInfo*);
bool TMPro_TMP_ResourceManager__TryGetFontAsset (int32_t hashcode, TMPro_TMP_FontAsset_o** fontAsset, const MethodInfo*);
void TMPro_TMP_ResourceManager__RebuildFontAssetCache (int32_t instanceID, const MethodInfo*);
void TMPro_TMP_ResourceManager___ctor (TMPro_TMP_ResourceManager_o* __this, const MethodInfo*);
void TMPro_TMP_ScrollbarEventHandler__OnPointerClick (TMPro_TMP_ScrollbarEventHandler_o* __this, UnityEngine_EventSystems_PointerEventData_o* eventData, const MethodInfo*);
void TMPro_TMP_ScrollbarEventHandler__OnSelect (TMPro_TMP_ScrollbarEventHandler_o* __this, UnityEngine_EventSystems_BaseEventData_o* eventData, const MethodInfo*);
void TMPro_TMP_ScrollbarEventHandler__OnDeselect (TMPro_TMP_ScrollbarEventHandler_o* __this, UnityEngine_EventSystems_BaseEventData_o* eventData, const MethodInfo*);
void TMPro_TMP_ScrollbarEventHandler___ctor (TMPro_TMP_ScrollbarEventHandler_o* __this, const MethodInfo*);
void TMPro_TMP_SelectionCaret__Cull (TMPro_TMP_SelectionCaret_o* __this, UnityEngine_Rect_o clipRect, bool validRect, const MethodInfo*);
void TMPro_TMP_SelectionCaret__UpdateGeometry (TMPro_TMP_SelectionCaret_o* __this, const MethodInfo*);
void TMPro_TMP_SelectionCaret___ctor (TMPro_TMP_SelectionCaret_o* __this, const MethodInfo*);
System_String_o* TMPro_TMP_Settings__get_version (const MethodInfo*);
bool TMPro_TMP_Settings__get_enableWordWrapping (const MethodInfo*);
bool TMPro_TMP_Settings__get_enableKerning (const MethodInfo*);
bool TMPro_TMP_Settings__get_enableExtraPadding (const MethodInfo*);
bool TMPro_TMP_Settings__get_enableTintAllSprites (const MethodInfo*);
bool TMPro_TMP_Settings__get_enableParseEscapeCharacters (const MethodInfo*);
bool TMPro_TMP_Settings__get_enableRaycastTarget (const MethodInfo*);
bool TMPro_TMP_Settings__get_getFontFeaturesAtRuntime (const MethodInfo*);
int32_t TMPro_TMP_Settings__get_missingGlyphCharacter (const MethodInfo*);
void TMPro_TMP_Settings__set_missingGlyphCharacter (int32_t value, const MethodInfo*);
bool TMPro_TMP_Settings__get_warningsDisabled (const MethodInfo*);
TMPro_TMP_FontAsset_o* TMPro_TMP_Settings__get_defaultFontAsset (const MethodInfo*);
System_String_o* TMPro_TMP_Settings__get_defaultFontAssetPath (const MethodInfo*);
float TMPro_TMP_Settings__get_defaultFontSize (const MethodInfo*);
float TMPro_TMP_Settings__get_defaultTextAutoSizingMinRatio (const MethodInfo*);
float TMPro_TMP_Settings__get_defaultTextAutoSizingMaxRatio (const MethodInfo*);
UnityEngine_Vector2_o TMPro_TMP_Settings__get_defaultTextMeshProTextContainerSize (const MethodInfo*);
UnityEngine_Vector2_o TMPro_TMP_Settings__get_defaultTextMeshProUITextContainerSize (const MethodInfo*);
bool TMPro_TMP_Settings__get_autoSizeTextContainer (const MethodInfo*);
bool TMPro_TMP_Settings__get_isTextObjectScaleStatic (const MethodInfo*);
void TMPro_TMP_Settings__set_isTextObjectScaleStatic (bool value, const MethodInfo*);
System_Collections_Generic_List_TMP_FontAsset__o* TMPro_TMP_Settings__get_fallbackFontAssets (const MethodInfo*);
bool TMPro_TMP_Settings__get_matchMaterialPreset (const MethodInfo*);
TMPro_TMP_SpriteAsset_o* TMPro_TMP_Settings__get_defaultSpriteAsset (const MethodInfo*);
System_String_o* TMPro_TMP_Settings__get_defaultSpriteAssetPath (const MethodInfo*);
bool TMPro_TMP_Settings__get_enableEmojiSupport (const MethodInfo*);
void TMPro_TMP_Settings__set_enableEmojiSupport (bool value, const MethodInfo*);
uint32_t TMPro_TMP_Settings__get_missingCharacterSpriteUnicode (const MethodInfo*);
void TMPro_TMP_Settings__set_missingCharacterSpriteUnicode (uint32_t value, const MethodInfo*);
System_String_o* TMPro_TMP_Settings__get_defaultColorGradientPresetsPath (const MethodInfo*);
TMPro_TMP_StyleSheet_o* TMPro_TMP_Settings__get_defaultStyleSheet (const MethodInfo*);
System_String_o* TMPro_TMP_Settings__get_styleSheetsResourcePath (const MethodInfo*);
UnityEngine_TextAsset_o* TMPro_TMP_Settings__get_leadingCharacters (const MethodInfo*);
UnityEngine_TextAsset_o* TMPro_TMP_Settings__get_followingCharacters (const MethodInfo*);
TMPro_TMP_Settings_LineBreakingTable_o* TMPro_TMP_Settings__get_linebreakingRules (const MethodInfo*);
bool TMPro_TMP_Settings__get_useModernHangulLineBreakingRules (const MethodInfo*);
void TMPro_TMP_Settings__set_useModernHangulLineBreakingRules (bool value, const MethodInfo*);
TMPro_TMP_Settings_o* TMPro_TMP_Settings__get_instance (const MethodInfo*);
TMPro_TMP_Settings_o* TMPro_TMP_Settings__LoadDefaultSettings (const MethodInfo*);
TMPro_TMP_Settings_o* TMPro_TMP_Settings__GetSettings (const MethodInfo*);
TMPro_TMP_FontAsset_o* TMPro_TMP_Settings__GetFontAsset (const MethodInfo*);
TMPro_TMP_SpriteAsset_o* TMPro_TMP_Settings__GetSpriteAsset (const MethodInfo*);
TMPro_TMP_StyleSheet_o* TMPro_TMP_Settings__GetStyleSheet (const MethodInfo*);
void TMPro_TMP_Settings__LoadLinebreakingRules (const MethodInfo*);
System_Collections_Generic_Dictionary_int__char__o* TMPro_TMP_Settings__GetCharacters (UnityEngine_TextAsset_o* file, const MethodInfo*);
void TMPro_TMP_Settings___ctor (TMPro_TMP_Settings_o* __this, const MethodInfo*);
void TMPro_TMP_Settings_LineBreakingTable___ctor (TMPro_TMP_Settings_LineBreakingTable_o* __this, const MethodInfo*);
UnityEngine_Shader_o* TMPro_ShaderUtilities__get_ShaderRef_MobileSDF (const MethodInfo*);
UnityEngine_Shader_o* TMPro_ShaderUtilities__get_ShaderRef_MobileBitmap (const MethodInfo*);
void TMPro_ShaderUtilities___cctor (const MethodInfo*);
void TMPro_ShaderUtilities__GetShaderPropertyIDs (const MethodInfo*);
void TMPro_ShaderUtilities__UpdateShaderRatios (UnityEngine_Material_o* mat, const MethodInfo*);
UnityEngine_Vector4_o TMPro_ShaderUtilities__GetFontExtent (UnityEngine_Material_o* material, const MethodInfo*);
bool TMPro_ShaderUtilities__IsMaskingEnabled (UnityEngine_Material_o* material, const MethodInfo*);
float TMPro_ShaderUtilities__GetPadding (UnityEngine_Material_o* material, bool enableExtraPadding, bool isBold, const MethodInfo*);
float TMPro_ShaderUtilities__GetPadding (UnityEngine_Material_array* materials, bool enableExtraPadding, bool isBold, const MethodInfo*);
void TMPro_TMP_Sprite___ctor (TMPro_TMP_Sprite_o* __this, const MethodInfo*);
void TMPro_TMP_SpriteAnimator__Awake (TMPro_TMP_SpriteAnimator_o* __this, const MethodInfo*);
void TMPro_TMP_SpriteAnimator__OnEnable (TMPro_TMP_SpriteAnimator_o* __this, const MethodInfo*);
void TMPro_TMP_SpriteAnimator__OnDisable (TMPro_TMP_SpriteAnimator_o* __this, const MethodInfo*);
void TMPro_TMP_SpriteAnimator__StopAllAnimations (TMPro_TMP_SpriteAnimator_o* __this, const MethodInfo*);
void TMPro_TMP_SpriteAnimator__DoSpriteAnimation (TMPro_TMP_SpriteAnimator_o* __this, int32_t currentCharacter, TMPro_TMP_SpriteAsset_o* spriteAsset, int32_t start, int32_t end, int32_t framerate, const MethodInfo*);
System_Collections_IEnumerator_o* TMPro_TMP_SpriteAnimator__DoSpriteAnimationInternal (TMPro_TMP_SpriteAnimator_o* __this, int32_t currentCharacter, TMPro_TMP_SpriteAsset_o* spriteAsset, int32_t start, int32_t end, int32_t framerate, const MethodInfo*);
void TMPro_TMP_SpriteAnimator___ctor (TMPro_TMP_SpriteAnimator_o* __this, const MethodInfo*);
void TMPro_TMP_SpriteAnimator__DoSpriteAnimationInternal_d__7___ctor (TMPro_TMP_SpriteAnimator__DoSpriteAnimationInternal_d__7_o* __this, int32_t __1__state, const MethodInfo*);
void TMPro_TMP_SpriteAnimator__DoSpriteAnimationInternal_d__7__System_IDisposable_Dispose (TMPro_TMP_SpriteAnimator__DoSpriteAnimationInternal_d__7_o* __this, const MethodInfo*);
bool TMPro_TMP_SpriteAnimator__DoSpriteAnimationInternal_d__7__MoveNext (TMPro_TMP_SpriteAnimator__DoSpriteAnimationInternal_d__7_o* __this, const MethodInfo*);
Il2CppObject* TMPro_TMP_SpriteAnimator__DoSpriteAnimationInternal_d__7__System_Collections_Generic_IEnumerator_System_Object__get_Current (TMPro_TMP_SpriteAnimator__DoSpriteAnimationInternal_d__7_o* __this, const MethodInfo*);
void TMPro_TMP_SpriteAnimator__DoSpriteAnimationInternal_d__7__System_Collections_IEnumerator_Reset (TMPro_TMP_SpriteAnimator__DoSpriteAnimationInternal_d__7_o* __this, const MethodInfo*);
Il2CppObject* TMPro_TMP_SpriteAnimator__DoSpriteAnimationInternal_d__7__System_Collections_IEnumerator_get_Current (TMPro_TMP_SpriteAnimator__DoSpriteAnimationInternal_d__7_o* __this, const MethodInfo*);
System_String_o* TMPro_TMP_SpriteAsset__get_version (TMPro_TMP_SpriteAsset_o* __this, const MethodInfo*);
void TMPro_TMP_SpriteAsset__set_version (TMPro_TMP_SpriteAsset_o* __this, System_String_o* value, const MethodInfo*);
UnityEngine_TextCore_FaceInfo_o TMPro_TMP_SpriteAsset__get_faceInfo (TMPro_TMP_SpriteAsset_o* __this, const MethodInfo*);
void TMPro_TMP_SpriteAsset__set_faceInfo (TMPro_TMP_SpriteAsset_o* __this, UnityEngine_TextCore_FaceInfo_o value, const MethodInfo*);
System_Collections_Generic_List_TMP_SpriteCharacter__o* TMPro_TMP_SpriteAsset__get_spriteCharacterTable (TMPro_TMP_SpriteAsset_o* __this, const MethodInfo*);
void TMPro_TMP_SpriteAsset__set_spriteCharacterTable (TMPro_TMP_SpriteAsset_o* __this, System_Collections_Generic_List_TMP_SpriteCharacter__o* value, const MethodInfo*);
System_Collections_Generic_Dictionary_uint__TMP_SpriteCharacter__o* TMPro_TMP_SpriteAsset__get_spriteCharacterLookupTable (TMPro_TMP_SpriteAsset_o* __this, const MethodInfo*);
void TMPro_TMP_SpriteAsset__set_spriteCharacterLookupTable (TMPro_TMP_SpriteAsset_o* __this, System_Collections_Generic_Dictionary_uint__TMP_SpriteCharacter__o* value, const MethodInfo*);
System_Collections_Generic_List_TMP_SpriteGlyph__o* TMPro_TMP_SpriteAsset__get_spriteGlyphTable (TMPro_TMP_SpriteAsset_o* __this, const MethodInfo*);
void TMPro_TMP_SpriteAsset__set_spriteGlyphTable (TMPro_TMP_SpriteAsset_o* __this, System_Collections_Generic_List_TMP_SpriteGlyph__o* value, const MethodInfo*);
void TMPro_TMP_SpriteAsset__Awake (TMPro_TMP_SpriteAsset_o* __this, const MethodInfo*);
UnityEngine_Material_o* TMPro_TMP_SpriteAsset__GetDefaultSpriteMaterial (TMPro_TMP_SpriteAsset_o* __this, const MethodInfo*);
void TMPro_TMP_SpriteAsset__UpdateLookupTables (TMPro_TMP_SpriteAsset_o* __this, const MethodInfo*);
int32_t TMPro_TMP_SpriteAsset__GetSpriteIndexFromHashcode (TMPro_TMP_SpriteAsset_o* __this, int32_t hashCode, const MethodInfo*);
int32_t TMPro_TMP_SpriteAsset__GetSpriteIndexFromUnicode (TMPro_TMP_SpriteAsset_o* __this, uint32_t unicode, const MethodInfo*);
int32_t TMPro_TMP_SpriteAsset__GetSpriteIndexFromName (TMPro_TMP_SpriteAsset_o* __this, System_String_o* name, const MethodInfo*);
TMPro_TMP_SpriteAsset_o* TMPro_TMP_SpriteAsset__SearchForSpriteByUnicode (TMPro_TMP_SpriteAsset_o* spriteAsset, uint32_t unicode, bool includeFallbacks, int32_t* spriteIndex, const MethodInfo*);
TMPro_TMP_SpriteAsset_o* TMPro_TMP_SpriteAsset__SearchForSpriteByUnicodeInternal (System_Collections_Generic_List_TMP_SpriteAsset__o* spriteAssets, uint32_t unicode, bool includeFallbacks, int32_t* spriteIndex, const MethodInfo*);
TMPro_TMP_SpriteAsset_o* TMPro_TMP_SpriteAsset__SearchForSpriteByUnicodeInternal (TMPro_TMP_SpriteAsset_o* spriteAsset, uint32_t unicode, bool includeFallbacks, int32_t* spriteIndex, const MethodInfo*);
TMPro_TMP_SpriteAsset_o* TMPro_TMP_SpriteAsset__SearchForSpriteByHashCode (TMPro_TMP_SpriteAsset_o* spriteAsset, int32_t hashCode, bool includeFallbacks, int32_t* spriteIndex, const MethodInfo*);
TMPro_TMP_SpriteAsset_o* TMPro_TMP_SpriteAsset__SearchForSpriteByHashCodeInternal (System_Collections_Generic_List_TMP_SpriteAsset__o* spriteAssets, int32_t hashCode, bool searchFallbacks, int32_t* spriteIndex, const MethodInfo*);
TMPro_TMP_SpriteAsset_o* TMPro_TMP_SpriteAsset__SearchForSpriteByHashCodeInternal (TMPro_TMP_SpriteAsset_o* spriteAsset, int32_t hashCode, bool searchFallbacks, int32_t* spriteIndex, const MethodInfo*);
void TMPro_TMP_SpriteAsset__SortGlyphTable (TMPro_TMP_SpriteAsset_o* __this, const MethodInfo*);
void TMPro_TMP_SpriteAsset__SortCharacterTable (TMPro_TMP_SpriteAsset_o* __this, const MethodInfo*);
void TMPro_TMP_SpriteAsset__SortGlyphAndCharacterTables (TMPro_TMP_SpriteAsset_o* __this, const MethodInfo*);
void TMPro_TMP_SpriteAsset__UpgradeSpriteAsset (TMPro_TMP_SpriteAsset_o* __this, const MethodInfo*);
void TMPro_TMP_SpriteAsset___ctor (TMPro_TMP_SpriteAsset_o* __this, const MethodInfo*);
void TMPro_TMP_SpriteAsset___c___cctor (const MethodInfo*);
void TMPro_TMP_SpriteAsset___c___ctor (TMPro_TMP_SpriteAsset___c_o* __this, const MethodInfo*);
uint32_t TMPro_TMP_SpriteAsset___c___SortGlyphTable_b__40_0 (TMPro_TMP_SpriteAsset___c_o* __this, TMPro_TMP_SpriteGlyph_o* item, const MethodInfo*);
uint32_t TMPro_TMP_SpriteAsset___c___SortCharacterTable_b__41_0 (TMPro_TMP_SpriteAsset___c_o* __this, TMPro_TMP_SpriteCharacter_o* c, const MethodInfo*);
System_String_o* TMPro_TMP_SpriteCharacter__get_name (TMPro_TMP_SpriteCharacter_o* __this, const MethodInfo*);
void TMPro_TMP_SpriteCharacter__set_name (TMPro_TMP_SpriteCharacter_o* __this, System_String_o* value, const MethodInfo*);
int32_t TMPro_TMP_SpriteCharacter__get_hashCode (TMPro_TMP_SpriteCharacter_o* __this, const MethodInfo*);
void TMPro_TMP_SpriteCharacter___ctor (TMPro_TMP_SpriteCharacter_o* __this, const MethodInfo*);
void TMPro_TMP_SpriteCharacter___ctor (TMPro_TMP_SpriteCharacter_o* __this, uint32_t unicode, TMPro_TMP_SpriteGlyph_o* glyph, const MethodInfo*);
void TMPro_TMP_SpriteCharacter___ctor (TMPro_TMP_SpriteCharacter_o* __this, uint32_t unicode, TMPro_TMP_SpriteAsset_o* spriteAsset, TMPro_TMP_SpriteGlyph_o* glyph, const MethodInfo*);
void TMPro_TMP_SpriteCharacter___ctor (TMPro_TMP_SpriteCharacter_o* __this, uint32_t unicode, uint32_t glyphIndex, const MethodInfo*);
void TMPro_TMP_SpriteGlyph___ctor (TMPro_TMP_SpriteGlyph_o* __this, const MethodInfo*);
void TMPro_TMP_SpriteGlyph___ctor (TMPro_TMP_SpriteGlyph_o* __this, uint32_t index, UnityEngine_TextCore_GlyphMetrics_o metrics, UnityEngine_TextCore_GlyphRect_o glyphRect, float scale, int32_t atlasIndex, const MethodInfo*);
void TMPro_TMP_SpriteGlyph___ctor (TMPro_TMP_SpriteGlyph_o* __this, uint32_t index, UnityEngine_TextCore_GlyphMetrics_o metrics, UnityEngine_TextCore_GlyphRect_o glyphRect, float scale, int32_t atlasIndex, UnityEngine_Sprite_o* sprite, const MethodInfo*);
TMPro_TMP_Style_o* TMPro_TMP_Style__get_NormalStyle (const MethodInfo*);
System_String_o* TMPro_TMP_Style__get_name (TMPro_TMP_Style_o* __this, const MethodInfo*);
void TMPro_TMP_Style__set_name (TMPro_TMP_Style_o* __this, System_String_o* value, const MethodInfo*);
int32_t TMPro_TMP_Style__get_hashCode (TMPro_TMP_Style_o* __this, const MethodInfo*);
void TMPro_TMP_Style__set_hashCode (TMPro_TMP_Style_o* __this, int32_t value, const MethodInfo*);
System_String_o* TMPro_TMP_Style__get_styleOpeningDefinition (TMPro_TMP_Style_o* __this, const MethodInfo*);
System_String_o* TMPro_TMP_Style__get_styleClosingDefinition (TMPro_TMP_Style_o* __this, const MethodInfo*);
System_Int32_array* TMPro_TMP_Style__get_styleOpeningTagArray (TMPro_TMP_Style_o* __this, const MethodInfo*);
System_Int32_array* TMPro_TMP_Style__get_styleClosingTagArray (TMPro_TMP_Style_o* __this, const MethodInfo*);
void TMPro_TMP_Style___ctor (TMPro_TMP_Style_o* __this, System_String_o* styleName, System_String_o* styleOpeningDefinition, System_String_o* styleClosingDefinition, const MethodInfo*);
void TMPro_TMP_Style__RefreshStyle (TMPro_TMP_Style_o* __this, const MethodInfo*);
System_Collections_Generic_List_TMP_Style__o* TMPro_TMP_StyleSheet__get_styles (TMPro_TMP_StyleSheet_o* __this, const MethodInfo*);
void TMPro_TMP_StyleSheet__Reset (TMPro_TMP_StyleSheet_o* __this, const MethodInfo*);
TMPro_TMP_Style_o* TMPro_TMP_StyleSheet__GetStyle (TMPro_TMP_StyleSheet_o* __this, int32_t hashCode, const MethodInfo*);
TMPro_TMP_Style_o* TMPro_TMP_StyleSheet__GetStyle (TMPro_TMP_StyleSheet_o* __this, System_String_o* name, const MethodInfo*);
void TMPro_TMP_StyleSheet__RefreshStyles (TMPro_TMP_StyleSheet_o* __this, const MethodInfo*);
void TMPro_TMP_StyleSheet__LoadStyleDictionaryInternal (TMPro_TMP_StyleSheet_o* __this, const MethodInfo*);
void TMPro_TMP_StyleSheet___ctor (TMPro_TMP_StyleSheet_o* __this, const MethodInfo*);
TMPro_TMP_FontAsset_o* TMPro_TMP_SubMesh__get_fontAsset (TMPro_TMP_SubMesh_o* __this, const MethodInfo*);
void TMPro_TMP_SubMesh__set_fontAsset (TMPro_TMP_SubMesh_o* __this, TMPro_TMP_FontAsset_o* value, const MethodInfo*);
TMPro_TMP_SpriteAsset_o* TMPro_TMP_SubMesh__get_spriteAsset (TMPro_TMP_SubMesh_o* __this, const MethodInfo*);
void TMPro_TMP_SubMesh__set_spriteAsset (TMPro_TMP_SubMesh_o* __this, TMPro_TMP_SpriteAsset_o* value, const MethodInfo*);
UnityEngine_Material_o* TMPro_TMP_SubMesh__get_material (TMPro_TMP_SubMesh_o* __this, const MethodInfo*);
void TMPro_TMP_SubMesh__set_material (TMPro_TMP_SubMesh_o* __this, UnityEngine_Material_o* value, const MethodInfo*);
UnityEngine_Material_o* TMPro_TMP_SubMesh__get_sharedMaterial (TMPro_TMP_SubMesh_o* __this, const MethodInfo*);
void TMPro_TMP_SubMesh__set_sharedMaterial (TMPro_TMP_SubMesh_o* __this, UnityEngine_Material_o* value, const MethodInfo*);
UnityEngine_Material_o* TMPro_TMP_SubMesh__get_fallbackMaterial (TMPro_TMP_SubMesh_o* __this, const MethodInfo*);
void TMPro_TMP_SubMesh__set_fallbackMaterial (TMPro_TMP_SubMesh_o* __this, UnityEngine_Material_o* value, const MethodInfo*);
UnityEngine_Material_o* TMPro_TMP_SubMesh__get_fallbackSourceMaterial (TMPro_TMP_SubMesh_o* __this, const MethodInfo*);
void TMPro_TMP_SubMesh__set_fallbackSourceMaterial (TMPro_TMP_SubMesh_o* __this, UnityEngine_Material_o* value, const MethodInfo*);
bool TMPro_TMP_SubMesh__get_isDefaultMaterial (TMPro_TMP_SubMesh_o* __this, const MethodInfo*);
void TMPro_TMP_SubMesh__set_isDefaultMaterial (TMPro_TMP_SubMesh_o* __this, bool value, const MethodInfo*);
float TMPro_TMP_SubMesh__get_padding (TMPro_TMP_SubMesh_o* __this, const MethodInfo*);
void TMPro_TMP_SubMesh__set_padding (TMPro_TMP_SubMesh_o* __this, float value, const MethodInfo*);
UnityEngine_Renderer_o* TMPro_TMP_SubMesh__get_renderer (TMPro_TMP_SubMesh_o* __this, const MethodInfo*);
UnityEngine_MeshFilter_o* TMPro_TMP_SubMesh__get_meshFilter (TMPro_TMP_SubMesh_o* __this, const MethodInfo*);
UnityEngine_Mesh_o* TMPro_TMP_SubMesh__get_mesh (TMPro_TMP_SubMesh_o* __this, const MethodInfo*);
void TMPro_TMP_SubMesh__set_mesh (TMPro_TMP_SubMesh_o* __this, UnityEngine_Mesh_o* value, const MethodInfo*);
TMPro_TMP_Text_o* TMPro_TMP_SubMesh__get_textComponent (TMPro_TMP_SubMesh_o* __this, const MethodInfo*);
TMPro_TMP_SubMesh_o* TMPro_TMP_SubMesh__AddSubTextObject (TMPro_TextMeshPro_o* textComponent, TMPro_MaterialReference_o materialReference, const MethodInfo*);
void TMPro_TMP_SubMesh__OnEnable (TMPro_TMP_SubMesh_o* __this, const MethodInfo*);
void TMPro_TMP_SubMesh__OnDisable (TMPro_TMP_SubMesh_o* __this, const MethodInfo*);
void TMPro_TMP_SubMesh__OnDestroy (TMPro_TMP_SubMesh_o* __this, const MethodInfo*);
void TMPro_TMP_SubMesh__DestroySelf (TMPro_TMP_SubMesh_o* __this, const MethodInfo*);
UnityEngine_Material_o* TMPro_TMP_SubMesh__GetMaterial (TMPro_TMP_SubMesh_o* __this, UnityEngine_Material_o* mat, const MethodInfo*);
UnityEngine_Material_o* TMPro_TMP_SubMesh__CreateMaterialInstance (TMPro_TMP_SubMesh_o* __this, UnityEngine_Material_o* source, const MethodInfo*);
UnityEngine_Material_o* TMPro_TMP_SubMesh__GetSharedMaterial (TMPro_TMP_SubMesh_o* __this, const MethodInfo*);
void TMPro_TMP_SubMesh__SetSharedMaterial (TMPro_TMP_SubMesh_o* __this, UnityEngine_Material_o* mat, const MethodInfo*);
float TMPro_TMP_SubMesh__GetPaddingForMaterial (TMPro_TMP_SubMesh_o* __this, const MethodInfo*);
void TMPro_TMP_SubMesh__UpdateMeshPadding (TMPro_TMP_SubMesh_o* __this, bool isExtraPadding, bool isUsingBold, const MethodInfo*);
void TMPro_TMP_SubMesh__SetVerticesDirty (TMPro_TMP_SubMesh_o* __this, const MethodInfo*);
void TMPro_TMP_SubMesh__SetMaterialDirty (TMPro_TMP_SubMesh_o* __this, const MethodInfo*);
void TMPro_TMP_SubMesh__UpdateMaterial (TMPro_TMP_SubMesh_o* __this, const MethodInfo*);
void TMPro_TMP_SubMesh___ctor (TMPro_TMP_SubMesh_o* __this, const MethodInfo*);
TMPro_TMP_FontAsset_o* TMPro_TMP_SubMeshUI__get_fontAsset (TMPro_TMP_SubMeshUI_o* __this, const MethodInfo*);
void TMPro_TMP_SubMeshUI__set_fontAsset (TMPro_TMP_SubMeshUI_o* __this, TMPro_TMP_FontAsset_o* value, const MethodInfo*);
TMPro_TMP_SpriteAsset_o* TMPro_TMP_SubMeshUI__get_spriteAsset (TMPro_TMP_SubMeshUI_o* __this, const MethodInfo*);
void TMPro_TMP_SubMeshUI__set_spriteAsset (TMPro_TMP_SubMeshUI_o* __this, TMPro_TMP_SpriteAsset_o* value, const MethodInfo*);
UnityEngine_Texture_o* TMPro_TMP_SubMeshUI__get_mainTexture (TMPro_TMP_SubMeshUI_o* __this, const MethodInfo*);
UnityEngine_Material_o* TMPro_TMP_SubMeshUI__get_material (TMPro_TMP_SubMeshUI_o* __this, const MethodInfo*);
void TMPro_TMP_SubMeshUI__set_material (TMPro_TMP_SubMeshUI_o* __this, UnityEngine_Material_o* value, const MethodInfo*);
UnityEngine_Material_o* TMPro_TMP_SubMeshUI__get_sharedMaterial (TMPro_TMP_SubMeshUI_o* __this, const MethodInfo*);
void TMPro_TMP_SubMeshUI__set_sharedMaterial (TMPro_TMP_SubMeshUI_o* __this, UnityEngine_Material_o* value, const MethodInfo*);
UnityEngine_Material_o* TMPro_TMP_SubMeshUI__get_fallbackMaterial (TMPro_TMP_SubMeshUI_o* __this, const MethodInfo*);
void TMPro_TMP_SubMeshUI__set_fallbackMaterial (TMPro_TMP_SubMeshUI_o* __this, UnityEngine_Material_o* value, const MethodInfo*);
UnityEngine_Material_o* TMPro_TMP_SubMeshUI__get_fallbackSourceMaterial (TMPro_TMP_SubMeshUI_o* __this, const MethodInfo*);
void TMPro_TMP_SubMeshUI__set_fallbackSourceMaterial (TMPro_TMP_SubMeshUI_o* __this, UnityEngine_Material_o* value, const MethodInfo*);
UnityEngine_Material_o* TMPro_TMP_SubMeshUI__get_materialForRendering (TMPro_TMP_SubMeshUI_o* __this, const MethodInfo*);
bool TMPro_TMP_SubMeshUI__get_isDefaultMaterial (TMPro_TMP_SubMeshUI_o* __this, const MethodInfo*);
void TMPro_TMP_SubMeshUI__set_isDefaultMaterial (TMPro_TMP_SubMeshUI_o* __this, bool value, const MethodInfo*);
float TMPro_TMP_SubMeshUI__get_padding (TMPro_TMP_SubMeshUI_o* __this, const MethodInfo*);
void TMPro_TMP_SubMeshUI__set_padding (TMPro_TMP_SubMeshUI_o* __this, float value, const MethodInfo*);
UnityEngine_Mesh_o* TMPro_TMP_SubMeshUI__get_mesh (TMPro_TMP_SubMeshUI_o* __this, const MethodInfo*);
void TMPro_TMP_SubMeshUI__set_mesh (TMPro_TMP_SubMeshUI_o* __this, UnityEngine_Mesh_o* value, const MethodInfo*);
TMPro_TMP_Text_o* TMPro_TMP_SubMeshUI__get_textComponent (TMPro_TMP_SubMeshUI_o* __this, const MethodInfo*);
TMPro_TMP_SubMeshUI_o* TMPro_TMP_SubMeshUI__AddSubTextObject (TMPro_TextMeshProUGUI_o* textComponent, TMPro_MaterialReference_o materialReference, const MethodInfo*);
void TMPro_TMP_SubMeshUI__OnEnable (TMPro_TMP_SubMeshUI_o* __this, const MethodInfo*);
void TMPro_TMP_SubMeshUI__OnDisable (TMPro_TMP_SubMeshUI_o* __this, const MethodInfo*);
void TMPro_TMP_SubMeshUI__OnDestroy (TMPro_TMP_SubMeshUI_o* __this, const MethodInfo*);
void TMPro_TMP_SubMeshUI__OnTransformParentChanged (TMPro_TMP_SubMeshUI_o* __this, const MethodInfo*);
UnityEngine_Material_o* TMPro_TMP_SubMeshUI__GetModifiedMaterial (TMPro_TMP_SubMeshUI_o* __this, UnityEngine_Material_o* baseMaterial, const MethodInfo*);
float TMPro_TMP_SubMeshUI__GetPaddingForMaterial (TMPro_TMP_SubMeshUI_o* __this, const MethodInfo*);
float TMPro_TMP_SubMeshUI__GetPaddingForMaterial (TMPro_TMP_SubMeshUI_o* __this, UnityEngine_Material_o* mat, const MethodInfo*);
void TMPro_TMP_SubMeshUI__UpdateMeshPadding (TMPro_TMP_SubMeshUI_o* __this, bool isExtraPadding, bool isUsingBold, const MethodInfo*);
void TMPro_TMP_SubMeshUI__SetAllDirty (TMPro_TMP_SubMeshUI_o* __this, const MethodInfo*);
void TMPro_TMP_SubMeshUI__SetVerticesDirty (TMPro_TMP_SubMeshUI_o* __this, const MethodInfo*);
void TMPro_TMP_SubMeshUI__SetLayoutDirty (TMPro_TMP_SubMeshUI_o* __this, const MethodInfo*);
void TMPro_TMP_SubMeshUI__SetMaterialDirty (TMPro_TMP_SubMeshUI_o* __this, const MethodInfo*);
void TMPro_TMP_SubMeshUI__SetPivotDirty (TMPro_TMP_SubMeshUI_o* __this, const MethodInfo*);
UnityEngine_Transform_o* TMPro_TMP_SubMeshUI__GetRootCanvasTransform (TMPro_TMP_SubMeshUI_o* __this, const MethodInfo*);
void TMPro_TMP_SubMeshUI__Cull (TMPro_TMP_SubMeshUI_o* __this, UnityEngine_Rect_o clipRect, bool validRect, const MethodInfo*);
void TMPro_TMP_SubMeshUI__UpdateGeometry (TMPro_TMP_SubMeshUI_o* __this, const MethodInfo*);
void TMPro_TMP_SubMeshUI__Rebuild (TMPro_TMP_SubMeshUI_o* __this, int32_t update, const MethodInfo*);
void TMPro_TMP_SubMeshUI__RefreshMaterial (TMPro_TMP_SubMeshUI_o* __this, const MethodInfo*);
void TMPro_TMP_SubMeshUI__UpdateMaterial (TMPro_TMP_SubMeshUI_o* __this, const MethodInfo*);
void TMPro_TMP_SubMeshUI__RecalculateClipping (TMPro_TMP_SubMeshUI_o* __this, const MethodInfo*);
UnityEngine_Material_o* TMPro_TMP_SubMeshUI__GetMaterial (TMPro_TMP_SubMeshUI_o* __this, const MethodInfo*);
UnityEngine_Material_o* TMPro_TMP_SubMeshUI__GetMaterial (TMPro_TMP_SubMeshUI_o* __this, UnityEngine_Material_o* mat, const MethodInfo*);
UnityEngine_Material_o* TMPro_TMP_SubMeshUI__CreateMaterialInstance (TMPro_TMP_SubMeshUI_o* __this, UnityEngine_Material_o* source, const MethodInfo*);
UnityEngine_Material_o* TMPro_TMP_SubMeshUI__GetSharedMaterial (TMPro_TMP_SubMeshUI_o* __this, const MethodInfo*);
void TMPro_TMP_SubMeshUI__SetSharedMaterial (TMPro_TMP_SubMeshUI_o* __this, UnityEngine_Material_o* mat, const MethodInfo*);
void TMPro_TMP_SubMeshUI___ctor (TMPro_TMP_SubMeshUI_o* __this, const MethodInfo*);
System_String_o* TMPro_TMP_Text__get_text (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_text (TMPro_TMP_Text_o* __this, System_String_o* value, const MethodInfo*);
TMPro_ITextPreprocessor_o* TMPro_TMP_Text__get_textPreprocessor (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_textPreprocessor (TMPro_TMP_Text_o* __this, TMPro_ITextPreprocessor_o* value, const MethodInfo*);
bool TMPro_TMP_Text__get_isRightToLeftText (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_isRightToLeftText (TMPro_TMP_Text_o* __this, bool value, const MethodInfo*);
TMPro_TMP_FontAsset_o* TMPro_TMP_Text__get_font (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_font (TMPro_TMP_Text_o* __this, TMPro_TMP_FontAsset_o* value, const MethodInfo*);
UnityEngine_Material_o* TMPro_TMP_Text__get_fontSharedMaterial (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_fontSharedMaterial (TMPro_TMP_Text_o* __this, UnityEngine_Material_o* value, const MethodInfo*);
UnityEngine_Material_array* TMPro_TMP_Text__get_fontSharedMaterials (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_fontSharedMaterials (TMPro_TMP_Text_o* __this, UnityEngine_Material_array* value, const MethodInfo*);
UnityEngine_Material_o* TMPro_TMP_Text__get_fontMaterial (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_fontMaterial (TMPro_TMP_Text_o* __this, UnityEngine_Material_o* value, const MethodInfo*);
UnityEngine_Material_array* TMPro_TMP_Text__get_fontMaterials (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_fontMaterials (TMPro_TMP_Text_o* __this, UnityEngine_Material_array* value, const MethodInfo*);
UnityEngine_Color_o TMPro_TMP_Text__get_color (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_color (TMPro_TMP_Text_o* __this, UnityEngine_Color_o value, const MethodInfo*);
float TMPro_TMP_Text__get_alpha (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_alpha (TMPro_TMP_Text_o* __this, float value, const MethodInfo*);
bool TMPro_TMP_Text__get_enableVertexGradient (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_enableVertexGradient (TMPro_TMP_Text_o* __this, bool value, const MethodInfo*);
TMPro_VertexGradient_o TMPro_TMP_Text__get_colorGradient (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_colorGradient (TMPro_TMP_Text_o* __this, TMPro_VertexGradient_o value, const MethodInfo*);
TMPro_TMP_ColorGradient_o* TMPro_TMP_Text__get_colorGradientPreset (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_colorGradientPreset (TMPro_TMP_Text_o* __this, TMPro_TMP_ColorGradient_o* value, const MethodInfo*);
TMPro_TMP_SpriteAsset_o* TMPro_TMP_Text__get_spriteAsset (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_spriteAsset (TMPro_TMP_Text_o* __this, TMPro_TMP_SpriteAsset_o* value, const MethodInfo*);
bool TMPro_TMP_Text__get_tintAllSprites (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_tintAllSprites (TMPro_TMP_Text_o* __this, bool value, const MethodInfo*);
TMPro_TMP_StyleSheet_o* TMPro_TMP_Text__get_styleSheet (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_styleSheet (TMPro_TMP_Text_o* __this, TMPro_TMP_StyleSheet_o* value, const MethodInfo*);
TMPro_TMP_Style_o* TMPro_TMP_Text__get_textStyle (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_textStyle (TMPro_TMP_Text_o* __this, TMPro_TMP_Style_o* value, const MethodInfo*);
bool TMPro_TMP_Text__get_overrideColorTags (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_overrideColorTags (TMPro_TMP_Text_o* __this, bool value, const MethodInfo*);
UnityEngine_Color32_o TMPro_TMP_Text__get_faceColor (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_faceColor (TMPro_TMP_Text_o* __this, UnityEngine_Color32_o value, const MethodInfo*);
UnityEngine_Color32_o TMPro_TMP_Text__get_outlineColor (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_outlineColor (TMPro_TMP_Text_o* __this, UnityEngine_Color32_o value, const MethodInfo*);
float TMPro_TMP_Text__get_outlineWidth (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_outlineWidth (TMPro_TMP_Text_o* __this, float value, const MethodInfo*);
float TMPro_TMP_Text__get_fontSize (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_fontSize (TMPro_TMP_Text_o* __this, float value, const MethodInfo*);
int32_t TMPro_TMP_Text__get_fontWeight (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_fontWeight (TMPro_TMP_Text_o* __this, int32_t value, const MethodInfo*);
float TMPro_TMP_Text__get_pixelsPerUnit (TMPro_TMP_Text_o* __this, const MethodInfo*);
bool TMPro_TMP_Text__get_enableAutoSizing (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_enableAutoSizing (TMPro_TMP_Text_o* __this, bool value, const MethodInfo*);
float TMPro_TMP_Text__get_fontSizeMin (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_fontSizeMin (TMPro_TMP_Text_o* __this, float value, const MethodInfo*);
float TMPro_TMP_Text__get_fontSizeMax (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_fontSizeMax (TMPro_TMP_Text_o* __this, float value, const MethodInfo*);
int32_t TMPro_TMP_Text__get_fontStyle (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_fontStyle (TMPro_TMP_Text_o* __this, int32_t value, const MethodInfo*);
bool TMPro_TMP_Text__get_isUsingBold (TMPro_TMP_Text_o* __this, const MethodInfo*);
int32_t TMPro_TMP_Text__get_horizontalAlignment (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_horizontalAlignment (TMPro_TMP_Text_o* __this, int32_t value, const MethodInfo*);
int32_t TMPro_TMP_Text__get_verticalAlignment (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_verticalAlignment (TMPro_TMP_Text_o* __this, int32_t value, const MethodInfo*);
int32_t TMPro_TMP_Text__get_alignment (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_alignment (TMPro_TMP_Text_o* __this, int32_t value, const MethodInfo*);
float TMPro_TMP_Text__get_characterSpacing (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_characterSpacing (TMPro_TMP_Text_o* __this, float value, const MethodInfo*);
float TMPro_TMP_Text__get_wordSpacing (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_wordSpacing (TMPro_TMP_Text_o* __this, float value, const MethodInfo*);
float TMPro_TMP_Text__get_lineSpacing (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_lineSpacing (TMPro_TMP_Text_o* __this, float value, const MethodInfo*);
float TMPro_TMP_Text__get_lineSpacingAdjustment (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_lineSpacingAdjustment (TMPro_TMP_Text_o* __this, float value, const MethodInfo*);
float TMPro_TMP_Text__get_paragraphSpacing (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_paragraphSpacing (TMPro_TMP_Text_o* __this, float value, const MethodInfo*);
float TMPro_TMP_Text__get_characterWidthAdjustment (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_characterWidthAdjustment (TMPro_TMP_Text_o* __this, float value, const MethodInfo*);
bool TMPro_TMP_Text__get_enableWordWrapping (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_enableWordWrapping (TMPro_TMP_Text_o* __this, bool value, const MethodInfo*);
float TMPro_TMP_Text__get_wordWrappingRatios (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_wordWrappingRatios (TMPro_TMP_Text_o* __this, float value, const MethodInfo*);
int32_t TMPro_TMP_Text__get_overflowMode (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_overflowMode (TMPro_TMP_Text_o* __this, int32_t value, const MethodInfo*);
bool TMPro_TMP_Text__get_isTextOverflowing (TMPro_TMP_Text_o* __this, const MethodInfo*);
int32_t TMPro_TMP_Text__get_firstOverflowCharacterIndex (TMPro_TMP_Text_o* __this, const MethodInfo*);
TMPro_TMP_Text_o* TMPro_TMP_Text__get_linkedTextComponent (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_linkedTextComponent (TMPro_TMP_Text_o* __this, TMPro_TMP_Text_o* value, const MethodInfo*);
bool TMPro_TMP_Text__get_isTextTruncated (TMPro_TMP_Text_o* __this, const MethodInfo*);
bool TMPro_TMP_Text__get_enableKerning (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_enableKerning (TMPro_TMP_Text_o* __this, bool value, const MethodInfo*);
bool TMPro_TMP_Text__get_extraPadding (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_extraPadding (TMPro_TMP_Text_o* __this, bool value, const MethodInfo*);
bool TMPro_TMP_Text__get_richText (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_richText (TMPro_TMP_Text_o* __this, bool value, const MethodInfo*);
bool TMPro_TMP_Text__get_parseCtrlCharacters (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_parseCtrlCharacters (TMPro_TMP_Text_o* __this, bool value, const MethodInfo*);
bool TMPro_TMP_Text__get_isOverlay (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_isOverlay (TMPro_TMP_Text_o* __this, bool value, const MethodInfo*);
bool TMPro_TMP_Text__get_isOrthographic (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_isOrthographic (TMPro_TMP_Text_o* __this, bool value, const MethodInfo*);
bool TMPro_TMP_Text__get_enableCulling (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_enableCulling (TMPro_TMP_Text_o* __this, bool value, const MethodInfo*);
bool TMPro_TMP_Text__get_ignoreVisibility (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_ignoreVisibility (TMPro_TMP_Text_o* __this, bool value, const MethodInfo*);
int32_t TMPro_TMP_Text__get_horizontalMapping (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_horizontalMapping (TMPro_TMP_Text_o* __this, int32_t value, const MethodInfo*);
int32_t TMPro_TMP_Text__get_verticalMapping (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_verticalMapping (TMPro_TMP_Text_o* __this, int32_t value, const MethodInfo*);
float TMPro_TMP_Text__get_mappingUvLineOffset (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_mappingUvLineOffset (TMPro_TMP_Text_o* __this, float value, const MethodInfo*);
int32_t TMPro_TMP_Text__get_renderMode (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_renderMode (TMPro_TMP_Text_o* __this, int32_t value, const MethodInfo*);
int32_t TMPro_TMP_Text__get_geometrySortingOrder (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_geometrySortingOrder (TMPro_TMP_Text_o* __this, int32_t value, const MethodInfo*);
bool TMPro_TMP_Text__get_isTextObjectScaleStatic (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_isTextObjectScaleStatic (TMPro_TMP_Text_o* __this, bool value, const MethodInfo*);
bool TMPro_TMP_Text__get_vertexBufferAutoSizeReduction (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_vertexBufferAutoSizeReduction (TMPro_TMP_Text_o* __this, bool value, const MethodInfo*);
int32_t TMPro_TMP_Text__get_firstVisibleCharacter (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_firstVisibleCharacter (TMPro_TMP_Text_o* __this, int32_t value, const MethodInfo*);
int32_t TMPro_TMP_Text__get_maxVisibleCharacters (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_maxVisibleCharacters (TMPro_TMP_Text_o* __this, int32_t value, const MethodInfo*);
int32_t TMPro_TMP_Text__get_maxVisibleWords (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_maxVisibleWords (TMPro_TMP_Text_o* __this, int32_t value, const MethodInfo*);
int32_t TMPro_TMP_Text__get_maxVisibleLines (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_maxVisibleLines (TMPro_TMP_Text_o* __this, int32_t value, const MethodInfo*);
bool TMPro_TMP_Text__get_useMaxVisibleDescender (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_useMaxVisibleDescender (TMPro_TMP_Text_o* __this, bool value, const MethodInfo*);
int32_t TMPro_TMP_Text__get_pageToDisplay (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_pageToDisplay (TMPro_TMP_Text_o* __this, int32_t value, const MethodInfo*);
UnityEngine_Vector4_o TMPro_TMP_Text__get_margin (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_margin (TMPro_TMP_Text_o* __this, UnityEngine_Vector4_o value, const MethodInfo*);
TMPro_TMP_TextInfo_o* TMPro_TMP_Text__get_textInfo (TMPro_TMP_Text_o* __this, const MethodInfo*);
bool TMPro_TMP_Text__get_havePropertiesChanged (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_havePropertiesChanged (TMPro_TMP_Text_o* __this, bool value, const MethodInfo*);
bool TMPro_TMP_Text__get_isUsingLegacyAnimationComponent (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_isUsingLegacyAnimationComponent (TMPro_TMP_Text_o* __this, bool value, const MethodInfo*);
UnityEngine_Transform_o* TMPro_TMP_Text__get_transform (TMPro_TMP_Text_o* __this, const MethodInfo*);
UnityEngine_RectTransform_o* TMPro_TMP_Text__get_rectTransform (TMPro_TMP_Text_o* __this, const MethodInfo*);
bool TMPro_TMP_Text__get_autoSizeTextContainer (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_autoSizeTextContainer (TMPro_TMP_Text_o* __this, bool value, const MethodInfo*);
UnityEngine_Mesh_o* TMPro_TMP_Text__get_mesh (TMPro_TMP_Text_o* __this, const MethodInfo*);
bool TMPro_TMP_Text__get_isVolumetricText (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__set_isVolumetricText (TMPro_TMP_Text_o* __this, bool value, const MethodInfo*);
UnityEngine_Bounds_o TMPro_TMP_Text__get_bounds (TMPro_TMP_Text_o* __this, const MethodInfo*);
UnityEngine_Bounds_o TMPro_TMP_Text__get_textBounds (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__add_OnFontAssetRequest (System_Func_int__string__TMP_FontAsset__o* value, const MethodInfo*);
void TMPro_TMP_Text__remove_OnFontAssetRequest (System_Func_int__string__TMP_FontAsset__o* value, const MethodInfo*);
void TMPro_TMP_Text__add_OnSpriteAssetRequest (System_Func_int__string__TMP_SpriteAsset__o* value, const MethodInfo*);
void TMPro_TMP_Text__remove_OnSpriteAssetRequest (System_Func_int__string__TMP_SpriteAsset__o* value, const MethodInfo*);
void TMPro_TMP_Text__add_OnPreRenderText (TMPro_TMP_Text_o* __this, System_Action_TMP_TextInfo__o* value, const MethodInfo*);
void TMPro_TMP_Text__remove_OnPreRenderText (TMPro_TMP_Text_o* __this, System_Action_TMP_TextInfo__o* value, const MethodInfo*);
TMPro_TMP_SpriteAnimator_o* TMPro_TMP_Text__get_spriteAnimator (TMPro_TMP_Text_o* __this, const MethodInfo*);
float TMPro_TMP_Text__get_flexibleHeight (TMPro_TMP_Text_o* __this, const MethodInfo*);
float TMPro_TMP_Text__get_flexibleWidth (TMPro_TMP_Text_o* __this, const MethodInfo*);
float TMPro_TMP_Text__get_minWidth (TMPro_TMP_Text_o* __this, const MethodInfo*);
float TMPro_TMP_Text__get_minHeight (TMPro_TMP_Text_o* __this, const MethodInfo*);
float TMPro_TMP_Text__get_maxWidth (TMPro_TMP_Text_o* __this, const MethodInfo*);
float TMPro_TMP_Text__get_maxHeight (TMPro_TMP_Text_o* __this, const MethodInfo*);
UnityEngine_UI_LayoutElement_o* TMPro_TMP_Text__get_layoutElement (TMPro_TMP_Text_o* __this, const MethodInfo*);
float TMPro_TMP_Text__get_preferredWidth (TMPro_TMP_Text_o* __this, const MethodInfo*);
float TMPro_TMP_Text__get_preferredHeight (TMPro_TMP_Text_o* __this, const MethodInfo*);
float TMPro_TMP_Text__get_renderedWidth (TMPro_TMP_Text_o* __this, const MethodInfo*);
float TMPro_TMP_Text__get_renderedHeight (TMPro_TMP_Text_o* __this, const MethodInfo*);
int32_t TMPro_TMP_Text__get_layoutPriority (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__LoadFontAsset (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__SetSharedMaterial (TMPro_TMP_Text_o* __this, UnityEngine_Material_o* mat, const MethodInfo*);
UnityEngine_Material_o* TMPro_TMP_Text__GetMaterial (TMPro_TMP_Text_o* __this, UnityEngine_Material_o* mat, const MethodInfo*);
void TMPro_TMP_Text__SetFontBaseMaterial (TMPro_TMP_Text_o* __this, UnityEngine_Material_o* mat, const MethodInfo*);
UnityEngine_Material_array* TMPro_TMP_Text__GetSharedMaterials (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__SetSharedMaterials (TMPro_TMP_Text_o* __this, UnityEngine_Material_array* materials, const MethodInfo*);
UnityEngine_Material_array* TMPro_TMP_Text__GetMaterials (TMPro_TMP_Text_o* __this, UnityEngine_Material_array* mats, const MethodInfo*);
UnityEngine_Material_o* TMPro_TMP_Text__CreateMaterialInstance (TMPro_TMP_Text_o* __this, UnityEngine_Material_o* source, const MethodInfo*);
void TMPro_TMP_Text__SetVertexColorGradient (TMPro_TMP_Text_o* __this, TMPro_TMP_ColorGradient_o* gradient, const MethodInfo*);
void TMPro_TMP_Text__SetTextSortingOrder (TMPro_TMP_Text_o* __this, int32_t order, const MethodInfo*);
void TMPro_TMP_Text__SetTextSortingOrder (TMPro_TMP_Text_o* __this, System_Int32_array* order, const MethodInfo*);
void TMPro_TMP_Text__SetFaceColor (TMPro_TMP_Text_o* __this, UnityEngine_Color32_o color, const MethodInfo*);
void TMPro_TMP_Text__SetOutlineColor (TMPro_TMP_Text_o* __this, UnityEngine_Color32_o color, const MethodInfo*);
void TMPro_TMP_Text__SetOutlineThickness (TMPro_TMP_Text_o* __this, float thickness, const MethodInfo*);
void TMPro_TMP_Text__SetShaderDepth (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__SetCulling (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__UpdateCulling (TMPro_TMP_Text_o* __this, const MethodInfo*);
float TMPro_TMP_Text__GetPaddingForMaterial (TMPro_TMP_Text_o* __this, const MethodInfo*);
float TMPro_TMP_Text__GetPaddingForMaterial (TMPro_TMP_Text_o* __this, UnityEngine_Material_o* mat, const MethodInfo*);
UnityEngine_Vector3_array* TMPro_TMP_Text__GetTextContainerLocalCorners (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__ForceMeshUpdate (TMPro_TMP_Text_o* __this, bool ignoreActiveState, bool forceTextReparsing, const MethodInfo*);
void TMPro_TMP_Text__SetTextInternal (TMPro_TMP_Text_o* __this, System_String_o* text, const MethodInfo*);
void TMPro_TMP_Text__UpdateGeometry (TMPro_TMP_Text_o* __this, UnityEngine_Mesh_o* mesh, int32_t index, const MethodInfo*);
void TMPro_TMP_Text__UpdateVertexData (TMPro_TMP_Text_o* __this, int32_t flags, const MethodInfo*);
void TMPro_TMP_Text__UpdateVertexData (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__SetVertices (TMPro_TMP_Text_o* __this, UnityEngine_Vector3_array* vertices, const MethodInfo*);
void TMPro_TMP_Text__UpdateMeshPadding (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__CrossFadeColor (TMPro_TMP_Text_o* __this, UnityEngine_Color_o targetColor, float duration, bool ignoreTimeScale, bool useAlpha, const MethodInfo*);
void TMPro_TMP_Text__CrossFadeAlpha (TMPro_TMP_Text_o* __this, float alpha, float duration, bool ignoreTimeScale, const MethodInfo*);
void TMPro_TMP_Text__InternalCrossFadeColor (TMPro_TMP_Text_o* __this, UnityEngine_Color_o targetColor, float duration, bool ignoreTimeScale, bool useAlpha, const MethodInfo*);
void TMPro_TMP_Text__InternalCrossFadeAlpha (TMPro_TMP_Text_o* __this, float alpha, float duration, bool ignoreTimeScale, const MethodInfo*);
void TMPro_TMP_Text__ParseInputText (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__PopulateTextBackingArray (TMPro_TMP_Text_o* __this, System_String_o* sourceText, const MethodInfo*);
void TMPro_TMP_Text__PopulateTextBackingArray (TMPro_TMP_Text_o* __this, System_String_o* sourceText, int32_t start, int32_t length, const MethodInfo*);
void TMPro_TMP_Text__PopulateTextBackingArray (TMPro_TMP_Text_o* __this, System_Text_StringBuilder_o* sourceText, int32_t start, int32_t length, const MethodInfo*);
void TMPro_TMP_Text__PopulateTextBackingArray (TMPro_TMP_Text_o* __this, System_Char_array* sourceText, int32_t start, int32_t length, const MethodInfo*);
void TMPro_TMP_Text__PopulateTextBackingArray (TMPro_TMP_Text_o* __this, System_Int32_array* sourceText, int32_t start, int32_t length, const MethodInfo*);
void TMPro_TMP_Text__PopulateTextProcessingArray (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__SetText (TMPro_TMP_Text_o* __this, System_String_o* sourceText, bool syncTextInputBox, const MethodInfo*);
void TMPro_TMP_Text__SetText (TMPro_TMP_Text_o* __this, System_String_o* sourceText, float arg0, const MethodInfo*);
void TMPro_TMP_Text__SetText (TMPro_TMP_Text_o* __this, System_String_o* sourceText, float arg0, float arg1, const MethodInfo*);
void TMPro_TMP_Text__SetText (TMPro_TMP_Text_o* __this, System_String_o* sourceText, float arg0, float arg1, float arg2, const MethodInfo*);
void TMPro_TMP_Text__SetText (TMPro_TMP_Text_o* __this, System_String_o* sourceText, float arg0, float arg1, float arg2, float arg3, const MethodInfo*);
void TMPro_TMP_Text__SetText (TMPro_TMP_Text_o* __this, System_String_o* sourceText, float arg0, float arg1, float arg2, float arg3, float arg4, const MethodInfo*);
void TMPro_TMP_Text__SetText (TMPro_TMP_Text_o* __this, System_String_o* sourceText, float arg0, float arg1, float arg2, float arg3, float arg4, float arg5, const MethodInfo*);
void TMPro_TMP_Text__SetText (TMPro_TMP_Text_o* __this, System_String_o* sourceText, float arg0, float arg1, float arg2, float arg3, float arg4, float arg5, float arg6, const MethodInfo*);
void TMPro_TMP_Text__SetText (TMPro_TMP_Text_o* __this, System_String_o* sourceText, float arg0, float arg1, float arg2, float arg3, float arg4, float arg5, float arg6, float arg7, const MethodInfo*);
void TMPro_TMP_Text__SetText (TMPro_TMP_Text_o* __this, System_Text_StringBuilder_o* sourceText, const MethodInfo*);
void TMPro_TMP_Text__SetText (TMPro_TMP_Text_o* __this, System_Text_StringBuilder_o* sourceText, int32_t start, int32_t length, const MethodInfo*);
void TMPro_TMP_Text__SetText (TMPro_TMP_Text_o* __this, System_Char_array* sourceText, const MethodInfo*);
void TMPro_TMP_Text__SetText (TMPro_TMP_Text_o* __this, System_Char_array* sourceText, int32_t start, int32_t length, const MethodInfo*);
void TMPro_TMP_Text__SetCharArray (TMPro_TMP_Text_o* __this, System_Char_array* sourceText, const MethodInfo*);
void TMPro_TMP_Text__SetCharArray (TMPro_TMP_Text_o* __this, System_Char_array* sourceText, int32_t start, int32_t length, const MethodInfo*);
TMPro_TMP_Style_o* TMPro_TMP_Text__GetStyle (TMPro_TMP_Text_o* __this, int32_t hashCode, const MethodInfo*);
bool TMPro_TMP_Text__ReplaceOpeningStyleTag (TMPro_TMP_Text_o* __this, TMPro_TMP_Text_TextBackingContainer_o* sourceText, int32_t srcIndex, int32_t* srcOffset, TMPro_TMP_Text_UnicodeChar_array** charBuffer, int32_t* writeIndex, const MethodInfo*);
bool TMPro_TMP_Text__ReplaceOpeningStyleTag (TMPro_TMP_Text_o* __this, System_Int32_array** sourceText, int32_t srcIndex, int32_t* srcOffset, TMPro_TMP_Text_UnicodeChar_array** charBuffer, int32_t* writeIndex, const MethodInfo*);
void TMPro_TMP_Text__ReplaceClosingStyleTag (TMPro_TMP_Text_o* __this, TMPro_TMP_Text_TextBackingContainer_o* sourceText, int32_t srcIndex, TMPro_TMP_Text_UnicodeChar_array** charBuffer, int32_t* writeIndex, const MethodInfo*);
void TMPro_TMP_Text__ReplaceClosingStyleTag (TMPro_TMP_Text_o* __this, System_Int32_array** sourceText, int32_t srcIndex, TMPro_TMP_Text_UnicodeChar_array** charBuffer, int32_t* writeIndex, const MethodInfo*);
bool TMPro_TMP_Text__InsertOpeningStyleTag (TMPro_TMP_Text_o* __this, TMPro_TMP_Style_o* style, int32_t srcIndex, TMPro_TMP_Text_UnicodeChar_array** charBuffer, int32_t* writeIndex, const MethodInfo*);
void TMPro_TMP_Text__InsertClosingStyleTag (TMPro_TMP_Text_o* __this, TMPro_TMP_Text_UnicodeChar_array** charBuffer, int32_t* writeIndex, const MethodInfo*);
int32_t TMPro_TMP_Text__GetMarkupTagHashCode (TMPro_TMP_Text_o* __this, System_Int32_array* tagDefinition, int32_t readIndex, const MethodInfo*);
int32_t TMPro_TMP_Text__GetMarkupTagHashCode (TMPro_TMP_Text_o* __this, TMPro_TMP_Text_TextBackingContainer_o tagDefinition, int32_t readIndex, const MethodInfo*);
int32_t TMPro_TMP_Text__GetStyleHashCode (TMPro_TMP_Text_o* __this, System_Int32_array** text, int32_t index, int32_t* closeIndex, const MethodInfo*);
int32_t TMPro_TMP_Text__GetStyleHashCode (TMPro_TMP_Text_o* __this, TMPro_TMP_Text_TextBackingContainer_o* text, int32_t index, int32_t* closeIndex, const MethodInfo*);
void TMPro_TMP_Text__ResizeInternalArray_object_ (TMPro_TMP_Text_o* __this, System_Object_array** array, const MethodInfo_1D61C90* method_1D61C90);
void TMPro_TMP_Text__ResizeInternalArray_TMP_Text_UnicodeChar_ (TMPro_TMP_Text_o* __this, TMPro_TMP_Text_UnicodeChar_array** array, const MethodInfo_1D61DC0* method_1D61DC0);
void TMPro_TMP_Text__ResizeInternalArray_object_ (TMPro_TMP_Text_o* __this, System_Object_array** array, int32_t size, const MethodInfo_1D61D30* method_1D61D30);
void TMPro_TMP_Text__ResizeInternalArray_TMP_Text_UnicodeChar_ (TMPro_TMP_Text_o* __this, TMPro_TMP_Text_UnicodeChar_array** array, int32_t size, const MethodInfo_1D61E60* method_1D61E60);
void TMPro_TMP_Text__AddFloatToInternalTextBackingArray (TMPro_TMP_Text_o* __this, float value, int32_t padding, int32_t precision, int32_t* writeIndex, const MethodInfo*);
void TMPro_TMP_Text__AddIntegerToInternalTextBackingArray (TMPro_TMP_Text_o* __this, double number, int32_t padding, int32_t* writeIndex, const MethodInfo*);
System_String_o* TMPro_TMP_Text__InternalTextBackingArrayToString (TMPro_TMP_Text_o* __this, const MethodInfo*);
int32_t TMPro_TMP_Text__SetArraySizes (TMPro_TMP_Text_o* __this, TMPro_TMP_Text_UnicodeChar_array* unicodeChars, const MethodInfo*);
UnityEngine_Vector2_o TMPro_TMP_Text__GetPreferredValues (TMPro_TMP_Text_o* __this, const MethodInfo*);
UnityEngine_Vector2_o TMPro_TMP_Text__GetPreferredValues (TMPro_TMP_Text_o* __this, float width, float height, const MethodInfo*);
UnityEngine_Vector2_o TMPro_TMP_Text__GetPreferredValues (TMPro_TMP_Text_o* __this, System_String_o* text, const MethodInfo*);
UnityEngine_Vector2_o TMPro_TMP_Text__GetPreferredValues (TMPro_TMP_Text_o* __this, System_String_o* text, float width, float height, const MethodInfo*);
float TMPro_TMP_Text__GetPreferredWidth (TMPro_TMP_Text_o* __this, const MethodInfo*);
float TMPro_TMP_Text__GetPreferredWidth (TMPro_TMP_Text_o* __this, UnityEngine_Vector2_o margin, const MethodInfo*);
float TMPro_TMP_Text__GetPreferredHeight (TMPro_TMP_Text_o* __this, const MethodInfo*);
float TMPro_TMP_Text__GetPreferredHeight (TMPro_TMP_Text_o* __this, UnityEngine_Vector2_o margin, const MethodInfo*);
UnityEngine_Vector2_o TMPro_TMP_Text__GetRenderedValues (TMPro_TMP_Text_o* __this, const MethodInfo*);
UnityEngine_Vector2_o TMPro_TMP_Text__GetRenderedValues (TMPro_TMP_Text_o* __this, bool onlyVisibleCharacters, const MethodInfo*);
float TMPro_TMP_Text__GetRenderedWidth (TMPro_TMP_Text_o* __this, const MethodInfo*);
float TMPro_TMP_Text__GetRenderedWidth (TMPro_TMP_Text_o* __this, bool onlyVisibleCharacters, const MethodInfo*);
float TMPro_TMP_Text__GetRenderedHeight (TMPro_TMP_Text_o* __this, const MethodInfo*);
float TMPro_TMP_Text__GetRenderedHeight (TMPro_TMP_Text_o* __this, bool onlyVisibleCharacters, const MethodInfo*);
UnityEngine_Vector2_o TMPro_TMP_Text__CalculatePreferredValues (TMPro_TMP_Text_o* __this, float* fontSize, UnityEngine_Vector2_o marginSize, bool isTextAutoSizingEnabled, bool isWordWrappingEnabled, const MethodInfo*);
UnityEngine_Bounds_o TMPro_TMP_Text__GetCompoundBounds (TMPro_TMP_Text_o* __this, const MethodInfo*);
UnityEngine_Rect_o TMPro_TMP_Text__GetCanvasSpaceClippingRect (TMPro_TMP_Text_o* __this, const MethodInfo*);
UnityEngine_Bounds_o TMPro_TMP_Text__GetTextBounds (TMPro_TMP_Text_o* __this, const MethodInfo*);
UnityEngine_Bounds_o TMPro_TMP_Text__GetTextBounds (TMPro_TMP_Text_o* __this, bool onlyVisibleCharacters, const MethodInfo*);
void TMPro_TMP_Text__AdjustLineOffset (TMPro_TMP_Text_o* __this, int32_t startIndex, int32_t endIndex, float offset, const MethodInfo*);
void TMPro_TMP_Text__ResizeLineExtents (TMPro_TMP_Text_o* __this, int32_t size, const MethodInfo*);
TMPro_TMP_TextInfo_o* TMPro_TMP_Text__GetTextInfo (TMPro_TMP_Text_o* __this, System_String_o* text, const MethodInfo*);
void TMPro_TMP_Text__ComputeMarginSize (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__InsertNewLine (TMPro_TMP_Text_o* __this, int32_t i, float baseScale, float currentElementScale, float currentEmScale, float glyphAdjustment, float boldSpacingAdjustment, float characterSpacingAdjustment, float width, float lineGap, bool* isMaxVisibleDescenderSet, float* maxVisibleDescender, const MethodInfo*);
void TMPro_TMP_Text__SaveWordWrappingState (TMPro_TMP_Text_o* __this, TMPro_WordWrapState_o* state, int32_t index, int32_t count, const MethodInfo*);
int32_t TMPro_TMP_Text__RestoreWordWrappingState (TMPro_TMP_Text_o* __this, TMPro_WordWrapState_o* state, const MethodInfo*);
void TMPro_TMP_Text__SaveGlyphVertexInfo (TMPro_TMP_Text_o* __this, float padding, float style_padding, UnityEngine_Color32_o vertexColor, const MethodInfo*);
void TMPro_TMP_Text__SaveSpriteVertexInfo (TMPro_TMP_Text_o* __this, UnityEngine_Color32_o vertexColor, const MethodInfo*);
void TMPro_TMP_Text__FillCharacterVertexBuffers (TMPro_TMP_Text_o* __this, int32_t i, int32_t index_X4, const MethodInfo*);
void TMPro_TMP_Text__FillCharacterVertexBuffers (TMPro_TMP_Text_o* __this, int32_t i, int32_t index_X4, bool isVolumetric, const MethodInfo*);
void TMPro_TMP_Text__FillSpriteVertexBuffers (TMPro_TMP_Text_o* __this, int32_t i, int32_t index_X4, const MethodInfo*);
void TMPro_TMP_Text__DrawUnderlineMesh (TMPro_TMP_Text_o* __this, UnityEngine_Vector3_o start, UnityEngine_Vector3_o end, int32_t* index, float startScale, float endScale, float maxScale, float sdfScale, UnityEngine_Color32_o underlineColor, const MethodInfo*);
void TMPro_TMP_Text__DrawTextHighlight (TMPro_TMP_Text_o* __this, UnityEngine_Vector3_o start, UnityEngine_Vector3_o end, int32_t* index, UnityEngine_Color32_o highlightColor, const MethodInfo*);
void TMPro_TMP_Text__LoadDefaultSettings (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__GetSpecialCharacters (TMPro_TMP_Text_o* __this, TMPro_TMP_FontAsset_o* fontAsset, const MethodInfo*);
void TMPro_TMP_Text__GetEllipsisSpecialCharacter (TMPro_TMP_Text_o* __this, TMPro_TMP_FontAsset_o* fontAsset, const MethodInfo*);
void TMPro_TMP_Text__GetUnderlineSpecialCharacter (TMPro_TMP_Text_o* __this, TMPro_TMP_FontAsset_o* fontAsset, const MethodInfo*);
void TMPro_TMP_Text__ReplaceTagWithCharacter (TMPro_TMP_Text_o* __this, System_Int32_array* chars, int32_t insertionIndex, int32_t tagLength, uint16_t c, const MethodInfo*);
TMPro_TMP_FontAsset_o* TMPro_TMP_Text__GetFontAssetForWeight (TMPro_TMP_Text_o* __this, int32_t fontWeight, const MethodInfo*);
TMPro_TMP_TextElement_o* TMPro_TMP_Text__GetTextElement (TMPro_TMP_Text_o* __this, uint32_t unicode, TMPro_TMP_FontAsset_o* fontAsset, int32_t fontStyle, int32_t fontWeight, bool* isUsingAlternativeTypeface, const MethodInfo*);
void TMPro_TMP_Text__SetActiveSubMeshes (TMPro_TMP_Text_o* __this, bool state, const MethodInfo*);
void TMPro_TMP_Text__DestroySubMeshObjects (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__ClearMesh (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text__ClearMesh (TMPro_TMP_Text_o* __this, bool uploadGeometry, const MethodInfo*);
System_String_o* TMPro_TMP_Text__GetParsedText (TMPro_TMP_Text_o* __this, const MethodInfo*);
bool TMPro_TMP_Text__IsSelfOrLinkedAncestor (TMPro_TMP_Text_o* __this, TMPro_TMP_Text_o* targetTextComponent, const MethodInfo*);
void TMPro_TMP_Text__ReleaseLinkedTextComponent (TMPro_TMP_Text_o* __this, TMPro_TMP_Text_o* targetTextComponent, const MethodInfo*);
UnityEngine_Vector2_o TMPro_TMP_Text__PackUV (TMPro_TMP_Text_o* __this, float x, float y, float scale, const MethodInfo*);
float TMPro_TMP_Text__PackUV (TMPro_TMP_Text_o* __this, float x, float y, const MethodInfo*);
void TMPro_TMP_Text__InternalUpdate (TMPro_TMP_Text_o* __this, const MethodInfo*);
int32_t TMPro_TMP_Text__HexToInt (TMPro_TMP_Text_o* __this, uint16_t hex, const MethodInfo*);
int32_t TMPro_TMP_Text__GetUTF16 (TMPro_TMP_Text_o* __this, System_String_o* text, int32_t i, const MethodInfo*);
int32_t TMPro_TMP_Text__GetUTF16 (TMPro_TMP_Text_o* __this, System_Int32_array* text, int32_t i, const MethodInfo*);
int32_t TMPro_TMP_Text__GetUTF16 (TMPro_TMP_Text_o* __this, System_UInt32_array* text, int32_t i, const MethodInfo*);
int32_t TMPro_TMP_Text__GetUTF16 (TMPro_TMP_Text_o* __this, System_Text_StringBuilder_o* text, int32_t i, const MethodInfo*);
int32_t TMPro_TMP_Text__GetUTF16 (TMPro_TMP_Text_o* __this, TMPro_TMP_Text_TextBackingContainer_o text, int32_t i, const MethodInfo*);
int32_t TMPro_TMP_Text__GetUTF32 (TMPro_TMP_Text_o* __this, System_String_o* text, int32_t i, const MethodInfo*);
int32_t TMPro_TMP_Text__GetUTF32 (TMPro_TMP_Text_o* __this, System_Int32_array* text, int32_t i, const MethodInfo*);
int32_t TMPro_TMP_Text__GetUTF32 (TMPro_TMP_Text_o* __this, System_UInt32_array* text, int32_t i, const MethodInfo*);
int32_t TMPro_TMP_Text__GetUTF32 (TMPro_TMP_Text_o* __this, System_Text_StringBuilder_o* text, int32_t i, const MethodInfo*);
int32_t TMPro_TMP_Text__GetUTF32 (TMPro_TMP_Text_o* __this, TMPro_TMP_Text_TextBackingContainer_o text, int32_t i, const MethodInfo*);
UnityEngine_Color32_o TMPro_TMP_Text__HexCharsToColor (TMPro_TMP_Text_o* __this, System_Char_array* hexChars, int32_t tagCount, const MethodInfo*);
UnityEngine_Color32_o TMPro_TMP_Text__HexCharsToColor (TMPro_TMP_Text_o* __this, System_Char_array* hexChars, int32_t startIndex, int32_t length, const MethodInfo*);
int32_t TMPro_TMP_Text__GetAttributeParameters (TMPro_TMP_Text_o* __this, System_Char_array* chars, int32_t startIndex, int32_t length, System_Single_array** parameters, const MethodInfo*);
float TMPro_TMP_Text__ConvertToFloat (TMPro_TMP_Text_o* __this, System_Char_array* chars, int32_t startIndex, int32_t length, const MethodInfo*);
float TMPro_TMP_Text__ConvertToFloat (TMPro_TMP_Text_o* __this, System_Char_array* chars, int32_t startIndex, int32_t length, int32_t* lastIndex, const MethodInfo*);
bool TMPro_TMP_Text__ValidateHtmlTag (TMPro_TMP_Text_o* __this, TMPro_TMP_Text_UnicodeChar_array* chars, int32_t startIndex, int32_t* endIndex, const MethodInfo*);
void TMPro_TMP_Text___ctor (TMPro_TMP_Text_o* __this, const MethodInfo*);
void TMPro_TMP_Text___cctor (const MethodInfo*);
void TMPro_TMP_Text_CharacterSubstitution___ctor (TMPro_TMP_Text_CharacterSubstitution_o __this, int32_t index, uint32_t unicode, const MethodInfo*);
void TMPro_TMP_Text_SpecialCharacter___ctor (TMPro_TMP_Text_SpecialCharacter_o __this, TMPro_TMP_Character_o* character, int32_t materialIndex, const MethodInfo*);
int32_t TMPro_TMP_Text_TextBackingContainer__get_Capacity (TMPro_TMP_Text_TextBackingContainer_o __this, const MethodInfo*);
int32_t TMPro_TMP_Text_TextBackingContainer__get_Count (TMPro_TMP_Text_TextBackingContainer_o __this, const MethodInfo*);
void TMPro_TMP_Text_TextBackingContainer__set_Count (TMPro_TMP_Text_TextBackingContainer_o __this, int32_t value, const MethodInfo*);
uint32_t TMPro_TMP_Text_TextBackingContainer__get_Item (TMPro_TMP_Text_TextBackingContainer_o __this, int32_t index, const MethodInfo*);
void TMPro_TMP_Text_TextBackingContainer__set_Item (TMPro_TMP_Text_TextBackingContainer_o __this, int32_t index, uint32_t value, const MethodInfo*);
void TMPro_TMP_Text_TextBackingContainer___ctor (TMPro_TMP_Text_TextBackingContainer_o __this, int32_t size, const MethodInfo*);
void TMPro_TMP_Text_TextBackingContainer__Resize (TMPro_TMP_Text_TextBackingContainer_o __this, int32_t size, const MethodInfo*);
void TMPro_TMP_Text___c___cctor (const MethodInfo*);
void TMPro_TMP_Text___c___ctor (TMPro_TMP_Text___c_o* __this, const MethodInfo*);
void TMPro_TMP_Text___c____ctor_b__623_0 (TMPro_TMP_Text___c_o* __this, TMPro_TMP_TextInfo_o* _p0_, const MethodInfo*);
uint8_t TMPro_TMP_TextElement__get_elementType (TMPro_TMP_TextElement_o* __this, const MethodInfo*);
uint32_t TMPro_TMP_TextElement__get_unicode (TMPro_TMP_TextElement_o* __this, const MethodInfo*);
void TMPro_TMP_TextElement__set_unicode (TMPro_TMP_TextElement_o* __this, uint32_t value, const MethodInfo*);
TMPro_TMP_Asset_o* TMPro_TMP_TextElement__get_textAsset (TMPro_TMP_TextElement_o* __this, const MethodInfo*);
void TMPro_TMP_TextElement__set_textAsset (TMPro_TMP_TextElement_o* __this, TMPro_TMP_Asset_o* value, const MethodInfo*);
UnityEngine_TextCore_Glyph_o* TMPro_TMP_TextElement__get_glyph (TMPro_TMP_TextElement_o* __this, const MethodInfo*);
void TMPro_TMP_TextElement__set_glyph (TMPro_TMP_TextElement_o* __this, UnityEngine_TextCore_Glyph_o* value, const MethodInfo*);
uint32_t TMPro_TMP_TextElement__get_glyphIndex (TMPro_TMP_TextElement_o* __this, const MethodInfo*);
void TMPro_TMP_TextElement__set_glyphIndex (TMPro_TMP_TextElement_o* __this, uint32_t value, const MethodInfo*);
float TMPro_TMP_TextElement__get_scale (TMPro_TMP_TextElement_o* __this, const MethodInfo*);
void TMPro_TMP_TextElement__set_scale (TMPro_TMP_TextElement_o* __this, float value, const MethodInfo*);
void TMPro_TMP_TextElement___ctor (TMPro_TMP_TextElement_o* __this, const MethodInfo*);
void TMPro_TMP_TextElement_Legacy___ctor (TMPro_TMP_TextElement_Legacy_o* __this, const MethodInfo*);
void TMPro_TMP_TextInfo___ctor (TMPro_TMP_TextInfo_o* __this, const MethodInfo*);
void TMPro_TMP_TextInfo___ctor (TMPro_TMP_TextInfo_o* __this, int32_t characterCount, const MethodInfo*);
void TMPro_TMP_TextInfo___ctor (TMPro_TMP_TextInfo_o* __this, TMPro_TMP_Text_o* textComponent, const MethodInfo*);
void TMPro_TMP_TextInfo__Clear (TMPro_TMP_TextInfo_o* __this, const MethodInfo*);
void TMPro_TMP_TextInfo__ClearAllData (TMPro_TMP_TextInfo_o* __this, const MethodInfo*);
void TMPro_TMP_TextInfo__ClearMeshInfo (TMPro_TMP_TextInfo_o* __this, bool updateMesh, const MethodInfo*);
void TMPro_TMP_TextInfo__ClearAllMeshInfo (TMPro_TMP_TextInfo_o* __this, const MethodInfo*);
void TMPro_TMP_TextInfo__ResetVertexLayout (TMPro_TMP_TextInfo_o* __this, bool isVolumetric, const MethodInfo*);
void TMPro_TMP_TextInfo__ClearUnusedVertices (TMPro_TMP_TextInfo_o* __this, TMPro_MaterialReference_array* materials, const MethodInfo*);
void TMPro_TMP_TextInfo__ClearLineInfo (TMPro_TMP_TextInfo_o* __this, const MethodInfo*);
void TMPro_TMP_TextInfo__ClearPageInfo (TMPro_TMP_TextInfo_o* __this, const MethodInfo*);
TMPro_TMP_MeshInfo_array* TMPro_TMP_TextInfo__CopyMeshInfoVertexData (TMPro_TMP_TextInfo_o* __this, const MethodInfo*);
void TMPro_TMP_TextInfo__Resize_object_ (System_Object_array** array, int32_t size, const MethodInfo_1D61EF0* method_1D61EF0);
void TMPro_TMP_TextInfo__Resize_TMP_LinkInfo_ (TMPro_TMP_LinkInfo_array** array, int32_t size, const MethodInfo_1D62190* method_1D62190);
void TMPro_TMP_TextInfo__Resize_TMP_SubMesh_ (TMPro_TMP_SubMesh_array** array, int32_t size, const MethodInfo_1D61EF0* method_1D61EF0);
void TMPro_TMP_TextInfo__Resize_TMP_SubMeshUI_ (TMPro_TMP_SubMeshUI_array** array, int32_t size, const MethodInfo_1D61EF0* method_1D61EF0);
void TMPro_TMP_TextInfo__Resize_TMP_WordInfo_ (TMPro_TMP_WordInfo_array** array, int32_t size, const MethodInfo_1D62430* method_1D62430);
void TMPro_TMP_TextInfo__Resize_object_ (System_Object_array** array, int32_t size, bool isBlockAllocated, const MethodInfo_1D61F90* method_1D61F90);
void TMPro_TMP_TextInfo__Resize_TMP_CharacterInfo_ (TMPro_TMP_CharacterInfo_array** array, int32_t size, bool isBlockAllocated, const MethodInfo_1D62090* method_1D62090);
void TMPro_TMP_TextInfo__Resize_TMP_MeshInfo_ (TMPro_TMP_MeshInfo_array** array, int32_t size, bool isBlockAllocated, const MethodInfo_1D62230* method_1D62230);
void TMPro_TMP_TextInfo__Resize_TMP_PageInfo_ (TMPro_TMP_PageInfo_array** array, int32_t size, bool isBlockAllocated, const MethodInfo_1D62330* method_1D62330);
void TMPro_TMP_TextInfo__Resize_Material_ (UnityEngine_Material_array** array, int32_t size, bool isBlockAllocated, const MethodInfo_1D61F90* method_1D61F90);
void TMPro_TMP_TextInfo___cctor (const MethodInfo*);
void TMPro_TMP_TextParsingUtilities___cctor (const MethodInfo*);
TMPro_TMP_TextParsingUtilities_o* TMPro_TMP_TextParsingUtilities__get_instance (const MethodInfo*);
int32_t TMPro_TMP_TextParsingUtilities__GetHashCode (System_String_o* s, const MethodInfo*);
int32_t TMPro_TMP_TextParsingUtilities__GetHashCodeCaseSensitive (System_String_o* s, const MethodInfo*);
uint16_t TMPro_TMP_TextParsingUtilities__ToLowerASCIIFast (uint16_t c, const MethodInfo*);
uint16_t TMPro_TMP_TextParsingUtilities__ToUpperASCIIFast (uint16_t c, const MethodInfo*);
uint32_t TMPro_TMP_TextParsingUtilities__ToUpperASCIIFast (uint32_t c, const MethodInfo*);
uint32_t TMPro_TMP_TextParsingUtilities__ToLowerASCIIFast (uint32_t c, const MethodInfo*);
bool TMPro_TMP_TextParsingUtilities__IsHighSurrogate (uint32_t c, const MethodInfo*);
bool TMPro_TMP_TextParsingUtilities__IsLowSurrogate (uint32_t c, const MethodInfo*);
uint32_t TMPro_TMP_TextParsingUtilities__ConvertToUTF32 (uint32_t highSurrogate, uint32_t lowSurrogate, const MethodInfo*);
void TMPro_TMP_TextParsingUtilities___ctor (TMPro_TMP_TextParsingUtilities_o* __this, const MethodInfo*);
void TMPro_TMP_FontStyleStack__Clear (TMPro_TMP_FontStyleStack_o __this, const MethodInfo*);
uint8_t TMPro_TMP_FontStyleStack__Add (TMPro_TMP_FontStyleStack_o __this, int32_t style, const MethodInfo*);
uint8_t TMPro_TMP_FontStyleStack__Remove (TMPro_TMP_FontStyleStack_o __this, int32_t style, const MethodInfo*);
void TMPro_TMP_TextProcessingStack_int____ctor (TMPro_TMP_TextProcessingStack_int__o __this, System_Int32_array* stack, const MethodInfo_26D0DE0* method_26D0DE0);
void TMPro_TMP_TextProcessingStack_Int32Enum____ctor (TMPro_TMP_TextProcessingStack_Int32Enum__o __this, System_Int32Enum_array* stack, const MethodInfo_26D14A0* method_26D14A0);
void TMPro_TMP_TextProcessingStack_object____ctor (TMPro_TMP_TextProcessingStack_object__o __this, System_Object_array* stack, const MethodInfo_26D1B60* method_26D1B60);
void TMPro_TMP_TextProcessingStack_float____ctor (TMPro_TMP_TextProcessingStack_float__o __this, System_Single_array* stack, const MethodInfo_26D2250* method_26D2250);
void TMPro_TMP_TextProcessingStack_HighlightState____ctor (TMPro_TMP_TextProcessingStack_HighlightState__o __this, TMPro_HighlightState_array* stack, const MethodInfo_26D2910* method_26D2910);
void TMPro_TMP_TextProcessingStack_HorizontalAlignmentOptions____ctor (TMPro_TMP_TextProcessingStack_HorizontalAlignmentOptions__o __this, TMPro_HorizontalAlignmentOptions_array* stack, const MethodInfo_26D14A0* method_26D14A0);
void TMPro_TMP_TextProcessingStack_MaterialReference____ctor (TMPro_TMP_TextProcessingStack_MaterialReference__o __this, TMPro_MaterialReference_array* stack, const MethodInfo_26D3150* method_26D3150);
void TMPro_TMP_TextProcessingStack_TMP_ColorGradient____ctor (TMPro_TMP_TextProcessingStack_TMP_ColorGradient__o __this, TMPro_TMP_ColorGradient_array* stack, const MethodInfo_26D1B60* method_26D1B60);
void TMPro_TMP_TextProcessingStack_WordWrapState____ctor (TMPro_TMP_TextProcessingStack_WordWrapState__o __this, TMPro_WordWrapState_array* stack, const MethodInfo_26D3B60* method_26D3B60);
void TMPro_TMP_TextProcessingStack_Color32____ctor (TMPro_TMP_TextProcessingStack_Color32__o __this, UnityEngine_Color32_array* stack, const MethodInfo_26D4480* method_26D4480);
void TMPro_TMP_TextProcessingStack_int____ctor (TMPro_TMP_TextProcessingStack_int__o __this, int32_t capacity, const MethodInfo_26D0E20* method_26D0E20);
void TMPro_TMP_TextProcessingStack_Int32Enum____ctor (TMPro_TMP_TextProcessingStack_Int32Enum__o __this, int32_t capacity, const MethodInfo_26D14E0* method_26D14E0);
void TMPro_TMP_TextProcessingStack_object____ctor (TMPro_TMP_TextProcessingStack_object__o __this, int32_t capacity, const MethodInfo_26D1BA0* method_26D1BA0);
void TMPro_TMP_TextProcessingStack_float____ctor (TMPro_TMP_TextProcessingStack_float__o __this, int32_t capacity, const MethodInfo_26D2290* method_26D2290);
void TMPro_TMP_TextProcessingStack_FontWeight____ctor (TMPro_TMP_TextProcessingStack_FontWeight__o __this, int32_t capacity, const MethodInfo_26D14E0* method_26D14E0);
void TMPro_TMP_TextProcessingStack_HighlightState____ctor (TMPro_TMP_TextProcessingStack_HighlightState__o __this, int32_t capacity, const MethodInfo_26D2950* method_26D2950);
void TMPro_TMP_TextProcessingStack_MaterialReference____ctor (TMPro_TMP_TextProcessingStack_MaterialReference__o __this, int32_t capacity, const MethodInfo_26D31A0* method_26D31A0);
void TMPro_TMP_TextProcessingStack_WordWrapState____ctor (TMPro_TMP_TextProcessingStack_WordWrapState__o __this, int32_t capacity, const MethodInfo_26D3BB0* method_26D3BB0);
void TMPro_TMP_TextProcessingStack_Color32____ctor (TMPro_TMP_TextProcessingStack_Color32__o __this, int32_t capacity, const MethodInfo_26D44C0* method_26D44C0);
void TMPro_TMP_TextProcessingStack_int____ctor (TMPro_TMP_TextProcessingStack_int__o __this, int32_t capacity, int32_t rolloverSize, const MethodInfo_26D0EA0* method_26D0EA0);
void TMPro_TMP_TextProcessingStack_Int32Enum____ctor (TMPro_TMP_TextProcessingStack_Int32Enum__o __this, int32_t capacity, int32_t rolloverSize, const MethodInfo_26D1560* method_26D1560);
void TMPro_TMP_TextProcessingStack_object____ctor (TMPro_TMP_TextProcessingStack_object__o __this, int32_t capacity, int32_t rolloverSize, const MethodInfo_26D1C20* method_26D1C20);
void TMPro_TMP_TextProcessingStack_float____ctor (TMPro_TMP_TextProcessingStack_float__o __this, int32_t capacity, int32_t rolloverSize, const MethodInfo_26D2310* method_26D2310);
void TMPro_TMP_TextProcessingStack_HighlightState____ctor (TMPro_TMP_TextProcessingStack_HighlightState__o __this, int32_t capacity, int32_t rolloverSize, const MethodInfo_26D29D0* method_26D29D0);
void TMPro_TMP_TextProcessingStack_MaterialReference____ctor (TMPro_TMP_TextProcessingStack_MaterialReference__o __this, int32_t capacity, int32_t rolloverSize, const MethodInfo_26D3230* method_26D3230);
void TMPro_TMP_TextProcessingStack_WordWrapState____ctor (TMPro_TMP_TextProcessingStack_WordWrapState__o __this, int32_t capacity, int32_t rolloverSize, const MethodInfo_26D3C40* method_26D3C40);
void TMPro_TMP_TextProcessingStack_Color32____ctor (TMPro_TMP_TextProcessingStack_Color32__o __this, int32_t capacity, int32_t rolloverSize, const MethodInfo_26D4540* method_26D4540);
int32_t TMPro_TMP_TextProcessingStack_int___get_Count (TMPro_TMP_TextProcessingStack_int__o __this, const MethodInfo_26D0F20* method_26D0F20);
int32_t TMPro_TMP_TextProcessingStack_Int32Enum___get_Count (TMPro_TMP_TextProcessingStack_Int32Enum__o __this, const MethodInfo_26D15E0* method_26D15E0);
int32_t TMPro_TMP_TextProcessingStack_object___get_Count (TMPro_TMP_TextProcessingStack_object__o __this, const MethodInfo_26D1CB0* method_26D1CB0);
int32_t TMPro_TMP_TextProcessingStack_float___get_Count (TMPro_TMP_TextProcessingStack_float__o __this, const MethodInfo_26D2390* method_26D2390);
int32_t TMPro_TMP_TextProcessingStack_HighlightState___get_Count (TMPro_TMP_TextProcessingStack_HighlightState__o __this, const MethodInfo_26D2A60* method_26D2A60);
int32_t TMPro_TMP_TextProcessingStack_MaterialReference___get_Count (TMPro_TMP_TextProcessingStack_MaterialReference__o __this, const MethodInfo_26D32C0* method_26D32C0);
int32_t TMPro_TMP_TextProcessingStack_WordWrapState___get_Count (TMPro_TMP_TextProcessingStack_WordWrapState__o __this, const MethodInfo_26D3CE0* method_26D3CE0);
int32_t TMPro_TMP_TextProcessingStack_Color32___get_Count (TMPro_TMP_TextProcessingStack_Color32__o __this, const MethodInfo_26D45C0* method_26D45C0);
int32_t TMPro_TMP_TextProcessingStack_int___get_current (TMPro_TMP_TextProcessingStack_int__o __this, const MethodInfo_26D0F30* method_26D0F30);
int32_t TMPro_TMP_TextProcessingStack_Int32Enum___get_current (TMPro_TMP_TextProcessingStack_Int32Enum__o __this, const MethodInfo_26D15F0* method_26D15F0);
Il2CppObject* TMPro_TMP_TextProcessingStack_object___get_current (TMPro_TMP_TextProcessingStack_object__o __this, const MethodInfo_26D1CC0* method_26D1CC0);
float TMPro_TMP_TextProcessingStack_float___get_current (TMPro_TMP_TextProcessingStack_float__o __this, const MethodInfo_26D23A0* method_26D23A0);
TMPro_HighlightState_o TMPro_TMP_TextProcessingStack_HighlightState___get_current (TMPro_TMP_TextProcessingStack_HighlightState__o __this, const MethodInfo_26D2A70* method_26D2A70);
TMPro_MaterialReference_o TMPro_TMP_TextProcessingStack_MaterialReference___get_current (TMPro_TMP_TextProcessingStack_MaterialReference__o __this, const MethodInfo_26D32D0* method_26D32D0);
TMPro_WordWrapState_o TMPro_TMP_TextProcessingStack_WordWrapState___get_current (TMPro_TMP_TextProcessingStack_WordWrapState__o __this, const MethodInfo_26D3CF0* method_26D3CF0);
UnityEngine_Color32_o TMPro_TMP_TextProcessingStack_Color32___get_current (TMPro_TMP_TextProcessingStack_Color32__o __this, const MethodInfo_26D45D0* method_26D45D0);
int32_t TMPro_TMP_TextProcessingStack_int___get_rolloverSize (TMPro_TMP_TextProcessingStack_int__o __this, const MethodInfo_26D0F90* method_26D0F90);
int32_t TMPro_TMP_TextProcessingStack_Int32Enum___get_rolloverSize (TMPro_TMP_TextProcessingStack_Int32Enum__o __this, const MethodInfo_26D1650* method_26D1650);
int32_t TMPro_TMP_TextProcessingStack_object___get_rolloverSize (TMPro_TMP_TextProcessingStack_object__o __this, const MethodInfo_26D1D20* method_26D1D20);
int32_t TMPro_TMP_TextProcessingStack_float___get_rolloverSize (TMPro_TMP_TextProcessingStack_float__o __this, const MethodInfo_26D2400* method_26D2400);
int32_t TMPro_TMP_TextProcessingStack_HighlightState___get_rolloverSize (TMPro_TMP_TextProcessingStack_HighlightState__o __this, const MethodInfo_26D2AD0* method_26D2AD0);
int32_t TMPro_TMP_TextProcessingStack_MaterialReference___get_rolloverSize (TMPro_TMP_TextProcessingStack_MaterialReference__o __this, const MethodInfo_26D3340* method_26D3340);
int32_t TMPro_TMP_TextProcessingStack_WordWrapState___get_rolloverSize (TMPro_TMP_TextProcessingStack_WordWrapState__o __this, const MethodInfo_26D3D50* method_26D3D50);
int32_t TMPro_TMP_TextProcessingStack_Color32___get_rolloverSize (TMPro_TMP_TextProcessingStack_Color32__o __this, const MethodInfo_26D4630* method_26D4630);
void TMPro_TMP_TextProcessingStack_int___set_rolloverSize (TMPro_TMP_TextProcessingStack_int__o __this, int32_t value, const MethodInfo_26D0FA0* method_26D0FA0);
void TMPro_TMP_TextProcessingStack_Int32Enum___set_rolloverSize (TMPro_TMP_TextProcessingStack_Int32Enum__o __this, int32_t value, const MethodInfo_26D1660* method_26D1660);
void TMPro_TMP_TextProcessingStack_object___set_rolloverSize (TMPro_TMP_TextProcessingStack_object__o __this, int32_t value, const MethodInfo_26D1D30* method_26D1D30);
void TMPro_TMP_TextProcessingStack_float___set_rolloverSize (TMPro_TMP_TextProcessingStack_float__o __this, int32_t value, const MethodInfo_26D2410* method_26D2410);
void TMPro_TMP_TextProcessingStack_HighlightState___set_rolloverSize (TMPro_TMP_TextProcessingStack_HighlightState__o __this, int32_t value, const MethodInfo_26D2AE0* method_26D2AE0);
void TMPro_TMP_TextProcessingStack_MaterialReference___set_rolloverSize (TMPro_TMP_TextProcessingStack_MaterialReference__o __this, int32_t value, const MethodInfo_26D3350* method_26D3350);
void TMPro_TMP_TextProcessingStack_WordWrapState___set_rolloverSize (TMPro_TMP_TextProcessingStack_WordWrapState__o __this, int32_t value, const MethodInfo_26D3D60* method_26D3D60);
void TMPro_TMP_TextProcessingStack_Color32___set_rolloverSize (TMPro_TMP_TextProcessingStack_Color32__o __this, int32_t value, const MethodInfo_26D4640* method_26D4640);
void TMPro_TMP_TextProcessingStack_int___SetDefault (TMPro_TMP_TextProcessingStack_T__array* stack, int32_t item, const MethodInfo_26D0FB0* method_26D0FB0);
void TMPro_TMP_TextProcessingStack_Int32Enum___SetDefault (TMPro_TMP_TextProcessingStack_T__array* stack, int32_t item, const MethodInfo_26D1670* method_26D1670);
void TMPro_TMP_TextProcessingStack_object___SetDefault (TMPro_TMP_TextProcessingStack_T__array* stack, Il2CppObject* item, const MethodInfo_26D1D40* method_26D1D40);
void TMPro_TMP_TextProcessingStack_float___SetDefault (TMPro_TMP_TextProcessingStack_T__array* stack, float item, const MethodInfo_26D2420* method_26D2420);
void TMPro_TMP_TextProcessingStack_HighlightState___SetDefault (TMPro_TMP_TextProcessingStack_T__array* stack, TMPro_HighlightState_o item, const MethodInfo_26D2AF0* method_26D2AF0);
void TMPro_TMP_TextProcessingStack_MaterialReference___SetDefault (TMPro_TMP_TextProcessingStack_T__array* stack, TMPro_MaterialReference_o item, const MethodInfo_26D3360* method_26D3360);
void TMPro_TMP_TextProcessingStack_WordWrapState___SetDefault (TMPro_TMP_TextProcessingStack_T__array* stack, TMPro_WordWrapState_o item, const MethodInfo_26D3D70* method_26D3D70);
void TMPro_TMP_TextProcessingStack_Color32___SetDefault (TMPro_TMP_TextProcessingStack_T__array* stack, UnityEngine_Color32_o item, const MethodInfo_26D4650* method_26D4650);
void TMPro_TMP_TextProcessingStack_int___Clear (TMPro_TMP_TextProcessingStack_int__o __this, const MethodInfo_26D1060* method_26D1060);
void TMPro_TMP_TextProcessingStack_Int32Enum___Clear (TMPro_TMP_TextProcessingStack_Int32Enum__o __this, const MethodInfo_26D1720* method_26D1720);
void TMPro_TMP_TextProcessingStack_object___Clear (TMPro_TMP_TextProcessingStack_object__o __this, const MethodInfo_26D1DF0* method_26D1DF0);
void TMPro_TMP_TextProcessingStack_float___Clear (TMPro_TMP_TextProcessingStack_float__o __this, const MethodInfo_26D24E0* method_26D24E0);
void TMPro_TMP_TextProcessingStack_HighlightState___Clear (TMPro_TMP_TextProcessingStack_HighlightState__o __this, const MethodInfo_26D2BD0* method_26D2BD0);
void TMPro_TMP_TextProcessingStack_MaterialReference___Clear (TMPro_TMP_TextProcessingStack_MaterialReference__o __this, const MethodInfo_26D3470* method_26D3470);
void TMPro_TMP_TextProcessingStack_WordWrapState___Clear (TMPro_TMP_TextProcessingStack_WordWrapState__o __this, const MethodInfo_26D3E60* method_26D3E60);
void TMPro_TMP_TextProcessingStack_Color32___Clear (TMPro_TMP_TextProcessingStack_Color32__o __this, const MethodInfo_26D4700* method_26D4700);
void TMPro_TMP_TextProcessingStack_int___SetDefault (TMPro_TMP_TextProcessingStack_int__o __this, int32_t item, const MethodInfo_26D1070* method_26D1070);
void TMPro_TMP_TextProcessingStack_Int32Enum___SetDefault (TMPro_TMP_TextProcessingStack_Int32Enum__o __this, int32_t item, const MethodInfo_26D1730* method_26D1730);
void TMPro_TMP_TextProcessingStack_object___SetDefault (TMPro_TMP_TextProcessingStack_object__o __this, Il2CppObject* item, const MethodInfo_26D1E00* method_26D1E00);
void TMPro_TMP_TextProcessingStack_float___SetDefault (TMPro_TMP_TextProcessingStack_float__o __this, float item, const MethodInfo_26D24F0* method_26D24F0);
void TMPro_TMP_TextProcessingStack_FontWeight___SetDefault (TMPro_TMP_TextProcessingStack_FontWeight__o __this, int32_t item, const MethodInfo_26D1730* method_26D1730);
void TMPro_TMP_TextProcessingStack_HighlightState___SetDefault (TMPro_TMP_TextProcessingStack_HighlightState__o __this, TMPro_HighlightState_o item, const MethodInfo_26D2BE0* method_26D2BE0);
void TMPro_TMP_TextProcessingStack_HorizontalAlignmentOptions___SetDefault (TMPro_TMP_TextProcessingStack_HorizontalAlignmentOptions__o __this, int32_t item, const MethodInfo_26D1730* method_26D1730);
void TMPro_TMP_TextProcessingStack_MaterialReference___SetDefault (TMPro_TMP_TextProcessingStack_MaterialReference__o __this, TMPro_MaterialReference_o item, const MethodInfo_26D3480* method_26D3480);
void TMPro_TMP_TextProcessingStack_TMP_ColorGradient___SetDefault (TMPro_TMP_TextProcessingStack_TMP_ColorGradient__o __this, TMPro_TMP_ColorGradient_o* item, const MethodInfo_26D1E00* method_26D1E00);
void TMPro_TMP_TextProcessingStack_WordWrapState___SetDefault (TMPro_TMP_TextProcessingStack_WordWrapState__o __this, TMPro_WordWrapState_o item, const MethodInfo_26D3E70* method_26D3E70);
void TMPro_TMP_TextProcessingStack_Color32___SetDefault (TMPro_TMP_TextProcessingStack_Color32__o __this, UnityEngine_Color32_o item, const MethodInfo_26D4710* method_26D4710);
void TMPro_TMP_TextProcessingStack_int___Add (TMPro_TMP_TextProcessingStack_int__o __this, int32_t item, const MethodInfo_26D1120* method_26D1120);
void TMPro_TMP_TextProcessingStack_Int32Enum___Add (TMPro_TMP_TextProcessingStack_Int32Enum__o __this, int32_t item, const MethodInfo_26D17E0* method_26D17E0);
void TMPro_TMP_TextProcessingStack_object___Add (TMPro_TMP_TextProcessingStack_object__o __this, Il2CppObject* item, const MethodInfo_26D1EB0* method_26D1EB0);
void TMPro_TMP_TextProcessingStack_float___Add (TMPro_TMP_TextProcessingStack_float__o __this, float item, const MethodInfo_26D25A0* method_26D25A0);
void TMPro_TMP_TextProcessingStack_FontWeight___Add (TMPro_TMP_TextProcessingStack_FontWeight__o __this, int32_t item, const MethodInfo_26D17E0* method_26D17E0);
void TMPro_TMP_TextProcessingStack_HighlightState___Add (TMPro_TMP_TextProcessingStack_HighlightState__o __this, TMPro_HighlightState_o item, const MethodInfo_26D2CC0* method_26D2CC0);
void TMPro_TMP_TextProcessingStack_HorizontalAlignmentOptions___Add (TMPro_TMP_TextProcessingStack_HorizontalAlignmentOptions__o __this, int32_t item, const MethodInfo_26D17E0* method_26D17E0);
void TMPro_TMP_TextProcessingStack_MaterialReference___Add (TMPro_TMP_TextProcessingStack_MaterialReference__o __this, TMPro_MaterialReference_o item, const MethodInfo_26D3590* method_26D3590);
void TMPro_TMP_TextProcessingStack_TMP_ColorGradient___Add (TMPro_TMP_TextProcessingStack_TMP_ColorGradient__o __this, TMPro_TMP_ColorGradient_o* item, const MethodInfo_26D1EB0* method_26D1EB0);
void TMPro_TMP_TextProcessingStack_WordWrapState___Add (TMPro_TMP_TextProcessingStack_WordWrapState__o __this, TMPro_WordWrapState_o item, const MethodInfo_26D3F60* method_26D3F60);
void TMPro_TMP_TextProcessingStack_Color32___Add (TMPro_TMP_TextProcessingStack_Color32__o __this, UnityEngine_Color32_o item, const MethodInfo_26D47C0* method_26D47C0);
int32_t TMPro_TMP_TextProcessingStack_int___Remove (TMPro_TMP_TextProcessingStack_int__o __this, const MethodInfo_26D1170* method_26D1170);
int32_t TMPro_TMP_TextProcessingStack_Int32Enum___Remove (TMPro_TMP_TextProcessingStack_Int32Enum__o __this, const MethodInfo_26D1830* method_26D1830);
Il2CppObject* TMPro_TMP_TextProcessingStack_object___Remove (TMPro_TMP_TextProcessingStack_object__o __this, const MethodInfo_26D1F10* method_26D1F10);
float TMPro_TMP_TextProcessingStack_float___Remove (TMPro_TMP_TextProcessingStack_float__o __this, const MethodInfo_26D25F0* method_26D25F0);
int32_t TMPro_TMP_TextProcessingStack_FontWeight___Remove (TMPro_TMP_TextProcessingStack_FontWeight__o __this, const MethodInfo_26D1830* method_26D1830);
TMPro_HighlightState_o TMPro_TMP_TextProcessingStack_HighlightState___Remove (TMPro_TMP_TextProcessingStack_HighlightState__o __this, const MethodInfo_26D2D40* method_26D2D40);
int32_t TMPro_TMP_TextProcessingStack_HorizontalAlignmentOptions___Remove (TMPro_TMP_TextProcessingStack_HorizontalAlignmentOptions__o __this, const MethodInfo_26D1830* method_26D1830);
TMPro_MaterialReference_o TMPro_TMP_TextProcessingStack_MaterialReference___Remove (TMPro_TMP_TextProcessingStack_MaterialReference__o __this, const MethodInfo_26D3640* method_26D3640);
TMPro_TMP_ColorGradient_o* TMPro_TMP_TextProcessingStack_TMP_ColorGradient___Remove (TMPro_TMP_TextProcessingStack_TMP_ColorGradient__o __this, const MethodInfo_26D1F10* method_26D1F10);
TMPro_WordWrapState_o TMPro_TMP_TextProcessingStack_WordWrapState___Remove (TMPro_TMP_TextProcessingStack_WordWrapState__o __this, const MethodInfo_26D4000* method_26D4000);
UnityEngine_Color32_o TMPro_TMP_TextProcessingStack_Color32___Remove (TMPro_TMP_TextProcessingStack_Color32__o __this, const MethodInfo_26D4810* method_26D4810);
void TMPro_TMP_TextProcessingStack_int___Push (TMPro_TMP_TextProcessingStack_int__o __this, int32_t item, const MethodInfo_26D11E0* method_26D11E0);
void TMPro_TMP_TextProcessingStack_Int32Enum___Push (TMPro_TMP_TextProcessingStack_Int32Enum__o __this, int32_t item, const MethodInfo_26D18A0* method_26D18A0);
void TMPro_TMP_TextProcessingStack_object___Push (TMPro_TMP_TextProcessingStack_object__o __this, Il2CppObject* item, const MethodInfo_26D1F80* method_26D1F80);
void TMPro_TMP_TextProcessingStack_float___Push (TMPro_TMP_TextProcessingStack_float__o __this, float item, const MethodInfo_26D2660* method_26D2660);
void TMPro_TMP_TextProcessingStack_HighlightState___Push (TMPro_TMP_TextProcessingStack_HighlightState__o __this, TMPro_HighlightState_o item, const MethodInfo_26D2DC0* method_26D2DC0);
void TMPro_TMP_TextProcessingStack_MaterialReference___Push (TMPro_TMP_TextProcessingStack_MaterialReference__o __this, TMPro_MaterialReference_o item, const MethodInfo_26D36D0* method_26D36D0);
void TMPro_TMP_TextProcessingStack_WordWrapState___Push (TMPro_TMP_TextProcessingStack_WordWrapState__o __this, TMPro_WordWrapState_o item, const MethodInfo_26D4080* method_26D4080);
void TMPro_TMP_TextProcessingStack_Color32___Push (TMPro_TMP_TextProcessingStack_Color32__o __this, UnityEngine_Color32_o item, const MethodInfo_26D4880* method_26D4880);
int32_t TMPro_TMP_TextProcessingStack_int___Pop (TMPro_TMP_TextProcessingStack_int__o __this, const MethodInfo_26D12F0* method_26D12F0);
int32_t TMPro_TMP_TextProcessingStack_Int32Enum___Pop (TMPro_TMP_TextProcessingStack_Int32Enum__o __this, const MethodInfo_26D19B0* method_26D19B0);
Il2CppObject* TMPro_TMP_TextProcessingStack_object___Pop (TMPro_TMP_TextProcessingStack_object__o __this, const MethodInfo_26D2090* method_26D2090);
float TMPro_TMP_TextProcessingStack_float___Pop (TMPro_TMP_TextProcessingStack_float__o __this, const MethodInfo_26D2770* method_26D2770);
TMPro_HighlightState_o TMPro_TMP_TextProcessingStack_HighlightState___Pop (TMPro_TMP_TextProcessingStack_HighlightState__o __this, const MethodInfo_26D2EF0* method_26D2EF0);
TMPro_MaterialReference_o TMPro_TMP_TextProcessingStack_MaterialReference___Pop (TMPro_TMP_TextProcessingStack_MaterialReference__o __this, const MethodInfo_26D3830* method_26D3830);
TMPro_WordWrapState_o TMPro_TMP_TextProcessingStack_WordWrapState___Pop (TMPro_TMP_TextProcessingStack_WordWrapState__o __this, const MethodInfo_26D41D0* method_26D41D0);
UnityEngine_Color32_o TMPro_TMP_TextProcessingStack_Color32___Pop (TMPro_TMP_TextProcessingStack_Color32__o __this, const MethodInfo_26D4990* method_26D4990);
int32_t TMPro_TMP_TextProcessingStack_int___Peek (TMPro_TMP_TextProcessingStack_int__o __this, const MethodInfo_26D1390* method_26D1390);
int32_t TMPro_TMP_TextProcessingStack_Int32Enum___Peek (TMPro_TMP_TextProcessingStack_Int32Enum__o __this, const MethodInfo_26D1A50* method_26D1A50);
Il2CppObject* TMPro_TMP_TextProcessingStack_object___Peek (TMPro_TMP_TextProcessingStack_object__o __this, const MethodInfo_26D2140* method_26D2140);
float TMPro_TMP_TextProcessingStack_float___Peek (TMPro_TMP_TextProcessingStack_float__o __this, const MethodInfo_26D2800* method_26D2800);
int32_t TMPro_TMP_TextProcessingStack_FontWeight___Peek (TMPro_TMP_TextProcessingStack_FontWeight__o __this, const MethodInfo_26D1A50* method_26D1A50);
TMPro_HighlightState_o TMPro_TMP_TextProcessingStack_HighlightState___Peek (TMPro_TMP_TextProcessingStack_HighlightState__o __this, const MethodInfo_26D3020* method_26D3020);
TMPro_MaterialReference_o TMPro_TMP_TextProcessingStack_MaterialReference___Peek (TMPro_TMP_TextProcessingStack_MaterialReference__o __this, const MethodInfo_26D39F0* method_26D39F0);
TMPro_WordWrapState_o TMPro_TMP_TextProcessingStack_WordWrapState___Peek (TMPro_TMP_TextProcessingStack_WordWrapState__o __this, const MethodInfo_26D4350* method_26D4350);
UnityEngine_Color32_o TMPro_TMP_TextProcessingStack_Color32___Peek (TMPro_TMP_TextProcessingStack_Color32__o __this, const MethodInfo_26D4A30* method_26D4A30);
int32_t TMPro_TMP_TextProcessingStack_int___CurrentItem (TMPro_TMP_TextProcessingStack_int__o __this, const MethodInfo_26D13E0* method_26D13E0);
int32_t TMPro_TMP_TextProcessingStack_Int32Enum___CurrentItem (TMPro_TMP_TextProcessingStack_Int32Enum__o __this, const MethodInfo_26D1AA0* method_26D1AA0);
Il2CppObject* TMPro_TMP_TextProcessingStack_object___CurrentItem (TMPro_TMP_TextProcessingStack_object__o __this, const MethodInfo_26D2190* method_26D2190);
float TMPro_TMP_TextProcessingStack_float___CurrentItem (TMPro_TMP_TextProcessingStack_float__o __this, const MethodInfo_26D2850* method_26D2850);
TMPro_HighlightState_o TMPro_TMP_TextProcessingStack_HighlightState___CurrentItem (TMPro_TMP_TextProcessingStack_HighlightState__o __this, const MethodInfo_26D3090* method_26D3090);
TMPro_MaterialReference_o TMPro_TMP_TextProcessingStack_MaterialReference___CurrentItem (TMPro_TMP_TextProcessingStack_MaterialReference__o __this, const MethodInfo_26D3A80* method_26D3A80);
TMPro_WordWrapState_o TMPro_TMP_TextProcessingStack_WordWrapState___CurrentItem (TMPro_TMP_TextProcessingStack_WordWrapState__o __this, const MethodInfo_26D43C0* method_26D43C0);
UnityEngine_Color32_o TMPro_TMP_TextProcessingStack_Color32___CurrentItem (TMPro_TMP_TextProcessingStack_Color32__o __this, const MethodInfo_26D4A80* method_26D4A80);
int32_t TMPro_TMP_TextProcessingStack_int___PreviousItem (TMPro_TMP_TextProcessingStack_int__o __this, const MethodInfo_26D1440* method_26D1440);
int32_t TMPro_TMP_TextProcessingStack_Int32Enum___PreviousItem (TMPro_TMP_TextProcessingStack_Int32Enum__o __this, const MethodInfo_26D1B00* method_26D1B00);
Il2CppObject* TMPro_TMP_TextProcessingStack_object___PreviousItem (TMPro_TMP_TextProcessingStack_object__o __this, const MethodInfo_26D21F0* method_26D21F0);
float TMPro_TMP_TextProcessingStack_float___PreviousItem (TMPro_TMP_TextProcessingStack_float__o __this, const MethodInfo_26D28B0* method_26D28B0);
TMPro_HighlightState_o TMPro_TMP_TextProcessingStack_HighlightState___PreviousItem (TMPro_TMP_TextProcessingStack_HighlightState__o __this, const MethodInfo_26D30F0* method_26D30F0);
TMPro_MaterialReference_o TMPro_TMP_TextProcessingStack_MaterialReference___PreviousItem (TMPro_TMP_TextProcessingStack_MaterialReference__o __this, const MethodInfo_26D3AF0* method_26D3AF0);
TMPro_WordWrapState_o TMPro_TMP_TextProcessingStack_WordWrapState___PreviousItem (TMPro_TMP_TextProcessingStack_WordWrapState__o __this, const MethodInfo_26D4420* method_26D4420);
UnityEngine_Color32_o TMPro_TMP_TextProcessingStack_Color32___PreviousItem (TMPro_TMP_TextProcessingStack_Color32__o __this, const MethodInfo_26D4AE0* method_26D4AE0);
void TMPro_CaretInfo___ctor (TMPro_CaretInfo_o __this, int32_t index, int32_t position, const MethodInfo*);
int32_t TMPro_TMP_TextUtilities__GetCursorIndexFromPosition (TMPro_TMP_Text_o* textComponent, UnityEngine_Vector3_o position, UnityEngine_Camera_o* camera, const MethodInfo*);
int32_t TMPro_TMP_TextUtilities__GetCursorIndexFromPosition (TMPro_TMP_Text_o* textComponent, UnityEngine_Vector3_o position, UnityEngine_Camera_o* camera, int32_t* cursor, const MethodInfo*);
int32_t TMPro_TMP_TextUtilities__FindNearestLine (TMPro_TMP_Text_o* text, UnityEngine_Vector3_o position, UnityEngine_Camera_o* camera, const MethodInfo*);
int32_t TMPro_TMP_TextUtilities__FindNearestCharacterOnLine (TMPro_TMP_Text_o* text, UnityEngine_Vector3_o position, int32_t line, UnityEngine_Camera_o* camera, bool visibleOnly, const MethodInfo*);
bool TMPro_TMP_TextUtilities__IsIntersectingRectTransform (UnityEngine_RectTransform_o* rectTransform, UnityEngine_Vector3_o position, UnityEngine_Camera_o* camera, const MethodInfo*);
int32_t TMPro_TMP_TextUtilities__FindIntersectingCharacter (TMPro_TMP_Text_o* text, UnityEngine_Vector3_o position, UnityEngine_Camera_o* camera, bool visibleOnly, const MethodInfo*);
int32_t TMPro_TMP_TextUtilities__FindNearestCharacter (TMPro_TMP_Text_o* text, UnityEngine_Vector3_o position, UnityEngine_Camera_o* camera, bool visibleOnly, const MethodInfo*);
int32_t TMPro_TMP_TextUtilities__FindIntersectingWord (TMPro_TMP_Text_o* text, UnityEngine_Vector3_o position, UnityEngine_Camera_o* camera, const MethodInfo*);
int32_t TMPro_TMP_TextUtilities__FindNearestWord (TMPro_TMP_Text_o* text, UnityEngine_Vector3_o position, UnityEngine_Camera_o* camera, const MethodInfo*);
int32_t TMPro_TMP_TextUtilities__FindIntersectingLine (TMPro_TMP_Text_o* text, UnityEngine_Vector3_o position, UnityEngine_Camera_o* camera, const MethodInfo*);
int32_t TMPro_TMP_TextUtilities__FindIntersectingLink (TMPro_TMP_Text_o* text, UnityEngine_Vector3_o position, UnityEngine_Camera_o* camera, const MethodInfo*);
int32_t TMPro_TMP_TextUtilities__FindNearestLink (TMPro_TMP_Text_o* text, UnityEngine_Vector3_o position, UnityEngine_Camera_o* camera, const MethodInfo*);
bool TMPro_TMP_TextUtilities__PointIntersectRectangle (UnityEngine_Vector3_o m, UnityEngine_Vector3_o a, UnityEngine_Vector3_o b, UnityEngine_Vector3_o c, UnityEngine_Vector3_o d, const MethodInfo*);
bool TMPro_TMP_TextUtilities__ScreenPointToWorldPointInRectangle (UnityEngine_Transform_o* transform, UnityEngine_Vector2_o screenPoint, UnityEngine_Camera_o* cam, UnityEngine_Vector3_o* worldPoint, const MethodInfo*);
bool TMPro_TMP_TextUtilities__IntersectLinePlane (TMPro_TMP_TextUtilities_LineSegment_o line, UnityEngine_Vector3_o point, UnityEngine_Vector3_o normal, UnityEngine_Vector3_o* intersectingPoint, const MethodInfo*);
float TMPro_TMP_TextUtilities__DistanceToLine (UnityEngine_Vector3_o a, UnityEngine_Vector3_o b, UnityEngine_Vector3_o point, const MethodInfo*);
uint16_t TMPro_TMP_TextUtilities__ToLowerFast (uint16_t c, const MethodInfo*);
uint16_t TMPro_TMP_TextUtilities__ToUpperFast (uint16_t c, const MethodInfo*);
uint32_t TMPro_TMP_TextUtilities__ToUpperASCIIFast (uint32_t c, const MethodInfo*);
int32_t TMPro_TMP_TextUtilities__GetHashCode (System_String_o* s, const MethodInfo*);
int32_t TMPro_TMP_TextUtilities__GetSimpleHashCode (System_String_o* s, const MethodInfo*);
uint32_t TMPro_TMP_TextUtilities__GetSimpleHashCodeLowercase (System_String_o* s, const MethodInfo*);
int32_t TMPro_TMP_TextUtilities__HexToInt (uint16_t hex, const MethodInfo*);
int32_t TMPro_TMP_TextUtilities__StringHexToInt (System_String_o* s, const MethodInfo*);
void TMPro_TMP_TextUtilities___cctor (const MethodInfo*);
void TMPro_TMP_TextUtilities_LineSegment___ctor (TMPro_TMP_TextUtilities_LineSegment_o __this, UnityEngine_Vector3_o p1, UnityEngine_Vector3_o p2, const MethodInfo*);
TMPro_TMP_UpdateManager_o* TMPro_TMP_UpdateManager__get_instance (const MethodInfo*);
void TMPro_TMP_UpdateManager___ctor (TMPro_TMP_UpdateManager_o* __this, const MethodInfo*);
void TMPro_TMP_UpdateManager__RegisterTextObjectForUpdate (TMPro_TMP_Text_o* textObject, const MethodInfo*);
void TMPro_TMP_UpdateManager__InternalRegisterTextObjectForUpdate (TMPro_TMP_UpdateManager_o* __this, TMPro_TMP_Text_o* textObject, const MethodInfo*);
void TMPro_TMP_UpdateManager__RegisterTextElementForLayoutRebuild (TMPro_TMP_Text_o* element, const MethodInfo*);
void TMPro_TMP_UpdateManager__InternalRegisterTextElementForLayoutRebuild (TMPro_TMP_UpdateManager_o* __this, TMPro_TMP_Text_o* element, const MethodInfo*);
void TMPro_TMP_UpdateManager__RegisterTextElementForGraphicRebuild (TMPro_TMP_Text_o* element, const MethodInfo*);
void TMPro_TMP_UpdateManager__InternalRegisterTextElementForGraphicRebuild (TMPro_TMP_UpdateManager_o* __this, TMPro_TMP_Text_o* element, const MethodInfo*);
void TMPro_TMP_UpdateManager__RegisterTextElementForCullingUpdate (TMPro_TMP_Text_o* element, const MethodInfo*);
void TMPro_TMP_UpdateManager__InternalRegisterTextElementForCullingUpdate (TMPro_TMP_UpdateManager_o* __this, TMPro_TMP_Text_o* element, const MethodInfo*);
void TMPro_TMP_UpdateManager__OnCameraPreCull (TMPro_TMP_UpdateManager_o* __this, const MethodInfo*);
void TMPro_TMP_UpdateManager__DoRebuilds (TMPro_TMP_UpdateManager_o* __this, const MethodInfo*);
void TMPro_TMP_UpdateManager__UnRegisterTextObjectForUpdate (TMPro_TMP_Text_o* textObject, const MethodInfo*);
void TMPro_TMP_UpdateManager__UnRegisterTextElementForRebuild (TMPro_TMP_Text_o* element, const MethodInfo*);
void TMPro_TMP_UpdateManager__InternalUnRegisterTextElementForGraphicRebuild (TMPro_TMP_UpdateManager_o* __this, TMPro_TMP_Text_o* element, const MethodInfo*);
void TMPro_TMP_UpdateManager__InternalUnRegisterTextElementForLayoutRebuild (TMPro_TMP_UpdateManager_o* __this, TMPro_TMP_Text_o* element, const MethodInfo*);
void TMPro_TMP_UpdateManager__InternalUnRegisterTextObjectForUpdate (TMPro_TMP_UpdateManager_o* __this, TMPro_TMP_Text_o* textObject, const MethodInfo*);
void TMPro_TMP_UpdateManager___cctor (const MethodInfo*);
TMPro_TMP_UpdateRegistry_o* TMPro_TMP_UpdateRegistry__get_instance (const MethodInfo*);
void TMPro_TMP_UpdateRegistry___ctor (TMPro_TMP_UpdateRegistry_o* __this, const MethodInfo*);
void TMPro_TMP_UpdateRegistry__RegisterCanvasElementForLayoutRebuild (UnityEngine_UI_ICanvasElement_o* element, const MethodInfo*);
bool TMPro_TMP_UpdateRegistry__InternalRegisterCanvasElementForLayoutRebuild (TMPro_TMP_UpdateRegistry_o* __this, UnityEngine_UI_ICanvasElement_o* element, const MethodInfo*);
void TMPro_TMP_UpdateRegistry__RegisterCanvasElementForGraphicRebuild (UnityEngine_UI_ICanvasElement_o* element, const MethodInfo*);
bool TMPro_TMP_UpdateRegistry__InternalRegisterCanvasElementForGraphicRebuild (TMPro_TMP_UpdateRegistry_o* __this, UnityEngine_UI_ICanvasElement_o* element, const MethodInfo*);
void TMPro_TMP_UpdateRegistry__PerformUpdateForCanvasRendererObjects (TMPro_TMP_UpdateRegistry_o* __this, const MethodInfo*);
void TMPro_TMP_UpdateRegistry__PerformUpdateForMeshRendererObjects (TMPro_TMP_UpdateRegistry_o* __this, const MethodInfo*);
void TMPro_TMP_UpdateRegistry__UnRegisterCanvasElementForRebuild (UnityEngine_UI_ICanvasElement_o* element, const MethodInfo*);
void TMPro_TMP_UpdateRegistry__InternalUnRegisterCanvasElementForLayoutRebuild (TMPro_TMP_UpdateRegistry_o* __this, UnityEngine_UI_ICanvasElement_o* element, const MethodInfo*);
void TMPro_TMP_UpdateRegistry__InternalUnRegisterCanvasElementForGraphicRebuild (TMPro_TMP_UpdateRegistry_o* __this, UnityEngine_UI_ICanvasElement_o* element, const MethodInfo*);
void TMPro_TMPro_EventManager__ON_MATERIAL_PROPERTY_CHANGED (bool isChanged, UnityEngine_Material_o* mat, const MethodInfo*);
void TMPro_TMPro_EventManager__ON_FONT_PROPERTY_CHANGED (bool isChanged, UnityEngine_Object_o* obj, const MethodInfo*);
void TMPro_TMPro_EventManager__ON_SPRITE_ASSET_PROPERTY_CHANGED (bool isChanged, UnityEngine_Object_o* obj, const MethodInfo*);
void TMPro_TMPro_EventManager__ON_TEXTMESHPRO_PROPERTY_CHANGED (bool isChanged, UnityEngine_Object_o* obj, const MethodInfo*);
void TMPro_TMPro_EventManager__ON_DRAG_AND_DROP_MATERIAL_CHANGED (UnityEngine_GameObject_o* sender, UnityEngine_Material_o* currentMaterial, UnityEngine_Material_o* newMaterial, const MethodInfo*);
void TMPro_TMPro_EventManager__ON_TEXT_STYLE_PROPERTY_CHANGED (bool isChanged, const MethodInfo*);
void TMPro_TMPro_EventManager__ON_COLOR_GRADIENT_PROPERTY_CHANGED (UnityEngine_Object_o* obj, const MethodInfo*);
void TMPro_TMPro_EventManager__ON_TEXT_CHANGED (UnityEngine_Object_o* obj, const MethodInfo*);
void TMPro_TMPro_EventManager__ON_TMP_SETTINGS_CHANGED (const MethodInfo*);
void TMPro_TMPro_EventManager__ON_RESOURCES_LOADED (const MethodInfo*);
void TMPro_TMPro_EventManager__ON_TEXTMESHPRO_UGUI_PROPERTY_CHANGED (bool isChanged, UnityEngine_Object_o* obj, const MethodInfo*);
void TMPro_TMPro_EventManager__ON_COMPUTE_DT_EVENT (Il2CppObject* Sender, TMPro_Compute_DT_EventArgs_o* e, const MethodInfo*);
void TMPro_TMPro_EventManager___cctor (const MethodInfo*);
void TMPro_Compute_DT_EventArgs___ctor (TMPro_Compute_DT_EventArgs_o* __this, int32_t type, float progress, const MethodInfo*);
void TMPro_Compute_DT_EventArgs___ctor (TMPro_Compute_DT_EventArgs_o* __this, int32_t type, UnityEngine_Color_array* colors, const MethodInfo*);
System_Int32_array* TMPro_TMPro_ExtensionMethods__ToIntArray (System_String_o* text, const MethodInfo*);
System_String_o* TMPro_TMPro_ExtensionMethods__ArrayToString (System_Char_array* chars, const MethodInfo*);
System_String_o* TMPro_TMPro_ExtensionMethods__IntToString (System_Int32_array* unicodes, const MethodInfo*);
System_String_o* TMPro_TMPro_ExtensionMethods__UintToString (System_Collections_Generic_List_uint__o* unicodes, const MethodInfo*);
System_String_o* TMPro_TMPro_ExtensionMethods__IntToString (System_Int32_array* unicodes, int32_t start, int32_t length, const MethodInfo*);
int32_t TMPro_TMPro_ExtensionMethods__FindInstanceID_object_ (System_Collections_Generic_List_T__o* list, Il2CppObject* target, const MethodInfo_1F99610* method_1F99610);
bool TMPro_TMPro_ExtensionMethods__Compare (UnityEngine_Color32_o a, UnityEngine_Color32_o b, const MethodInfo*);
bool TMPro_TMPro_ExtensionMethods__CompareRGB (UnityEngine_Color32_o a, UnityEngine_Color32_o b, const MethodInfo*);
bool TMPro_TMPro_ExtensionMethods__Compare (UnityEngine_Color_o a, UnityEngine_Color_o b, const MethodInfo*);
bool TMPro_TMPro_ExtensionMethods__CompareRGB (UnityEngine_Color_o a, UnityEngine_Color_o b, const MethodInfo*);
UnityEngine_Color32_o TMPro_TMPro_ExtensionMethods__Multiply (UnityEngine_Color32_o c1, UnityEngine_Color32_o c2, const MethodInfo*);
UnityEngine_Color32_o TMPro_TMPro_ExtensionMethods__Tint (UnityEngine_Color32_o c1, UnityEngine_Color32_o c2, const MethodInfo*);
UnityEngine_Color32_o TMPro_TMPro_ExtensionMethods__Tint (UnityEngine_Color32_o c1, float tint, const MethodInfo*);
UnityEngine_Color_o TMPro_TMPro_ExtensionMethods__MinAlpha (UnityEngine_Color_o c1, UnityEngine_Color_o c2, const MethodInfo*);
bool TMPro_TMPro_ExtensionMethods__Compare (UnityEngine_Vector3_o v1, UnityEngine_Vector3_o v2, int32_t accuracy, const MethodInfo*);
bool TMPro_TMPro_ExtensionMethods__Compare (UnityEngine_Quaternion_o q1, UnityEngine_Quaternion_o q2, int32_t accuracy, const MethodInfo*);
bool TMPro_TMP_Math__Approximately (float a, float b, const MethodInfo*);
int32_t TMPro_TMP_Math__Mod (int32_t a, int32_t b, const MethodInfo*);
void TMPro_TMP_Math___cctor (const MethodInfo*);
void TMPro_VertexGradient___ctor (TMPro_VertexGradient_o __this, UnityEngine_Color_o color, const MethodInfo*);
void TMPro_VertexGradient___ctor (TMPro_VertexGradient_o __this, UnityEngine_Color_o color0, UnityEngine_Color_o color1, UnityEngine_Color_o color2, UnityEngine_Color_o color3, const MethodInfo*);
void TMPro_TMP_LinkInfo__SetLinkID (TMPro_TMP_LinkInfo_o __this, System_Char_array* text, int32_t startIndex, int32_t length, const MethodInfo*);
System_String_o* TMPro_TMP_LinkInfo__GetLinkText (TMPro_TMP_LinkInfo_o __this, const MethodInfo*);
System_String_o* TMPro_TMP_LinkInfo__GetLinkID (TMPro_TMP_LinkInfo_o __this, const MethodInfo*);
System_String_o* TMPro_TMP_WordInfo__GetWord (TMPro_TMP_WordInfo_o __this, const MethodInfo*);
void TMPro_Extents___ctor (TMPro_Extents_o __this, UnityEngine_Vector2_o min, UnityEngine_Vector2_o max, const MethodInfo*);
System_String_o* TMPro_Extents__ToString (TMPro_Extents_o __this, const MethodInfo*);
void TMPro_Extents___cctor (const MethodInfo*);
void TMPro_Mesh_Extents___ctor (TMPro_Mesh_Extents_o __this, UnityEngine_Vector2_o min, UnityEngine_Vector2_o max, const MethodInfo*);
System_String_o* TMPro_Mesh_Extents__ToString (TMPro_Mesh_Extents_o __this, const MethodInfo*);
void TMPro_TextMeshPro__Awake (TMPro_TextMeshPro_o* __this, const MethodInfo*);
void TMPro_TextMeshPro__OnEnable (TMPro_TextMeshPro_o* __this, const MethodInfo*);
void TMPro_TextMeshPro__OnDisable (TMPro_TextMeshPro_o* __this, const MethodInfo*);
void TMPro_TextMeshPro__OnDestroy (TMPro_TextMeshPro_o* __this, const MethodInfo*);
void TMPro_TextMeshPro__LoadFontAsset (TMPro_TextMeshPro_o* __this, const MethodInfo*);
void TMPro_TextMeshPro__UpdateEnvMapMatrix (TMPro_TextMeshPro_o* __this, const MethodInfo*);
void TMPro_TextMeshPro__SetMask (TMPro_TextMeshPro_o* __this, int32_t maskType, const MethodInfo*);
void TMPro_TextMeshPro__SetMaskCoordinates (TMPro_TextMeshPro_o* __this, UnityEngine_Vector4_o coords, const MethodInfo*);
void TMPro_TextMeshPro__SetMaskCoordinates (TMPro_TextMeshPro_o* __this, UnityEngine_Vector4_o coords, float softX, float softY, const MethodInfo*);
void TMPro_TextMeshPro__EnableMasking (TMPro_TextMeshPro_o* __this, const MethodInfo*);
void TMPro_TextMeshPro__DisableMasking (TMPro_TextMeshPro_o* __this, const MethodInfo*);
void TMPro_TextMeshPro__UpdateMask (TMPro_TextMeshPro_o* __this, const MethodInfo*);
UnityEngine_Material_o* TMPro_TextMeshPro__GetMaterial (TMPro_TextMeshPro_o* __this, UnityEngine_Material_o* mat, const MethodInfo*);
UnityEngine_Material_array* TMPro_TextMeshPro__GetMaterials (TMPro_TextMeshPro_o* __this, UnityEngine_Material_array* mats, const MethodInfo*);
void TMPro_TextMeshPro__SetSharedMaterial (TMPro_TextMeshPro_o* __this, UnityEngine_Material_o* mat, const MethodInfo*);
UnityEngine_Material_array* TMPro_TextMeshPro__GetSharedMaterials (TMPro_TextMeshPro_o* __this, const MethodInfo*);
void TMPro_TextMeshPro__SetSharedMaterials (TMPro_TextMeshPro_o* __this, UnityEngine_Material_array* materials, const MethodInfo*);
void TMPro_TextMeshPro__SetOutlineThickness (TMPro_TextMeshPro_o* __this, float thickness, const MethodInfo*);
void TMPro_TextMeshPro__SetFaceColor (TMPro_TextMeshPro_o* __this, UnityEngine_Color32_o color, const MethodInfo*);
void TMPro_TextMeshPro__SetOutlineColor (TMPro_TextMeshPro_o* __this, UnityEngine_Color32_o color, const MethodInfo*);
void TMPro_TextMeshPro__CreateMaterialInstance (TMPro_TextMeshPro_o* __this, const MethodInfo*);
void TMPro_TextMeshPro__SetShaderDepth (TMPro_TextMeshPro_o* __this, const MethodInfo*);
void TMPro_TextMeshPro__SetCulling (TMPro_TextMeshPro_o* __this, const MethodInfo*);
void TMPro_TextMeshPro__SetPerspectiveCorrection (TMPro_TextMeshPro_o* __this, const MethodInfo*);
int32_t TMPro_TextMeshPro__SetArraySizes (TMPro_TextMeshPro_o* __this, TMPro_TMP_Text_UnicodeChar_array* unicodeChars, const MethodInfo*);
void TMPro_TextMeshPro__ComputeMarginSize (TMPro_TextMeshPro_o* __this, const MethodInfo*);
void TMPro_TextMeshPro__OnDidApplyAnimationProperties (TMPro_TextMeshPro_o* __this, const MethodInfo*);
void TMPro_TextMeshPro__OnTransformParentChanged (TMPro_TextMeshPro_o* __this, const MethodInfo*);
void TMPro_TextMeshPro__OnRectTransformDimensionsChange (TMPro_TextMeshPro_o* __this, const MethodInfo*);
void TMPro_TextMeshPro__InternalUpdate (TMPro_TextMeshPro_o* __this, const MethodInfo*);
void TMPro_TextMeshPro__OnPreRenderObject (TMPro_TextMeshPro_o* __this, const MethodInfo*);
void TMPro_TextMeshPro__GenerateTextMesh (TMPro_TextMeshPro_o* __this, const MethodInfo*);
UnityEngine_Vector3_array* TMPro_TextMeshPro__GetTextContainerLocalCorners (TMPro_TextMeshPro_o* __this, const MethodInfo*);
void TMPro_TextMeshPro__SetMeshFilters (TMPro_TextMeshPro_o* __this, bool state, const MethodInfo*);
void TMPro_TextMeshPro__SetActiveSubMeshes (TMPro_TextMeshPro_o* __this, bool state, const MethodInfo*);
void TMPro_TextMeshPro__SetActiveSubTextObjectRenderers (TMPro_TextMeshPro_o* __this, bool state, const MethodInfo*);
void TMPro_TextMeshPro__DestroySubMeshObjects (TMPro_TextMeshPro_o* __this, const MethodInfo*);
void TMPro_TextMeshPro__UpdateSubMeshSortingLayerID (TMPro_TextMeshPro_o* __this, int32_t id, const MethodInfo*);
void TMPro_TextMeshPro__UpdateSubMeshSortingOrder (TMPro_TextMeshPro_o* __this, int32_t order, const MethodInfo*);
UnityEngine_Bounds_o TMPro_TextMeshPro__GetCompoundBounds (TMPro_TextMeshPro_o* __this, const MethodInfo*);
void TMPro_TextMeshPro__UpdateSDFScale (TMPro_TextMeshPro_o* __this, float scaleDelta, const MethodInfo*);
int32_t TMPro_TextMeshPro__get_sortingLayerID (TMPro_TextMeshPro_o* __this, const MethodInfo*);
void TMPro_TextMeshPro__set_sortingLayerID (TMPro_TextMeshPro_o* __this, int32_t value, const MethodInfo*);
int32_t TMPro_TextMeshPro__get_sortingOrder (TMPro_TextMeshPro_o* __this, const MethodInfo*);
void TMPro_TextMeshPro__set_sortingOrder (TMPro_TextMeshPro_o* __this, int32_t value, const MethodInfo*);
bool TMPro_TextMeshPro__get_autoSizeTextContainer (TMPro_TextMeshPro_o* __this, const MethodInfo*);
void TMPro_TextMeshPro__set_autoSizeTextContainer (TMPro_TextMeshPro_o* __this, bool value, const MethodInfo*);
TMPro_TextContainer_o* TMPro_TextMeshPro__get_textContainer (TMPro_TextMeshPro_o* __this, const MethodInfo*);
UnityEngine_Transform_o* TMPro_TextMeshPro__get_transform (TMPro_TextMeshPro_o* __this, const MethodInfo*);
UnityEngine_Renderer_o* TMPro_TextMeshPro__get_renderer (TMPro_TextMeshPro_o* __this, const MethodInfo*);
UnityEngine_Mesh_o* TMPro_TextMeshPro__get_mesh (TMPro_TextMeshPro_o* __this, const MethodInfo*);
UnityEngine_MeshFilter_o* TMPro_TextMeshPro__get_meshFilter (TMPro_TextMeshPro_o* __this, const MethodInfo*);
int32_t TMPro_TextMeshPro__get_maskType (TMPro_TextMeshPro_o* __this, const MethodInfo*);
void TMPro_TextMeshPro__set_maskType (TMPro_TextMeshPro_o* __this, int32_t value, const MethodInfo*);
void TMPro_TextMeshPro__SetMask (TMPro_TextMeshPro_o* __this, int32_t type, UnityEngine_Vector4_o maskCoords, const MethodInfo*);
void TMPro_TextMeshPro__SetMask (TMPro_TextMeshPro_o* __this, int32_t type, UnityEngine_Vector4_o maskCoords, float softnessX, float softnessY, const MethodInfo*);
void TMPro_TextMeshPro__SetVerticesDirty (TMPro_TextMeshPro_o* __this, const MethodInfo*);
void TMPro_TextMeshPro__SetLayoutDirty (TMPro_TextMeshPro_o* __this, const MethodInfo*);
void TMPro_TextMeshPro__SetMaterialDirty (TMPro_TextMeshPro_o* __this, const MethodInfo*);
void TMPro_TextMeshPro__SetAllDirty (TMPro_TextMeshPro_o* __this, const MethodInfo*);
void TMPro_TextMeshPro__Rebuild (TMPro_TextMeshPro_o* __this, int32_t update, const MethodInfo*);
void TMPro_TextMeshPro__UpdateMaterial (TMPro_TextMeshPro_o* __this, const MethodInfo*);
void TMPro_TextMeshPro__UpdateMeshPadding (TMPro_TextMeshPro_o* __this, const MethodInfo*);
void TMPro_TextMeshPro__ForceMeshUpdate (TMPro_TextMeshPro_o* __this, bool ignoreActiveState, bool forceTextReparsing, const MethodInfo*);
TMPro_TMP_TextInfo_o* TMPro_TextMeshPro__GetTextInfo (TMPro_TextMeshPro_o* __this, System_String_o* text, const MethodInfo*);
void TMPro_TextMeshPro__ClearMesh (TMPro_TextMeshPro_o* __this, bool updateMesh, const MethodInfo*);
void TMPro_TextMeshPro__add_OnPreRenderText (TMPro_TextMeshPro_o* __this, System_Action_TMP_TextInfo__o* value, const MethodInfo*);
void TMPro_TextMeshPro__remove_OnPreRenderText (TMPro_TextMeshPro_o* __this, System_Action_TMP_TextInfo__o* value, const MethodInfo*);
void TMPro_TextMeshPro__UpdateGeometry (TMPro_TextMeshPro_o* __this, UnityEngine_Mesh_o* mesh, int32_t index, const MethodInfo*);
void TMPro_TextMeshPro__UpdateVertexData (TMPro_TextMeshPro_o* __this, int32_t flags, const MethodInfo*);
void TMPro_TextMeshPro__UpdateVertexData (TMPro_TextMeshPro_o* __this, const MethodInfo*);
void TMPro_TextMeshPro__UpdateFontAsset (TMPro_TextMeshPro_o* __this, const MethodInfo*);
void TMPro_TextMeshPro__CalculateLayoutInputHorizontal (TMPro_TextMeshPro_o* __this, const MethodInfo*);
void TMPro_TextMeshPro__CalculateLayoutInputVertical (TMPro_TextMeshPro_o* __this, const MethodInfo*);
void TMPro_TextMeshPro___ctor (TMPro_TextMeshPro_o* __this, const MethodInfo*);
void TMPro_TextMeshPro___cctor (const MethodInfo*);
void TMPro_TextMeshProUGUI__Awake (TMPro_TextMeshProUGUI_o* __this, const MethodInfo*);
void TMPro_TextMeshProUGUI__OnEnable (TMPro_TextMeshProUGUI_o* __this, const MethodInfo*);
void TMPro_TextMeshProUGUI__OnDisable (TMPro_TextMeshProUGUI_o* __this, const MethodInfo*);
void TMPro_TextMeshProUGUI__OnDestroy (TMPro_TextMeshProUGUI_o* __this, const MethodInfo*);
void TMPro_TextMeshProUGUI__LoadFontAsset (TMPro_TextMeshProUGUI_o* __this, const MethodInfo*);
UnityEngine_Canvas_o* TMPro_TextMeshProUGUI__GetCanvas (TMPro_TextMeshProUGUI_o* __this, const MethodInfo*);
void TMPro_TextMeshProUGUI__UpdateEnvMapMatrix (TMPro_TextMeshProUGUI_o* __this, const MethodInfo*);
void TMPro_TextMeshProUGUI__EnableMasking (TMPro_TextMeshProUGUI_o* __this, const MethodInfo*);
void TMPro_TextMeshProUGUI__DisableMasking (TMPro_TextMeshProUGUI_o* __this, const MethodInfo*);
void TMPro_TextMeshProUGUI__UpdateMask (TMPro_TextMeshProUGUI_o* __this, const MethodInfo*);
UnityEngine_Material_o* TMPro_TextMeshProUGUI__GetMaterial (TMPro_TextMeshProUGUI_o* __this, UnityEngine_Material_o* mat, const MethodInfo*);
UnityEngine_Material_array* TMPro_TextMeshProUGUI__GetMaterials (TMPro_TextMeshProUGUI_o* __this, UnityEngine_Material_array* mats, const MethodInfo*);
void TMPro_TextMeshProUGUI__SetSharedMaterial (TMPro_TextMeshProUGUI_o* __this, UnityEngine_Material_o* mat, const MethodInfo*);
UnityEngine_Material_array* TMPro_TextMeshProUGUI__GetSharedMaterials (TMPro_TextMeshProUGUI_o* __this, const MethodInfo*);
void TMPro_TextMeshProUGUI__SetSharedMaterials (TMPro_TextMeshProUGUI_o* __this, UnityEngine_Material_array* materials, const MethodInfo*);
void TMPro_TextMeshProUGUI__SetOutlineThickness (TMPro_TextMeshProUGUI_o* __this, float thickness, const MethodInfo*);
void TMPro_TextMeshProUGUI__SetFaceColor (TMPro_TextMeshProUGUI_o* __this, UnityEngine_Color32_o color, const MethodInfo*);
void TMPro_TextMeshProUGUI__SetOutlineColor (TMPro_TextMeshProUGUI_o* __this, UnityEngine_Color32_o color, const MethodInfo*);
void TMPro_TextMeshProUGUI__SetShaderDepth (TMPro_TextMeshProUGUI_o* __this, const MethodInfo*);
void TMPro_TextMeshProUGUI__SetCulling (TMPro_TextMeshProUGUI_o* __this, const MethodInfo*);
void TMPro_TextMeshProUGUI__SetPerspectiveCorrection (TMPro_TextMeshProUGUI_o* __this, const MethodInfo*);
void TMPro_TextMeshProUGUI__SetMeshArrays (TMPro_TextMeshProUGUI_o* __this, int32_t size, const MethodInfo*);
int32_t TMPro_TextMeshProUGUI__SetArraySizes (TMPro_TextMeshProUGUI_o* __this, TMPro_TMP_Text_UnicodeChar_array* unicodeChars, const MethodInfo*);
void TMPro_TextMeshProUGUI__ComputeMarginSize (TMPro_TextMeshProUGUI_o* __this, const MethodInfo*);
void TMPro_TextMeshProUGUI__OnDidApplyAnimationProperties (TMPro_TextMeshProUGUI_o* __this, const MethodInfo*);
void TMPro_TextMeshProUGUI__OnCanvasHierarchyChanged (TMPro_TextMeshProUGUI_o* __this, const MethodInfo*);
void TMPro_TextMeshProUGUI__OnTransformParentChanged (TMPro_TextMeshProUGUI_o* __this, const MethodInfo*);
void TMPro_TextMeshProUGUI__OnRectTransformDimensionsChange (TMPro_TextMeshProUGUI_o* __this, const MethodInfo*);
void TMPro_TextMeshProUGUI__InternalUpdate (TMPro_TextMeshProUGUI_o* __this, const MethodInfo*);
void TMPro_TextMeshProUGUI__OnPreRenderCanvas (TMPro_TextMeshProUGUI_o* __this, const MethodInfo*);
void TMPro_TextMeshProUGUI__GenerateTextMesh (TMPro_TextMeshProUGUI_o* __this, const MethodInfo*);
UnityEngine_Vector3_array* TMPro_TextMeshProUGUI__GetTextContainerLocalCorners (TMPro_TextMeshProUGUI_o* __this, const MethodInfo*);
void TMPro_TextMeshProUGUI__SetActiveSubMeshes (TMPro_TextMeshProUGUI_o* __this, bool state, const MethodInfo*);
void TMPro_TextMeshProUGUI__DestroySubMeshObjects (TMPro_TextMeshProUGUI_o* __this, const MethodInfo*);
UnityEngine_Bounds_o TMPro_TextMeshProUGUI__GetCompoundBounds (TMPro_TextMeshProUGUI_o* __this, const MethodInfo*);
UnityEngine_Rect_o TMPro_TextMeshProUGUI__GetCanvasSpaceClippingRect (TMPro_TextMeshProUGUI_o* __this, const MethodInfo*);
void TMPro_TextMeshProUGUI__UpdateSDFScale (TMPro_TextMeshProUGUI_o* __this, float scaleDelta, const MethodInfo*);
UnityEngine_Material_o* TMPro_TextMeshProUGUI__get_materialForRendering (TMPro_TextMeshProUGUI_o* __this, const MethodInfo*);
bool TMPro_TextMeshProUGUI__get_autoSizeTextContainer (TMPro_TextMeshProUGUI_o* __this, const MethodInfo*);
void TMPro_TextMeshProUGUI__set_autoSizeTextContainer (TMPro_TextMeshProUGUI_o* __this, bool value, const MethodInfo*);
UnityEngine_Mesh_o* TMPro_TextMeshProUGUI__get_mesh (TMPro_TextMeshProUGUI_o* __this, const MethodInfo*);
UnityEngine_CanvasRenderer_o* TMPro_TextMeshProUGUI__get_canvasRenderer (TMPro_TextMeshProUGUI_o* __this, const MethodInfo*);
void TMPro_TextMeshProUGUI__CalculateLayoutInputHorizontal (TMPro_TextMeshProUGUI_o* __this, const MethodInfo*);
void TMPro_TextMeshProUGUI__CalculateLayoutInputVertical (TMPro_TextMeshProUGUI_o* __this, const MethodInfo*);
void TMPro_TextMeshProUGUI__SetVerticesDirty (TMPro_TextMeshProUGUI_o* __this, const MethodInfo*);
void TMPro_TextMeshProUGUI__SetLayoutDirty (TMPro_TextMeshProUGUI_o* __this, const MethodInfo*);
void TMPro_TextMeshProUGUI__SetMaterialDirty (TMPro_TextMeshProUGUI_o* __this, const MethodInfo*);
void TMPro_TextMeshProUGUI__SetAllDirty (TMPro_TextMeshProUGUI_o* __this, const MethodInfo*);
System_Collections_IEnumerator_o* TMPro_TextMeshProUGUI__DelayedGraphicRebuild (TMPro_TextMeshProUGUI_o* __this, const MethodInfo*);
System_Collections_IEnumerator_o* TMPro_TextMeshProUGUI__DelayedMaterialRebuild (TMPro_TextMeshProUGUI_o* __this, const MethodInfo*);
void TMPro_TextMeshProUGUI__Rebuild (TMPro_TextMeshProUGUI_o* __this, int32_t update, const MethodInfo*);
void TMPro_TextMeshProUGUI__UpdateSubObjectPivot (TMPro_TextMeshProUGUI_o* __this, const MethodInfo*);
UnityEngine_Material_o* TMPro_TextMeshProUGUI__GetModifiedMaterial (TMPro_TextMeshProUGUI_o* __this, UnityEngine_Material_o* baseMaterial, const MethodInfo*);
void TMPro_TextMeshProUGUI__UpdateMaterial (TMPro_TextMeshProUGUI_o* __this, const MethodInfo*);
UnityEngine_Vector4_o TMPro_TextMeshProUGUI__get_maskOffset (TMPro_TextMeshProUGUI_o* __this, const MethodInfo*);
void TMPro_TextMeshProUGUI__set_maskOffset (TMPro_TextMeshProUGUI_o* __this, UnityEngine_Vector4_o value, const MethodInfo*);
void TMPro_TextMeshProUGUI__RecalculateClipping (TMPro_TextMeshProUGUI_o* __this, const MethodInfo*);
void TMPro_TextMeshProUGUI__Cull (TMPro_TextMeshProUGUI_o* __this, UnityEngine_Rect_o clipRect, bool validRect, const MethodInfo*);
void TMPro_TextMeshProUGUI__UpdateCulling (TMPro_TextMeshProUGUI_o* __this, const MethodInfo*);
void TMPro_TextMeshProUGUI__UpdateMeshPadding (TMPro_TextMeshProUGUI_o* __this, const MethodInfo*);
void TMPro_TextMeshProUGUI__InternalCrossFadeColor (TMPro_TextMeshProUGUI_o* __this, UnityEngine_Color_o targetColor, float duration, bool ignoreTimeScale, bool useAlpha, const MethodInfo*);
void TMPro_TextMeshProUGUI__InternalCrossFadeAlpha (TMPro_TextMeshProUGUI_o* __this, float alpha, float duration, bool ignoreTimeScale, const MethodInfo*);
void TMPro_TextMeshProUGUI__ForceMeshUpdate (TMPro_TextMeshProUGUI_o* __this, bool ignoreActiveState, bool forceTextReparsing, const MethodInfo*);
TMPro_TMP_TextInfo_o* TMPro_TextMeshProUGUI__GetTextInfo (TMPro_TextMeshProUGUI_o* __this, System_String_o* text, const MethodInfo*);
void TMPro_TextMeshProUGUI__ClearMesh (TMPro_TextMeshProUGUI_o* __this, const MethodInfo*);
void TMPro_TextMeshProUGUI__add_OnPreRenderText (TMPro_TextMeshProUGUI_o* __this, System_Action_TMP_TextInfo__o* value, const MethodInfo*);
void TMPro_TextMeshProUGUI__remove_OnPreRenderText (TMPro_TextMeshProUGUI_o* __this, System_Action_TMP_TextInfo__o* value, const MethodInfo*);
void TMPro_TextMeshProUGUI__UpdateGeometry (TMPro_TextMeshProUGUI_o* __this, UnityEngine_Mesh_o* mesh, int32_t index, const MethodInfo*);
void TMPro_TextMeshProUGUI__UpdateVertexData (TMPro_TextMeshProUGUI_o* __this, int32_t flags, const MethodInfo*);
void TMPro_TextMeshProUGUI__UpdateVertexData (TMPro_TextMeshProUGUI_o* __this, const MethodInfo*);
void TMPro_TextMeshProUGUI__UpdateFontAsset (TMPro_TextMeshProUGUI_o* __this, const MethodInfo*);
void TMPro_TextMeshProUGUI___ctor (TMPro_TextMeshProUGUI_o* __this, const MethodInfo*);
void TMPro_TextMeshProUGUI___cctor (const MethodInfo*);
void TMPro_TextMeshProUGUI__DelayedGraphicRebuild_d__88___ctor (TMPro_TextMeshProUGUI__DelayedGraphicRebuild_d__88_o* __this, int32_t __1__state, const MethodInfo*);
void TMPro_TextMeshProUGUI__DelayedGraphicRebuild_d__88__System_IDisposable_Dispose (TMPro_TextMeshProUGUI__DelayedGraphicRebuild_d__88_o* __this, const MethodInfo*);
bool TMPro_TextMeshProUGUI__DelayedGraphicRebuild_d__88__MoveNext (TMPro_TextMeshProUGUI__DelayedGraphicRebuild_d__88_o* __this, const MethodInfo*);
Il2CppObject* TMPro_TextMeshProUGUI__DelayedGraphicRebuild_d__88__System_Collections_Generic_IEnumerator_System_Object__get_Current (TMPro_TextMeshProUGUI__DelayedGraphicRebuild_d__88_o* __this, const MethodInfo*);
void TMPro_TextMeshProUGUI__DelayedGraphicRebuild_d__88__System_Collections_IEnumerator_Reset (TMPro_TextMeshProUGUI__DelayedGraphicRebuild_d__88_o* __this, const MethodInfo*);
Il2CppObject* TMPro_TextMeshProUGUI__DelayedGraphicRebuild_d__88__System_Collections_IEnumerator_get_Current (TMPro_TextMeshProUGUI__DelayedGraphicRebuild_d__88_o* __this, const MethodInfo*);
void TMPro_TextMeshProUGUI__DelayedMaterialRebuild_d__89___ctor (TMPro_TextMeshProUGUI__DelayedMaterialRebuild_d__89_o* __this, int32_t __1__state, const MethodInfo*);
void TMPro_TextMeshProUGUI__DelayedMaterialRebuild_d__89__System_IDisposable_Dispose (TMPro_TextMeshProUGUI__DelayedMaterialRebuild_d__89_o* __this, const MethodInfo*);
bool TMPro_TextMeshProUGUI__DelayedMaterialRebuild_d__89__MoveNext (TMPro_TextMeshProUGUI__DelayedMaterialRebuild_d__89_o* __this, const MethodInfo*);
Il2CppObject* TMPro_TextMeshProUGUI__DelayedMaterialRebuild_d__89__System_Collections_Generic_IEnumerator_System_Object__get_Current (TMPro_TextMeshProUGUI__DelayedMaterialRebuild_d__89_o* __this, const MethodInfo*);
void TMPro_TextMeshProUGUI__DelayedMaterialRebuild_d__89__System_Collections_IEnumerator_Reset (TMPro_TextMeshProUGUI__DelayedMaterialRebuild_d__89_o* __this, const MethodInfo*);
Il2CppObject* TMPro_TextMeshProUGUI__DelayedMaterialRebuild_d__89__System_Collections_IEnumerator_get_Current (TMPro_TextMeshProUGUI__DelayedMaterialRebuild_d__89_o* __this, const MethodInfo*);
bool TMPro_TextContainer__get_hasChanged (TMPro_TextContainer_o* __this, const MethodInfo*);
void TMPro_TextContainer__set_hasChanged (TMPro_TextContainer_o* __this, bool value, const MethodInfo*);
UnityEngine_Vector2_o TMPro_TextContainer__get_pivot (TMPro_TextContainer_o* __this, const MethodInfo*);
void TMPro_TextContainer__set_pivot (TMPro_TextContainer_o* __this, UnityEngine_Vector2_o value, const MethodInfo*);
int32_t TMPro_TextContainer__get_anchorPosition (TMPro_TextContainer_o* __this, const MethodInfo*);
void TMPro_TextContainer__set_anchorPosition (TMPro_TextContainer_o* __this, int32_t value, const MethodInfo*);
UnityEngine_Rect_o TMPro_TextContainer__get_rect (TMPro_TextContainer_o* __this, const MethodInfo*);
void TMPro_TextContainer__set_rect (TMPro_TextContainer_o* __this, UnityEngine_Rect_o value, const MethodInfo*);
UnityEngine_Vector2_o TMPro_TextContainer__get_size (TMPro_TextContainer_o* __this, const MethodInfo*);
void TMPro_TextContainer__set_size (TMPro_TextContainer_o* __this, UnityEngine_Vector2_o value, const MethodInfo*);
float TMPro_TextContainer__get_width (TMPro_TextContainer_o* __this, const MethodInfo*);
void TMPro_TextContainer__set_width (TMPro_TextContainer_o* __this, float value, const MethodInfo*);
float TMPro_TextContainer__get_height (TMPro_TextContainer_o* __this, const MethodInfo*);
void TMPro_TextContainer__set_height (TMPro_TextContainer_o* __this, float value, const MethodInfo*);
bool TMPro_TextContainer__get_isDefaultWidth (TMPro_TextContainer_o* __this, const MethodInfo*);
bool TMPro_TextContainer__get_isDefaultHeight (TMPro_TextContainer_o* __this, const MethodInfo*);
bool TMPro_TextContainer__get_isAutoFitting (TMPro_TextContainer_o* __this, const MethodInfo*);
void TMPro_TextContainer__set_isAutoFitting (TMPro_TextContainer_o* __this, bool value, const MethodInfo*);
UnityEngine_Vector3_array* TMPro_TextContainer__get_corners (TMPro_TextContainer_o* __this, const MethodInfo*);
UnityEngine_Vector3_array* TMPro_TextContainer__get_worldCorners (TMPro_TextContainer_o* __this, const MethodInfo*);
UnityEngine_Vector4_o TMPro_TextContainer__get_margins (TMPro_TextContainer_o* __this, const MethodInfo*);
void TMPro_TextContainer__set_margins (TMPro_TextContainer_o* __this, UnityEngine_Vector4_o value, const MethodInfo*);
UnityEngine_RectTransform_o* TMPro_TextContainer__get_rectTransform (TMPro_TextContainer_o* __this, const MethodInfo*);
TMPro_TextMeshPro_o* TMPro_TextContainer__get_textMeshPro (TMPro_TextContainer_o* __this, const MethodInfo*);
void TMPro_TextContainer__Awake (TMPro_TextContainer_o* __this, const MethodInfo*);
void TMPro_TextContainer__OnEnable (TMPro_TextContainer_o* __this, const MethodInfo*);
void TMPro_TextContainer__OnDisable (TMPro_TextContainer_o* __this, const MethodInfo*);
void TMPro_TextContainer__OnContainerChanged (TMPro_TextContainer_o* __this, const MethodInfo*);
void TMPro_TextContainer__OnRectTransformDimensionsChange (TMPro_TextContainer_o* __this, const MethodInfo*);
void TMPro_TextContainer__SetRect (TMPro_TextContainer_o* __this, UnityEngine_Vector2_o size, const MethodInfo*);
void TMPro_TextContainer__UpdateCorners (TMPro_TextContainer_o* __this, const MethodInfo*);
UnityEngine_Vector2_o TMPro_TextContainer__GetPivot (TMPro_TextContainer_o* __this, int32_t anchor, const MethodInfo*);
int32_t TMPro_TextContainer__GetAnchorPosition (TMPro_TextContainer_o* __this, UnityEngine_Vector2_o pivot, const MethodInfo*);
void TMPro_TextContainer___ctor (TMPro_TextContainer_o* __this, const MethodInfo*);
void TMPro_TextContainer___cctor (const MethodInfo*);
void TMPro_SpriteAssetUtilities_TexturePacker_JsonArray___ctor (TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_o* __this, const MethodInfo*);
System_String_o* TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_SpriteFrame__ToString (TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_SpriteFrame_o __this, const MethodInfo*);
System_String_o* TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_SpriteSize__ToString (TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_SpriteSize_o __this, const MethodInfo*);
void TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_SpriteDataObject___ctor (TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_SpriteDataObject_o* __this, const MethodInfo*);
void nn_Nn__Abort (System_String_o* message, const MethodInfo*);
void nn_Nn__Abort (System_String_o* message, System_Object_array* args, const MethodInfo*);
void nn_Nn__Abort (bool condition, System_String_o* message, const MethodInfo*);
void nn_Nn__Abort (bool condition, System_String_o* message, System_Object_array* args, const MethodInfo*);
void nn_Result___ctor (nn_Result_o __this, int32_t module, int32_t description, const MethodInfo*);
bool nn_Result__IsSuccess (nn_Result_o __this, const MethodInfo*);
void nn_Result__abortUnlessSuccess (nn_Result_o __this, const MethodInfo*);
int32_t nn_Result__GetModule (nn_Result_o __this, const MethodInfo*);
int32_t nn_Result__GetDescription (nn_Result_o __this, const MethodInfo*);
System_String_o* nn_Result__ToString (nn_Result_o __this, const MethodInfo*);
bool nn_Result__Equals (nn_Result_o __this, Il2CppObject* obj, const MethodInfo*);
bool nn_Result__Equals (nn_Result_o __this, nn_Result_o other, const MethodInfo*);
int32_t nn_Result__GetHashCode (nn_Result_o __this, const MethodInfo*);
bool nn_Result__op_Equality (nn_Result_o lhs, nn_Result_o rhs, const MethodInfo*);
bool nn_Result__op_Inequality (nn_Result_o lhs, nn_Result_o rhs, const MethodInfo*);
void nn_ErrorRange___ctor (nn_ErrorRange_o __this, int32_t Module, int32_t DescriptionBegin, int32_t DescriptionEnd, const MethodInfo*);
int32_t nn_ErrorRange__get_Module (nn_ErrorRange_o __this, const MethodInfo*);
int32_t nn_ErrorRange__get_DescriptionBegin (nn_ErrorRange_o __this, const MethodInfo*);
int32_t nn_ErrorRange__get_DescriptionEnd (nn_ErrorRange_o __this, const MethodInfo*);
bool nn_ErrorRange__Includes (nn_ErrorRange_o __this, nn_Result_o result, const MethodInfo*);
void nn_util_Color4u8__Set (nn_util_Color4u8_o __this, uint8_t r, uint8_t g, uint8_t b, uint8_t a, const MethodInfo*);
System_String_o* nn_util_Color4u8__ToString (nn_util_Color4u8_o __this, const MethodInfo*);
bool nn_util_Color4u8__op_Equality (nn_util_Color4u8_o lhs, nn_util_Color4u8_o rhs, const MethodInfo*);
bool nn_util_Color4u8__op_Inequality (nn_util_Color4u8_o lhs, nn_util_Color4u8_o rhs, const MethodInfo*);
bool nn_util_Color4u8__Equals (nn_util_Color4u8_o __this, Il2CppObject* right, const MethodInfo*);
bool nn_util_Color4u8__Equals (nn_util_Color4u8_o __this, nn_util_Color4u8_o other, const MethodInfo*);
int32_t nn_util_Color4u8__GetHashCode (nn_util_Color4u8_o __this, const MethodInfo*);
void nn_util_Float2___ctor (nn_util_Float2_o __this, float x, float y, const MethodInfo*);
void nn_util_Float2__Set (nn_util_Float2_o __this, float x, float y, const MethodInfo*);
System_String_o* nn_util_Float2__ToString (nn_util_Float2_o __this, const MethodInfo*);
bool nn_util_Float2__op_Equality (nn_util_Float2_o lhs, nn_util_Float2_o rhs, const MethodInfo*);
bool nn_util_Float2__op_Inequality (nn_util_Float2_o lhs, nn_util_Float2_o rhs, const MethodInfo*);
bool nn_util_Float2__Equals (nn_util_Float2_o __this, Il2CppObject* right, const MethodInfo*);
bool nn_util_Float2__Equals (nn_util_Float2_o __this, nn_util_Float2_o other, const MethodInfo*);
int32_t nn_util_Float2__GetHashCode (nn_util_Float2_o __this, const MethodInfo*);
void nn_util_Float3___ctor (nn_util_Float3_o __this, float x, float y, float z, const MethodInfo*);
void nn_util_Float3__Set (nn_util_Float3_o __this, float x, float y, float z, const MethodInfo*);
System_String_o* nn_util_Float3__ToString (nn_util_Float3_o __this, const MethodInfo*);
bool nn_util_Float3__op_Equality (nn_util_Float3_o lhs, nn_util_Float3_o rhs, const MethodInfo*);
bool nn_util_Float3__op_Inequality (nn_util_Float3_o lhs, nn_util_Float3_o rhs, const MethodInfo*);
bool nn_util_Float3__Equals (nn_util_Float3_o __this, Il2CppObject* right, const MethodInfo*);
bool nn_util_Float3__Equals (nn_util_Float3_o __this, nn_util_Float3_o other, const MethodInfo*);
int32_t nn_util_Float3__GetHashCode (nn_util_Float3_o __this, const MethodInfo*);
void nn_util_Float4___ctor (nn_util_Float4_o __this, float x, float y, float z, float w, const MethodInfo*);
void nn_util_Float4__Set (nn_util_Float4_o __this, float x, float y, float z, float w, const MethodInfo*);
System_String_o* nn_util_Float4__ToString (nn_util_Float4_o __this, const MethodInfo*);
bool nn_util_Float4__op_Equality (nn_util_Float4_o lhs, nn_util_Float4_o rhs, const MethodInfo*);
bool nn_util_Float4__op_Inequality (nn_util_Float4_o lhs, nn_util_Float4_o rhs, const MethodInfo*);
bool nn_util_Float4__Equals (nn_util_Float4_o __this, Il2CppObject* right, const MethodInfo*);
bool nn_util_Float4__Equals (nn_util_Float4_o __this, nn_util_Float4_o other, const MethodInfo*);
int32_t nn_util_Float4__GetHashCode (nn_util_Float4_o __this, const MethodInfo*);
nn_Result_o nn_swkbd_Swkbd__ShowKeyboard (System_Text_StringBuilder_o* pOutResultString, nn_swkbd_ShowKeyboardArg_o showKeyboardArg, bool suspendUnityThreads, const MethodInfo*);
nn_Result_o nn_swkbd_Swkbd__ShowKeyboard (System_Byte_array* pOutResultString, nn_swkbd_ShowKeyboardArg_o showKeyboardArg, bool suspendUnityThreads, const MethodInfo*);
nn_Result_o nn_swkbd_Swkbd__ShowKeyboard (System_Text_StringBuilder_o* pOutResultString, nn_swkbd_ShowKeyboardArg_o showKeyboardArg, const MethodInfo*);
nn_Result_o nn_swkbd_Swkbd__ShowKeyboard (System_Byte_array* pOutResultString, nn_swkbd_ShowKeyboardArg_o showKeyboardArg, const MethodInfo*);
nn_Result_o nn_swkbd_Swkbd__ShowKeyboard (System_Text_StringBuilder_o* pOutResultString, int64_t bufSize, nn_swkbd_ShowKeyboardArg_o showKeyboardArg, const MethodInfo*);
nn_Result_o nn_swkbd_Swkbd__ShowKeyboard (System_Byte_array* pOutResultString, int64_t bufSize, nn_swkbd_ShowKeyboardArg_o showKeyboardArg, const MethodInfo*);
void nn_swkbd_Swkbd__InitializeKeyboardConfig (nn_swkbd_KeyboardConfig_o* pOutKeyboardConfig, const MethodInfo*);
void nn_swkbd_Swkbd__MakePreset (nn_swkbd_KeyboardConfig_o* pOutKeyboardConfig, int32_t preset, const MethodInfo*);
int64_t nn_swkbd_Swkbd__GetRequiredStringBufferSize (const MethodInfo*);
void nn_swkbd_Swkbd__SetLeftOptionalSymbolKey (nn_swkbd_KeyboardConfig_o* pOutKeyboardConfig, uint16_t code, const MethodInfo*);
void nn_swkbd_Swkbd__SetLeftOptionalSymbolKeyUtf8 (nn_swkbd_KeyboardConfig_o* pOutKeyboardConfig, System_Byte_array* code, const MethodInfo*);
void nn_swkbd_Swkbd__SetRightOptionalSymbolKey (nn_swkbd_KeyboardConfig_o* pOutKeyboardConfig, uint16_t code, const MethodInfo*);
void nn_swkbd_Swkbd__SetRightOptionalSymbolKeyUtf8 (nn_swkbd_KeyboardConfig_o* pOutKeyboardConfig, System_Byte_array* code, const MethodInfo*);
void nn_swkbd_Swkbd__SetOkText (nn_swkbd_KeyboardConfig_o* pOutKeyboardConfig, System_String_o* pStr, const MethodInfo*);
void nn_swkbd_Swkbd__SetOkTextUtf8 (nn_swkbd_KeyboardConfig_o* pOutKeyboardConfig, System_Byte_array* pStr, const MethodInfo*);
void nn_swkbd_Swkbd__SetHeaderText (nn_swkbd_KeyboardConfig_o* pOutKeyboardConfig, System_String_o* pStr, const MethodInfo*);
void nn_swkbd_Swkbd__SetHeaderTextUtf8 (nn_swkbd_KeyboardConfig_o* pOutKeyboardConfig, System_Byte_array* pStr, const MethodInfo*);
void nn_swkbd_Swkbd__SetSubText (nn_swkbd_KeyboardConfig_o* pOutKeyboardConfig, System_String_o* pStr, const MethodInfo*);
void nn_swkbd_Swkbd__SetSubTextUtf8 (nn_swkbd_KeyboardConfig_o* pOutKeyboardConfig, System_Byte_array* pStr, const MethodInfo*);
void nn_swkbd_Swkbd__SetGuideText (nn_swkbd_KeyboardConfig_o* pOutKeyboardConfig, System_String_o* pStr, const MethodInfo*);
void nn_swkbd_Swkbd__SetGuideTextUtf8 (nn_swkbd_KeyboardConfig_o* pOutKeyboardConfig, System_Byte_array* pStr, const MethodInfo*);
void nn_swkbd_Swkbd__SetInitialText (nn_swkbd_ShowKeyboardArg_o* pOutShowKeyboardArg, System_String_o* pStr, const MethodInfo*);
void nn_swkbd_Swkbd__SetInitialTextUtf8 (nn_swkbd_ShowKeyboardArg_o* pOutShowKeyboardArg, System_Byte_array* pStr, const MethodInfo*);
void nn_swkbd_Swkbd__SetUserWordList (nn_swkbd_ShowKeyboardArg_o* pOutShowKeyboardArg, nn_swkbd_UserWord_array* pUserWord, int32_t userWordNum, const MethodInfo*);
void nn_swkbd_Swkbd__SetTextCheckCallback (nn_swkbd_ShowKeyboardArg_o* pOutShowKeyboardArg, nn_swkbd_TextCheckCallback_o* pCallback, const MethodInfo*);
void nn_swkbd_Swkbd__SetCustomizedDictionaries (nn_swkbd_ShowKeyboardArg_o* pOutShowKeyboardArg, nn_swkbd_CustomizedDictionarySet_o dicSet, const MethodInfo*);
void nn_swkbd_Swkbd__Initialize (nn_swkbd_ShowKeyboardArg_o* pOutShowKeyboardArg, bool useDirectory, bool useTextCheck, const MethodInfo*);
void nn_swkbd_Swkbd__Initialize (nn_swkbd_ShowKeyboardArg_o* pOutShowKeyboardArg, bool useDirectory, const MethodInfo*);
void nn_swkbd_Swkbd__Initialize (nn_swkbd_ShowKeyboardArg_o* pOutShowKeyboardArg, const MethodInfo*);
void nn_swkbd_Swkbd__Initialize (nn_swkbd_ShowKeyboardArg_o* pOutShowKeyboardArg, int32_t userWordNum, bool useTextCheck, const MethodInfo*);
void nn_swkbd_Swkbd__Initialize (nn_swkbd_ShowKeyboardArg_o* pOutShowKeyboardArg, int32_t userWordNum, const MethodInfo*);
void nn_swkbd_Swkbd__Destroy (nn_swkbd_ShowKeyboardArg_o* pOutShowKeyboardArg, const MethodInfo*);
int32_t nn_swkbd_Swkbd__GetByteSize (System_Text_StringBuilder_o* sb, const MethodInfo*);
nn_ErrorRange_o nn_swkbd_Swkbd__get_ResultCanceled (const MethodInfo*);
void nn_swkbd_TextCheckCallback___ctor (nn_swkbd_TextCheckCallback_o* __this, Il2CppObject* object, intptr_t method, const MethodInfo*);
int32_t nn_swkbd_TextCheckCallback__Invoke (nn_swkbd_TextCheckCallback_o* __this, intptr_t pOutDialogTextBuf, int64_t* pOutDialogTextLengthSize, nn_swkbd_String_o* pStr, const MethodInfo*);
System_IAsyncResult_o* nn_swkbd_TextCheckCallback__BeginInvoke (nn_swkbd_TextCheckCallback_o* __this, intptr_t pOutDialogTextBuf, int64_t* pOutDialogTextLengthSize, nn_swkbd_String_o* pStr, System_AsyncCallback_o* callback, Il2CppObject* object, const MethodInfo*);
int32_t nn_swkbd_TextCheckCallback__EndInvoke (nn_swkbd_TextCheckCallback_o* __this, int64_t* pOutDialogTextLengthSize, nn_swkbd_String_o* pStr, System_IAsyncResult_o* result, const MethodInfo*);
bool nn_swkbd_DictionaryInfo__op_Equality (nn_swkbd_DictionaryInfo_o lhs, nn_swkbd_DictionaryInfo_o rhs, const MethodInfo*);
bool nn_swkbd_DictionaryInfo__op_Inequality (nn_swkbd_DictionaryInfo_o lhs, nn_swkbd_DictionaryInfo_o rhs, const MethodInfo*);
bool nn_swkbd_DictionaryInfo__Equals (nn_swkbd_DictionaryInfo_o __this, Il2CppObject* right, const MethodInfo*);
bool nn_swkbd_DictionaryInfo__Equals (nn_swkbd_DictionaryInfo_o __this, nn_swkbd_DictionaryInfo_o other, const MethodInfo*);
int32_t nn_swkbd_DictionaryInfo__GetHashCode (nn_swkbd_DictionaryInfo_o __this, const MethodInfo*);
int32_t nn_swkbd_CustomizedDictionarySet_DictionaryInfoArray24__get_Length (nn_swkbd_CustomizedDictionarySet_DictionaryInfoArray24_o __this, const MethodInfo*);
nn_swkbd_DictionaryInfo_o nn_swkbd_CustomizedDictionarySet_DictionaryInfoArray24__get_Item (nn_swkbd_CustomizedDictionarySet_DictionaryInfoArray24_o __this, int32_t index, const MethodInfo*);
void nn_swkbd_CustomizedDictionarySet_DictionaryInfoArray24__set_Item (nn_swkbd_CustomizedDictionarySet_DictionaryInfoArray24_o __this, int32_t index, nn_swkbd_DictionaryInfo_o value, const MethodInfo*);
int32_t nn_swkbd_CustomizedDictionarySet_DictionaryInfoArray24__get_Count (nn_swkbd_CustomizedDictionarySet_DictionaryInfoArray24_o __this, const MethodInfo*);
bool nn_swkbd_CustomizedDictionarySet_DictionaryInfoArray24__get_IsReadOnly (nn_swkbd_CustomizedDictionarySet_DictionaryInfoArray24_o __this, const MethodInfo*);
bool nn_swkbd_CustomizedDictionarySet_DictionaryInfoArray24__Contains (nn_swkbd_CustomizedDictionarySet_DictionaryInfoArray24_o __this, nn_swkbd_DictionaryInfo_o item, const MethodInfo*);
int32_t nn_swkbd_CustomizedDictionarySet_DictionaryInfoArray24__IndexOf (nn_swkbd_CustomizedDictionarySet_DictionaryInfoArray24_o __this, nn_swkbd_DictionaryInfo_o item, const MethodInfo*);
void nn_swkbd_CustomizedDictionarySet_DictionaryInfoArray24__CopyTo (nn_swkbd_CustomizedDictionarySet_DictionaryInfoArray24_o __this, nn_swkbd_DictionaryInfo_array* array, int32_t arrayIndex, const MethodInfo*);
System_String_o* nn_swkbd_CustomizedDictionarySet_DictionaryInfoArray24__ToString (nn_swkbd_CustomizedDictionarySet_DictionaryInfoArray24_o __this, const MethodInfo*);
System_Collections_Generic_IEnumerator_DictionaryInfo__o* nn_swkbd_CustomizedDictionarySet_DictionaryInfoArray24__GetEnumerator (nn_swkbd_CustomizedDictionarySet_DictionaryInfoArray24_o __this, const MethodInfo*);
System_Collections_IEnumerator_o* nn_swkbd_CustomizedDictionarySet_DictionaryInfoArray24__System_Collections_IEnumerable_GetEnumerator (nn_swkbd_CustomizedDictionarySet_DictionaryInfoArray24_o __this, const MethodInfo*);
void nn_swkbd_CustomizedDictionarySet_DictionaryInfoArray24__Add (nn_swkbd_CustomizedDictionarySet_DictionaryInfoArray24_o __this, nn_swkbd_DictionaryInfo_o item, const MethodInfo*);
void nn_swkbd_CustomizedDictionarySet_DictionaryInfoArray24__Clear (nn_swkbd_CustomizedDictionarySet_DictionaryInfoArray24_o __this, const MethodInfo*);
void nn_swkbd_CustomizedDictionarySet_DictionaryInfoArray24__Insert (nn_swkbd_CustomizedDictionarySet_DictionaryInfoArray24_o __this, int32_t index, nn_swkbd_DictionaryInfo_o item, const MethodInfo*);
bool nn_swkbd_CustomizedDictionarySet_DictionaryInfoArray24__Remove (nn_swkbd_CustomizedDictionarySet_DictionaryInfoArray24_o __this, nn_swkbd_DictionaryInfo_o item, const MethodInfo*);
void nn_swkbd_CustomizedDictionarySet_DictionaryInfoArray24__RemoveAt (nn_swkbd_CustomizedDictionarySet_DictionaryInfoArray24_o __this, int32_t index, const MethodInfo*);
void nn_swkbd_CustomizedDictionarySet_DictionaryInfoArray24__GetEnumerator_d__38___ctor (nn_swkbd_CustomizedDictionarySet_DictionaryInfoArray24__GetEnumerator_d__38_o* __this, int32_t __1__state, const MethodInfo*);
void nn_swkbd_CustomizedDictionarySet_DictionaryInfoArray24__GetEnumerator_d__38__System_IDisposable_Dispose (nn_swkbd_CustomizedDictionarySet_DictionaryInfoArray24__GetEnumerator_d__38_o* __this, const MethodInfo*);
bool nn_swkbd_CustomizedDictionarySet_DictionaryInfoArray24__GetEnumerator_d__38__MoveNext (nn_swkbd_CustomizedDictionarySet_DictionaryInfoArray24__GetEnumerator_d__38_o* __this, const MethodInfo*);
nn_swkbd_DictionaryInfo_o nn_swkbd_CustomizedDictionarySet_DictionaryInfoArray24__GetEnumerator_d__38__System_Collections_Generic_IEnumerator_nn_swkbd_DictionaryInfo__get_Current (nn_swkbd_CustomizedDictionarySet_DictionaryInfoArray24__GetEnumerator_d__38_o* __this, const MethodInfo*);
void nn_swkbd_CustomizedDictionarySet_DictionaryInfoArray24__GetEnumerator_d__38__System_Collections_IEnumerator_Reset (nn_swkbd_CustomizedDictionarySet_DictionaryInfoArray24__GetEnumerator_d__38_o* __this, const MethodInfo*);
Il2CppObject* nn_swkbd_CustomizedDictionarySet_DictionaryInfoArray24__GetEnumerator_d__38__System_Collections_IEnumerator_get_Current (nn_swkbd_CustomizedDictionarySet_DictionaryInfoArray24__GetEnumerator_d__38_o* __this, const MethodInfo*);
bool nn_oe_HealthWarningForRegionChina__IsDisappeared (const MethodInfo*);
nn_oe_Language__LanguageCode_o nn_oe_Language___GetDesired (const MethodInfo*);
System_String_o* nn_oe_Language__GetDesired (const MethodInfo*);
void nn_oe_CrashReport__Enable (const MethodInfo*);
void nn_oe_CrashReport__Disable (const MethodInfo*);
System_TimeSpan_o nn_oe_ProgramTotalActiveTime__Get (const MethodInfo*);
int64_t nn_oe_ProgramTotalActiveTime__GetNanoseconds (const MethodInfo*);
int32_t nn_ngc_Ngc__CountNumbers (System_String_o* str, const MethodInfo*);
nn_ErrorRange_o nn_ngc_Ngc__get_ResultNotInitialized (const MethodInfo*);
nn_ErrorRange_o nn_ngc_Ngc__get_ResultAlreadyInitialized (const MethodInfo*);
nn_ErrorRange_o nn_ngc_Ngc__get_ResultInvalidPointer (const MethodInfo*);
nn_ErrorRange_o nn_ngc_Ngc__get_ResultInvalidSize (const MethodInfo*);
void nn_ngc_ProfanityFilter___ctor (nn_ngc_ProfanityFilter_o* __this, const MethodInfo*);
void nn_ngc_ProfanityFilter___ctor (nn_ngc_ProfanityFilter_o* __this, bool checkDesiredLanguage, const MethodInfo*);
void nn_ngc_ProfanityFilter__Finalize (nn_ngc_ProfanityFilter_o* __this, const MethodInfo*);
void nn_ngc_ProfanityFilter__Dispose (nn_ngc_ProfanityFilter_o* __this, const MethodInfo*);
void nn_ngc_ProfanityFilter__Dispose (nn_ngc_ProfanityFilter_o* __this, bool disposing, const MethodInfo*);
uint32_t nn_ngc_ProfanityFilter__GetContentVersion (nn_ngc_ProfanityFilter_o* __this, const MethodInfo*);
nn_Result_o nn_ngc_ProfanityFilter__CheckProfanityWords (nn_ngc_ProfanityFilter_o* __this, nn_ngc_ProfanityFilter_PatternList_array* checkResults, int32_t patterns, System_String_array* words, const MethodInfo*);
nn_Result_o nn_ngc_ProfanityFilter__MaskProfanityWordsInText (nn_ngc_ProfanityFilter_o* __this, int32_t* profanityWordCount, System_String_o* inText, System_String_o** outText, int32_t patterns, const MethodInfo*);
void nn_ngc_ProfanityFilter__SetMaskMode (nn_ngc_ProfanityFilter_o* __this, int32_t mode, const MethodInfo*);
void nn_ngc_ProfanityFilter__SkipAtSignCheck (nn_ngc_ProfanityFilter_o* __this, int32_t skipMode, const MethodInfo*);
void nn_ngc_ProfanityFilter__Destroy (intptr_t profanityFilter, intptr_t ngcWorkBuffer, const MethodInfo*);
nn_Result_o nn_ngc_ProfanityFilter__Initialize (intptr_t* profanityFilter, intptr_t* ngcWorkBuffer, bool checkDesiredLanguage, const MethodInfo*);
uint32_t nn_ngc_ProfanityFilter__GetContentVersion (intptr_t profanityFilter, const MethodInfo*);
nn_Result_o nn_ngc_ProfanityFilter__CheckProfanityWords (intptr_t profanityFilter, nn_ngc_ProfanityFilter_PatternList_array* checkResults, int32_t patterns, System_String_array* words, int64_t wordCount, const MethodInfo*);
nn_Result_o nn_ngc_ProfanityFilter__MaskProfanityWordsInText (intptr_t profanityFilter, int32_t* profanityWordCount, System_String_o* text, int32_t patterns, const MethodInfo*);
void nn_ngc_ProfanityFilter__SetMaskMode (intptr_t profanityFilter, int32_t mode, const MethodInfo*);
void nn_ngc_ProfanityFilter__SkipAtSignCheck (intptr_t profanityFilter, int32_t skipMode, const MethodInfo*);
nn_Result_o nn_ngc_ProfanityFilterForPlatformRegionChina__CheckProfanityWords (bool* pOutCheckResult, System_String_o* pText, const MethodInfo*);
nn_Result_o nn_ngc_ProfanityFilterForPlatformRegionChina__CheckProfanityWords (bool* pOutCheckResult, System_Text_StringBuilder_o* pText, const MethodInfo*);
nn_Result_o nn_ngc_ProfanityFilterForPlatformRegionChina__MaskProfanityWords (System_Text_StringBuilder_o* pOutText, const MethodInfo*);
void nn_irsensor_ClusteringProcessor__GetDefaultConfig (nn_irsensor_ClusteringProcessorConfig_o* pOutValue, const MethodInfo*);
void nn_irsensor_ClusteringProcessor__Run (nn_irsensor_IrCameraHandle_o handle, nn_irsensor_ClusteringProcessorConfig_o config, const MethodInfo*);
nn_Result_o nn_irsensor_ClusteringProcessor__GetState (nn_irsensor_ClusteringProcessorState_o* pOutValue, nn_irsensor_IrCameraHandle_o handle, const MethodInfo*);
nn_Result_o nn_irsensor_ClusteringProcessor__GetStates (nn_irsensor_ClusteringProcessorState_array* pOutStates, int32_t* pOutCount, int32_t countMax, nn_irsensor_IrCameraHandle_o handle, const MethodInfo*);
System_String_o* nn_irsensor_ClusteringProcessorConfig__ToString (nn_irsensor_ClusteringProcessorConfig_o __this, const MethodInfo*);
System_String_o* nn_irsensor_ClusteringData__ToString (nn_irsensor_ClusteringData_o __this, const MethodInfo*);
bool nn_irsensor_ClusteringData__op_Equality (nn_irsensor_ClusteringData_o lhs, nn_irsensor_ClusteringData_o rhs, const MethodInfo*);
bool nn_irsensor_ClusteringData__op_Inequality (nn_irsensor_ClusteringData_o lhs, nn_irsensor_ClusteringData_o rhs, const MethodInfo*);
bool nn_irsensor_ClusteringData__Equals (nn_irsensor_ClusteringData_o __this, Il2CppObject* right, const MethodInfo*);
bool nn_irsensor_ClusteringData__Equals (nn_irsensor_ClusteringData_o __this, nn_irsensor_ClusteringData_o other, const MethodInfo*);
int32_t nn_irsensor_ClusteringData__GetHashCode (nn_irsensor_ClusteringData_o __this, const MethodInfo*);
void nn_irsensor_ClusteringProcessorState__SetDefault (nn_irsensor_ClusteringProcessorState_o __this, const MethodInfo*);
System_String_o* nn_irsensor_ClusteringProcessorState__ToString (nn_irsensor_ClusteringProcessorState_o __this, const MethodInfo*);
int32_t nn_irsensor_ClusteringProcessorState_ClusteringDataArray16__get_Length (nn_irsensor_ClusteringProcessorState_ClusteringDataArray16_o __this, const MethodInfo*);
nn_irsensor_ClusteringData_o nn_irsensor_ClusteringProcessorState_ClusteringDataArray16__get_Item (nn_irsensor_ClusteringProcessorState_ClusteringDataArray16_o __this, int32_t index, const MethodInfo*);
void nn_irsensor_ClusteringProcessorState_ClusteringDataArray16__set_Item (nn_irsensor_ClusteringProcessorState_ClusteringDataArray16_o __this, int32_t index, nn_irsensor_ClusteringData_o value, const MethodInfo*);
int32_t nn_irsensor_ClusteringProcessorState_ClusteringDataArray16__get_Count (nn_irsensor_ClusteringProcessorState_ClusteringDataArray16_o __this, const MethodInfo*);
bool nn_irsensor_ClusteringProcessorState_ClusteringDataArray16__get_IsReadOnly (nn_irsensor_ClusteringProcessorState_ClusteringDataArray16_o __this, const MethodInfo*);
bool nn_irsensor_ClusteringProcessorState_ClusteringDataArray16__Contains (nn_irsensor_ClusteringProcessorState_ClusteringDataArray16_o __this, nn_irsensor_ClusteringData_o item, const MethodInfo*);
int32_t nn_irsensor_ClusteringProcessorState_ClusteringDataArray16__IndexOf (nn_irsensor_ClusteringProcessorState_ClusteringDataArray16_o __this, nn_irsensor_ClusteringData_o item, const MethodInfo*);
void nn_irsensor_ClusteringProcessorState_ClusteringDataArray16__CopyTo (nn_irsensor_ClusteringProcessorState_ClusteringDataArray16_o __this, nn_irsensor_ClusteringData_array* array, int32_t arrayIndex, const MethodInfo*);
System_String_o* nn_irsensor_ClusteringProcessorState_ClusteringDataArray16__ToString (nn_irsensor_ClusteringProcessorState_ClusteringDataArray16_o __this, const MethodInfo*);
System_Collections_Generic_IEnumerator_ClusteringData__o* nn_irsensor_ClusteringProcessorState_ClusteringDataArray16__GetEnumerator (nn_irsensor_ClusteringProcessorState_ClusteringDataArray16_o __this, const MethodInfo*);
System_Collections_IEnumerator_o* nn_irsensor_ClusteringProcessorState_ClusteringDataArray16__System_Collections_IEnumerable_GetEnumerator (nn_irsensor_ClusteringProcessorState_ClusteringDataArray16_o __this, const MethodInfo*);
void nn_irsensor_ClusteringProcessorState_ClusteringDataArray16__Add (nn_irsensor_ClusteringProcessorState_ClusteringDataArray16_o __this, nn_irsensor_ClusteringData_o item, const MethodInfo*);
void nn_irsensor_ClusteringProcessorState_ClusteringDataArray16__Clear (nn_irsensor_ClusteringProcessorState_ClusteringDataArray16_o __this, const MethodInfo*);
void nn_irsensor_ClusteringProcessorState_ClusteringDataArray16__Insert (nn_irsensor_ClusteringProcessorState_ClusteringDataArray16_o __this, int32_t index, nn_irsensor_ClusteringData_o item, const MethodInfo*);
bool nn_irsensor_ClusteringProcessorState_ClusteringDataArray16__Remove (nn_irsensor_ClusteringProcessorState_ClusteringDataArray16_o __this, nn_irsensor_ClusteringData_o item, const MethodInfo*);
void nn_irsensor_ClusteringProcessorState_ClusteringDataArray16__RemoveAt (nn_irsensor_ClusteringProcessorState_ClusteringDataArray16_o __this, int32_t index, const MethodInfo*);
void nn_irsensor_ClusteringProcessorState_ClusteringDataArray16__GetEnumerator_d__30___ctor (nn_irsensor_ClusteringProcessorState_ClusteringDataArray16__GetEnumerator_d__30_o* __this, int32_t __1__state, const MethodInfo*);
void nn_irsensor_ClusteringProcessorState_ClusteringDataArray16__GetEnumerator_d__30__System_IDisposable_Dispose (nn_irsensor_ClusteringProcessorState_ClusteringDataArray16__GetEnumerator_d__30_o* __this, const MethodInfo*);
bool nn_irsensor_ClusteringProcessorState_ClusteringDataArray16__GetEnumerator_d__30__MoveNext (nn_irsensor_ClusteringProcessorState_ClusteringDataArray16__GetEnumerator_d__30_o* __this, const MethodInfo*);
nn_irsensor_ClusteringData_o nn_irsensor_ClusteringProcessorState_ClusteringDataArray16__GetEnumerator_d__30__System_Collections_Generic_IEnumerator_nn_irsensor_ClusteringData__get_Current (nn_irsensor_ClusteringProcessorState_ClusteringDataArray16__GetEnumerator_d__30_o* __this, const MethodInfo*);
void nn_irsensor_ClusteringProcessorState_ClusteringDataArray16__GetEnumerator_d__30__System_Collections_IEnumerator_Reset (nn_irsensor_ClusteringProcessorState_ClusteringDataArray16__GetEnumerator_d__30_o* __this, const MethodInfo*);
Il2CppObject* nn_irsensor_ClusteringProcessorState_ClusteringDataArray16__GetEnumerator_d__30__System_Collections_IEnumerator_get_Current (nn_irsensor_ClusteringProcessorState_ClusteringDataArray16__GetEnumerator_d__30_o* __this, const MethodInfo*);
nn_Result_o nn_irsensor_HandAnalysis__Run (nn_irsensor_IrCameraHandle_o handle, nn_irsensor_HandAnalysisConfig_o config, const MethodInfo*);
nn_Result_o nn_irsensor_HandAnalysis__GetSilhouetteState (nn_irsensor_HandAnalysisSilhouetteState_o* pOutValue, nn_irsensor_IrCameraHandle_o handle, const MethodInfo*);
nn_Result_o nn_irsensor_HandAnalysis__GetSilhouetteState (nn_irsensor_HandAnalysisSilhouetteState_array* pOutValueArray, int32_t* pReturnCount, int64_t infSamplingNumber, nn_irsensor_IrCameraHandle_o handle, const MethodInfo*);
nn_Result_o nn_irsensor_HandAnalysis__GetSilhouetteState (nn_irsensor_HandAnalysisSilhouetteState_array* pOutValueArray, int32_t* pReturnCount, int32_t maxCount, int64_t infSamplingNumber, nn_irsensor_IrCameraHandle_o handle, const MethodInfo*);
nn_Result_o nn_irsensor_HandAnalysis__GetSilhouetteState (nn_irsensor_HandAnalysisSilhouetteState_o* pOutState, nn_util_Float2_array* pOutPointBuffer, nn_irsensor_IrCameraHandle_o handle, const MethodInfo*);
nn_Result_o nn_irsensor_HandAnalysis__GetSilhouetteState (nn_irsensor_HandAnalysisSilhouetteState_array* pOutStateArray, nn_util_Float2_array_array* pOutPointArray, int32_t* pReturnCount, int64_t infSamplingNumber, nn_irsensor_IrCameraHandle_o handle, const MethodInfo*);
nn_Result_o nn_irsensor_HandAnalysis__GetSilhouetteState (nn_irsensor_HandAnalysisSilhouetteState_array* pOutStateArray, nn_util_Float2_array_array* pOutPointArray, int32_t* pReturnCount, int32_t maxCount, int64_t infSamplingNumber, nn_irsensor_IrCameraHandle_o handle, const MethodInfo*);
nn_Result_o nn_irsensor_HandAnalysis__GetImageState (nn_irsensor_HandAnalysisImageState_o* pOutState, System_UInt16_array* pOutImageBuffer, nn_irsensor_IrCameraHandle_o handle, const MethodInfo*);
nn_Result_o nn_irsensor_HandAnalysis__GetImageState (nn_irsensor_HandAnalysisImageState_array* pOutStateArray, System_UInt16_array* pOutImageArray, int32_t* pReturnCount, int64_t infSamplingNumber, nn_irsensor_IrCameraHandle_o handle, const MethodInfo*);
nn_Result_o nn_irsensor_HandAnalysis__GetImageState (nn_irsensor_HandAnalysisImageState_array* pOutStateArray, System_UInt16_array* pOutImageArray, int32_t* pReturnCount, int32_t maxCount, int64_t infSamplingNumber, nn_irsensor_IrCameraHandle_o handle, const MethodInfo*);
System_String_o* nn_irsensor_HandAnalysisConfig__ToString (nn_irsensor_HandAnalysisConfig_o __this, const MethodInfo*);
bool nn_irsensor_HandAnalysisConfig__op_Equality (nn_irsensor_HandAnalysisConfig_o lhs, nn_irsensor_HandAnalysisConfig_o rhs, const MethodInfo*);
bool nn_irsensor_HandAnalysisConfig__op_Inequality (nn_irsensor_HandAnalysisConfig_o lhs, nn_irsensor_HandAnalysisConfig_o rhs, const MethodInfo*);
bool nn_irsensor_HandAnalysisConfig__Equals (nn_irsensor_HandAnalysisConfig_o __this, Il2CppObject* right, const MethodInfo*);
bool nn_irsensor_HandAnalysisConfig__Equals (nn_irsensor_HandAnalysisConfig_o __this, nn_irsensor_HandAnalysisConfig_o other, const MethodInfo*);
int32_t nn_irsensor_HandAnalysisConfig__GetHashCode (nn_irsensor_HandAnalysisConfig_o __this, const MethodInfo*);
System_String_o* nn_irsensor_Protrusion__ToString (nn_irsensor_Protrusion_o __this, const MethodInfo*);
bool nn_irsensor_Protrusion__op_Equality (nn_irsensor_Protrusion_o lhs, nn_irsensor_Protrusion_o rhs, const MethodInfo*);
bool nn_irsensor_Protrusion__op_Inequality (nn_irsensor_Protrusion_o lhs, nn_irsensor_Protrusion_o rhs, const MethodInfo*);
bool nn_irsensor_Protrusion__Equals (nn_irsensor_Protrusion_o __this, Il2CppObject* right, const MethodInfo*);
bool nn_irsensor_Protrusion__Equals (nn_irsensor_Protrusion_o __this, nn_irsensor_Protrusion_o other, const MethodInfo*);
int32_t nn_irsensor_Protrusion__GetHashCode (nn_irsensor_Protrusion_o __this, const MethodInfo*);
System_String_o* nn_irsensor_Finger__ToString (nn_irsensor_Finger_o __this, const MethodInfo*);
bool nn_irsensor_Finger__op_Equality (nn_irsensor_Finger_o lhs, nn_irsensor_Finger_o rhs, const MethodInfo*);
bool nn_irsensor_Finger__op_Inequality (nn_irsensor_Finger_o lhs, nn_irsensor_Finger_o rhs, const MethodInfo*);
bool nn_irsensor_Finger__Equals (nn_irsensor_Finger_o __this, Il2CppObject* right, const MethodInfo*);
bool nn_irsensor_Finger__Equals (nn_irsensor_Finger_o __this, nn_irsensor_Finger_o other, const MethodInfo*);
int32_t nn_irsensor_Finger__GetHashCode (nn_irsensor_Finger_o __this, const MethodInfo*);
System_String_o* nn_irsensor_Palm__ToString (nn_irsensor_Palm_o __this, const MethodInfo*);
bool nn_irsensor_Palm__op_Equality (nn_irsensor_Palm_o lhs, nn_irsensor_Palm_o rhs, const MethodInfo*);
bool nn_irsensor_Palm__op_Inequality (nn_irsensor_Palm_o lhs, nn_irsensor_Palm_o rhs, const MethodInfo*);
bool nn_irsensor_Palm__Equals (nn_irsensor_Palm_o __this, Il2CppObject* right, const MethodInfo*);
bool nn_irsensor_Palm__Equals (nn_irsensor_Palm_o __this, nn_irsensor_Palm_o other, const MethodInfo*);
int32_t nn_irsensor_Palm__GetHashCode (nn_irsensor_Palm_o __this, const MethodInfo*);
System_String_o* nn_irsensor_Arm__ToString (nn_irsensor_Arm_o __this, const MethodInfo*);
bool nn_irsensor_Arm__op_Equality (nn_irsensor_Arm_o lhs, nn_irsensor_Arm_o rhs, const MethodInfo*);
bool nn_irsensor_Arm__op_Inequality (nn_irsensor_Arm_o lhs, nn_irsensor_Arm_o rhs, const MethodInfo*);
bool nn_irsensor_Arm__Equals (nn_irsensor_Arm_o __this, Il2CppObject* right, const MethodInfo*);
bool nn_irsensor_Arm__Equals (nn_irsensor_Arm_o __this, nn_irsensor_Arm_o other, const MethodInfo*);
int32_t nn_irsensor_Arm__GetHashCode (nn_irsensor_Arm_o __this, const MethodInfo*);
bool nn_irsensor_Hand__op_Equality (nn_irsensor_Hand_o lhs, nn_irsensor_Hand_o rhs, const MethodInfo*);
bool nn_irsensor_Hand__op_Inequality (nn_irsensor_Hand_o lhs, nn_irsensor_Hand_o rhs, const MethodInfo*);
bool nn_irsensor_Hand__Equals (nn_irsensor_Hand_o __this, Il2CppObject* right, const MethodInfo*);
bool nn_irsensor_Hand__Equals (nn_irsensor_Hand_o __this, nn_irsensor_Hand_o other, const MethodInfo*);
int32_t nn_irsensor_Hand__GetHashCode (nn_irsensor_Hand_o __this, const MethodInfo*);
int32_t nn_irsensor_Hand_ProtrusionArray8__get_Length (nn_irsensor_Hand_ProtrusionArray8_o __this, const MethodInfo*);
nn_irsensor_Protrusion_o nn_irsensor_Hand_ProtrusionArray8__get_Item (nn_irsensor_Hand_ProtrusionArray8_o __this, int32_t index, const MethodInfo*);
void nn_irsensor_Hand_ProtrusionArray8__set_Item (nn_irsensor_Hand_ProtrusionArray8_o __this, int32_t index, nn_irsensor_Protrusion_o value, const MethodInfo*);
int32_t nn_irsensor_Hand_ProtrusionArray8__get_Count (nn_irsensor_Hand_ProtrusionArray8_o __this, const MethodInfo*);
bool nn_irsensor_Hand_ProtrusionArray8__get_IsReadOnly (nn_irsensor_Hand_ProtrusionArray8_o __this, const MethodInfo*);
bool nn_irsensor_Hand_ProtrusionArray8__Contains (nn_irsensor_Hand_ProtrusionArray8_o __this, nn_irsensor_Protrusion_o item, const MethodInfo*);
int32_t nn_irsensor_Hand_ProtrusionArray8__IndexOf (nn_irsensor_Hand_ProtrusionArray8_o __this, nn_irsensor_Protrusion_o item, const MethodInfo*);
void nn_irsensor_Hand_ProtrusionArray8__CopyTo (nn_irsensor_Hand_ProtrusionArray8_o __this, nn_irsensor_Protrusion_array* array, int32_t arrayIndex, const MethodInfo*);
System_String_o* nn_irsensor_Hand_ProtrusionArray8__ToString (nn_irsensor_Hand_ProtrusionArray8_o __this, const MethodInfo*);
System_Collections_Generic_IEnumerator_Protrusion__o* nn_irsensor_Hand_ProtrusionArray8__GetEnumerator (nn_irsensor_Hand_ProtrusionArray8_o __this, const MethodInfo*);
System_Collections_IEnumerator_o* nn_irsensor_Hand_ProtrusionArray8__System_Collections_IEnumerable_GetEnumerator (nn_irsensor_Hand_ProtrusionArray8_o __this, const MethodInfo*);
void nn_irsensor_Hand_ProtrusionArray8__Add (nn_irsensor_Hand_ProtrusionArray8_o __this, nn_irsensor_Protrusion_o item, const MethodInfo*);
void nn_irsensor_Hand_ProtrusionArray8__Clear (nn_irsensor_Hand_ProtrusionArray8_o __this, const MethodInfo*);
void nn_irsensor_Hand_ProtrusionArray8__Insert (nn_irsensor_Hand_ProtrusionArray8_o __this, int32_t index, nn_irsensor_Protrusion_o item, const MethodInfo*);
bool nn_irsensor_Hand_ProtrusionArray8__Remove (nn_irsensor_Hand_ProtrusionArray8_o __this, nn_irsensor_Protrusion_o item, const MethodInfo*);
void nn_irsensor_Hand_ProtrusionArray8__RemoveAt (nn_irsensor_Hand_ProtrusionArray8_o __this, int32_t index, const MethodInfo*);
void nn_irsensor_Hand_ProtrusionArray8__GetEnumerator_d__22___ctor (nn_irsensor_Hand_ProtrusionArray8__GetEnumerator_d__22_o* __this, int32_t __1__state, const MethodInfo*);
void nn_irsensor_Hand_ProtrusionArray8__GetEnumerator_d__22__System_IDisposable_Dispose (nn_irsensor_Hand_ProtrusionArray8__GetEnumerator_d__22_o* __this, const MethodInfo*);
bool nn_irsensor_Hand_ProtrusionArray8__GetEnumerator_d__22__MoveNext (nn_irsensor_Hand_ProtrusionArray8__GetEnumerator_d__22_o* __this, const MethodInfo*);
nn_irsensor_Protrusion_o nn_irsensor_Hand_ProtrusionArray8__GetEnumerator_d__22__System_Collections_Generic_IEnumerator_nn_irsensor_Protrusion__get_Current (nn_irsensor_Hand_ProtrusionArray8__GetEnumerator_d__22_o* __this, const MethodInfo*);
void nn_irsensor_Hand_ProtrusionArray8__GetEnumerator_d__22__System_Collections_IEnumerator_Reset (nn_irsensor_Hand_ProtrusionArray8__GetEnumerator_d__22_o* __this, const MethodInfo*);
Il2CppObject* nn_irsensor_Hand_ProtrusionArray8__GetEnumerator_d__22__System_Collections_IEnumerator_get_Current (nn_irsensor_Hand_ProtrusionArray8__GetEnumerator_d__22_o* __this, const MethodInfo*);
int32_t nn_irsensor_Hand_Fingers__get_Length (nn_irsensor_Hand_Fingers_o __this, const MethodInfo*);
nn_irsensor_Finger_o nn_irsensor_Hand_Fingers__get_Item (nn_irsensor_Hand_Fingers_o __this, int32_t index, const MethodInfo*);
void nn_irsensor_Hand_Fingers__set_Item (nn_irsensor_Hand_Fingers_o __this, int32_t index, nn_irsensor_Finger_o value, const MethodInfo*);
int32_t nn_irsensor_Hand_Fingers__get_Count (nn_irsensor_Hand_Fingers_o __this, const MethodInfo*);
bool nn_irsensor_Hand_Fingers__get_IsReadOnly (nn_irsensor_Hand_Fingers_o __this, const MethodInfo*);
bool nn_irsensor_Hand_Fingers__Contains (nn_irsensor_Hand_Fingers_o __this, nn_irsensor_Finger_o item, const MethodInfo*);
int32_t nn_irsensor_Hand_Fingers__IndexOf (nn_irsensor_Hand_Fingers_o __this, nn_irsensor_Finger_o item, const MethodInfo*);
void nn_irsensor_Hand_Fingers__CopyTo (nn_irsensor_Hand_Fingers_o __this, nn_irsensor_Finger_array* array, int32_t arrayIndex, const MethodInfo*);
System_String_o* nn_irsensor_Hand_Fingers__ToString (nn_irsensor_Hand_Fingers_o __this, const MethodInfo*);
System_Collections_Generic_IEnumerator_Finger__o* nn_irsensor_Hand_Fingers__GetEnumerator (nn_irsensor_Hand_Fingers_o __this, const MethodInfo*);
System_Collections_IEnumerator_o* nn_irsensor_Hand_Fingers__System_Collections_IEnumerable_GetEnumerator (nn_irsensor_Hand_Fingers_o __this, const MethodInfo*);
void nn_irsensor_Hand_Fingers__Add (nn_irsensor_Hand_Fingers_o __this, nn_irsensor_Finger_o item, const MethodInfo*);
void nn_irsensor_Hand_Fingers__Clear (nn_irsensor_Hand_Fingers_o __this, const MethodInfo*);
void nn_irsensor_Hand_Fingers__Insert (nn_irsensor_Hand_Fingers_o __this, int32_t index, nn_irsensor_Finger_o item, const MethodInfo*);
bool nn_irsensor_Hand_Fingers__Remove (nn_irsensor_Hand_Fingers_o __this, nn_irsensor_Finger_o item, const MethodInfo*);
void nn_irsensor_Hand_Fingers__RemoveAt (nn_irsensor_Hand_Fingers_o __this, int32_t index, const MethodInfo*);
void nn_irsensor_Hand_Fingers__GetEnumerator_d__19___ctor (nn_irsensor_Hand_Fingers__GetEnumerator_d__19_o* __this, int32_t __1__state, const MethodInfo*);
void nn_irsensor_Hand_Fingers__GetEnumerator_d__19__System_IDisposable_Dispose (nn_irsensor_Hand_Fingers__GetEnumerator_d__19_o* __this, const MethodInfo*);
bool nn_irsensor_Hand_Fingers__GetEnumerator_d__19__MoveNext (nn_irsensor_Hand_Fingers__GetEnumerator_d__19_o* __this, const MethodInfo*);
nn_irsensor_Finger_o nn_irsensor_Hand_Fingers__GetEnumerator_d__19__System_Collections_Generic_IEnumerator_nn_irsensor_Finger__get_Current (nn_irsensor_Hand_Fingers__GetEnumerator_d__19_o* __this, const MethodInfo*);
void nn_irsensor_Hand_Fingers__GetEnumerator_d__19__System_Collections_IEnumerator_Reset (nn_irsensor_Hand_Fingers__GetEnumerator_d__19_o* __this, const MethodInfo*);
Il2CppObject* nn_irsensor_Hand_Fingers__GetEnumerator_d__19__System_Collections_IEnumerator_get_Current (nn_irsensor_Hand_Fingers__GetEnumerator_d__19_o* __this, const MethodInfo*);
System_String_o* nn_irsensor_Shape__ToString (nn_irsensor_Shape_o __this, const MethodInfo*);
bool nn_irsensor_Shape__op_Equality (nn_irsensor_Shape_o lhs, nn_irsensor_Shape_o rhs, const MethodInfo*);
bool nn_irsensor_Shape__op_Inequality (nn_irsensor_Shape_o lhs, nn_irsensor_Shape_o rhs, const MethodInfo*);
bool nn_irsensor_Shape__Equals (nn_irsensor_Shape_o __this, Il2CppObject* right, const MethodInfo*);
bool nn_irsensor_Shape__Equals (nn_irsensor_Shape_o __this, nn_irsensor_Shape_o other, const MethodInfo*);
int32_t nn_irsensor_Shape__GetHashCode (nn_irsensor_Shape_o __this, const MethodInfo*);
int32_t nn_irsensor_HandAnalysisSilhouetteState_ShapeArray16__get_Length (nn_irsensor_HandAnalysisSilhouetteState_ShapeArray16_o __this, const MethodInfo*);
nn_irsensor_Shape_o nn_irsensor_HandAnalysisSilhouetteState_ShapeArray16__get_Item (nn_irsensor_HandAnalysisSilhouetteState_ShapeArray16_o __this, int32_t index, const MethodInfo*);
void nn_irsensor_HandAnalysisSilhouetteState_ShapeArray16__set_Item (nn_irsensor_HandAnalysisSilhouetteState_ShapeArray16_o __this, int32_t index, nn_irsensor_Shape_o value, const MethodInfo*);
int32_t nn_irsensor_HandAnalysisSilhouetteState_ShapeArray16__get_Count (nn_irsensor_HandAnalysisSilhouetteState_ShapeArray16_o __this, const MethodInfo*);
bool nn_irsensor_HandAnalysisSilhouetteState_ShapeArray16__get_IsReadOnly (nn_irsensor_HandAnalysisSilhouetteState_ShapeArray16_o __this, const MethodInfo*);
bool nn_irsensor_HandAnalysisSilhouetteState_ShapeArray16__Contains (nn_irsensor_HandAnalysisSilhouetteState_ShapeArray16_o __this, nn_irsensor_Shape_o item, const MethodInfo*);
int32_t nn_irsensor_HandAnalysisSilhouetteState_ShapeArray16__IndexOf (nn_irsensor_HandAnalysisSilhouetteState_ShapeArray16_o __this, nn_irsensor_Shape_o item, const MethodInfo*);
void nn_irsensor_HandAnalysisSilhouetteState_ShapeArray16__CopyTo (nn_irsensor_HandAnalysisSilhouetteState_ShapeArray16_o __this, nn_irsensor_Shape_array* array, int32_t arrayIndex, const MethodInfo*);
System_String_o* nn_irsensor_HandAnalysisSilhouetteState_ShapeArray16__ToString (nn_irsensor_HandAnalysisSilhouetteState_ShapeArray16_o __this, const MethodInfo*);
System_Collections_Generic_IEnumerator_Shape__o* nn_irsensor_HandAnalysisSilhouetteState_ShapeArray16__GetEnumerator (nn_irsensor_HandAnalysisSilhouetteState_ShapeArray16_o __this, const MethodInfo*);
System_Collections_IEnumerator_o* nn_irsensor_HandAnalysisSilhouetteState_ShapeArray16__System_Collections_IEnumerable_GetEnumerator (nn_irsensor_HandAnalysisSilhouetteState_ShapeArray16_o __this, const MethodInfo*);
void nn_irsensor_HandAnalysisSilhouetteState_ShapeArray16__Add (nn_irsensor_HandAnalysisSilhouetteState_ShapeArray16_o __this, nn_irsensor_Shape_o item, const MethodInfo*);
void nn_irsensor_HandAnalysisSilhouetteState_ShapeArray16__Clear (nn_irsensor_HandAnalysisSilhouetteState_ShapeArray16_o __this, const MethodInfo*);
void nn_irsensor_HandAnalysisSilhouetteState_ShapeArray16__Insert (nn_irsensor_HandAnalysisSilhouetteState_ShapeArray16_o __this, int32_t index, nn_irsensor_Shape_o item, const MethodInfo*);
bool nn_irsensor_HandAnalysisSilhouetteState_ShapeArray16__Remove (nn_irsensor_HandAnalysisSilhouetteState_ShapeArray16_o __this, nn_irsensor_Shape_o item, const MethodInfo*);
void nn_irsensor_HandAnalysisSilhouetteState_ShapeArray16__RemoveAt (nn_irsensor_HandAnalysisSilhouetteState_ShapeArray16_o __this, int32_t index, const MethodInfo*);
void nn_irsensor_HandAnalysisSilhouetteState_ShapeArray16__GetEnumerator_d__30___ctor (nn_irsensor_HandAnalysisSilhouetteState_ShapeArray16__GetEnumerator_d__30_o* __this, int32_t __1__state, const MethodInfo*);
void nn_irsensor_HandAnalysisSilhouetteState_ShapeArray16__GetEnumerator_d__30__System_IDisposable_Dispose (nn_irsensor_HandAnalysisSilhouetteState_ShapeArray16__GetEnumerator_d__30_o* __this, const MethodInfo*);
bool nn_irsensor_HandAnalysisSilhouetteState_ShapeArray16__GetEnumerator_d__30__MoveNext (nn_irsensor_HandAnalysisSilhouetteState_ShapeArray16__GetEnumerator_d__30_o* __this, const MethodInfo*);
nn_irsensor_Shape_o nn_irsensor_HandAnalysisSilhouetteState_ShapeArray16__GetEnumerator_d__30__System_Collections_Generic_IEnumerator_nn_irsensor_Shape__get_Current (nn_irsensor_HandAnalysisSilhouetteState_ShapeArray16__GetEnumerator_d__30_o* __this, const MethodInfo*);
void nn_irsensor_HandAnalysisSilhouetteState_ShapeArray16__GetEnumerator_d__30__System_Collections_IEnumerator_Reset (nn_irsensor_HandAnalysisSilhouetteState_ShapeArray16__GetEnumerator_d__30_o* __this, const MethodInfo*);
Il2CppObject* nn_irsensor_HandAnalysisSilhouetteState_ShapeArray16__GetEnumerator_d__30__System_Collections_IEnumerator_get_Current (nn_irsensor_HandAnalysisSilhouetteState_ShapeArray16__GetEnumerator_d__30_o* __this, const MethodInfo*);
int32_t nn_irsensor_HandAnalysisSilhouetteState_HandArray2__get_Length (nn_irsensor_HandAnalysisSilhouetteState_HandArray2_o __this, const MethodInfo*);
nn_irsensor_Hand_o nn_irsensor_HandAnalysisSilhouetteState_HandArray2__get_Item (nn_irsensor_HandAnalysisSilhouetteState_HandArray2_o __this, int32_t index, const MethodInfo*);
void nn_irsensor_HandAnalysisSilhouetteState_HandArray2__set_Item (nn_irsensor_HandAnalysisSilhouetteState_HandArray2_o __this, int32_t index, nn_irsensor_Hand_o value, const MethodInfo*);
int32_t nn_irsensor_HandAnalysisSilhouetteState_HandArray2__get_Count (nn_irsensor_HandAnalysisSilhouetteState_HandArray2_o __this, const MethodInfo*);
bool nn_irsensor_HandAnalysisSilhouetteState_HandArray2__get_IsReadOnly (nn_irsensor_HandAnalysisSilhouetteState_HandArray2_o __this, const MethodInfo*);
bool nn_irsensor_HandAnalysisSilhouetteState_HandArray2__Contains (nn_irsensor_HandAnalysisSilhouetteState_HandArray2_o __this, nn_irsensor_Hand_o item, const MethodInfo*);
int32_t nn_irsensor_HandAnalysisSilhouetteState_HandArray2__IndexOf (nn_irsensor_HandAnalysisSilhouetteState_HandArray2_o __this, nn_irsensor_Hand_o item, const MethodInfo*);
void nn_irsensor_HandAnalysisSilhouetteState_HandArray2__CopyTo (nn_irsensor_HandAnalysisSilhouetteState_HandArray2_o __this, nn_irsensor_Hand_array* array, int32_t arrayIndex, const MethodInfo*);
System_String_o* nn_irsensor_HandAnalysisSilhouetteState_HandArray2__ToString (nn_irsensor_HandAnalysisSilhouetteState_HandArray2_o __this, const MethodInfo*);
System_Collections_Generic_IEnumerator_Hand__o* nn_irsensor_HandAnalysisSilhouetteState_HandArray2__GetEnumerator (nn_irsensor_HandAnalysisSilhouetteState_HandArray2_o __this, const MethodInfo*);
System_Collections_IEnumerator_o* nn_irsensor_HandAnalysisSilhouetteState_HandArray2__System_Collections_IEnumerable_GetEnumerator (nn_irsensor_HandAnalysisSilhouetteState_HandArray2_o __this, const MethodInfo*);
void nn_irsensor_HandAnalysisSilhouetteState_HandArray2__Add (nn_irsensor_HandAnalysisSilhouetteState_HandArray2_o __this, nn_irsensor_Hand_o item, const MethodInfo*);
void nn_irsensor_HandAnalysisSilhouetteState_HandArray2__Clear (nn_irsensor_HandAnalysisSilhouetteState_HandArray2_o __this, const MethodInfo*);
void nn_irsensor_HandAnalysisSilhouetteState_HandArray2__Insert (nn_irsensor_HandAnalysisSilhouetteState_HandArray2_o __this, int32_t index, nn_irsensor_Hand_o item, const MethodInfo*);
bool nn_irsensor_HandAnalysisSilhouetteState_HandArray2__Remove (nn_irsensor_HandAnalysisSilhouetteState_HandArray2_o __this, nn_irsensor_Hand_o item, const MethodInfo*);
void nn_irsensor_HandAnalysisSilhouetteState_HandArray2__RemoveAt (nn_irsensor_HandAnalysisSilhouetteState_HandArray2_o __this, int32_t index, const MethodInfo*);
void nn_irsensor_HandAnalysisSilhouetteState_HandArray2__GetEnumerator_d__16___ctor (nn_irsensor_HandAnalysisSilhouetteState_HandArray2__GetEnumerator_d__16_o* __this, int32_t __1__state, const MethodInfo*);
void nn_irsensor_HandAnalysisSilhouetteState_HandArray2__GetEnumerator_d__16__System_IDisposable_Dispose (nn_irsensor_HandAnalysisSilhouetteState_HandArray2__GetEnumerator_d__16_o* __this, const MethodInfo*);
bool nn_irsensor_HandAnalysisSilhouetteState_HandArray2__GetEnumerator_d__16__MoveNext (nn_irsensor_HandAnalysisSilhouetteState_HandArray2__GetEnumerator_d__16_o* __this, const MethodInfo*);
nn_irsensor_Hand_o nn_irsensor_HandAnalysisSilhouetteState_HandArray2__GetEnumerator_d__16__System_Collections_Generic_IEnumerator_nn_irsensor_Hand__get_Current (nn_irsensor_HandAnalysisSilhouetteState_HandArray2__GetEnumerator_d__16_o* __this, const MethodInfo*);
void nn_irsensor_HandAnalysisSilhouetteState_HandArray2__GetEnumerator_d__16__System_Collections_IEnumerator_Reset (nn_irsensor_HandAnalysisSilhouetteState_HandArray2__GetEnumerator_d__16_o* __this, const MethodInfo*);
Il2CppObject* nn_irsensor_HandAnalysisSilhouetteState_HandArray2__GetEnumerator_d__16__System_Collections_IEnumerator_get_Current (nn_irsensor_HandAnalysisSilhouetteState_HandArray2__GetEnumerator_d__16_o* __this, const MethodInfo*);
void nn_irsensor_ImageProcessor__Stop (nn_irsensor_IrCameraHandle_o handle, const MethodInfo*);
void nn_irsensor_ImageProcessor__StopAsync (nn_irsensor_IrCameraHandle_o handle, const MethodInfo*);
int32_t nn_irsensor_ImageProcessor__GetStatus (nn_irsensor_IrCameraHandle_o handle, const MethodInfo*);
nn_irsensor_IrCameraHandle_o nn_irsensor_IrCamera__GetHandle (int32_t npadId, const MethodInfo*);
void nn_irsensor_IrCamera__Initialize (nn_irsensor_IrCameraHandle_o handle, const MethodInfo*);
void nn_irsensor_IrCamera__Finalize (nn_irsensor_IrCameraHandle_o handle, const MethodInfo*);
int32_t nn_irsensor_IrCamera__GetStatus (nn_irsensor_IrCameraHandle_o handle, const MethodInfo*);
nn_Result_o nn_irsensor_IrCamera__CheckFirmwareUpdateNecessity (bool* pOutIsUpdateNeeded, nn_irsensor_IrCameraHandle_o handle, const MethodInfo*);
void nn_irsensor_Rect___ctor (nn_irsensor_Rect_o __this, int16_t x, int16_t y, int16_t width, int16_t height, const MethodInfo*);
System_String_o* nn_irsensor_Rect__ToString (nn_irsensor_Rect_o __this, const MethodInfo*);
bool nn_irsensor_Rect__op_Equality (nn_irsensor_Rect_o lhs, nn_irsensor_Rect_o rhs, const MethodInfo*);
bool nn_irsensor_Rect__op_Inequality (nn_irsensor_Rect_o lhs, nn_irsensor_Rect_o rhs, const MethodInfo*);
bool nn_irsensor_Rect__Equals (nn_irsensor_Rect_o __this, Il2CppObject* right, const MethodInfo*);
bool nn_irsensor_Rect__Equals (nn_irsensor_Rect_o __this, nn_irsensor_Rect_o other, const MethodInfo*);
int32_t nn_irsensor_Rect__GetHashCode (nn_irsensor_Rect_o __this, const MethodInfo*);
void nn_irsensor_ImageTransferProcessor__GetDefaultConfig (nn_irsensor_ImageTransferProcessorConfig_o* pOutValue, const MethodInfo*);
void nn_irsensor_ImageTransferProcessor__GetDefaultConfig (nn_irsensor_ImageTransferProcessorExConfig_o* pOutValue, const MethodInfo*);
void nn_irsensor_ImageTransferProcessor__Run (nn_irsensor_IrCameraHandle_o handle, nn_irsensor_ImageTransferProcessorConfig_o config, intptr_t workBuffer, int64_t workBufferSize, const MethodInfo*);
void nn_irsensor_ImageTransferProcessor__Run (nn_irsensor_IrCameraHandle_o handle, nn_irsensor_ImageTransferProcessorExConfig_o config, intptr_t workBuffer, int64_t workBufferSize, const MethodInfo*);
nn_Result_o nn_irsensor_ImageTransferProcessor__GetState (nn_irsensor_ImageTransferProcessorState_o* pOutState, intptr_t pOutImage, int64_t size, nn_irsensor_IrCameraHandle_o handle, const MethodInfo*);
void nn_irsensor_ImageTransferProcessor__InitializeWorkBuffer (intptr_t* pOutWorkBuffer, int64_t* pOutWorkBufferSize, nn_irsensor_ImageTransferProcessorConfig_o config, const MethodInfo*);
void nn_irsensor_ImageTransferProcessor__InitializeWorkBuffer (intptr_t* pOutWorkBuffer, int64_t* pOutWorkBufferSize, nn_irsensor_ImageTransferProcessorExConfig_o config, const MethodInfo*);
void nn_irsensor_ImageTransferProcessor__DestroyWorkBuffer (intptr_t workBuffer, const MethodInfo*);
int32_t nn_irsensor_ImageTransferProcessor__GetWorkBufferSize (int32_t format, const MethodInfo*);
int32_t nn_irsensor_ImageTransferProcessor__GetImageSize (int32_t format, const MethodInfo*);
int32_t nn_irsensor_ImageTransferProcessor__GetImageWidth (int32_t format, const MethodInfo*);
int32_t nn_irsensor_ImageTransferProcessor__GetImageHeight (int32_t format, const MethodInfo*);
nn_irsensor_ImageTransferProcessorState_o nn_irsensor_ImageTransferProcessorManager__get_State (nn_irsensor_ImageTransferProcessorManager_o* __this, const MethodInfo*);
System_Byte_array* nn_irsensor_ImageTransferProcessorManager__get_ImageBuffer (nn_irsensor_ImageTransferProcessorManager_o* __this, const MethodInfo*);
void nn_irsensor_ImageTransferProcessorManager__set_ImageBuffer (nn_irsensor_ImageTransferProcessorManager_o* __this, System_Byte_array* value, const MethodInfo*);
void nn_irsensor_ImageTransferProcessorManager__Finalize (nn_irsensor_ImageTransferProcessorManager_o* __this, const MethodInfo*);
void nn_irsensor_ImageTransferProcessorManager__Initialize (nn_irsensor_ImageTransferProcessorManager_o* __this, nn_irsensor_IrCameraHandle_o handle, int32_t format, const MethodInfo*);
void nn_irsensor_ImageTransferProcessorManager__Initialize (nn_irsensor_ImageTransferProcessorManager_o* __this, nn_irsensor_IrCameraHandle_o handle, nn_irsensor_ImageTransferProcessorConfig_o config, const MethodInfo*);
void nn_irsensor_ImageTransferProcessorManager__Initialize (nn_irsensor_ImageTransferProcessorManager_o* __this, nn_irsensor_IrCameraHandle_o handle, nn_irsensor_ImageTransferProcessorExConfig_o config, const MethodInfo*);
void nn_irsensor_ImageTransferProcessorManager__Destroy (nn_irsensor_ImageTransferProcessorManager_o* __this, const MethodInfo*);
bool nn_irsensor_ImageTransferProcessorManager__IsRunning (nn_irsensor_ImageTransferProcessorManager_o* __this, const MethodInfo*);
void nn_irsensor_ImageTransferProcessorManager__Run (nn_irsensor_ImageTransferProcessorManager_o* __this, const MethodInfo*);
nn_Result_o nn_irsensor_ImageTransferProcessorManager__Update (nn_irsensor_ImageTransferProcessorManager_o* __this, const MethodInfo*);
void nn_irsensor_ImageTransferProcessorManager__Stop (nn_irsensor_ImageTransferProcessorManager_o* __this, const MethodInfo*);
void nn_irsensor_ImageTransferProcessorManager___Destroy (nn_irsensor_ImageTransferProcessorManager_o* __this, const MethodInfo*);
void nn_irsensor_ImageTransferProcessorManager___ctor (nn_irsensor_ImageTransferProcessorManager_o* __this, const MethodInfo*);
System_String_o* nn_irsensor_IrCameraConfig__ToString (nn_irsensor_IrCameraConfig_o __this, const MethodInfo*);
bool nn_irsensor_IrCameraConfig__op_Equality (nn_irsensor_IrCameraConfig_o lhs, nn_irsensor_IrCameraConfig_o rhs, const MethodInfo*);
bool nn_irsensor_IrCameraConfig__op_Inequality (nn_irsensor_IrCameraConfig_o lhs, nn_irsensor_IrCameraConfig_o rhs, const MethodInfo*);
bool nn_irsensor_IrCameraConfig__Equals (nn_irsensor_IrCameraConfig_o __this, Il2CppObject* right, const MethodInfo*);
bool nn_irsensor_IrCameraConfig__Equals (nn_irsensor_IrCameraConfig_o __this, nn_irsensor_IrCameraConfig_o other, const MethodInfo*);
int32_t nn_irsensor_IrCameraConfig__GetHashCode (nn_irsensor_IrCameraConfig_o __this, const MethodInfo*);
void nn_irsensor_MomentProcessor__GetDefaultConfig (nn_irsensor_MomentProcessorConfig_o* pOutValue, const MethodInfo*);
void nn_irsensor_MomentProcessor__Run (nn_irsensor_IrCameraHandle_o handle, nn_irsensor_MomentProcessorConfig_o config, const MethodInfo*);
nn_Result_o nn_irsensor_MomentProcessor__GetState (nn_irsensor_MomentProcessorState_o* pOutValue, nn_irsensor_IrCameraHandle_o handle, const MethodInfo*);
nn_Result_o nn_irsensor_MomentProcessor__GetStatus (nn_irsensor_MomentProcessorState_array* pOutStates, int32_t* pOutCount, nn_irsensor_IrCameraHandle_o handle, const MethodInfo*);
nn_Result_o nn_irsensor_MomentProcessor__GetStates (nn_irsensor_MomentProcessorState_array* pOutStates, int32_t* pOutCount, int32_t countMax, nn_irsensor_IrCameraHandle_o handle, const MethodInfo*);
nn_irsensor_MomentStatistic_o nn_irsensor_MomentProcessor__CalculateMomentRegionStatistic (nn_irsensor_MomentProcessorState_o* pState, nn_irsensor_Rect_o windowOfInterest, int32_t startRow, int32_t startColumn, int32_t rowCount, int32_t columnCount, const MethodInfo*);
System_String_o* nn_irsensor_MomentProcessorConfig__ToString (nn_irsensor_MomentProcessorConfig_o __this, const MethodInfo*);
bool nn_irsensor_MomentProcessorConfig__op_Equality (nn_irsensor_MomentProcessorConfig_o lhs, nn_irsensor_MomentProcessorConfig_o rhs, const MethodInfo*);
bool nn_irsensor_MomentProcessorConfig__op_Inequality (nn_irsensor_MomentProcessorConfig_o lhs, nn_irsensor_MomentProcessorConfig_o rhs, const MethodInfo*);
bool nn_irsensor_MomentProcessorConfig__Equals (nn_irsensor_MomentProcessorConfig_o __this, Il2CppObject* right, const MethodInfo*);
bool nn_irsensor_MomentProcessorConfig__Equals (nn_irsensor_MomentProcessorConfig_o __this, nn_irsensor_MomentProcessorConfig_o other, const MethodInfo*);
int32_t nn_irsensor_MomentProcessorConfig__GetHashCode (nn_irsensor_MomentProcessorConfig_o __this, const MethodInfo*);
System_String_o* nn_irsensor_MomentStatistic__ToString (nn_irsensor_MomentStatistic_o __this, const MethodInfo*);
bool nn_irsensor_MomentStatistic__op_Equality (nn_irsensor_MomentStatistic_o lhs, nn_irsensor_MomentStatistic_o rhs, const MethodInfo*);
bool nn_irsensor_MomentStatistic__op_Inequality (nn_irsensor_MomentStatistic_o lhs, nn_irsensor_MomentStatistic_o rhs, const MethodInfo*);
bool nn_irsensor_MomentStatistic__Equals (nn_irsensor_MomentStatistic_o __this, Il2CppObject* right, const MethodInfo*);
bool nn_irsensor_MomentStatistic__Equals (nn_irsensor_MomentStatistic_o __this, nn_irsensor_MomentStatistic_o other, const MethodInfo*);
int32_t nn_irsensor_MomentStatistic__GetHashCode (nn_irsensor_MomentStatistic_o __this, const MethodInfo*);
int32_t nn_irsensor_MomentProcessorState_MomentStatisticArray48__get_Length (nn_irsensor_MomentProcessorState_MomentStatisticArray48_o __this, const MethodInfo*);
nn_irsensor_MomentStatistic_o nn_irsensor_MomentProcessorState_MomentStatisticArray48__get_Item (nn_irsensor_MomentProcessorState_MomentStatisticArray48_o __this, int32_t index, const MethodInfo*);
void nn_irsensor_MomentProcessorState_MomentStatisticArray48__set_Item (nn_irsensor_MomentProcessorState_MomentStatisticArray48_o __this, int32_t index, nn_irsensor_MomentStatistic_o value, const MethodInfo*);
int32_t nn_irsensor_MomentProcessorState_MomentStatisticArray48__get_Count (nn_irsensor_MomentProcessorState_MomentStatisticArray48_o __this, const MethodInfo*);
bool nn_irsensor_MomentProcessorState_MomentStatisticArray48__get_IsReadOnly (nn_irsensor_MomentProcessorState_MomentStatisticArray48_o __this, const MethodInfo*);
bool nn_irsensor_MomentProcessorState_MomentStatisticArray48__Contains (nn_irsensor_MomentProcessorState_MomentStatisticArray48_o __this, nn_irsensor_MomentStatistic_o item, const MethodInfo*);
int32_t nn_irsensor_MomentProcessorState_MomentStatisticArray48__IndexOf (nn_irsensor_MomentProcessorState_MomentStatisticArray48_o __this, nn_irsensor_MomentStatistic_o item, const MethodInfo*);
void nn_irsensor_MomentProcessorState_MomentStatisticArray48__CopyTo (nn_irsensor_MomentProcessorState_MomentStatisticArray48_o __this, nn_irsensor_MomentStatistic_array* array, int32_t arrayIndex, const MethodInfo*);
System_String_o* nn_irsensor_MomentProcessorState_MomentStatisticArray48__ToString (nn_irsensor_MomentProcessorState_MomentStatisticArray48_o __this, const MethodInfo*);
System_Collections_Generic_IEnumerator_MomentStatistic__o* nn_irsensor_MomentProcessorState_MomentStatisticArray48__GetEnumerator (nn_irsensor_MomentProcessorState_MomentStatisticArray48_o __this, const MethodInfo*);
System_Collections_IEnumerator_o* nn_irsensor_MomentProcessorState_MomentStatisticArray48__System_Collections_IEnumerable_GetEnumerator (nn_irsensor_MomentProcessorState_MomentStatisticArray48_o __this, const MethodInfo*);
void nn_irsensor_MomentProcessorState_MomentStatisticArray48__Add (nn_irsensor_MomentProcessorState_MomentStatisticArray48_o __this, nn_irsensor_MomentStatistic_o item, const MethodInfo*);
void nn_irsensor_MomentProcessorState_MomentStatisticArray48__Clear (nn_irsensor_MomentProcessorState_MomentStatisticArray48_o __this, const MethodInfo*);
void nn_irsensor_MomentProcessorState_MomentStatisticArray48__Insert (nn_irsensor_MomentProcessorState_MomentStatisticArray48_o __this, int32_t index, nn_irsensor_MomentStatistic_o item, const MethodInfo*);
bool nn_irsensor_MomentProcessorState_MomentStatisticArray48__Remove (nn_irsensor_MomentProcessorState_MomentStatisticArray48_o __this, nn_irsensor_MomentStatistic_o item, const MethodInfo*);
void nn_irsensor_MomentProcessorState_MomentStatisticArray48__RemoveAt (nn_irsensor_MomentProcessorState_MomentStatisticArray48_o __this, int32_t index, const MethodInfo*);
void nn_irsensor_MomentProcessorState_MomentStatisticArray48__GetEnumerator_d__62___ctor (nn_irsensor_MomentProcessorState_MomentStatisticArray48__GetEnumerator_d__62_o* __this, int32_t __1__state, const MethodInfo*);
void nn_irsensor_MomentProcessorState_MomentStatisticArray48__GetEnumerator_d__62__System_IDisposable_Dispose (nn_irsensor_MomentProcessorState_MomentStatisticArray48__GetEnumerator_d__62_o* __this, const MethodInfo*);
bool nn_irsensor_MomentProcessorState_MomentStatisticArray48__GetEnumerator_d__62__MoveNext (nn_irsensor_MomentProcessorState_MomentStatisticArray48__GetEnumerator_d__62_o* __this, const MethodInfo*);
nn_irsensor_MomentStatistic_o nn_irsensor_MomentProcessorState_MomentStatisticArray48__GetEnumerator_d__62__System_Collections_Generic_IEnumerator_nn_irsensor_MomentStatistic__get_Current (nn_irsensor_MomentProcessorState_MomentStatisticArray48__GetEnumerator_d__62_o* __this, const MethodInfo*);
void nn_irsensor_MomentProcessorState_MomentStatisticArray48__GetEnumerator_d__62__System_Collections_IEnumerator_Reset (nn_irsensor_MomentProcessorState_MomentStatisticArray48__GetEnumerator_d__62_o* __this, const MethodInfo*);
Il2CppObject* nn_irsensor_MomentProcessorState_MomentStatisticArray48__GetEnumerator_d__62__System_Collections_IEnumerator_get_Current (nn_irsensor_MomentProcessorState_MomentStatisticArray48__GetEnumerator_d__62_o* __this, const MethodInfo*);
nn_ErrorRange_o nn_irsensor_IrSensor__get_ResultIrsensorUnavailable (const MethodInfo*);
nn_ErrorRange_o nn_irsensor_IrSensor__get_ResultIrsensorUnconnected (const MethodInfo*);
nn_ErrorRange_o nn_irsensor_IrSensor__get_ResultIrsensorUnsupported (const MethodInfo*);
nn_ErrorRange_o nn_irsensor_IrSensor__get_ResultIrsensorDeviceError (const MethodInfo*);
nn_ErrorRange_o nn_irsensor_IrSensor__get_ResultIrsensorFirmwareCheckIncompleted (const MethodInfo*);
nn_ErrorRange_o nn_irsensor_IrSensor__get_ResultIrsensorNotReady (const MethodInfo*);
nn_ErrorRange_o nn_irsensor_IrSensor__get_ResultIrsensorDeviceNotReady (const MethodInfo*);
nn_ErrorRange_o nn_irsensor_IrSensor__get_ResultIrsensorDeviceResourceNotAvailable (const MethodInfo*);
nn_ErrorRange_o nn_irsensor_IrSensor__get_ResultHandAnalysisError (const MethodInfo*);
nn_ErrorRange_o nn_irsensor_IrSensor__get_ResultHandAnalysisModeIncorrect (const MethodInfo*);
float nn_hid_AnalogStickState__get_fx (nn_hid_AnalogStickState_o __this, const MethodInfo*);
float nn_hid_AnalogStickState__get_fy (nn_hid_AnalogStickState_o __this, const MethodInfo*);
void nn_hid_AnalogStickState__Clear (nn_hid_AnalogStickState_o __this, const MethodInfo*);
System_String_o* nn_hid_AnalogStickState__ToString (nn_hid_AnalogStickState_o __this, const MethodInfo*);
void nn_hid_ControllerSupportArg__SetDefault (nn_hid_ControllerSupportArg_o __this, const MethodInfo*);
System_String_o* nn_hid_ControllerSupportArg__ToString (nn_hid_ControllerSupportArg_o __this, const MethodInfo*);
int32_t nn_hid_ControllerSupportArg_Color4u8Array8__get_Length (nn_hid_ControllerSupportArg_Color4u8Array8_o __this, const MethodInfo*);
nn_util_Color4u8_o nn_hid_ControllerSupportArg_Color4u8Array8__get_Item (nn_hid_ControllerSupportArg_Color4u8Array8_o __this, int32_t index, const MethodInfo*);
void nn_hid_ControllerSupportArg_Color4u8Array8__set_Item (nn_hid_ControllerSupportArg_Color4u8Array8_o __this, int32_t index, nn_util_Color4u8_o value, const MethodInfo*);
int32_t nn_hid_ControllerSupportArg_Color4u8Array8__get_Count (nn_hid_ControllerSupportArg_Color4u8Array8_o __this, const MethodInfo*);
bool nn_hid_ControllerSupportArg_Color4u8Array8__get_IsReadOnly (nn_hid_ControllerSupportArg_Color4u8Array8_o __this, const MethodInfo*);
bool nn_hid_ControllerSupportArg_Color4u8Array8__Contains (nn_hid_ControllerSupportArg_Color4u8Array8_o __this, nn_util_Color4u8_o item, const MethodInfo*);
int32_t nn_hid_ControllerSupportArg_Color4u8Array8__IndexOf (nn_hid_ControllerSupportArg_Color4u8Array8_o __this, nn_util_Color4u8_o item, const MethodInfo*);
void nn_hid_ControllerSupportArg_Color4u8Array8__CopyTo (nn_hid_ControllerSupportArg_Color4u8Array8_o __this, nn_util_Color4u8_array* array, int32_t arrayIndex, const MethodInfo*);
System_String_o* nn_hid_ControllerSupportArg_Color4u8Array8__ToString (nn_hid_ControllerSupportArg_Color4u8Array8_o __this, const MethodInfo*);
System_Collections_Generic_IEnumerator_Color4u8__o* nn_hid_ControllerSupportArg_Color4u8Array8__GetEnumerator (nn_hid_ControllerSupportArg_Color4u8Array8_o __this, const MethodInfo*);
System_Collections_IEnumerator_o* nn_hid_ControllerSupportArg_Color4u8Array8__System_Collections_IEnumerable_GetEnumerator (nn_hid_ControllerSupportArg_Color4u8Array8_o __this, const MethodInfo*);
void nn_hid_ControllerSupportArg_Color4u8Array8__Add (nn_hid_ControllerSupportArg_Color4u8Array8_o __this, nn_util_Color4u8_o item, const MethodInfo*);
void nn_hid_ControllerSupportArg_Color4u8Array8__Clear (nn_hid_ControllerSupportArg_Color4u8Array8_o __this, const MethodInfo*);
void nn_hid_ControllerSupportArg_Color4u8Array8__Insert (nn_hid_ControllerSupportArg_Color4u8Array8_o __this, int32_t index, nn_util_Color4u8_o item, const MethodInfo*);
bool nn_hid_ControllerSupportArg_Color4u8Array8__Remove (nn_hid_ControllerSupportArg_Color4u8Array8_o __this, nn_util_Color4u8_o item, const MethodInfo*);
void nn_hid_ControllerSupportArg_Color4u8Array8__RemoveAt (nn_hid_ControllerSupportArg_Color4u8Array8_o __this, int32_t index, const MethodInfo*);
void nn_hid_ControllerSupportArg_Color4u8Array8__GetEnumerator_d__22___ctor (nn_hid_ControllerSupportArg_Color4u8Array8__GetEnumerator_d__22_o* __this, int32_t __1__state, const MethodInfo*);
void nn_hid_ControllerSupportArg_Color4u8Array8__GetEnumerator_d__22__System_IDisposable_Dispose (nn_hid_ControllerSupportArg_Color4u8Array8__GetEnumerator_d__22_o* __this, const MethodInfo*);
bool nn_hid_ControllerSupportArg_Color4u8Array8__GetEnumerator_d__22__MoveNext (nn_hid_ControllerSupportArg_Color4u8Array8__GetEnumerator_d__22_o* __this, const MethodInfo*);
nn_util_Color4u8_o nn_hid_ControllerSupportArg_Color4u8Array8__GetEnumerator_d__22__System_Collections_Generic_IEnumerator_nn_util_Color4u8__get_Current (nn_hid_ControllerSupportArg_Color4u8Array8__GetEnumerator_d__22_o* __this, const MethodInfo*);
void nn_hid_ControllerSupportArg_Color4u8Array8__GetEnumerator_d__22__System_Collections_IEnumerator_Reset (nn_hid_ControllerSupportArg_Color4u8Array8__GetEnumerator_d__22_o* __this, const MethodInfo*);
Il2CppObject* nn_hid_ControllerSupportArg_Color4u8Array8__GetEnumerator_d__22__System_Collections_IEnumerator_get_Current (nn_hid_ControllerSupportArg_Color4u8Array8__GetEnumerator_d__22_o* __this, const MethodInfo*);
void nn_hid_ControllerFirmwareUpdateArg__SetDefault (nn_hid_ControllerFirmwareUpdateArg_o __this, const MethodInfo*);
System_String_o* nn_hid_ControllerSupportResultInfo__ToString (nn_hid_ControllerSupportResultInfo_o __this, const MethodInfo*);
nn_Result_o nn_hid_ControllerSupport__Show (nn_hid_ControllerSupportArg_o showControllerSupportArg, const MethodInfo*);
nn_Result_o nn_hid_ControllerSupport__Show (nn_hid_ControllerSupportResultInfo_o* pOutValue, nn_hid_ControllerSupportArg_o showControllerSupportArg, const MethodInfo*);
void nn_hid_ControllerSupport__SetExplainText (nn_hid_ControllerSupportArg_o* pOutControllerSupportArg, System_String_o* pStr, int32_t npadId, const MethodInfo*);
nn_Result_o nn_hid_ControllerSupport__Show (nn_hid_ControllerSupportArg_o showControllerSupportArg, bool suspendUnityThreads, const MethodInfo*);
nn_Result_o nn_hid_ControllerSupport__Show (nn_hid_ControllerSupportResultInfo_o* pOutValue, nn_hid_ControllerSupportArg_o showControllerSupportArg, bool suspendUnityThreads, const MethodInfo*);
nn_ErrorRange_o nn_hid_ControllerSupport__get_ResultCanceled (const MethodInfo*);
nn_ErrorRange_o nn_hid_ControllerSupport__get_ResultNotSupportedNpadStyle (const MethodInfo*);
nn_Result_o nn_hid_ControllerStrapGuide__Show (const MethodInfo*);
nn_Result_o nn_hid_ControllerStrapGuide__Show (bool suspendUnityThreads, const MethodInfo*);
nn_Result_o nn_hid_ControllerFirmwareUpdate__Show (nn_hid_ControllerFirmwareUpdateArg_o showControllerFirmwareUpdateArg, const MethodInfo*);
nn_Result_o nn_hid_ControllerFirmwareUpdate__Show (nn_hid_ControllerFirmwareUpdateArg_o showControllerFirmwareUpdateArg, bool suspendUnityThreads, const MethodInfo*);
nn_ErrorRange_o nn_hid_ControllerFirmwareUpdate__get_ResultControllerFirmwareUpdateError (const MethodInfo*);
nn_ErrorRange_o nn_hid_ControllerFirmwareUpdate__get_ResultControllerFirmwareUpdateFailed (const MethodInfo*);
System_String_o* nn_hid_DebugPadState__ToString (nn_hid_DebugPadState_o __this, const MethodInfo*);
void nn_hid_DebugPad__Initialize (const MethodInfo*);
void nn_hid_DebugPad__GetState (nn_hid_DebugPadState_o* pOutValue, const MethodInfo*);
int32_t nn_hid_DebugPad__GetStates (nn_hid_DebugPadState_array* pOutValues, int32_t count, const MethodInfo*);
System_String_o* nn_hid_GesturePoint__ToString (nn_hid_GesturePoint_o __this, const MethodInfo*);
bool nn_hid_GesturePoint__op_Equality (nn_hid_GesturePoint_o lhs, nn_hid_GesturePoint_o rhs, const MethodInfo*);
bool nn_hid_GesturePoint__op_Inequality (nn_hid_GesturePoint_o lhs, nn_hid_GesturePoint_o rhs, const MethodInfo*);
bool nn_hid_GesturePoint__Equals (nn_hid_GesturePoint_o __this, Il2CppObject* right, const MethodInfo*);
bool nn_hid_GesturePoint__Equals (nn_hid_GesturePoint_o __this, nn_hid_GesturePoint_o other, const MethodInfo*);
int32_t nn_hid_GesturePoint__GetHashCode (nn_hid_GesturePoint_o __this, const MethodInfo*);
void nn_hid_GestureState__SetDefault (nn_hid_GestureState_o __this, const MethodInfo*);
int32_t nn_hid_GestureState__get_type (nn_hid_GestureState_o __this, const MethodInfo*);
int32_t nn_hid_GestureState__get_direction (nn_hid_GestureState_o __this, const MethodInfo*);
bool nn_hid_GestureState__get_isDoubleTap (nn_hid_GestureState_o __this, const MethodInfo*);
System_String_o* nn_hid_GestureState__ToString (nn_hid_GestureState_o __this, const MethodInfo*);
int32_t nn_hid_GestureState_GesturePointArray4__get_Length (nn_hid_GestureState_GesturePointArray4_o __this, const MethodInfo*);
nn_hid_GesturePoint_o nn_hid_GestureState_GesturePointArray4__get_Item (nn_hid_GestureState_GesturePointArray4_o __this, int32_t index, const MethodInfo*);
void nn_hid_GestureState_GesturePointArray4__set_Item (nn_hid_GestureState_GesturePointArray4_o __this, int32_t index, nn_hid_GesturePoint_o value, const MethodInfo*);
int32_t nn_hid_GestureState_GesturePointArray4__get_Count (nn_hid_GestureState_GesturePointArray4_o __this, const MethodInfo*);
bool nn_hid_GestureState_GesturePointArray4__get_IsReadOnly (nn_hid_GestureState_GesturePointArray4_o __this, const MethodInfo*);
bool nn_hid_GestureState_GesturePointArray4__Contains (nn_hid_GestureState_GesturePointArray4_o __this, nn_hid_GesturePoint_o item, const MethodInfo*);
int32_t nn_hid_GestureState_GesturePointArray4__IndexOf (nn_hid_GestureState_GesturePointArray4_o __this, nn_hid_GesturePoint_o item, const MethodInfo*);
void nn_hid_GestureState_GesturePointArray4__CopyTo (nn_hid_GestureState_GesturePointArray4_o __this, nn_hid_GesturePoint_array* array, int32_t arrayIndex, const MethodInfo*);
System_String_o* nn_hid_GestureState_GesturePointArray4__ToString (nn_hid_GestureState_GesturePointArray4_o __this, const MethodInfo*);
System_Collections_Generic_IEnumerator_GesturePoint__o* nn_hid_GestureState_GesturePointArray4__GetEnumerator (nn_hid_GestureState_GesturePointArray4_o __this, const MethodInfo*);
System_Collections_IEnumerator_o* nn_hid_GestureState_GesturePointArray4__System_Collections_IEnumerable_GetEnumerator (nn_hid_GestureState_GesturePointArray4_o __this, const MethodInfo*);
void nn_hid_GestureState_GesturePointArray4__Add (nn_hid_GestureState_GesturePointArray4_o __this, nn_hid_GesturePoint_o item, const MethodInfo*);
void nn_hid_GestureState_GesturePointArray4__Clear (nn_hid_GestureState_GesturePointArray4_o __this, const MethodInfo*);
void nn_hid_GestureState_GesturePointArray4__Insert (nn_hid_GestureState_GesturePointArray4_o __this, int32_t index, nn_hid_GesturePoint_o item, const MethodInfo*);
bool nn_hid_GestureState_GesturePointArray4__Remove (nn_hid_GestureState_GesturePointArray4_o __this, nn_hid_GesturePoint_o item, const MethodInfo*);
void nn_hid_GestureState_GesturePointArray4__RemoveAt (nn_hid_GestureState_GesturePointArray4_o __this, int32_t index, const MethodInfo*);
void nn_hid_GestureState_GesturePointArray4__GetEnumerator_d__18___ctor (nn_hid_GestureState_GesturePointArray4__GetEnumerator_d__18_o* __this, int32_t __1__state, const MethodInfo*);
void nn_hid_GestureState_GesturePointArray4__GetEnumerator_d__18__System_IDisposable_Dispose (nn_hid_GestureState_GesturePointArray4__GetEnumerator_d__18_o* __this, const MethodInfo*);
bool nn_hid_GestureState_GesturePointArray4__GetEnumerator_d__18__MoveNext (nn_hid_GestureState_GesturePointArray4__GetEnumerator_d__18_o* __this, const MethodInfo*);
nn_hid_GesturePoint_o nn_hid_GestureState_GesturePointArray4__GetEnumerator_d__18__System_Collections_Generic_IEnumerator_nn_hid_GesturePoint__get_Current (nn_hid_GestureState_GesturePointArray4__GetEnumerator_d__18_o* __this, const MethodInfo*);
void nn_hid_GestureState_GesturePointArray4__GetEnumerator_d__18__System_Collections_IEnumerator_Reset (nn_hid_GestureState_GesturePointArray4__GetEnumerator_d__18_o* __this, const MethodInfo*);
Il2CppObject* nn_hid_GestureState_GesturePointArray4__GetEnumerator_d__18__System_Collections_IEnumerator_get_Current (nn_hid_GestureState_GesturePointArray4__GetEnumerator_d__18_o* __this, const MethodInfo*);
void nn_hid_Gesture__Initialize (const MethodInfo*);
int32_t nn_hid_Gesture__GetStates (nn_hid_GestureState_array* pOutValues, int32_t count, const MethodInfo*);
System_String_o* nn_hid_NpadControllerColor__ToString (nn_hid_NpadControllerColor_o __this, const MethodInfo*);
void nn_hid_Npad__Initialize (const MethodInfo*);
void nn_hid_Npad__SetSupportedStyleSet (int32_t npadStyle, const MethodInfo*);
int32_t nn_hid_Npad__GetSupportedStyleSet (const MethodInfo*);
void nn_hid_Npad__SetSupportedIdType (nn_hid_NpadId_array* npadIds, int64_t count, const MethodInfo*);
void nn_hid_Npad__SetSupportedIdType (nn_hid_NpadId_array* npadIds, const MethodInfo*);
void nn_hid_Npad__BindStyleSetUpdateEvent (int32_t npadId, const MethodInfo*);
bool nn_hid_Npad__IsStyleSetUpdated (int32_t npadId, const MethodInfo*);
void nn_hid_Npad__DestroyStyleSetUpdateEvent (int32_t npadId, const MethodInfo*);
int32_t nn_hid_Npad__GetStyleSet (int32_t npadId, const MethodInfo*);
void nn_hid_Npad__Disconnect (int32_t npadId, const MethodInfo*);
uint8_t nn_hid_Npad__GetPlayerLedPattern (int32_t npadId, const MethodInfo*);
nn_Result_o nn_hid_Npad__GetControllerColor (nn_hid_NpadControllerColor_o* pOutValue, int32_t npadId, const MethodInfo*);
nn_Result_o nn_hid_Npad__GetControllerColor (nn_hid_NpadControllerColor_o* pOutLeftColor, nn_hid_NpadControllerColor_o* pOutRightColor, int32_t npadId, const MethodInfo*);
void nn_hid_Npad__GetState (nn_hid_NpadState_o* pOutValue, int32_t npadId, int32_t npadStyle, const MethodInfo*);
int32_t nn_hid_Npad__GetStates (nn_hid_NpadStateArrayItem_array* pOutValues, int32_t count, int32_t npadId, int32_t npadStyle, const MethodInfo*);
nn_ErrorRange_o nn_hid_Npad__get_ResultColorNotAvailable (const MethodInfo*);
nn_ErrorRange_o nn_hid_Npad__get_ResultControllerNotConnected (const MethodInfo*);
void nn_hid_NpadState__Clear (nn_hid_NpadState_o __this, const MethodInfo*);
bool nn_hid_NpadState__GetButton (nn_hid_NpadState_o __this, int64_t button, const MethodInfo*);
bool nn_hid_NpadState__GetButtonDown (nn_hid_NpadState_o __this, int64_t button, const MethodInfo*);
bool nn_hid_NpadState__GetButtonUp (nn_hid_NpadState_o __this, int64_t button, const MethodInfo*);
System_String_o* nn_hid_NpadState__ToString (nn_hid_NpadState_o __this, const MethodInfo*);
System_String_o* nn_hid_NpadStateArrayItem__ToString (nn_hid_NpadStateArrayItem_o __this, const MethodInfo*);
System_String_o* nn_hid_NpadFullKeyState__ToString (nn_hid_NpadFullKeyState_o __this, const MethodInfo*);
void nn_hid_NpadFullKey__GetState (nn_hid_NpadFullKeyState_o* pOutValue, int32_t npadId, const MethodInfo*);
void nn_hid_NpadFullKey__GetState (nn_hid_NpadState_o* pOutValue, int32_t npadId, const MethodInfo*);
int32_t nn_hid_NpadFullKey__GetStates (nn_hid_NpadFullKeyState_array* pOutValues, int32_t count, int32_t npadId, const MethodInfo*);
int32_t nn_hid_NpadFullKey__GetStates (nn_hid_NpadStateArrayItem_array* pOutValues, int32_t count, int32_t npadId, const MethodInfo*);
System_String_o* nn_hid_NpadHandheldState__ToString (nn_hid_NpadHandheldState_o __this, const MethodInfo*);
void nn_hid_NpadHandheld__GetState (nn_hid_NpadHandheldState_o* pOutValue, int32_t npadId, const MethodInfo*);
void nn_hid_NpadHandheld__GetState (nn_hid_NpadState_o* pOutValue, int32_t npadId, const MethodInfo*);
int32_t nn_hid_NpadHandheld__GetStates (nn_hid_NpadHandheldState_array* pOutValues, int32_t count, int32_t npadId, const MethodInfo*);
int32_t nn_hid_NpadHandheld__GetStates (nn_hid_NpadStateArrayItem_array* pOutValues, int32_t count, int32_t npadId, const MethodInfo*);
int32_t nn_hid_NpadJoy__GetAssignment (int32_t npadId, const MethodInfo*);
void nn_hid_NpadJoy__SetAssignmentModeSingle (int32_t npadId, const MethodInfo*);
void nn_hid_NpadJoy__SetAssignmentModeSingle (int32_t npadId, int32_t deviceType, const MethodInfo*);
void nn_hid_NpadJoy__SetAssignmentModeSingle (int32_t* pOutValue, int32_t npadId, int32_t deviceType, const MethodInfo*);
void nn_hid_NpadJoy__SetAssignmentModeDual (int32_t npadId, const MethodInfo*);
nn_Result_o nn_hid_NpadJoy__MergeSingleAsDual (int32_t npadId1, int32_t npadId2, const MethodInfo*);
void nn_hid_NpadJoy__SwapAssignment (int32_t npadId1, int32_t npadId2, const MethodInfo*);
void nn_hid_NpadJoy__SetHoldType (int32_t holdType, const MethodInfo*);
int32_t nn_hid_NpadJoy__GetHoldType (const MethodInfo*);
void nn_hid_NpadJoy__StartLrAssignmentMode (const MethodInfo*);
void nn_hid_NpadJoy__StopLrAssignmentMode (const MethodInfo*);
void nn_hid_NpadJoy__SetHandheldActivationMode (int32_t activationMode, const MethodInfo*);
int32_t nn_hid_NpadJoy__GetHandheldActivationMode (const MethodInfo*);
void nn_hid_NpadJoy__SetCommunicationMode (int32_t mode, const MethodInfo*);
int32_t nn_hid_NpadJoy__GetCommunicationMode (const MethodInfo*);
nn_ErrorRange_o nn_hid_NpadJoy__get_ResultDualConnected (const MethodInfo*);
nn_ErrorRange_o nn_hid_NpadJoy__get_ResultSameJoyTypeConnected (const MethodInfo*);
System_String_o* nn_hid_NpadJoyDualState__ToString (nn_hid_NpadJoyDualState_o __this, const MethodInfo*);
void nn_hid_NpadJoyDual__GetState (nn_hid_NpadJoyDualState_o* pOutValue, int32_t npadId, const MethodInfo*);
void nn_hid_NpadJoyDual__GetState (nn_hid_NpadState_o* pOutValue, int32_t npadId, const MethodInfo*);
int32_t nn_hid_NpadJoyDual__GetStates (nn_hid_NpadJoyDualState_array* pOutValues, int32_t count, int32_t npadId, const MethodInfo*);
int32_t nn_hid_NpadJoyDual__GetStates (nn_hid_NpadStateArrayItem_array* pOutValues, int32_t count, int32_t npadId, const MethodInfo*);
System_String_o* nn_hid_NpadJoyLeftState__ToString (nn_hid_NpadJoyLeftState_o __this, const MethodInfo*);
void nn_hid_NpadJoyLeft__GetState (nn_hid_NpadJoyLeftState_o* pOutValue, int32_t npadId, const MethodInfo*);
void nn_hid_NpadJoyLeft__GetState (nn_hid_NpadState_o* pOutValue, int32_t npadId, const MethodInfo*);
int32_t nn_hid_NpadJoyLeft__GetStates (nn_hid_NpadJoyLeftState_array* pOutValues, int32_t count, int32_t npadId, const MethodInfo*);
int32_t nn_hid_NpadJoyLeft__GetStates (nn_hid_NpadStateArrayItem_array* pOutValues, int32_t count, int32_t npadId, const MethodInfo*);
System_String_o* nn_hid_NpadJoyRightState__ToString (nn_hid_NpadJoyRightState_o __this, const MethodInfo*);
void nn_hid_NpadJoyRight__GetState (nn_hid_NpadJoyRightState_o* pOutValue, int32_t npadId, const MethodInfo*);
void nn_hid_NpadJoyRight__GetState (nn_hid_NpadState_o* pOutValue, int32_t npadId, const MethodInfo*);
int32_t nn_hid_NpadJoyRight__GetStates (nn_hid_NpadJoyRightState_array* pOutValues, int32_t count, int32_t npadId, const MethodInfo*);
int32_t nn_hid_NpadJoyRight__GetStates (nn_hid_NpadStateArrayItem_array* pOutValues, int32_t count, int32_t npadId, const MethodInfo*);
nn_ErrorRange_o nn_hid_VibrationFile__get_ResultInvalid (const MethodInfo*);
nn_Result_o nn_hid_VibrationFile__Parse (nn_hid_VibrationFileInfo_o* pOutInfo, nn_hid_VibrationFileParserContext_o* pOutContext, System_Byte_array* address, int64_t fileSize, const MethodInfo*);
void nn_hid_VibrationFile__RetrieveValue (nn_hid_VibrationValue_o* pOutValue, int32_t position, nn_hid_VibrationFileParserContext_o* pContext, const MethodInfo*);
void nn_hid_VibrationFile__Generate (int64_t* pOutSize, System_Byte_array* outBuffer, int64_t bufferSize, nn_hid_VibrationValueArrayInfo_o info, nn_hid_VibrationValue_array* pValues, const MethodInfo*);
void nn_hid_VibrationFile__Generate (int64_t* pOutSize, System_Byte_array* outBuffer, nn_hid_VibrationValueArrayInfo_o info, nn_hid_VibrationValue_array* pValues, const MethodInfo*);
int64_t nn_hid_VibrationFile__CalculateSize (nn_hid_VibrationValueArrayInfo_o info, const MethodInfo*);
System_String_o* nn_hid_DirectionState__ToString (nn_hid_DirectionState_o __this, const MethodInfo*);
System_String_o* nn_hid_SixAxisSensorState__ToString (nn_hid_SixAxisSensorState_o __this, const MethodInfo*);
void nn_hid_SixAxisSensorState__GetQuaternion (nn_hid_SixAxisSensorState_o __this, float* x, float* y, float* z, float* w, const MethodInfo*);
void nn_hid_SixAxisSensorState__GetQuaternion (nn_hid_SixAxisSensorState_o __this, nn_util_Float4_o* quaternion, const MethodInfo*);
void nn_hid_SixAxisSensorState__GetQuaternion (nn_hid_SixAxisSensorState_o* state, float* pOutX, float* pOutY, float* pOutZ, float* pOutW, const MethodInfo*);
int32_t nn_hid_SixAxisSensor__GetHandles (nn_hid_SixAxisSensorHandle_array* pOutValues, int32_t count, int32_t npadId, int32_t npadStyle, const MethodInfo*);
void nn_hid_SixAxisSensor__Start (nn_hid_SixAxisSensorHandle_o handle, const MethodInfo*);
void nn_hid_SixAxisSensor__Stop (nn_hid_SixAxisSensorHandle_o handle, const MethodInfo*);
bool nn_hid_SixAxisSensor__IsRest (nn_hid_SixAxisSensorHandle_o handle, const MethodInfo*);
void nn_hid_SixAxisSensor__GetState (nn_hid_SixAxisSensorState_o* pOutValue, nn_hid_SixAxisSensorHandle_o handle, const MethodInfo*);
int32_t nn_hid_SixAxisSensor__GetStates (nn_hid_SixAxisSensorState_array* pOutValues, int32_t count, nn_hid_SixAxisSensorHandle_o handle, const MethodInfo*);
bool nn_hid_SixAxisSensor__IsFusionEnabled (nn_hid_SixAxisSensorHandle_o handle, const MethodInfo*);
void nn_hid_SixAxisSensor__EnableFusion (nn_hid_SixAxisSensorHandle_o handle, bool enable, const MethodInfo*);
void nn_hid_SixAxisSensor__SetFusionParameters (nn_hid_SixAxisSensorHandle_o handle, float revisePower, float reviseRange, const MethodInfo*);
void nn_hid_SixAxisSensor__GetFusionParameters (float* pOutRevisePower, float* pOutReviseRange, nn_hid_SixAxisSensorHandle_o handle, const MethodInfo*);
void nn_hid_SixAxisSensor__ResetFusionParameters (nn_hid_SixAxisSensorHandle_o handle, const MethodInfo*);
void nn_hid_SixAxisSensor__SetGyroscopeZeroDriftMode (nn_hid_SixAxisSensorHandle_o handle, int32_t mode, const MethodInfo*);
int32_t nn_hid_SixAxisSensor__GetGyroscopeZeroDriftMode (nn_hid_SixAxisSensorHandle_o handle, const MethodInfo*);
bool nn_hid_SixAxisSensor__IsFirmwareUpdateAvailableForSixAxisSensor (nn_hid_SixAxisSensorHandle_o handle, const MethodInfo*);
System_String_o* nn_hid_TouchState__ToString (nn_hid_TouchState_o __this, const MethodInfo*);
bool nn_hid_TouchState__op_Equality (nn_hid_TouchState_o lhs, nn_hid_TouchState_o rhs, const MethodInfo*);
bool nn_hid_TouchState__op_Inequality (nn_hid_TouchState_o lhs, nn_hid_TouchState_o rhs, const MethodInfo*);
bool nn_hid_TouchState__Equals (nn_hid_TouchState_o __this, Il2CppObject* right, const MethodInfo*);
bool nn_hid_TouchState__Equals (nn_hid_TouchState_o __this, nn_hid_TouchState_o other, const MethodInfo*);
int32_t nn_hid_TouchState__GetHashCode (nn_hid_TouchState_o __this, const MethodInfo*);
void nn_hid_TouchScreenState1__SetDefault (nn_hid_TouchScreenState1_o __this, const MethodInfo*);
int32_t nn_hid_TouchScreenState1_TouchStateArray1__get_Length (nn_hid_TouchScreenState1_TouchStateArray1_o __this, const MethodInfo*);
nn_hid_TouchState_o nn_hid_TouchScreenState1_TouchStateArray1__get_Item (nn_hid_TouchScreenState1_TouchStateArray1_o __this, int32_t index, const MethodInfo*);
void nn_hid_TouchScreenState1_TouchStateArray1__set_Item (nn_hid_TouchScreenState1_TouchStateArray1_o __this, int32_t index, nn_hid_TouchState_o value, const MethodInfo*);
int32_t nn_hid_TouchScreenState1_TouchStateArray1__get_Count (nn_hid_TouchScreenState1_TouchStateArray1_o __this, const MethodInfo*);
bool nn_hid_TouchScreenState1_TouchStateArray1__get_IsReadOnly (nn_hid_TouchScreenState1_TouchStateArray1_o __this, const MethodInfo*);
bool nn_hid_TouchScreenState1_TouchStateArray1__Contains (nn_hid_TouchScreenState1_TouchStateArray1_o __this, nn_hid_TouchState_o item, const MethodInfo*);
int32_t nn_hid_TouchScreenState1_TouchStateArray1__IndexOf (nn_hid_TouchScreenState1_TouchStateArray1_o __this, nn_hid_TouchState_o item, const MethodInfo*);
void nn_hid_TouchScreenState1_TouchStateArray1__CopyTo (nn_hid_TouchScreenState1_TouchStateArray1_o __this, nn_hid_TouchState_array* array, int32_t arrayIndex, const MethodInfo*);
System_String_o* nn_hid_TouchScreenState1_TouchStateArray1__ToString (nn_hid_TouchScreenState1_TouchStateArray1_o __this, const MethodInfo*);
System_Collections_Generic_IEnumerator_TouchState__o* nn_hid_TouchScreenState1_TouchStateArray1__GetEnumerator (nn_hid_TouchScreenState1_TouchStateArray1_o __this, const MethodInfo*);
System_Collections_IEnumerator_o* nn_hid_TouchScreenState1_TouchStateArray1__System_Collections_IEnumerable_GetEnumerator (nn_hid_TouchScreenState1_TouchStateArray1_o __this, const MethodInfo*);
void nn_hid_TouchScreenState1_TouchStateArray1__Add (nn_hid_TouchScreenState1_TouchStateArray1_o __this, nn_hid_TouchState_o item, const MethodInfo*);
void nn_hid_TouchScreenState1_TouchStateArray1__Clear (nn_hid_TouchScreenState1_TouchStateArray1_o __this, const MethodInfo*);
void nn_hid_TouchScreenState1_TouchStateArray1__Insert (nn_hid_TouchScreenState1_TouchStateArray1_o __this, int32_t index, nn_hid_TouchState_o item, const MethodInfo*);
bool nn_hid_TouchScreenState1_TouchStateArray1__Remove (nn_hid_TouchScreenState1_TouchStateArray1_o __this, nn_hid_TouchState_o item, const MethodInfo*);
void nn_hid_TouchScreenState1_TouchStateArray1__RemoveAt (nn_hid_TouchScreenState1_TouchStateArray1_o __this, int32_t index, const MethodInfo*);
void nn_hid_TouchScreenState1_TouchStateArray1__GetEnumerator_d__15___ctor (nn_hid_TouchScreenState1_TouchStateArray1__GetEnumerator_d__15_o* __this, int32_t __1__state, const MethodInfo*);
void nn_hid_TouchScreenState1_TouchStateArray1__GetEnumerator_d__15__System_IDisposable_Dispose (nn_hid_TouchScreenState1_TouchStateArray1__GetEnumerator_d__15_o* __this, const MethodInfo*);
bool nn_hid_TouchScreenState1_TouchStateArray1__GetEnumerator_d__15__MoveNext (nn_hid_TouchScreenState1_TouchStateArray1__GetEnumerator_d__15_o* __this, const MethodInfo*);
nn_hid_TouchState_o nn_hid_TouchScreenState1_TouchStateArray1__GetEnumerator_d__15__System_Collections_Generic_IEnumerator_nn_hid_TouchState__get_Current (nn_hid_TouchScreenState1_TouchStateArray1__GetEnumerator_d__15_o* __this, const MethodInfo*);
void nn_hid_TouchScreenState1_TouchStateArray1__GetEnumerator_d__15__System_Collections_IEnumerator_Reset (nn_hid_TouchScreenState1_TouchStateArray1__GetEnumerator_d__15_o* __this, const MethodInfo*);
Il2CppObject* nn_hid_TouchScreenState1_TouchStateArray1__GetEnumerator_d__15__System_Collections_IEnumerator_get_Current (nn_hid_TouchScreenState1_TouchStateArray1__GetEnumerator_d__15_o* __this, const MethodInfo*);
void nn_hid_TouchScreenState2__SetDefault (nn_hid_TouchScreenState2_o __this, const MethodInfo*);
int32_t nn_hid_TouchScreenState2_TouchStateArray2__get_Length (nn_hid_TouchScreenState2_TouchStateArray2_o __this, const MethodInfo*);
nn_hid_TouchState_o nn_hid_TouchScreenState2_TouchStateArray2__get_Item (nn_hid_TouchScreenState2_TouchStateArray2_o __this, int32_t index, const MethodInfo*);
void nn_hid_TouchScreenState2_TouchStateArray2__set_Item (nn_hid_TouchScreenState2_TouchStateArray2_o __this, int32_t index, nn_hid_TouchState_o value, const MethodInfo*);
int32_t nn_hid_TouchScreenState2_TouchStateArray2__get_Count (nn_hid_TouchScreenState2_TouchStateArray2_o __this, const MethodInfo*);
bool nn_hid_TouchScreenState2_TouchStateArray2__get_IsReadOnly (nn_hid_TouchScreenState2_TouchStateArray2_o __this, const MethodInfo*);
bool nn_hid_TouchScreenState2_TouchStateArray2__Contains (nn_hid_TouchScreenState2_TouchStateArray2_o __this, nn_hid_TouchState_o item, const MethodInfo*);
int32_t nn_hid_TouchScreenState2_TouchStateArray2__IndexOf (nn_hid_TouchScreenState2_TouchStateArray2_o __this, nn_hid_TouchState_o item, const MethodInfo*);
void nn_hid_TouchScreenState2_TouchStateArray2__CopyTo (nn_hid_TouchScreenState2_TouchStateArray2_o __this, nn_hid_TouchState_array* array, int32_t arrayIndex, const MethodInfo*);
System_String_o* nn_hid_TouchScreenState2_TouchStateArray2__ToString (nn_hid_TouchScreenState2_TouchStateArray2_o __this, const MethodInfo*);
System_Collections_Generic_IEnumerator_TouchState__o* nn_hid_TouchScreenState2_TouchStateArray2__GetEnumerator (nn_hid_TouchScreenState2_TouchStateArray2_o __this, const MethodInfo*);
System_Collections_IEnumerator_o* nn_hid_TouchScreenState2_TouchStateArray2__System_Collections_IEnumerable_GetEnumerator (nn_hid_TouchScreenState2_TouchStateArray2_o __this, const MethodInfo*);
void nn_hid_TouchScreenState2_TouchStateArray2__Add (nn_hid_TouchScreenState2_TouchStateArray2_o __this, nn_hid_TouchState_o item, const MethodInfo*);
void nn_hid_TouchScreenState2_TouchStateArray2__Clear (nn_hid_TouchScreenState2_TouchStateArray2_o __this, const MethodInfo*);
void nn_hid_TouchScreenState2_TouchStateArray2__Insert (nn_hid_TouchScreenState2_TouchStateArray2_o __this, int32_t index, nn_hid_TouchState_o item, const MethodInfo*);
bool nn_hid_TouchScreenState2_TouchStateArray2__Remove (nn_hid_TouchScreenState2_TouchStateArray2_o __this, nn_hid_TouchState_o item, const MethodInfo*);
void nn_hid_TouchScreenState2_TouchStateArray2__RemoveAt (nn_hid_TouchScreenState2_TouchStateArray2_o __this, int32_t index, const MethodInfo*);
void nn_hid_TouchScreenState2_TouchStateArray2__GetEnumerator_d__16___ctor (nn_hid_TouchScreenState2_TouchStateArray2__GetEnumerator_d__16_o* __this, int32_t __1__state, const MethodInfo*);
void nn_hid_TouchScreenState2_TouchStateArray2__GetEnumerator_d__16__System_IDisposable_Dispose (nn_hid_TouchScreenState2_TouchStateArray2__GetEnumerator_d__16_o* __this, const MethodInfo*);
bool nn_hid_TouchScreenState2_TouchStateArray2__GetEnumerator_d__16__MoveNext (nn_hid_TouchScreenState2_TouchStateArray2__GetEnumerator_d__16_o* __this, const MethodInfo*);
nn_hid_TouchState_o nn_hid_TouchScreenState2_TouchStateArray2__GetEnumerator_d__16__System_Collections_Generic_IEnumerator_nn_hid_TouchState__get_Current (nn_hid_TouchScreenState2_TouchStateArray2__GetEnumerator_d__16_o* __this, const MethodInfo*);
void nn_hid_TouchScreenState2_TouchStateArray2__GetEnumerator_d__16__System_Collections_IEnumerator_Reset (nn_hid_TouchScreenState2_TouchStateArray2__GetEnumerator_d__16_o* __this, const MethodInfo*);
Il2CppObject* nn_hid_TouchScreenState2_TouchStateArray2__GetEnumerator_d__16__System_Collections_IEnumerator_get_Current (nn_hid_TouchScreenState2_TouchStateArray2__GetEnumerator_d__16_o* __this, const MethodInfo*);
void nn_hid_TouchScreenState3__SetDefault (nn_hid_TouchScreenState3_o __this, const MethodInfo*);
int32_t nn_hid_TouchScreenState3_TouchStateArray3__get_Length (nn_hid_TouchScreenState3_TouchStateArray3_o __this, const MethodInfo*);
nn_hid_TouchState_o nn_hid_TouchScreenState3_TouchStateArray3__get_Item (nn_hid_TouchScreenState3_TouchStateArray3_o __this, int32_t index, const MethodInfo*);
void nn_hid_TouchScreenState3_TouchStateArray3__set_Item (nn_hid_TouchScreenState3_TouchStateArray3_o __this, int32_t index, nn_hid_TouchState_o value, const MethodInfo*);
int32_t nn_hid_TouchScreenState3_TouchStateArray3__get_Count (nn_hid_TouchScreenState3_TouchStateArray3_o __this, const MethodInfo*);
bool nn_hid_TouchScreenState3_TouchStateArray3__get_IsReadOnly (nn_hid_TouchScreenState3_TouchStateArray3_o __this, const MethodInfo*);
bool nn_hid_TouchScreenState3_TouchStateArray3__Contains (nn_hid_TouchScreenState3_TouchStateArray3_o __this, nn_hid_TouchState_o item, const MethodInfo*);
int32_t nn_hid_TouchScreenState3_TouchStateArray3__IndexOf (nn_hid_TouchScreenState3_TouchStateArray3_o __this, nn_hid_TouchState_o item, const MethodInfo*);
void nn_hid_TouchScreenState3_TouchStateArray3__CopyTo (nn_hid_TouchScreenState3_TouchStateArray3_o __this, nn_hid_TouchState_array* array, int32_t arrayIndex, const MethodInfo*);
System_String_o* nn_hid_TouchScreenState3_TouchStateArray3__ToString (nn_hid_TouchScreenState3_TouchStateArray3_o __this, const MethodInfo*);
System_Collections_Generic_IEnumerator_TouchState__o* nn_hid_TouchScreenState3_TouchStateArray3__GetEnumerator (nn_hid_TouchScreenState3_TouchStateArray3_o __this, const MethodInfo*);
System_Collections_IEnumerator_o* nn_hid_TouchScreenState3_TouchStateArray3__System_Collections_IEnumerable_GetEnumerator (nn_hid_TouchScreenState3_TouchStateArray3_o __this, const MethodInfo*);
void nn_hid_TouchScreenState3_TouchStateArray3__Add (nn_hid_TouchScreenState3_TouchStateArray3_o __this, nn_hid_TouchState_o item, const MethodInfo*);
void nn_hid_TouchScreenState3_TouchStateArray3__Clear (nn_hid_TouchScreenState3_TouchStateArray3_o __this, const MethodInfo*);
void nn_hid_TouchScreenState3_TouchStateArray3__Insert (nn_hid_TouchScreenState3_TouchStateArray3_o __this, int32_t index, nn_hid_TouchState_o item, const MethodInfo*);
bool nn_hid_TouchScreenState3_TouchStateArray3__Remove (nn_hid_TouchScreenState3_TouchStateArray3_o __this, nn_hid_TouchState_o item, const MethodInfo*);
void nn_hid_TouchScreenState3_TouchStateArray3__RemoveAt (nn_hid_TouchScreenState3_TouchStateArray3_o __this, int32_t index, const MethodInfo*);
void nn_hid_TouchScreenState3_TouchStateArray3__GetEnumerator_d__17___ctor (nn_hid_TouchScreenState3_TouchStateArray3__GetEnumerator_d__17_o* __this, int32_t __1__state, const MethodInfo*);
void nn_hid_TouchScreenState3_TouchStateArray3__GetEnumerator_d__17__System_IDisposable_Dispose (nn_hid_TouchScreenState3_TouchStateArray3__GetEnumerator_d__17_o* __this, const MethodInfo*);
bool nn_hid_TouchScreenState3_TouchStateArray3__GetEnumerator_d__17__MoveNext (nn_hid_TouchScreenState3_TouchStateArray3__GetEnumerator_d__17_o* __this, const MethodInfo*);
nn_hid_TouchState_o nn_hid_TouchScreenState3_TouchStateArray3__GetEnumerator_d__17__System_Collections_Generic_IEnumerator_nn_hid_TouchState__get_Current (nn_hid_TouchScreenState3_TouchStateArray3__GetEnumerator_d__17_o* __this, const MethodInfo*);
void nn_hid_TouchScreenState3_TouchStateArray3__GetEnumerator_d__17__System_Collections_IEnumerator_Reset (nn_hid_TouchScreenState3_TouchStateArray3__GetEnumerator_d__17_o* __this, const MethodInfo*);
Il2CppObject* nn_hid_TouchScreenState3_TouchStateArray3__GetEnumerator_d__17__System_Collections_IEnumerator_get_Current (nn_hid_TouchScreenState3_TouchStateArray3__GetEnumerator_d__17_o* __this, const MethodInfo*);
void nn_hid_TouchScreenState4__SetDefault (nn_hid_TouchScreenState4_o __this, const MethodInfo*);
int32_t nn_hid_TouchScreenState4_TouchStateArray4__get_Length (nn_hid_TouchScreenState4_TouchStateArray4_o __this, const MethodInfo*);
nn_hid_TouchState_o nn_hid_TouchScreenState4_TouchStateArray4__get_Item (nn_hid_TouchScreenState4_TouchStateArray4_o __this, int32_t index, const MethodInfo*);
void nn_hid_TouchScreenState4_TouchStateArray4__set_Item (nn_hid_TouchScreenState4_TouchStateArray4_o __this, int32_t index, nn_hid_TouchState_o value, const MethodInfo*);
int32_t nn_hid_TouchScreenState4_TouchStateArray4__get_Count (nn_hid_TouchScreenState4_TouchStateArray4_o __this, const MethodInfo*);
bool nn_hid_TouchScreenState4_TouchStateArray4__get_IsReadOnly (nn_hid_TouchScreenState4_TouchStateArray4_o __this, const MethodInfo*);
bool nn_hid_TouchScreenState4_TouchStateArray4__Contains (nn_hid_TouchScreenState4_TouchStateArray4_o __this, nn_hid_TouchState_o item, const MethodInfo*);
int32_t nn_hid_TouchScreenState4_TouchStateArray4__IndexOf (nn_hid_TouchScreenState4_TouchStateArray4_o __this, nn_hid_TouchState_o item, const MethodInfo*);
void nn_hid_TouchScreenState4_TouchStateArray4__CopyTo (nn_hid_TouchScreenState4_TouchStateArray4_o __this, nn_hid_TouchState_array* array, int32_t arrayIndex, const MethodInfo*);
System_String_o* nn_hid_TouchScreenState4_TouchStateArray4__ToString (nn_hid_TouchScreenState4_TouchStateArray4_o __this, const MethodInfo*);
System_Collections_Generic_IEnumerator_TouchState__o* nn_hid_TouchScreenState4_TouchStateArray4__GetEnumerator (nn_hid_TouchScreenState4_TouchStateArray4_o __this, const MethodInfo*);
System_Collections_IEnumerator_o* nn_hid_TouchScreenState4_TouchStateArray4__System_Collections_IEnumerable_GetEnumerator (nn_hid_TouchScreenState4_TouchStateArray4_o __this, const MethodInfo*);
void nn_hid_TouchScreenState4_TouchStateArray4__Add (nn_hid_TouchScreenState4_TouchStateArray4_o __this, nn_hid_TouchState_o item, const MethodInfo*);
void nn_hid_TouchScreenState4_TouchStateArray4__Clear (nn_hid_TouchScreenState4_TouchStateArray4_o __this, const MethodInfo*);
void nn_hid_TouchScreenState4_TouchStateArray4__Insert (nn_hid_TouchScreenState4_TouchStateArray4_o __this, int32_t index, nn_hid_TouchState_o item, const MethodInfo*);
bool nn_hid_TouchScreenState4_TouchStateArray4__Remove (nn_hid_TouchScreenState4_TouchStateArray4_o __this, nn_hid_TouchState_o item, const MethodInfo*);
void nn_hid_TouchScreenState4_TouchStateArray4__RemoveAt (nn_hid_TouchScreenState4_TouchStateArray4_o __this, int32_t index, const MethodInfo*);
void nn_hid_TouchScreenState4_TouchStateArray4__GetEnumerator_d__18___ctor (nn_hid_TouchScreenState4_TouchStateArray4__GetEnumerator_d__18_o* __this, int32_t __1__state, const MethodInfo*);
void nn_hid_TouchScreenState4_TouchStateArray4__GetEnumerator_d__18__System_IDisposable_Dispose (nn_hid_TouchScreenState4_TouchStateArray4__GetEnumerator_d__18_o* __this, const MethodInfo*);
bool nn_hid_TouchScreenState4_TouchStateArray4__GetEnumerator_d__18__MoveNext (nn_hid_TouchScreenState4_TouchStateArray4__GetEnumerator_d__18_o* __this, const MethodInfo*);
nn_hid_TouchState_o nn_hid_TouchScreenState4_TouchStateArray4__GetEnumerator_d__18__System_Collections_Generic_IEnumerator_nn_hid_TouchState__get_Current (nn_hid_TouchScreenState4_TouchStateArray4__GetEnumerator_d__18_o* __this, const MethodInfo*);
void nn_hid_TouchScreenState4_TouchStateArray4__GetEnumerator_d__18__System_Collections_IEnumerator_Reset (nn_hid_TouchScreenState4_TouchStateArray4__GetEnumerator_d__18_o* __this, const MethodInfo*);
Il2CppObject* nn_hid_TouchScreenState4_TouchStateArray4__GetEnumerator_d__18__System_Collections_IEnumerator_get_Current (nn_hid_TouchScreenState4_TouchStateArray4__GetEnumerator_d__18_o* __this, const MethodInfo*);
void nn_hid_TouchScreenState5__SetDefault (nn_hid_TouchScreenState5_o __this, const MethodInfo*);
int32_t nn_hid_TouchScreenState5_TouchStateArray5__get_Length (nn_hid_TouchScreenState5_TouchStateArray5_o __this, const MethodInfo*);
nn_hid_TouchState_o nn_hid_TouchScreenState5_TouchStateArray5__get_Item (nn_hid_TouchScreenState5_TouchStateArray5_o __this, int32_t index, const MethodInfo*);
void nn_hid_TouchScreenState5_TouchStateArray5__set_Item (nn_hid_TouchScreenState5_TouchStateArray5_o __this, int32_t index, nn_hid_TouchState_o value, const MethodInfo*);
int32_t nn_hid_TouchScreenState5_TouchStateArray5__get_Count (nn_hid_TouchScreenState5_TouchStateArray5_o __this, const MethodInfo*);
bool nn_hid_TouchScreenState5_TouchStateArray5__get_IsReadOnly (nn_hid_TouchScreenState5_TouchStateArray5_o __this, const MethodInfo*);
bool nn_hid_TouchScreenState5_TouchStateArray5__Contains (nn_hid_TouchScreenState5_TouchStateArray5_o __this, nn_hid_TouchState_o item, const MethodInfo*);
int32_t nn_hid_TouchScreenState5_TouchStateArray5__IndexOf (nn_hid_TouchScreenState5_TouchStateArray5_o __this, nn_hid_TouchState_o item, const MethodInfo*);
void nn_hid_TouchScreenState5_TouchStateArray5__CopyTo (nn_hid_TouchScreenState5_TouchStateArray5_o __this, nn_hid_TouchState_array* array, int32_t arrayIndex, const MethodInfo*);
System_String_o* nn_hid_TouchScreenState5_TouchStateArray5__ToString (nn_hid_TouchScreenState5_TouchStateArray5_o __this, const MethodInfo*);
System_Collections_Generic_IEnumerator_TouchState__o* nn_hid_TouchScreenState5_TouchStateArray5__GetEnumerator (nn_hid_TouchScreenState5_TouchStateArray5_o __this, const MethodInfo*);
System_Collections_IEnumerator_o* nn_hid_TouchScreenState5_TouchStateArray5__System_Collections_IEnumerable_GetEnumerator (nn_hid_TouchScreenState5_TouchStateArray5_o __this, const MethodInfo*);
void nn_hid_TouchScreenState5_TouchStateArray5__Add (nn_hid_TouchScreenState5_TouchStateArray5_o __this, nn_hid_TouchState_o item, const MethodInfo*);
void nn_hid_TouchScreenState5_TouchStateArray5__Clear (nn_hid_TouchScreenState5_TouchStateArray5_o __this, const MethodInfo*);
void nn_hid_TouchScreenState5_TouchStateArray5__Insert (nn_hid_TouchScreenState5_TouchStateArray5_o __this, int32_t index, nn_hid_TouchState_o item, const MethodInfo*);
bool nn_hid_TouchScreenState5_TouchStateArray5__Remove (nn_hid_TouchScreenState5_TouchStateArray5_o __this, nn_hid_TouchState_o item, const MethodInfo*);
void nn_hid_TouchScreenState5_TouchStateArray5__RemoveAt (nn_hid_TouchScreenState5_TouchStateArray5_o __this, int32_t index, const MethodInfo*);
void nn_hid_TouchScreenState5_TouchStateArray5__GetEnumerator_d__19___ctor (nn_hid_TouchScreenState5_TouchStateArray5__GetEnumerator_d__19_o* __this, int32_t __1__state, const MethodInfo*);
void nn_hid_TouchScreenState5_TouchStateArray5__GetEnumerator_d__19__System_IDisposable_Dispose (nn_hid_TouchScreenState5_TouchStateArray5__GetEnumerator_d__19_o* __this, const MethodInfo*);
bool nn_hid_TouchScreenState5_TouchStateArray5__GetEnumerator_d__19__MoveNext (nn_hid_TouchScreenState5_TouchStateArray5__GetEnumerator_d__19_o* __this, const MethodInfo*);
nn_hid_TouchState_o nn_hid_TouchScreenState5_TouchStateArray5__GetEnumerator_d__19__System_Collections_Generic_IEnumerator_nn_hid_TouchState__get_Current (nn_hid_TouchScreenState5_TouchStateArray5__GetEnumerator_d__19_o* __this, const MethodInfo*);
void nn_hid_TouchScreenState5_TouchStateArray5__GetEnumerator_d__19__System_Collections_IEnumerator_Reset (nn_hid_TouchScreenState5_TouchStateArray5__GetEnumerator_d__19_o* __this, const MethodInfo*);
Il2CppObject* nn_hid_TouchScreenState5_TouchStateArray5__GetEnumerator_d__19__System_Collections_IEnumerator_get_Current (nn_hid_TouchScreenState5_TouchStateArray5__GetEnumerator_d__19_o* __this, const MethodInfo*);
void nn_hid_TouchScreenState6__SetDefault (nn_hid_TouchScreenState6_o __this, const MethodInfo*);
int32_t nn_hid_TouchScreenState6_TouchStateArray6__get_Length (nn_hid_TouchScreenState6_TouchStateArray6_o __this, const MethodInfo*);
nn_hid_TouchState_o nn_hid_TouchScreenState6_TouchStateArray6__get_Item (nn_hid_TouchScreenState6_TouchStateArray6_o __this, int32_t index, const MethodInfo*);
void nn_hid_TouchScreenState6_TouchStateArray6__set_Item (nn_hid_TouchScreenState6_TouchStateArray6_o __this, int32_t index, nn_hid_TouchState_o value, const MethodInfo*);
int32_t nn_hid_TouchScreenState6_TouchStateArray6__get_Count (nn_hid_TouchScreenState6_TouchStateArray6_o __this, const MethodInfo*);
bool nn_hid_TouchScreenState6_TouchStateArray6__get_IsReadOnly (nn_hid_TouchScreenState6_TouchStateArray6_o __this, const MethodInfo*);
bool nn_hid_TouchScreenState6_TouchStateArray6__Contains (nn_hid_TouchScreenState6_TouchStateArray6_o __this, nn_hid_TouchState_o item, const MethodInfo*);
int32_t nn_hid_TouchScreenState6_TouchStateArray6__IndexOf (nn_hid_TouchScreenState6_TouchStateArray6_o __this, nn_hid_TouchState_o item, const MethodInfo*);
void nn_hid_TouchScreenState6_TouchStateArray6__CopyTo (nn_hid_TouchScreenState6_TouchStateArray6_o __this, nn_hid_TouchState_array* array, int32_t arrayIndex, const MethodInfo*);
System_String_o* nn_hid_TouchScreenState6_TouchStateArray6__ToString (nn_hid_TouchScreenState6_TouchStateArray6_o __this, const MethodInfo*);
System_Collections_Generic_IEnumerator_TouchState__o* nn_hid_TouchScreenState6_TouchStateArray6__GetEnumerator (nn_hid_TouchScreenState6_TouchStateArray6_o __this, const MethodInfo*);
System_Collections_IEnumerator_o* nn_hid_TouchScreenState6_TouchStateArray6__System_Collections_IEnumerable_GetEnumerator (nn_hid_TouchScreenState6_TouchStateArray6_o __this, const MethodInfo*);
void nn_hid_TouchScreenState6_TouchStateArray6__Add (nn_hid_TouchScreenState6_TouchStateArray6_o __this, nn_hid_TouchState_o item, const MethodInfo*);
void nn_hid_TouchScreenState6_TouchStateArray6__Clear (nn_hid_TouchScreenState6_TouchStateArray6_o __this, const MethodInfo*);
void nn_hid_TouchScreenState6_TouchStateArray6__Insert (nn_hid_TouchScreenState6_TouchStateArray6_o __this, int32_t index, nn_hid_TouchState_o item, const MethodInfo*);
bool nn_hid_TouchScreenState6_TouchStateArray6__Remove (nn_hid_TouchScreenState6_TouchStateArray6_o __this, nn_hid_TouchState_o item, const MethodInfo*);
void nn_hid_TouchScreenState6_TouchStateArray6__RemoveAt (nn_hid_TouchScreenState6_TouchStateArray6_o __this, int32_t index, const MethodInfo*);
void nn_hid_TouchScreenState6_TouchStateArray6__GetEnumerator_d__20___ctor (nn_hid_TouchScreenState6_TouchStateArray6__GetEnumerator_d__20_o* __this, int32_t __1__state, const MethodInfo*);
void nn_hid_TouchScreenState6_TouchStateArray6__GetEnumerator_d__20__System_IDisposable_Dispose (nn_hid_TouchScreenState6_TouchStateArray6__GetEnumerator_d__20_o* __this, const MethodInfo*);
bool nn_hid_TouchScreenState6_TouchStateArray6__GetEnumerator_d__20__MoveNext (nn_hid_TouchScreenState6_TouchStateArray6__GetEnumerator_d__20_o* __this, const MethodInfo*);
nn_hid_TouchState_o nn_hid_TouchScreenState6_TouchStateArray6__GetEnumerator_d__20__System_Collections_Generic_IEnumerator_nn_hid_TouchState__get_Current (nn_hid_TouchScreenState6_TouchStateArray6__GetEnumerator_d__20_o* __this, const MethodInfo*);
void nn_hid_TouchScreenState6_TouchStateArray6__GetEnumerator_d__20__System_Collections_IEnumerator_Reset (nn_hid_TouchScreenState6_TouchStateArray6__GetEnumerator_d__20_o* __this, const MethodInfo*);
Il2CppObject* nn_hid_TouchScreenState6_TouchStateArray6__GetEnumerator_d__20__System_Collections_IEnumerator_get_Current (nn_hid_TouchScreenState6_TouchStateArray6__GetEnumerator_d__20_o* __this, const MethodInfo*);
void nn_hid_TouchScreenState7__SetDefault (nn_hid_TouchScreenState7_o __this, const MethodInfo*);
int32_t nn_hid_TouchScreenState7_TouchStateArray7__get_Length (nn_hid_TouchScreenState7_TouchStateArray7_o __this, const MethodInfo*);
nn_hid_TouchState_o nn_hid_TouchScreenState7_TouchStateArray7__get_Item (nn_hid_TouchScreenState7_TouchStateArray7_o __this, int32_t index, const MethodInfo*);
void nn_hid_TouchScreenState7_TouchStateArray7__set_Item (nn_hid_TouchScreenState7_TouchStateArray7_o __this, int32_t index, nn_hid_TouchState_o value, const MethodInfo*);
int32_t nn_hid_TouchScreenState7_TouchStateArray7__get_Count (nn_hid_TouchScreenState7_TouchStateArray7_o __this, const MethodInfo*);
bool nn_hid_TouchScreenState7_TouchStateArray7__get_IsReadOnly (nn_hid_TouchScreenState7_TouchStateArray7_o __this, const MethodInfo*);
bool nn_hid_TouchScreenState7_TouchStateArray7__Contains (nn_hid_TouchScreenState7_TouchStateArray7_o __this, nn_hid_TouchState_o item, const MethodInfo*);
int32_t nn_hid_TouchScreenState7_TouchStateArray7__IndexOf (nn_hid_TouchScreenState7_TouchStateArray7_o __this, nn_hid_TouchState_o item, const MethodInfo*);
void nn_hid_TouchScreenState7_TouchStateArray7__CopyTo (nn_hid_TouchScreenState7_TouchStateArray7_o __this, nn_hid_TouchState_array* array, int32_t arrayIndex, const MethodInfo*);
System_String_o* nn_hid_TouchScreenState7_TouchStateArray7__ToString (nn_hid_TouchScreenState7_TouchStateArray7_o __this, const MethodInfo*);
System_Collections_Generic_IEnumerator_TouchState__o* nn_hid_TouchScreenState7_TouchStateArray7__GetEnumerator (nn_hid_TouchScreenState7_TouchStateArray7_o __this, const MethodInfo*);
System_Collections_IEnumerator_o* nn_hid_TouchScreenState7_TouchStateArray7__System_Collections_IEnumerable_GetEnumerator (nn_hid_TouchScreenState7_TouchStateArray7_o __this, const MethodInfo*);
void nn_hid_TouchScreenState7_TouchStateArray7__Add (nn_hid_TouchScreenState7_TouchStateArray7_o __this, nn_hid_TouchState_o item, const MethodInfo*);
void nn_hid_TouchScreenState7_TouchStateArray7__Clear (nn_hid_TouchScreenState7_TouchStateArray7_o __this, const MethodInfo*);
void nn_hid_TouchScreenState7_TouchStateArray7__Insert (nn_hid_TouchScreenState7_TouchStateArray7_o __this, int32_t index, nn_hid_TouchState_o item, const MethodInfo*);
bool nn_hid_TouchScreenState7_TouchStateArray7__Remove (nn_hid_TouchScreenState7_TouchStateArray7_o __this, nn_hid_TouchState_o item, const MethodInfo*);
void nn_hid_TouchScreenState7_TouchStateArray7__RemoveAt (nn_hid_TouchScreenState7_TouchStateArray7_o __this, int32_t index, const MethodInfo*);
void nn_hid_TouchScreenState7_TouchStateArray7__GetEnumerator_d__21___ctor (nn_hid_TouchScreenState7_TouchStateArray7__GetEnumerator_d__21_o* __this, int32_t __1__state, const MethodInfo*);
void nn_hid_TouchScreenState7_TouchStateArray7__GetEnumerator_d__21__System_IDisposable_Dispose (nn_hid_TouchScreenState7_TouchStateArray7__GetEnumerator_d__21_o* __this, const MethodInfo*);
bool nn_hid_TouchScreenState7_TouchStateArray7__GetEnumerator_d__21__MoveNext (nn_hid_TouchScreenState7_TouchStateArray7__GetEnumerator_d__21_o* __this, const MethodInfo*);
nn_hid_TouchState_o nn_hid_TouchScreenState7_TouchStateArray7__GetEnumerator_d__21__System_Collections_Generic_IEnumerator_nn_hid_TouchState__get_Current (nn_hid_TouchScreenState7_TouchStateArray7__GetEnumerator_d__21_o* __this, const MethodInfo*);
void nn_hid_TouchScreenState7_TouchStateArray7__GetEnumerator_d__21__System_Collections_IEnumerator_Reset (nn_hid_TouchScreenState7_TouchStateArray7__GetEnumerator_d__21_o* __this, const MethodInfo*);
Il2CppObject* nn_hid_TouchScreenState7_TouchStateArray7__GetEnumerator_d__21__System_Collections_IEnumerator_get_Current (nn_hid_TouchScreenState7_TouchStateArray7__GetEnumerator_d__21_o* __this, const MethodInfo*);
void nn_hid_TouchScreenState8__SetDefault (nn_hid_TouchScreenState8_o __this, const MethodInfo*);
int32_t nn_hid_TouchScreenState8_TouchStateArray8__get_Length (nn_hid_TouchScreenState8_TouchStateArray8_o __this, const MethodInfo*);
nn_hid_TouchState_o nn_hid_TouchScreenState8_TouchStateArray8__get_Item (nn_hid_TouchScreenState8_TouchStateArray8_o __this, int32_t index, const MethodInfo*);
void nn_hid_TouchScreenState8_TouchStateArray8__set_Item (nn_hid_TouchScreenState8_TouchStateArray8_o __this, int32_t index, nn_hid_TouchState_o value, const MethodInfo*);
int32_t nn_hid_TouchScreenState8_TouchStateArray8__get_Count (nn_hid_TouchScreenState8_TouchStateArray8_o __this, const MethodInfo*);
bool nn_hid_TouchScreenState8_TouchStateArray8__get_IsReadOnly (nn_hid_TouchScreenState8_TouchStateArray8_o __this, const MethodInfo*);
bool nn_hid_TouchScreenState8_TouchStateArray8__Contains (nn_hid_TouchScreenState8_TouchStateArray8_o __this, nn_hid_TouchState_o item, const MethodInfo*);
int32_t nn_hid_TouchScreenState8_TouchStateArray8__IndexOf (nn_hid_TouchScreenState8_TouchStateArray8_o __this, nn_hid_TouchState_o item, const MethodInfo*);
void nn_hid_TouchScreenState8_TouchStateArray8__CopyTo (nn_hid_TouchScreenState8_TouchStateArray8_o __this, nn_hid_TouchState_array* array, int32_t arrayIndex, const MethodInfo*);
System_String_o* nn_hid_TouchScreenState8_TouchStateArray8__ToString (nn_hid_TouchScreenState8_TouchStateArray8_o __this, const MethodInfo*);
System_Collections_Generic_IEnumerator_TouchState__o* nn_hid_TouchScreenState8_TouchStateArray8__GetEnumerator (nn_hid_TouchScreenState8_TouchStateArray8_o __this, const MethodInfo*);
System_Collections_IEnumerator_o* nn_hid_TouchScreenState8_TouchStateArray8__System_Collections_IEnumerable_GetEnumerator (nn_hid_TouchScreenState8_TouchStateArray8_o __this, const MethodInfo*);
void nn_hid_TouchScreenState8_TouchStateArray8__Add (nn_hid_TouchScreenState8_TouchStateArray8_o __this, nn_hid_TouchState_o item, const MethodInfo*);
void nn_hid_TouchScreenState8_TouchStateArray8__Clear (nn_hid_TouchScreenState8_TouchStateArray8_o __this, const MethodInfo*);
void nn_hid_TouchScreenState8_TouchStateArray8__Insert (nn_hid_TouchScreenState8_TouchStateArray8_o __this, int32_t index, nn_hid_TouchState_o item, const MethodInfo*);
bool nn_hid_TouchScreenState8_TouchStateArray8__Remove (nn_hid_TouchScreenState8_TouchStateArray8_o __this, nn_hid_TouchState_o item, const MethodInfo*);
void nn_hid_TouchScreenState8_TouchStateArray8__RemoveAt (nn_hid_TouchScreenState8_TouchStateArray8_o __this, int32_t index, const MethodInfo*);
void nn_hid_TouchScreenState8_TouchStateArray8__GetEnumerator_d__22___ctor (nn_hid_TouchScreenState8_TouchStateArray8__GetEnumerator_d__22_o* __this, int32_t __1__state, const MethodInfo*);
void nn_hid_TouchScreenState8_TouchStateArray8__GetEnumerator_d__22__System_IDisposable_Dispose (nn_hid_TouchScreenState8_TouchStateArray8__GetEnumerator_d__22_o* __this, const MethodInfo*);
bool nn_hid_TouchScreenState8_TouchStateArray8__GetEnumerator_d__22__MoveNext (nn_hid_TouchScreenState8_TouchStateArray8__GetEnumerator_d__22_o* __this, const MethodInfo*);
nn_hid_TouchState_o nn_hid_TouchScreenState8_TouchStateArray8__GetEnumerator_d__22__System_Collections_Generic_IEnumerator_nn_hid_TouchState__get_Current (nn_hid_TouchScreenState8_TouchStateArray8__GetEnumerator_d__22_o* __this, const MethodInfo*);
void nn_hid_TouchScreenState8_TouchStateArray8__GetEnumerator_d__22__System_Collections_IEnumerator_Reset (nn_hid_TouchScreenState8_TouchStateArray8__GetEnumerator_d__22_o* __this, const MethodInfo*);
Il2CppObject* nn_hid_TouchScreenState8_TouchStateArray8__GetEnumerator_d__22__System_Collections_IEnumerator_get_Current (nn_hid_TouchScreenState8_TouchStateArray8__GetEnumerator_d__22_o* __this, const MethodInfo*);
void nn_hid_TouchScreenState9__SetDefault (nn_hid_TouchScreenState9_o __this, const MethodInfo*);
int32_t nn_hid_TouchScreenState9_TouchStateArray9__get_Length (nn_hid_TouchScreenState9_TouchStateArray9_o __this, const MethodInfo*);
nn_hid_TouchState_o nn_hid_TouchScreenState9_TouchStateArray9__get_Item (nn_hid_TouchScreenState9_TouchStateArray9_o __this, int32_t index, const MethodInfo*);
void nn_hid_TouchScreenState9_TouchStateArray9__set_Item (nn_hid_TouchScreenState9_TouchStateArray9_o __this, int32_t index, nn_hid_TouchState_o value, const MethodInfo*);
int32_t nn_hid_TouchScreenState9_TouchStateArray9__get_Count (nn_hid_TouchScreenState9_TouchStateArray9_o __this, const MethodInfo*);
bool nn_hid_TouchScreenState9_TouchStateArray9__get_IsReadOnly (nn_hid_TouchScreenState9_TouchStateArray9_o __this, const MethodInfo*);
bool nn_hid_TouchScreenState9_TouchStateArray9__Contains (nn_hid_TouchScreenState9_TouchStateArray9_o __this, nn_hid_TouchState_o item, const MethodInfo*);
int32_t nn_hid_TouchScreenState9_TouchStateArray9__IndexOf (nn_hid_TouchScreenState9_TouchStateArray9_o __this, nn_hid_TouchState_o item, const MethodInfo*);
void nn_hid_TouchScreenState9_TouchStateArray9__CopyTo (nn_hid_TouchScreenState9_TouchStateArray9_o __this, nn_hid_TouchState_array* array, int32_t arrayIndex, const MethodInfo*);
System_String_o* nn_hid_TouchScreenState9_TouchStateArray9__ToString (nn_hid_TouchScreenState9_TouchStateArray9_o __this, const MethodInfo*);
System_Collections_Generic_IEnumerator_TouchState__o* nn_hid_TouchScreenState9_TouchStateArray9__GetEnumerator (nn_hid_TouchScreenState9_TouchStateArray9_o __this, const MethodInfo*);
System_Collections_IEnumerator_o* nn_hid_TouchScreenState9_TouchStateArray9__System_Collections_IEnumerable_GetEnumerator (nn_hid_TouchScreenState9_TouchStateArray9_o __this, const MethodInfo*);
void nn_hid_TouchScreenState9_TouchStateArray9__Add (nn_hid_TouchScreenState9_TouchStateArray9_o __this, nn_hid_TouchState_o item, const MethodInfo*);
void nn_hid_TouchScreenState9_TouchStateArray9__Clear (nn_hid_TouchScreenState9_TouchStateArray9_o __this, const MethodInfo*);
void nn_hid_TouchScreenState9_TouchStateArray9__Insert (nn_hid_TouchScreenState9_TouchStateArray9_o __this, int32_t index, nn_hid_TouchState_o item, const MethodInfo*);
bool nn_hid_TouchScreenState9_TouchStateArray9__Remove (nn_hid_TouchScreenState9_TouchStateArray9_o __this, nn_hid_TouchState_o item, const MethodInfo*);
void nn_hid_TouchScreenState9_TouchStateArray9__RemoveAt (nn_hid_TouchScreenState9_TouchStateArray9_o __this, int32_t index, const MethodInfo*);
void nn_hid_TouchScreenState9_TouchStateArray9__GetEnumerator_d__23___ctor (nn_hid_TouchScreenState9_TouchStateArray9__GetEnumerator_d__23_o* __this, int32_t __1__state, const MethodInfo*);
void nn_hid_TouchScreenState9_TouchStateArray9__GetEnumerator_d__23__System_IDisposable_Dispose (nn_hid_TouchScreenState9_TouchStateArray9__GetEnumerator_d__23_o* __this, const MethodInfo*);
bool nn_hid_TouchScreenState9_TouchStateArray9__GetEnumerator_d__23__MoveNext (nn_hid_TouchScreenState9_TouchStateArray9__GetEnumerator_d__23_o* __this, const MethodInfo*);
nn_hid_TouchState_o nn_hid_TouchScreenState9_TouchStateArray9__GetEnumerator_d__23__System_Collections_Generic_IEnumerator_nn_hid_TouchState__get_Current (nn_hid_TouchScreenState9_TouchStateArray9__GetEnumerator_d__23_o* __this, const MethodInfo*);
void nn_hid_TouchScreenState9_TouchStateArray9__GetEnumerator_d__23__System_Collections_IEnumerator_Reset (nn_hid_TouchScreenState9_TouchStateArray9__GetEnumerator_d__23_o* __this, const MethodInfo*);
Il2CppObject* nn_hid_TouchScreenState9_TouchStateArray9__GetEnumerator_d__23__System_Collections_IEnumerator_get_Current (nn_hid_TouchScreenState9_TouchStateArray9__GetEnumerator_d__23_o* __this, const MethodInfo*);
void nn_hid_TouchScreenState10__SetDefault (nn_hid_TouchScreenState10_o __this, const MethodInfo*);
int32_t nn_hid_TouchScreenState10_TouchStateArray10__get_Length (nn_hid_TouchScreenState10_TouchStateArray10_o __this, const MethodInfo*);
nn_hid_TouchState_o nn_hid_TouchScreenState10_TouchStateArray10__get_Item (nn_hid_TouchScreenState10_TouchStateArray10_o __this, int32_t index, const MethodInfo*);
void nn_hid_TouchScreenState10_TouchStateArray10__set_Item (nn_hid_TouchScreenState10_TouchStateArray10_o __this, int32_t index, nn_hid_TouchState_o value, const MethodInfo*);
int32_t nn_hid_TouchScreenState10_TouchStateArray10__get_Count (nn_hid_TouchScreenState10_TouchStateArray10_o __this, const MethodInfo*);
bool nn_hid_TouchScreenState10_TouchStateArray10__get_IsReadOnly (nn_hid_TouchScreenState10_TouchStateArray10_o __this, const MethodInfo*);
bool nn_hid_TouchScreenState10_TouchStateArray10__Contains (nn_hid_TouchScreenState10_TouchStateArray10_o __this, nn_hid_TouchState_o item, const MethodInfo*);
int32_t nn_hid_TouchScreenState10_TouchStateArray10__IndexOf (nn_hid_TouchScreenState10_TouchStateArray10_o __this, nn_hid_TouchState_o item, const MethodInfo*);
void nn_hid_TouchScreenState10_TouchStateArray10__CopyTo (nn_hid_TouchScreenState10_TouchStateArray10_o __this, nn_hid_TouchState_array* array, int32_t arrayIndex, const MethodInfo*);
System_String_o* nn_hid_TouchScreenState10_TouchStateArray10__ToString (nn_hid_TouchScreenState10_TouchStateArray10_o __this, const MethodInfo*);
System_Collections_Generic_IEnumerator_TouchState__o* nn_hid_TouchScreenState10_TouchStateArray10__GetEnumerator (nn_hid_TouchScreenState10
View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment